@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.338.0",
3
+ "version": "4.340.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -308,7 +308,7 @@ export interface NextRewardDTO {
308
308
 
309
309
  export interface RewardDiscountDTO {
310
310
  // Discount type
311
- type?: 'AMOUNT_OFF' | 'PERCENT_OFF';
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)
@@ -595,11 +595,11 @@ export interface GetOneOptionsDTO {
595
595
 
596
596
  export interface LocalMenuLabelGroupDTO {
597
597
  // Global menu group ID
598
- gmg_id: string;
598
+ gmg_id?: string;
599
599
  // Global menu group name
600
- gmg_name: string;
600
+ gmg_name?: string;
601
601
  // Menu labels array
602
- labels: MenuLabelItemDTO[];
602
+ labels?: MenuLabelItemDTO[];
603
603
  [index: string]: any;
604
604
  }
605
605