repzo 1.0.27 → 1.0.28
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/lib/index.d.ts +652 -326
- package/lib/index.js +1475 -960
- package/lib/types/index.d.ts +4872 -4541
- package/package.json +1 -1
- package/src/types/index.ts +12 -12
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -2624,9 +2624,9 @@ export namespace Service {
|
|
|
2624
2624
|
disabled?: boolean;
|
|
2625
2625
|
};
|
|
2626
2626
|
promotions?: Promotion.Schema[];
|
|
2627
|
-
used_promotions?: { id: string; name: string };
|
|
2628
|
-
general_promotions?: { id: string; name: string };
|
|
2629
|
-
applicable_promotions?: { id: string; name: string };
|
|
2627
|
+
used_promotions?: { id: string; name: string }[];
|
|
2628
|
+
general_promotions?: { id: string; name: string }[];
|
|
2629
|
+
applicable_promotions?: { id: string; name: string }[];
|
|
2630
2630
|
modifiers_groups: ModifierGroup[];
|
|
2631
2631
|
isAdditional?: boolean;
|
|
2632
2632
|
qty: number;
|
|
@@ -2675,9 +2675,9 @@ export namespace Service {
|
|
|
2675
2675
|
disabled?: boolean;
|
|
2676
2676
|
};
|
|
2677
2677
|
promotions?: Promotion.Schema[];
|
|
2678
|
-
used_promotions?: { id: string; name: string };
|
|
2679
|
-
general_promotions?: { id: string; name: string };
|
|
2680
|
-
applicable_promotions?: { id: string; name: string };
|
|
2678
|
+
used_promotions?: { id: string; name: string }[];
|
|
2679
|
+
general_promotions?: { id: string; name: string }[];
|
|
2680
|
+
applicable_promotions?: { id: string; name: string }[];
|
|
2681
2681
|
modifiers_groups?: ModifierGroup[];
|
|
2682
2682
|
isAdditional?: boolean;
|
|
2683
2683
|
qty: number;
|
|
@@ -3223,9 +3223,9 @@ export namespace Service {
|
|
|
3223
3223
|
disabled?: boolean;
|
|
3224
3224
|
};
|
|
3225
3225
|
promotions?: Promotion.Schema[];
|
|
3226
|
-
used_promotions?: { id: string; name: string };
|
|
3227
|
-
general_promotions?: { id: string; name: string };
|
|
3228
|
-
applicable_promotions?: { id: string; name: string };
|
|
3226
|
+
used_promotions?: { id: string; name: string }[];
|
|
3227
|
+
general_promotions?: { id: string; name: string }[];
|
|
3228
|
+
applicable_promotions?: { id: string; name: string }[];
|
|
3229
3229
|
modifiers_groups?: Item.ModifierGroup[];
|
|
3230
3230
|
isAdditional?: boolean;
|
|
3231
3231
|
qty: number;
|
|
@@ -3285,9 +3285,9 @@ export namespace Service {
|
|
|
3285
3285
|
disabled?: boolean;
|
|
3286
3286
|
};
|
|
3287
3287
|
promotions?: Promotion.Schema[];
|
|
3288
|
-
used_promotions?: { id: string; name: string };
|
|
3289
|
-
general_promotions?: { id: string; name: string };
|
|
3290
|
-
applicable_promotions?: { id: string; name: string };
|
|
3288
|
+
used_promotions?: { id: string; name: string }[];
|
|
3289
|
+
general_promotions?: { id: string; name: string }[];
|
|
3290
|
+
applicable_promotions?: { id: string; name: string }[];
|
|
3291
3291
|
modifiers_groups?: Item.ModifierGroup[];
|
|
3292
3292
|
isAdditional?: boolean;
|
|
3293
3293
|
qty: number;
|