@mivis/petmart-api 1.2.306 → 1.2.307
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/type.d.ts +5 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -2377,6 +2377,7 @@ declare namespace Components {
|
|
|
2377
2377
|
}
|
|
2378
2378
|
|
|
2379
2379
|
export interface IUpdatePromo {
|
|
2380
|
+
code?: string;
|
|
2380
2381
|
discount_type?: EDiscountType;
|
|
2381
2382
|
discount_value?: number;
|
|
2382
2383
|
start_date?: string;
|
|
@@ -2390,6 +2391,10 @@ declare namespace Components {
|
|
|
2390
2391
|
description?: string;
|
|
2391
2392
|
}
|
|
2392
2393
|
|
|
2394
|
+
export interface IUpdatePromoStatus {
|
|
2395
|
+
status: EPromoStatus;
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2393
2398
|
export interface IRemovePromo {
|
|
2394
2399
|
id: string;
|
|
2395
2400
|
}
|