@compassdigital/sdk.typescript 4.408.0 → 4.410.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.408.0",
3
+ "version": "4.410.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -484,6 +484,7 @@ export interface GlobalMenuGroupDTO {
484
484
  price_levels?: Record<string, any>;
485
485
  show_v4?: boolean;
486
486
  menu_labels?: Record<string, any>;
487
+ menuworks_unit_ids?: string[];
487
488
  id?: string;
488
489
  created_at?: string;
489
490
  updated_at?: string;
@@ -735,6 +736,7 @@ export interface DraftMenuDTO {
735
736
  brand?: DraftBrandDTO;
736
737
  changes?: MenuChangeDTO[];
737
738
  vendor_metadata?: VendorMetadataDTO[];
739
+ attachments?: Record<string, any>;
738
740
  permissions?: Record<string, any>;
739
741
  [index: string]: any;
740
742
  }
@@ -3100,6 +3102,7 @@ export interface PostMenuV3GlobalMenuGroupBody {
3100
3102
  price_levels?: Record<string, any>;
3101
3103
  show_v4?: boolean;
3102
3104
  menu_labels?: Record<string, any>;
3105
+ menuworks_unit_ids?: string[];
3103
3106
  vendor_metadata?: VendorMetadataDTO[];
3104
3107
  permissions?: Record<string, any>;
3105
3108
  [index: string]: any;
@@ -3150,6 +3153,7 @@ export interface PatchMenuV3GlobalMenuGroupBody {
3150
3153
  price_levels?: Record<string, any>;
3151
3154
  show_v4?: boolean;
3152
3155
  menu_labels?: Record<string, any>;
3156
+ menuworks_unit_ids?: string[];
3153
3157
  id?: string;
3154
3158
  version?: number;
3155
3159
  vendor_metadata?: VendorMetadataDTO[];
@@ -3187,6 +3191,7 @@ export interface DeleteMenuV3GlobalMenuGroupResponse {
3187
3191
  price_levels?: Record<string, any>;
3188
3192
  show_v4?: boolean;
3189
3193
  menu_labels?: Record<string, any>;
3194
+ menuworks_unit_ids?: string[];
3190
3195
  id: string;
3191
3196
  created_at?: string;
3192
3197
  updated_at?: string;
@@ -3246,6 +3251,7 @@ export type PostMenuV3GlobalMenuGroupsBody = {
3246
3251
  price_levels?: Record<string, any>;
3247
3252
  show_v4?: boolean;
3248
3253
  menu_labels?: Record<string, any>;
3254
+ menuworks_unit_ids?: string[];
3249
3255
  vendor_metadata?: VendorMetadataDTO[];
3250
3256
  permissions?: Record<string, any>;
3251
3257
  [index: string]: any;
@@ -4609,6 +4615,7 @@ export interface PostMenuV3DraftMenuBody {
4609
4615
  brand?: DraftBrandDTO;
4610
4616
  changes?: MenuChangeDTO[];
4611
4617
  vendor_metadata?: VendorMetadataDTO[];
4618
+ attachments?: FileAttachmentsDTO;
4612
4619
  permissions?: Record<string, any>;
4613
4620
  [index: string]: any;
4614
4621
  }
@@ -4664,6 +4671,7 @@ export interface PatchMenuV3DraftMenuBody {
4664
4671
  brand?: DraftBrandDTO;
4665
4672
  changes?: MenuChangeDTO[];
4666
4673
  vendor_metadata?: VendorMetadataDTO[];
4674
+ attachments?: FileAttachmentsDTO;
4667
4675
  permissions?: Record<string, any>;
4668
4676
  [index: string]: any;
4669
4677
  }
@@ -4739,6 +4747,7 @@ export type PostMenuV3DraftMenusBody = {
4739
4747
  brand?: DraftBrandDTO;
4740
4748
  changes?: MenuChangeDTO[];
4741
4749
  vendor_metadata?: VendorMetadataDTO[];
4750
+ attachments?: FileAttachmentsDTO;
4742
4751
  permissions?: Record<string, any>;
4743
4752
  [index: string]: any;
4744
4753
  }[];
@@ -4881,6 +4890,7 @@ export interface PostMenuV3DraftMenuDuplicateResponse {
4881
4890
  brand?: DraftBrandDTO;
4882
4891
  changes?: MenuChangeDTO[];
4883
4892
  vendor_metadata?: VendorMetadataDTO[];
4893
+ attachments?: FileAttachmentsDTO;
4884
4894
  permissions?: Record<string, any>;
4885
4895
  [index: string]: any;
4886
4896
  }
@@ -8190,6 +8200,7 @@ export interface PostMenuV4BrandMenuBody {
8190
8200
  brand?: DraftBrandDTO;
8191
8201
  changes?: MenuChangeDTO[];
8192
8202
  vendor_metadata?: VendorMetadataDTO[];
8203
+ attachments?: FileAttachmentsDTO;
8193
8204
  permissions?: Record<string, any>;
8194
8205
  [index: string]: any;
8195
8206
  }
@@ -8214,6 +8225,7 @@ export interface PostMenuV4BrandMenuResponse {
8214
8225
  brand?: DraftBrandDTO;
8215
8226
  changes?: MenuChangeDTO[];
8216
8227
  vendor_metadata?: VendorMetadataDTO[];
8228
+ attachments?: FileAttachmentsDTO;
8217
8229
  permissions?: Record<string, any>;
8218
8230
  [index: string]: any;
8219
8231
  }
@@ -8246,6 +8258,7 @@ export interface PatchMenuV4BrandMenuBody {
8246
8258
  brand?: DraftBrandDTO;
8247
8259
  changes?: MenuChangeDTO[];
8248
8260
  vendor_metadata?: VendorMetadataDTO[];
8261
+ attachments?: FileAttachmentsDTO;
8249
8262
  permissions?: Record<string, any>;
8250
8263
  [index: string]: any;
8251
8264
  }
@@ -8270,6 +8283,7 @@ export interface PatchMenuV4BrandMenuResponse {
8270
8283
  brand?: DraftBrandDTO;
8271
8284
  changes?: MenuChangeDTO[];
8272
8285
  vendor_metadata?: VendorMetadataDTO[];
8286
+ attachments?: FileAttachmentsDTO;
8273
8287
  permissions?: Record<string, any>;
8274
8288
  [index: string]: any;
8275
8289
  }
@@ -8305,6 +8319,7 @@ export interface DeleteMenuV4BrandMenuResponse {
8305
8319
  brand?: DraftBrandDTO;
8306
8320
  changes?: MenuChangeDTO[];
8307
8321
  vendor_metadata?: VendorMetadataDTO[];
8322
+ attachments?: FileAttachmentsDTO;
8308
8323
  permissions?: Record<string, any>;
8309
8324
  [index: string]: any;
8310
8325
  }
@@ -8764,6 +8779,7 @@ export interface PostMenuV4BrandMenuDuplicateBody {
8764
8779
  brand?: DraftBrandDTO;
8765
8780
  changes?: MenuChangeDTO[];
8766
8781
  vendor_metadata?: VendorMetadataDTO[];
8782
+ attachments?: FileAttachmentsDTO;
8767
8783
  permissions?: Record<string, any>;
8768
8784
  [index: string]: any;
8769
8785
  }
@@ -8788,6 +8804,7 @@ export interface PostMenuV4BrandMenuDuplicateResponse {
8788
8804
  brand?: DraftBrandDTO;
8789
8805
  changes?: MenuChangeDTO[];
8790
8806
  vendor_metadata?: VendorMetadataDTO[];
8807
+ attachments?: FileAttachmentsDTO;
8791
8808
  permissions?: Record<string, any>;
8792
8809
  [index: string]: any;
8793
8810
  }
@@ -10593,6 +10610,7 @@ export interface PostMenuV4ScheduleMenuResponse {
10593
10610
  brand?: DraftBrandDTO;
10594
10611
  changes?: MenuChangeDTO[];
10595
10612
  vendor_metadata?: VendorMetadataDTO[];
10613
+ attachments?: FileAttachmentsDTO;
10596
10614
  permissions?: Record<string, any>;
10597
10615
  [index: string]: any;
10598
10616
  }
@@ -10629,6 +10647,7 @@ export interface PostMenuV4UnscheduleMenuResponse {
10629
10647
  brand?: DraftBrandDTO;
10630
10648
  changes?: MenuChangeDTO[];
10631
10649
  vendor_metadata?: VendorMetadataDTO[];
10650
+ attachments?: FileAttachmentsDTO;
10632
10651
  permissions?: Record<string, any>;
10633
10652
  [index: string]: any;
10634
10653
  }
@@ -10669,6 +10688,7 @@ export interface GetMenuV4MenuResponse {
10669
10688
  brand?: DraftBrandDTO;
10670
10689
  changes?: MenuChangeDTO[];
10671
10690
  vendor_metadata?: VendorMetadataDTO[];
10691
+ attachments?: FileAttachmentsDTO;
10672
10692
  permissions?: Record<string, any>;
10673
10693
  [index: string]: any;
10674
10694
  }