@compassdigital/sdk.typescript 4.338.0 → 4.340.0
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
CHANGED
|
@@ -308,7 +308,7 @@ export interface NextRewardDTO {
|
|
|
308
308
|
|
|
309
309
|
export interface RewardDiscountDTO {
|
|
310
310
|
// Discount type
|
|
311
|
-
type
|
|
311
|
+
type: 'AMOUNT_OFF' | 'PERCENT_OFF';
|
|
312
312
|
// Percentage off (if type is PERCENT_OFF)
|
|
313
313
|
percentOff?: number;
|
|
314
314
|
// Amount off (if type is AMOUNT_OFF)
|
package/src/interface/menu.ts
CHANGED
|
@@ -595,11 +595,11 @@ export interface GetOneOptionsDTO {
|
|
|
595
595
|
|
|
596
596
|
export interface LocalMenuLabelGroupDTO {
|
|
597
597
|
// Global menu group ID
|
|
598
|
-
gmg_id
|
|
598
|
+
gmg_id?: string;
|
|
599
599
|
// Global menu group name
|
|
600
|
-
gmg_name
|
|
600
|
+
gmg_name?: string;
|
|
601
601
|
// Menu labels array
|
|
602
|
-
labels
|
|
602
|
+
labels?: MenuLabelItemDTO[];
|
|
603
603
|
[index: string]: any;
|
|
604
604
|
}
|
|
605
605
|
|