repzo 1.0.28 → 1.0.29
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/types/index.d.ts +12 -0
- package/package.json +1 -1
- package/src/types/index.ts +12 -12
package/lib/types/index.d.ts
CHANGED
|
@@ -2583,14 +2583,17 @@ export declare namespace Service {
|
|
|
2583
2583
|
used_promotions?: {
|
|
2584
2584
|
id: string;
|
|
2585
2585
|
name: string;
|
|
2586
|
+
ref?: string;
|
|
2586
2587
|
}[];
|
|
2587
2588
|
general_promotions?: {
|
|
2588
2589
|
id: string;
|
|
2589
2590
|
name: string;
|
|
2591
|
+
ref?: string;
|
|
2590
2592
|
}[];
|
|
2591
2593
|
applicable_promotions?: {
|
|
2592
2594
|
id: string;
|
|
2593
2595
|
name: string;
|
|
2596
|
+
ref?: string;
|
|
2594
2597
|
}[];
|
|
2595
2598
|
modifiers_groups: ModifierGroup[];
|
|
2596
2599
|
isAdditional?: boolean;
|
|
@@ -2643,14 +2646,17 @@ export declare namespace Service {
|
|
|
2643
2646
|
used_promotions?: {
|
|
2644
2647
|
id: string;
|
|
2645
2648
|
name: string;
|
|
2649
|
+
ref?: string;
|
|
2646
2650
|
}[];
|
|
2647
2651
|
general_promotions?: {
|
|
2648
2652
|
id: string;
|
|
2649
2653
|
name: string;
|
|
2654
|
+
ref?: string;
|
|
2650
2655
|
}[];
|
|
2651
2656
|
applicable_promotions?: {
|
|
2652
2657
|
id: string;
|
|
2653
2658
|
name: string;
|
|
2659
|
+
ref?: string;
|
|
2654
2660
|
}[];
|
|
2655
2661
|
modifiers_groups?: ModifierGroup[];
|
|
2656
2662
|
isAdditional?: boolean;
|
|
@@ -3142,14 +3148,17 @@ export declare namespace Service {
|
|
|
3142
3148
|
used_promotions?: {
|
|
3143
3149
|
id: string;
|
|
3144
3150
|
name: string;
|
|
3151
|
+
ref?: string;
|
|
3145
3152
|
}[];
|
|
3146
3153
|
general_promotions?: {
|
|
3147
3154
|
id: string;
|
|
3148
3155
|
name: string;
|
|
3156
|
+
ref?: string;
|
|
3149
3157
|
}[];
|
|
3150
3158
|
applicable_promotions?: {
|
|
3151
3159
|
id: string;
|
|
3152
3160
|
name: string;
|
|
3161
|
+
ref?: string;
|
|
3153
3162
|
}[];
|
|
3154
3163
|
modifiers_groups?: Item.ModifierGroup[];
|
|
3155
3164
|
isAdditional?: boolean;
|
|
@@ -3213,14 +3222,17 @@ export declare namespace Service {
|
|
|
3213
3222
|
used_promotions?: {
|
|
3214
3223
|
id: string;
|
|
3215
3224
|
name: string;
|
|
3225
|
+
ref?: string;
|
|
3216
3226
|
}[];
|
|
3217
3227
|
general_promotions?: {
|
|
3218
3228
|
id: string;
|
|
3219
3229
|
name: string;
|
|
3230
|
+
ref?: string;
|
|
3220
3231
|
}[];
|
|
3221
3232
|
applicable_promotions?: {
|
|
3222
3233
|
id: string;
|
|
3223
3234
|
name: string;
|
|
3235
|
+
ref?: string;
|
|
3224
3236
|
}[];
|
|
3225
3237
|
modifiers_groups?: Item.ModifierGroup[];
|
|
3226
3238
|
isAdditional?: boolean;
|
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; ref?: string }[];
|
|
2628
|
+
general_promotions?: { id: string; name: string; ref?: string }[];
|
|
2629
|
+
applicable_promotions?: { id: string; name: string; ref?: 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; ref?: string }[];
|
|
2679
|
+
general_promotions?: { id: string; name: string; ref?: string }[];
|
|
2680
|
+
applicable_promotions?: { id: string; name: string; ref?: 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; ref?: string }[];
|
|
3227
|
+
general_promotions?: { id: string; name: string; ref?: string }[];
|
|
3228
|
+
applicable_promotions?: { id: string; name: string; ref?: 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; ref?: string }[];
|
|
3289
|
+
general_promotions?: { id: string; name: string; ref?: string }[];
|
|
3290
|
+
applicable_promotions?: { id: string; name: string; ref?: string }[];
|
|
3291
3291
|
modifiers_groups?: Item.ModifierGroup[];
|
|
3292
3292
|
isAdditional?: boolean;
|
|
3293
3293
|
qty: number;
|