Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
StashBank committed Oct 16, 2023
1 parent 66109fa commit 4c1eef7
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions libs/stripe/src/lib/dto/save-quote.dto.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
import { ApiPropertyOptional } from '@nestjs/swagger';
import Stripe from 'stripe';

export class DiscountDto {
@ApiPropertyOptional({
description: 'ID of the coupon to create a new discount for.'
})
coupon?: string;

@ApiPropertyOptional({
description: 'ID of an existing discount on the object (or one of its ancestors) to reuse.'
})
discount?: string;
}
import { DiscountDto } from './shared.dto';

export class FromQuoteDto {
@ApiPropertyOptional({
Expand Down

0 comments on commit 4c1eef7

Please sign in to comment.