@compassdigital/sdk.typescript 4.318.0 → 4.319.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/lib/interface/menu.d.ts +34 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +34 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -685,6 +685,7 @@ export interface DraftItemDTO {
|
|
|
685
685
|
unique_id?: number;
|
|
686
686
|
cpg_item_id?: string;
|
|
687
687
|
price_levels?: Record<string, any>;
|
|
688
|
+
menu_labels?: Record<string, any>;
|
|
688
689
|
translation?: Record<string, any>;
|
|
689
690
|
applied_diff_snapshot?: Record<string, any>;
|
|
690
691
|
version?: number;
|
|
@@ -806,6 +807,7 @@ export interface DraftModifierDTO {
|
|
|
806
807
|
tags?: string[];
|
|
807
808
|
unique_id?: number;
|
|
808
809
|
price_levels?: Record<string, any>;
|
|
810
|
+
menu_labels?: Record<string, any>;
|
|
809
811
|
translation?: Record<string, any>;
|
|
810
812
|
applied_diff_snapshot?: Record<string, any>;
|
|
811
813
|
version?: number;
|
|
@@ -1213,6 +1215,7 @@ export interface PublishedItemDTO {
|
|
|
1213
1215
|
tax_jwo_code?: string;
|
|
1214
1216
|
cpg_item_id?: string;
|
|
1215
1217
|
price_levels?: Record<string, any>;
|
|
1218
|
+
menu_labels?: Record<string, any>;
|
|
1216
1219
|
translation?: Record<string, any>;
|
|
1217
1220
|
version?: number;
|
|
1218
1221
|
permissions?: Record<string, any>;
|
|
@@ -1298,6 +1301,7 @@ export interface PublishedModifierDTO {
|
|
|
1298
1301
|
tax_tag_code?: string;
|
|
1299
1302
|
tags?: string[];
|
|
1300
1303
|
price_levels?: Record<string, any>;
|
|
1304
|
+
menu_labels?: Record<string, any>;
|
|
1301
1305
|
translation?: Record<string, any>;
|
|
1302
1306
|
version?: number;
|
|
1303
1307
|
permissions?: Record<string, any>;
|
|
@@ -1552,6 +1556,7 @@ export interface DraftItemEntityDTO {
|
|
|
1552
1556
|
unique_id?: number;
|
|
1553
1557
|
cpg_item_id?: string;
|
|
1554
1558
|
price_levels?: Record<string, any>;
|
|
1559
|
+
menu_labels?: Record<string, any>;
|
|
1555
1560
|
translation?: Record<string, any>;
|
|
1556
1561
|
applied_diff_snapshot?: Record<string, any>;
|
|
1557
1562
|
version?: number;
|
|
@@ -1603,6 +1608,7 @@ export interface DraftModifierEntityDTO {
|
|
|
1603
1608
|
tags?: string[];
|
|
1604
1609
|
unique_id?: number;
|
|
1605
1610
|
price_levels?: Record<string, any>;
|
|
1611
|
+
menu_labels?: Record<string, any>;
|
|
1606
1612
|
translation?: Record<string, any>;
|
|
1607
1613
|
applied_diff_snapshot?: Record<string, any>;
|
|
1608
1614
|
version?: number;
|
|
@@ -1743,6 +1749,7 @@ export interface PartialItemDTO {
|
|
|
1743
1749
|
unique_id?: number;
|
|
1744
1750
|
cpg_item_id?: string;
|
|
1745
1751
|
price_levels?: Record<string, any>;
|
|
1752
|
+
menu_labels?: Record<string, any>;
|
|
1746
1753
|
translation?: Record<string, any>;
|
|
1747
1754
|
applied_diff_snapshot?: Record<string, any>;
|
|
1748
1755
|
brand?: DraftBrandDTO;
|
|
@@ -1785,6 +1792,7 @@ export interface PartialModifierDTO {
|
|
|
1785
1792
|
tags?: string[];
|
|
1786
1793
|
unique_id?: number;
|
|
1787
1794
|
price_levels?: Record<string, any>;
|
|
1795
|
+
menu_labels?: Record<string, any>;
|
|
1788
1796
|
translation?: Record<string, any>;
|
|
1789
1797
|
applied_diff_snapshot?: Record<string, any>;
|
|
1790
1798
|
brand?: DraftBrandDTO;
|
|
@@ -4160,6 +4168,7 @@ export interface PostMenuV3DraftItemBody {
|
|
|
4160
4168
|
unique_id?: number;
|
|
4161
4169
|
cpg_item_id?: string;
|
|
4162
4170
|
price_levels?: Record<string, any>;
|
|
4171
|
+
menu_labels?: Record<string, any>;
|
|
4163
4172
|
translation?: Record<string, any>;
|
|
4164
4173
|
applied_diff_snapshot?: Record<string, any>;
|
|
4165
4174
|
brand?: DraftBrandDTO;
|
|
@@ -4224,6 +4233,7 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
4224
4233
|
unique_id?: number;
|
|
4225
4234
|
cpg_item_id?: string;
|
|
4226
4235
|
price_levels?: Record<string, any>;
|
|
4236
|
+
menu_labels?: Record<string, any>;
|
|
4227
4237
|
translation?: Record<string, any>;
|
|
4228
4238
|
applied_diff_snapshot?: Record<string, any>;
|
|
4229
4239
|
version?: number;
|
|
@@ -4313,6 +4323,7 @@ export type PostMenuV3DraftItemsBody = {
|
|
|
4313
4323
|
unique_id?: number;
|
|
4314
4324
|
cpg_item_id?: string;
|
|
4315
4325
|
price_levels?: Record<string, any>;
|
|
4326
|
+
menu_labels?: Record<string, any>;
|
|
4316
4327
|
translation?: Record<string, any>;
|
|
4317
4328
|
applied_diff_snapshot?: Record<string, any>;
|
|
4318
4329
|
brand?: DraftBrandDTO;
|
|
@@ -4396,6 +4407,7 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
|
4396
4407
|
unique_id?: number;
|
|
4397
4408
|
cpg_item_id?: string;
|
|
4398
4409
|
price_levels?: Record<string, any>;
|
|
4410
|
+
menu_labels?: Record<string, any>;
|
|
4399
4411
|
translation?: Record<string, any>;
|
|
4400
4412
|
applied_diff_snapshot?: Record<string, any>;
|
|
4401
4413
|
brand?: DraftBrandDTO;
|
|
@@ -5136,6 +5148,7 @@ export interface PostMenuV3DraftModifierBody {
|
|
|
5136
5148
|
tags?: string[];
|
|
5137
5149
|
unique_id?: number;
|
|
5138
5150
|
price_levels?: Record<string, any>;
|
|
5151
|
+
menu_labels?: Record<string, any>;
|
|
5139
5152
|
translation?: Record<string, any>;
|
|
5140
5153
|
applied_diff_snapshot?: Record<string, any>;
|
|
5141
5154
|
brand?: DraftBrandDTO;
|
|
@@ -5196,6 +5209,7 @@ export interface PatchMenuV3DraftModifierBody {
|
|
|
5196
5209
|
tags?: string[];
|
|
5197
5210
|
unique_id?: number;
|
|
5198
5211
|
price_levels?: Record<string, any>;
|
|
5212
|
+
menu_labels?: Record<string, any>;
|
|
5199
5213
|
translation?: Record<string, any>;
|
|
5200
5214
|
applied_diff_snapshot?: Record<string, any>;
|
|
5201
5215
|
version?: number;
|
|
@@ -5281,6 +5295,7 @@ export type PostMenuV3DraftModifiersBody = {
|
|
|
5281
5295
|
tags?: string[];
|
|
5282
5296
|
unique_id?: number;
|
|
5283
5297
|
price_levels?: Record<string, any>;
|
|
5298
|
+
menu_labels?: Record<string, any>;
|
|
5284
5299
|
translation?: Record<string, any>;
|
|
5285
5300
|
applied_diff_snapshot?: Record<string, any>;
|
|
5286
5301
|
brand?: DraftBrandDTO;
|
|
@@ -5360,6 +5375,7 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
|
|
|
5360
5375
|
tags?: string[];
|
|
5361
5376
|
unique_id?: number;
|
|
5362
5377
|
price_levels?: Record<string, any>;
|
|
5378
|
+
menu_labels?: Record<string, any>;
|
|
5363
5379
|
translation?: Record<string, any>;
|
|
5364
5380
|
applied_diff_snapshot?: Record<string, any>;
|
|
5365
5381
|
brand?: DraftBrandDTO;
|
|
@@ -6457,6 +6473,7 @@ export interface PostMenuV4ItemBody {
|
|
|
6457
6473
|
unique_id?: number;
|
|
6458
6474
|
cpg_item_id?: string;
|
|
6459
6475
|
price_levels?: Record<string, any>;
|
|
6476
|
+
menu_labels?: Record<string, any>;
|
|
6460
6477
|
translation?: Record<string, any>;
|
|
6461
6478
|
base_item_id?: string;
|
|
6462
6479
|
applied_diff_snapshot?: Record<string, any>;
|
|
@@ -6507,6 +6524,7 @@ export interface PostMenuV4ItemResponse {
|
|
|
6507
6524
|
unique_id?: number;
|
|
6508
6525
|
cpg_item_id?: string;
|
|
6509
6526
|
price_levels?: Record<string, any>;
|
|
6527
|
+
menu_labels?: Record<string, any>;
|
|
6510
6528
|
translation?: Record<string, any>;
|
|
6511
6529
|
applied_diff_snapshot?: Record<string, any>;
|
|
6512
6530
|
version?: number;
|
|
@@ -6556,6 +6574,7 @@ export type PostMenuV4ItemsBulkCreateBody = {
|
|
|
6556
6574
|
unique_id?: number;
|
|
6557
6575
|
cpg_item_id?: string;
|
|
6558
6576
|
price_levels?: Record<string, any>;
|
|
6577
|
+
menu_labels?: Record<string, any>;
|
|
6559
6578
|
translation?: Record<string, any>;
|
|
6560
6579
|
base_item_id?: string;
|
|
6561
6580
|
applied_diff_snapshot?: Record<string, any>;
|
|
@@ -6620,6 +6639,7 @@ export interface GetMenuV4ItemResponse {
|
|
|
6620
6639
|
unique_id?: number;
|
|
6621
6640
|
cpg_item_id?: string;
|
|
6622
6641
|
price_levels?: Record<string, any>;
|
|
6642
|
+
menu_labels?: Record<string, any>;
|
|
6623
6643
|
translation?: Record<string, any>;
|
|
6624
6644
|
applied_diff_snapshot?: Record<string, any>;
|
|
6625
6645
|
version?: number;
|
|
@@ -6672,6 +6692,7 @@ export interface PatchMenuV4ItemBody {
|
|
|
6672
6692
|
unique_id?: number;
|
|
6673
6693
|
cpg_item_id?: string;
|
|
6674
6694
|
price_levels?: Record<string, any>;
|
|
6695
|
+
menu_labels?: Record<string, any>;
|
|
6675
6696
|
translation?: Record<string, any>;
|
|
6676
6697
|
applied_diff_snapshot?: Record<string, any>;
|
|
6677
6698
|
brand?: DraftBrandDTO;
|
|
@@ -6721,6 +6742,7 @@ export interface PatchMenuV4ItemResponse {
|
|
|
6721
6742
|
unique_id?: number;
|
|
6722
6743
|
cpg_item_id?: string;
|
|
6723
6744
|
price_levels?: Record<string, any>;
|
|
6745
|
+
menu_labels?: Record<string, any>;
|
|
6724
6746
|
translation?: Record<string, any>;
|
|
6725
6747
|
applied_diff_snapshot?: Record<string, any>;
|
|
6726
6748
|
version?: number;
|
|
@@ -6777,6 +6799,7 @@ export interface DeleteMenuV4ItemResponse {
|
|
|
6777
6799
|
unique_id?: number;
|
|
6778
6800
|
cpg_item_id?: string;
|
|
6779
6801
|
price_levels?: Record<string, any>;
|
|
6802
|
+
menu_labels?: Record<string, any>;
|
|
6780
6803
|
translation?: Record<string, any>;
|
|
6781
6804
|
applied_diff_snapshot?: Record<string, any>;
|
|
6782
6805
|
version?: number;
|
|
@@ -6827,6 +6850,7 @@ export interface PatchMenuV4ItemsBulkUpdateBody {
|
|
|
6827
6850
|
unique_id?: number;
|
|
6828
6851
|
cpg_item_id?: string;
|
|
6829
6852
|
price_levels?: Record<string, any>;
|
|
6853
|
+
menu_labels?: Record<string, any>;
|
|
6830
6854
|
translation?: Record<string, any>;
|
|
6831
6855
|
applied_diff_snapshot?: Record<string, any>;
|
|
6832
6856
|
brand?: DraftBrandDTO;
|
|
@@ -6882,6 +6906,7 @@ export interface PatchMenuV4ItemsBulkPriceUpdateBody {
|
|
|
6882
6906
|
unique_id?: number;
|
|
6883
6907
|
cpg_item_id?: string;
|
|
6884
6908
|
price_levels?: Record<string, any>;
|
|
6909
|
+
menu_labels?: Record<string, any>;
|
|
6885
6910
|
translation?: Record<string, any>;
|
|
6886
6911
|
applied_diff_snapshot?: Record<string, any>;
|
|
6887
6912
|
brand?: DraftBrandDTO;
|
|
@@ -6945,6 +6970,7 @@ export interface PostMenuV4ItemDuplicateResponse {
|
|
|
6945
6970
|
unique_id?: number;
|
|
6946
6971
|
cpg_item_id?: string;
|
|
6947
6972
|
price_levels?: Record<string, any>;
|
|
6973
|
+
menu_labels?: Record<string, any>;
|
|
6948
6974
|
translation?: Record<string, any>;
|
|
6949
6975
|
applied_diff_snapshot?: Record<string, any>;
|
|
6950
6976
|
version?: number;
|
|
@@ -7060,6 +7086,7 @@ export interface PostMenuV4ModifierBody {
|
|
|
7060
7086
|
tags?: string[];
|
|
7061
7087
|
unique_id?: number;
|
|
7062
7088
|
price_levels?: Record<string, any>;
|
|
7089
|
+
menu_labels?: Record<string, any>;
|
|
7063
7090
|
translation?: Record<string, any>;
|
|
7064
7091
|
applied_diff_snapshot?: Record<string, any>;
|
|
7065
7092
|
brand?: DraftBrandDTO;
|
|
@@ -7105,6 +7132,7 @@ export interface PostMenuV4ModifierResponse {
|
|
|
7105
7132
|
tags?: string[];
|
|
7106
7133
|
unique_id?: number;
|
|
7107
7134
|
price_levels?: Record<string, any>;
|
|
7135
|
+
menu_labels?: Record<string, any>;
|
|
7108
7136
|
translation?: Record<string, any>;
|
|
7109
7137
|
applied_diff_snapshot?: Record<string, any>;
|
|
7110
7138
|
version?: number;
|
|
@@ -7161,6 +7189,7 @@ export interface GetMenuV4ModifierResponse {
|
|
|
7161
7189
|
tags?: string[];
|
|
7162
7190
|
unique_id?: number;
|
|
7163
7191
|
price_levels?: Record<string, any>;
|
|
7192
|
+
menu_labels?: Record<string, any>;
|
|
7164
7193
|
translation?: Record<string, any>;
|
|
7165
7194
|
applied_diff_snapshot?: Record<string, any>;
|
|
7166
7195
|
version?: number;
|
|
@@ -7208,6 +7237,7 @@ export interface PatchMenuV4ModifierBody {
|
|
|
7208
7237
|
tags?: string[];
|
|
7209
7238
|
unique_id?: number;
|
|
7210
7239
|
price_levels?: Record<string, any>;
|
|
7240
|
+
menu_labels?: Record<string, any>;
|
|
7211
7241
|
translation?: Record<string, any>;
|
|
7212
7242
|
applied_diff_snapshot?: Record<string, any>;
|
|
7213
7243
|
brand?: DraftBrandDTO;
|
|
@@ -7253,6 +7283,7 @@ export interface PatchMenuV4ModifierResponse {
|
|
|
7253
7283
|
tags?: string[];
|
|
7254
7284
|
unique_id?: number;
|
|
7255
7285
|
price_levels?: Record<string, any>;
|
|
7286
|
+
menu_labels?: Record<string, any>;
|
|
7256
7287
|
translation?: Record<string, any>;
|
|
7257
7288
|
applied_diff_snapshot?: Record<string, any>;
|
|
7258
7289
|
version?: number;
|
|
@@ -7305,6 +7336,7 @@ export interface DeleteMenuV4ModifierResponse {
|
|
|
7305
7336
|
tags?: string[];
|
|
7306
7337
|
unique_id?: number;
|
|
7307
7338
|
price_levels?: Record<string, any>;
|
|
7339
|
+
menu_labels?: Record<string, any>;
|
|
7308
7340
|
translation?: Record<string, any>;
|
|
7309
7341
|
applied_diff_snapshot?: Record<string, any>;
|
|
7310
7342
|
version?: number;
|
|
@@ -7361,6 +7393,7 @@ export interface PostMenuV4ModifierDuplicateResponse {
|
|
|
7361
7393
|
tags?: string[];
|
|
7362
7394
|
unique_id?: number;
|
|
7363
7395
|
price_levels?: Record<string, any>;
|
|
7396
|
+
menu_labels?: Record<string, any>;
|
|
7364
7397
|
translation?: Record<string, any>;
|
|
7365
7398
|
applied_diff_snapshot?: Record<string, any>;
|
|
7366
7399
|
version?: number;
|
|
@@ -7408,6 +7441,7 @@ export interface PatchMenuV4ModifiersBulkUpdateBody {
|
|
|
7408
7441
|
tags?: string[];
|
|
7409
7442
|
unique_id?: number;
|
|
7410
7443
|
price_levels?: Record<string, any>;
|
|
7444
|
+
menu_labels?: Record<string, any>;
|
|
7411
7445
|
translation?: Record<string, any>;
|
|
7412
7446
|
applied_diff_snapshot?: Record<string, any>;
|
|
7413
7447
|
brand?: DraftBrandDTO;
|