@bondsports/types 2.2.142 → 2.2.143
Sign up to get free protection for your applications and to get access to all the features.
@@ -78,8 +78,8 @@ export declare class CreatePriceDto {
|
|
78
78
|
price: number;
|
79
79
|
currency: CurrencyEnum;
|
80
80
|
name: string;
|
81
|
-
startDate?:
|
82
|
-
endDate?:
|
81
|
+
startDate?: string;
|
82
|
+
endDate?: string;
|
83
83
|
discountValue?: number;
|
84
84
|
discountMethod?: DiscountMethodsEnum;
|
85
85
|
isDefaultPriceForProduct?: boolean;
|
@@ -11,8 +11,8 @@ export declare class Price extends OrganizationConnectionBaseEntity {
|
|
11
11
|
name: string | null;
|
12
12
|
price: number;
|
13
13
|
currency: CurrencyEnum;
|
14
|
-
startDate:
|
15
|
-
endDate:
|
14
|
+
startDate: string;
|
15
|
+
endDate: string;
|
16
16
|
groupId?: number;
|
17
17
|
groupName?: string;
|
18
18
|
originalPrice?: number;
|