@compassdigital/sdk.typescript 4.142.0 → 4.144.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/index.d.ts +10 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/catalog.d.ts +99 -8
- package/lib/interface/catalog.d.ts.map +1 -1
- package/lib/interface/consumer.d.ts +3 -6
- package/lib/interface/consumer.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +98 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/timeslots.d.ts +34 -0
- package/lib/interface/timeslots.d.ts.map +1 -0
- package/lib/interface/timeslots.js +5 -0
- package/lib/interface/timeslots.js.map +1 -0
- package/manifest.json +7 -0
- package/package.json +1 -1
- package/src/index.ts +24 -0
- package/src/interface/catalog.ts +109 -8
- package/src/interface/consumer.ts +3 -7
- package/src/interface/menu.ts +100 -0
- package/src/interface/timeslots.ts +62 -0
package/src/interface/menu.ts
CHANGED
|
@@ -454,6 +454,7 @@ export interface DraftBrandDTO {
|
|
|
454
454
|
auto_push_to_local?: boolean;
|
|
455
455
|
frictionless_partner?: string;
|
|
456
456
|
meta?: BrandMeta;
|
|
457
|
+
supported_languages?: SupportedLanguages;
|
|
457
458
|
applied_diff_snapshot?: Record<string, any>;
|
|
458
459
|
version?: number;
|
|
459
460
|
permissions?: Record<string, any>;
|
|
@@ -464,6 +465,12 @@ export interface BrandMeta {
|
|
|
464
465
|
jde_category?: string;
|
|
465
466
|
}
|
|
466
467
|
|
|
468
|
+
export interface SupportedLanguages {
|
|
469
|
+
fr?: string;
|
|
470
|
+
kvi?: string;
|
|
471
|
+
es?: string;
|
|
472
|
+
}
|
|
473
|
+
|
|
467
474
|
export interface PublishedBrandDTO {
|
|
468
475
|
published_catalog_id?: number;
|
|
469
476
|
id?: string;
|
|
@@ -482,6 +489,7 @@ export interface PublishedBrandDTO {
|
|
|
482
489
|
auto_push_to_local?: boolean;
|
|
483
490
|
frictionless_partner?: string;
|
|
484
491
|
meta?: Record<string, any>;
|
|
492
|
+
supported_languages?: Record<string, any>;
|
|
485
493
|
version?: number;
|
|
486
494
|
permissions?: Record<string, any>;
|
|
487
495
|
[index: string]: any;
|
|
@@ -641,6 +649,7 @@ export interface DraftMenuDTO {
|
|
|
641
649
|
parent_id?: string;
|
|
642
650
|
name?: string;
|
|
643
651
|
brand_id?: string;
|
|
652
|
+
translation?: NameTranslation;
|
|
644
653
|
applied_diff_snapshot?: Record<string, any>;
|
|
645
654
|
version?: number;
|
|
646
655
|
brand?: DraftBrandDTO;
|
|
@@ -650,6 +659,10 @@ export interface DraftMenuDTO {
|
|
|
650
659
|
[index: string]: any;
|
|
651
660
|
}
|
|
652
661
|
|
|
662
|
+
export interface NameTranslation {
|
|
663
|
+
name?: SupportedLanguages;
|
|
664
|
+
}
|
|
665
|
+
|
|
653
666
|
export interface DraftCategoryDTO {
|
|
654
667
|
parent?: Record<string, any>;
|
|
655
668
|
children?: Record<string, any>[];
|
|
@@ -664,6 +677,7 @@ export interface DraftCategoryDTO {
|
|
|
664
677
|
is_active?: boolean;
|
|
665
678
|
brand_id?: string;
|
|
666
679
|
menu_id?: string;
|
|
680
|
+
translation?: Record<string, any>;
|
|
667
681
|
applied_diff_snapshot?: Record<string, any>;
|
|
668
682
|
version?: number;
|
|
669
683
|
menu?: Record<string, any>;
|
|
@@ -736,6 +750,7 @@ export interface DraftItemDTO {
|
|
|
736
750
|
unique_id?: number;
|
|
737
751
|
cpg_item_id?: string;
|
|
738
752
|
price_levels?: Record<string, any>;
|
|
753
|
+
translation?: Record<string, any>;
|
|
739
754
|
applied_diff_snapshot?: Record<string, any>;
|
|
740
755
|
version?: number;
|
|
741
756
|
brand?: DraftBrandDTO;
|
|
@@ -792,6 +807,7 @@ export interface DraftModifierGroupDTO {
|
|
|
792
807
|
sizing?: string;
|
|
793
808
|
is_out_of_stock?: boolean;
|
|
794
809
|
is_incremental?: boolean;
|
|
810
|
+
translation?: Record<string, any>;
|
|
795
811
|
applied_diff_snapshot?: Record<string, any>;
|
|
796
812
|
version?: number;
|
|
797
813
|
brand?: DraftBrandDTO;
|
|
@@ -858,6 +874,7 @@ export interface DraftModifierDTO {
|
|
|
858
874
|
tags?: string[];
|
|
859
875
|
unique_id?: number;
|
|
860
876
|
price_levels?: Record<string, any>;
|
|
877
|
+
translation?: Record<string, any>;
|
|
861
878
|
applied_diff_snapshot?: Record<string, any>;
|
|
862
879
|
version?: number;
|
|
863
880
|
brand?: DraftBrandDTO;
|
|
@@ -1224,6 +1241,7 @@ export interface PublishedMenuDTO {
|
|
|
1224
1241
|
parent_id?: string;
|
|
1225
1242
|
name?: string;
|
|
1226
1243
|
brand_id?: string;
|
|
1244
|
+
translation?: NameTranslation;
|
|
1227
1245
|
version?: number;
|
|
1228
1246
|
permissions?: Record<string, any>;
|
|
1229
1247
|
[index: string]: any;
|
|
@@ -1241,6 +1259,7 @@ export interface PublishedCategoryDTO {
|
|
|
1241
1259
|
is_active?: boolean;
|
|
1242
1260
|
brand_id?: string;
|
|
1243
1261
|
menu_id?: string;
|
|
1262
|
+
translation?: NameTranslation;
|
|
1244
1263
|
version?: number;
|
|
1245
1264
|
permissions?: Record<string, any>;
|
|
1246
1265
|
[index: string]: any;
|
|
@@ -1290,6 +1309,7 @@ export interface PublishedItemDTO {
|
|
|
1290
1309
|
tax_jwo_code?: string;
|
|
1291
1310
|
cpg_item_id?: string;
|
|
1292
1311
|
price_levels?: Record<string, any>;
|
|
1312
|
+
translation?: Record<string, any>;
|
|
1293
1313
|
version?: number;
|
|
1294
1314
|
permissions?: Record<string, any>;
|
|
1295
1315
|
[index: string]: any;
|
|
@@ -1327,6 +1347,7 @@ export interface PublishedModifierGroupDTO {
|
|
|
1327
1347
|
sizing?: string;
|
|
1328
1348
|
is_out_of_stock?: boolean;
|
|
1329
1349
|
is_incremental?: boolean;
|
|
1350
|
+
translation?: NameTranslation;
|
|
1330
1351
|
version?: number;
|
|
1331
1352
|
permissions?: Record<string, any>;
|
|
1332
1353
|
[index: string]: any;
|
|
@@ -1376,6 +1397,7 @@ export interface PublishedModifierDTO {
|
|
|
1376
1397
|
tax_tag_code?: string;
|
|
1377
1398
|
tags?: string[];
|
|
1378
1399
|
price_levels?: Record<string, any>;
|
|
1400
|
+
translation?: Record<string, any>;
|
|
1379
1401
|
version?: number;
|
|
1380
1402
|
permissions?: Record<string, any>;
|
|
1381
1403
|
[index: string]: any;
|
|
@@ -1658,6 +1680,7 @@ export interface DraftItemEntityDTO {
|
|
|
1658
1680
|
unique_id?: number;
|
|
1659
1681
|
cpg_item_id?: string;
|
|
1660
1682
|
price_levels?: Record<string, any>;
|
|
1683
|
+
translation?: Record<string, any>;
|
|
1661
1684
|
applied_diff_snapshot?: Record<string, any>;
|
|
1662
1685
|
version?: number;
|
|
1663
1686
|
brand?: DraftBrandDTO;
|
|
@@ -1709,6 +1732,7 @@ export interface DraftModifierEntityDTO {
|
|
|
1709
1732
|
tags?: string[];
|
|
1710
1733
|
unique_id?: number;
|
|
1711
1734
|
price_levels?: Record<string, any>;
|
|
1735
|
+
translation?: Record<string, any>;
|
|
1712
1736
|
applied_diff_snapshot?: Record<string, any>;
|
|
1713
1737
|
version?: number;
|
|
1714
1738
|
brand?: DraftBrandDTO;
|
|
@@ -1786,6 +1810,7 @@ export interface DraftModifierGroupEntityDTO {
|
|
|
1786
1810
|
sizing?: string;
|
|
1787
1811
|
is_out_of_stock?: boolean;
|
|
1788
1812
|
is_incremental?: boolean;
|
|
1813
|
+
translation?: NameTranslation;
|
|
1789
1814
|
applied_diff_snapshot?: Record<string, any>;
|
|
1790
1815
|
version?: number;
|
|
1791
1816
|
brand?: DraftBrandDTO;
|
|
@@ -3093,6 +3118,7 @@ export interface PostMenuV3DraftBrandBody {
|
|
|
3093
3118
|
auto_push_to_local?: boolean;
|
|
3094
3119
|
frictionless_partner?: string;
|
|
3095
3120
|
meta?: BrandMeta;
|
|
3121
|
+
supported_languages?: SupportedLanguages;
|
|
3096
3122
|
applied_diff_snapshot?: Record<string, any>;
|
|
3097
3123
|
changes?: BrandChangeDTO[];
|
|
3098
3124
|
local_menu_group?: LocalMenuGroupDTO;
|
|
@@ -3166,6 +3192,7 @@ export interface PatchMenuV3DraftBrandBody {
|
|
|
3166
3192
|
auto_push_to_local?: boolean;
|
|
3167
3193
|
frictionless_partner?: string;
|
|
3168
3194
|
meta?: BrandMeta;
|
|
3195
|
+
supported_languages?: SupportedLanguages;
|
|
3169
3196
|
applied_diff_snapshot?: Record<string, any>;
|
|
3170
3197
|
version?: number;
|
|
3171
3198
|
changes?: BrandChangeDTO[];
|
|
@@ -3261,6 +3288,7 @@ export type PostMenuV3DraftBrandsBody = {
|
|
|
3261
3288
|
auto_push_to_local?: boolean;
|
|
3262
3289
|
frictionless_partner?: string;
|
|
3263
3290
|
meta?: BrandMeta;
|
|
3291
|
+
supported_languages?: SupportedLanguages;
|
|
3264
3292
|
applied_diff_snapshot?: Record<string, any>;
|
|
3265
3293
|
changes?: BrandChangeDTO[];
|
|
3266
3294
|
local_menu_group?: LocalMenuGroupDTO;
|
|
@@ -3788,6 +3816,7 @@ export interface PostMenuV3BrandBody {
|
|
|
3788
3816
|
auto_push_to_local?: boolean;
|
|
3789
3817
|
frictionless_partner?: string;
|
|
3790
3818
|
meta?: BrandMeta;
|
|
3819
|
+
supported_languages?: SupportedLanguages;
|
|
3791
3820
|
local_menu_group?: LocalMenuGroupDTO;
|
|
3792
3821
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
3793
3822
|
attachments?: FileAttachmentsDTO;
|
|
@@ -3859,6 +3888,7 @@ export interface PatchMenuV3BrandBody {
|
|
|
3859
3888
|
auto_push_to_local?: boolean;
|
|
3860
3889
|
frictionless_partner?: string;
|
|
3861
3890
|
meta?: BrandMeta;
|
|
3891
|
+
supported_languages?: SupportedLanguages;
|
|
3862
3892
|
version?: number;
|
|
3863
3893
|
local_menu_group?: LocalMenuGroupDTO;
|
|
3864
3894
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
@@ -3954,6 +3984,7 @@ export type PostMenuV3BrandsBody = {
|
|
|
3954
3984
|
auto_push_to_local?: boolean;
|
|
3955
3985
|
frictionless_partner?: string;
|
|
3956
3986
|
meta?: BrandMeta;
|
|
3987
|
+
supported_languages?: SupportedLanguages;
|
|
3957
3988
|
local_menu_group?: LocalMenuGroupDTO;
|
|
3958
3989
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
3959
3990
|
attachments?: FileAttachmentsDTO;
|
|
@@ -4167,6 +4198,7 @@ export interface PostMenuV3DraftMenuBody {
|
|
|
4167
4198
|
parent_id?: string;
|
|
4168
4199
|
name: string;
|
|
4169
4200
|
brand_id: string;
|
|
4201
|
+
translation?: NameTranslation;
|
|
4170
4202
|
applied_diff_snapshot?: Record<string, any>;
|
|
4171
4203
|
brand?: DraftBrandDTO;
|
|
4172
4204
|
changes?: MenuChangeDTO[];
|
|
@@ -4220,6 +4252,7 @@ export interface PatchMenuV3DraftMenuBody {
|
|
|
4220
4252
|
parent_id?: string;
|
|
4221
4253
|
name?: string;
|
|
4222
4254
|
brand_id?: string;
|
|
4255
|
+
translation?: NameTranslation;
|
|
4223
4256
|
applied_diff_snapshot?: Record<string, any>;
|
|
4224
4257
|
version?: number;
|
|
4225
4258
|
brand?: DraftBrandDTO;
|
|
@@ -4295,6 +4328,7 @@ export type PostMenuV3DraftMenusBody = {
|
|
|
4295
4328
|
parent_id?: string;
|
|
4296
4329
|
name: string;
|
|
4297
4330
|
brand_id: string;
|
|
4331
|
+
translation?: NameTranslation;
|
|
4298
4332
|
applied_diff_snapshot?: Record<string, any>;
|
|
4299
4333
|
brand?: DraftBrandDTO;
|
|
4300
4334
|
changes?: MenuChangeDTO[];
|
|
@@ -4434,6 +4468,7 @@ export interface PostMenuV3DraftMenuDuplicateResponse {
|
|
|
4434
4468
|
parent_id?: string;
|
|
4435
4469
|
name: string;
|
|
4436
4470
|
brand_id: string;
|
|
4471
|
+
translation?: NameTranslation;
|
|
4437
4472
|
applied_diff_snapshot?: Record<string, any>;
|
|
4438
4473
|
version?: number;
|
|
4439
4474
|
brand?: DraftBrandDTO;
|
|
@@ -4617,6 +4652,7 @@ export interface PostMenuV3DraftCategoryBody {
|
|
|
4617
4652
|
is_active?: boolean;
|
|
4618
4653
|
brand_id: string;
|
|
4619
4654
|
menu_id: string;
|
|
4655
|
+
translation?: NameTranslation;
|
|
4620
4656
|
applied_diff_snapshot?: Record<string, any>;
|
|
4621
4657
|
menu?: DraftMenuDTO;
|
|
4622
4658
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -4673,6 +4709,7 @@ export interface PatchMenuV3DraftCategoryBody {
|
|
|
4673
4709
|
is_active?: boolean;
|
|
4674
4710
|
brand_id?: string;
|
|
4675
4711
|
menu_id?: string;
|
|
4712
|
+
translation?: NameTranslation;
|
|
4676
4713
|
applied_diff_snapshot?: Record<string, any>;
|
|
4677
4714
|
version?: number;
|
|
4678
4715
|
menu?: DraftMenuDTO;
|
|
@@ -4738,6 +4775,7 @@ export type PostMenuV3DraftCategoriesBody = {
|
|
|
4738
4775
|
is_active?: boolean;
|
|
4739
4776
|
brand_id: string;
|
|
4740
4777
|
menu_id: string;
|
|
4778
|
+
translation?: NameTranslation;
|
|
4741
4779
|
applied_diff_snapshot?: Record<string, any>;
|
|
4742
4780
|
menu?: DraftMenuDTO;
|
|
4743
4781
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -4820,6 +4858,7 @@ export interface PostMenuV3DraftCategoryDuplicateResponse {
|
|
|
4820
4858
|
is_active?: boolean;
|
|
4821
4859
|
brand_id: string;
|
|
4822
4860
|
menu_id: string;
|
|
4861
|
+
translation?: NameTranslation;
|
|
4823
4862
|
applied_diff_snapshot?: Record<string, any>;
|
|
4824
4863
|
version?: number;
|
|
4825
4864
|
menu?: DraftMenuDTO;
|
|
@@ -5250,6 +5289,7 @@ export interface PostMenuV3DraftItemBody {
|
|
|
5250
5289
|
unique_id?: number;
|
|
5251
5290
|
cpg_item_id?: string;
|
|
5252
5291
|
price_levels?: Record<string, any>;
|
|
5292
|
+
translation?: Record<string, any>;
|
|
5253
5293
|
applied_diff_snapshot?: Record<string, any>;
|
|
5254
5294
|
brand?: DraftBrandDTO;
|
|
5255
5295
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -5329,6 +5369,7 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
5329
5369
|
unique_id?: number;
|
|
5330
5370
|
cpg_item_id?: string;
|
|
5331
5371
|
price_levels?: Record<string, any>;
|
|
5372
|
+
translation?: Record<string, any>;
|
|
5332
5373
|
applied_diff_snapshot?: Record<string, any>;
|
|
5333
5374
|
version?: number;
|
|
5334
5375
|
brand?: DraftBrandDTO;
|
|
@@ -5447,6 +5488,7 @@ export type PostMenuV3DraftItemsBody = {
|
|
|
5447
5488
|
unique_id?: number;
|
|
5448
5489
|
cpg_item_id?: string;
|
|
5449
5490
|
price_levels?: Record<string, any>;
|
|
5491
|
+
translation?: Record<string, any>;
|
|
5450
5492
|
applied_diff_snapshot?: Record<string, any>;
|
|
5451
5493
|
brand?: DraftBrandDTO;
|
|
5452
5494
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -5556,6 +5598,7 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
|
5556
5598
|
unique_id?: number;
|
|
5557
5599
|
cpg_item_id?: string;
|
|
5558
5600
|
price_levels?: Record<string, any>;
|
|
5601
|
+
translation?: Record<string, any>;
|
|
5559
5602
|
applied_diff_snapshot?: Record<string, any>;
|
|
5560
5603
|
brand?: DraftBrandDTO;
|
|
5561
5604
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -6042,6 +6085,7 @@ export interface PostMenuV3DraftModifierGroupBody {
|
|
|
6042
6085
|
sizing?: string;
|
|
6043
6086
|
is_out_of_stock?: boolean;
|
|
6044
6087
|
is_incremental?: boolean;
|
|
6088
|
+
translation?: NameTranslation;
|
|
6045
6089
|
applied_diff_snapshot?: Record<string, any>;
|
|
6046
6090
|
brand?: DraftBrandDTO;
|
|
6047
6091
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -6102,6 +6146,7 @@ export interface PatchMenuV3DraftModifierGroupBody {
|
|
|
6102
6146
|
sizing?: string;
|
|
6103
6147
|
is_out_of_stock?: boolean;
|
|
6104
6148
|
is_incremental?: boolean;
|
|
6149
|
+
translation?: NameTranslation;
|
|
6105
6150
|
applied_diff_snapshot?: Record<string, any>;
|
|
6106
6151
|
version?: number;
|
|
6107
6152
|
brand?: DraftBrandDTO;
|
|
@@ -6186,6 +6231,7 @@ export type PostMenuV3DraftModifierGroupsBody = {
|
|
|
6186
6231
|
sizing?: string;
|
|
6187
6232
|
is_out_of_stock?: boolean;
|
|
6188
6233
|
is_incremental?: boolean;
|
|
6234
|
+
translation?: NameTranslation;
|
|
6189
6235
|
applied_diff_snapshot?: Record<string, any>;
|
|
6190
6236
|
brand?: DraftBrandDTO;
|
|
6191
6237
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -6265,6 +6311,7 @@ export interface PostMenuV3DraftModifierGroupDuplicateResponse {
|
|
|
6265
6311
|
sizing?: string;
|
|
6266
6312
|
is_out_of_stock?: boolean;
|
|
6267
6313
|
is_incremental?: boolean;
|
|
6314
|
+
translation?: NameTranslation;
|
|
6268
6315
|
applied_diff_snapshot?: Record<string, any>;
|
|
6269
6316
|
version?: number;
|
|
6270
6317
|
brand?: DraftBrandDTO;
|
|
@@ -6690,6 +6737,7 @@ export interface PostMenuV3DraftModifierBody {
|
|
|
6690
6737
|
tags?: string[];
|
|
6691
6738
|
unique_id?: number;
|
|
6692
6739
|
price_levels?: Record<string, any>;
|
|
6740
|
+
translation?: Record<string, any>;
|
|
6693
6741
|
applied_diff_snapshot?: Record<string, any>;
|
|
6694
6742
|
brand?: DraftBrandDTO;
|
|
6695
6743
|
changes?: ModifierChangeDTO[];
|
|
@@ -6765,6 +6813,7 @@ export interface PatchMenuV3DraftModifierBody {
|
|
|
6765
6813
|
tags?: string[];
|
|
6766
6814
|
unique_id?: number;
|
|
6767
6815
|
price_levels?: Record<string, any>;
|
|
6816
|
+
translation?: Record<string, any>;
|
|
6768
6817
|
applied_diff_snapshot?: Record<string, any>;
|
|
6769
6818
|
version?: number;
|
|
6770
6819
|
brand?: DraftBrandDTO;
|
|
@@ -6879,6 +6928,7 @@ export type PostMenuV3DraftModifiersBody = {
|
|
|
6879
6928
|
tags?: string[];
|
|
6880
6929
|
unique_id?: number;
|
|
6881
6930
|
price_levels?: Record<string, any>;
|
|
6931
|
+
translation?: Record<string, any>;
|
|
6882
6932
|
applied_diff_snapshot?: Record<string, any>;
|
|
6883
6933
|
brand?: DraftBrandDTO;
|
|
6884
6934
|
changes?: ModifierChangeDTO[];
|
|
@@ -6984,6 +7034,7 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
|
|
|
6984
7034
|
tags?: string[];
|
|
6985
7035
|
unique_id?: number;
|
|
6986
7036
|
price_levels?: Record<string, any>;
|
|
7037
|
+
translation?: Record<string, any>;
|
|
6987
7038
|
applied_diff_snapshot?: Record<string, any>;
|
|
6988
7039
|
brand?: DraftBrandDTO;
|
|
6989
7040
|
changes?: ModifierChangeDTO[];
|
|
@@ -7407,6 +7458,7 @@ export interface PostMenuV4BrandBody {
|
|
|
7407
7458
|
auto_push_to_local?: boolean;
|
|
7408
7459
|
frictionless_partner?: string;
|
|
7409
7460
|
meta?: BrandMeta;
|
|
7461
|
+
supported_languages?: SupportedLanguages;
|
|
7410
7462
|
applied_diff_snapshot?: Record<string, any>;
|
|
7411
7463
|
changes?: BrandChangeDTO[];
|
|
7412
7464
|
local_menu_group?: LocalMenuGroupDTO;
|
|
@@ -7449,6 +7501,7 @@ export interface PostMenuV4BrandResponse {
|
|
|
7449
7501
|
auto_push_to_local?: boolean;
|
|
7450
7502
|
frictionless_partner?: string;
|
|
7451
7503
|
meta?: BrandMeta;
|
|
7504
|
+
supported_languages?: SupportedLanguages;
|
|
7452
7505
|
applied_diff_snapshot?: Record<string, any>;
|
|
7453
7506
|
version?: number;
|
|
7454
7507
|
changes?: BrandChangeDTO[];
|
|
@@ -7508,6 +7561,7 @@ export interface GetMenuV4BrandResponse {
|
|
|
7508
7561
|
auto_push_to_local?: boolean;
|
|
7509
7562
|
frictionless_partner?: string;
|
|
7510
7563
|
meta?: BrandMeta;
|
|
7564
|
+
supported_languages?: SupportedLanguages;
|
|
7511
7565
|
applied_diff_snapshot?: Record<string, any>;
|
|
7512
7566
|
version?: number;
|
|
7513
7567
|
changes?: BrandChangeDTO[];
|
|
@@ -7562,6 +7616,7 @@ export interface DeleteMenuV4BrandResponse {
|
|
|
7562
7616
|
auto_push_to_local?: boolean;
|
|
7563
7617
|
frictionless_partner?: string;
|
|
7564
7618
|
meta?: BrandMeta;
|
|
7619
|
+
supported_languages?: SupportedLanguages;
|
|
7565
7620
|
applied_diff_snapshot?: Record<string, any>;
|
|
7566
7621
|
version?: number;
|
|
7567
7622
|
changes?: BrandChangeDTO[];
|
|
@@ -7591,6 +7646,7 @@ export interface PostMenuV4BrandMenuBody {
|
|
|
7591
7646
|
parent_id?: string;
|
|
7592
7647
|
name: string;
|
|
7593
7648
|
brand_id: string;
|
|
7649
|
+
translation?: NameTranslation;
|
|
7594
7650
|
applied_diff_snapshot?: Record<string, any>;
|
|
7595
7651
|
brand?: DraftBrandDTO;
|
|
7596
7652
|
changes?: MenuChangeDTO[];
|
|
@@ -7613,6 +7669,7 @@ export interface PostMenuV4BrandMenuResponse {
|
|
|
7613
7669
|
parent_id?: string;
|
|
7614
7670
|
name: string;
|
|
7615
7671
|
brand_id: string;
|
|
7672
|
+
translation?: NameTranslation;
|
|
7616
7673
|
applied_diff_snapshot?: Record<string, any>;
|
|
7617
7674
|
version?: number;
|
|
7618
7675
|
brand?: DraftBrandDTO;
|
|
@@ -7644,6 +7701,7 @@ export interface PatchMenuV4BrandMenuBody {
|
|
|
7644
7701
|
parent_id?: string;
|
|
7645
7702
|
name?: string;
|
|
7646
7703
|
brand_id?: string;
|
|
7704
|
+
translation?: NameTranslation;
|
|
7647
7705
|
applied_diff_snapshot?: Record<string, any>;
|
|
7648
7706
|
version?: number;
|
|
7649
7707
|
brand?: DraftBrandDTO;
|
|
@@ -7667,6 +7725,7 @@ export interface PatchMenuV4BrandMenuResponse {
|
|
|
7667
7725
|
parent_id?: string;
|
|
7668
7726
|
name: string;
|
|
7669
7727
|
brand_id: string;
|
|
7728
|
+
translation?: NameTranslation;
|
|
7670
7729
|
applied_diff_snapshot?: Record<string, any>;
|
|
7671
7730
|
version?: number;
|
|
7672
7731
|
brand?: DraftBrandDTO;
|
|
@@ -7701,6 +7760,7 @@ export interface DeleteMenuV4BrandMenuResponse {
|
|
|
7701
7760
|
parent_id?: string;
|
|
7702
7761
|
name: string;
|
|
7703
7762
|
brand_id: string;
|
|
7763
|
+
translation?: NameTranslation;
|
|
7704
7764
|
applied_diff_snapshot?: Record<string, any>;
|
|
7705
7765
|
version?: number;
|
|
7706
7766
|
brand?: DraftBrandDTO;
|
|
@@ -7869,6 +7929,7 @@ export interface PostMenuV4BrandCategoryBody {
|
|
|
7869
7929
|
is_active?: boolean;
|
|
7870
7930
|
brand_id: string;
|
|
7871
7931
|
menu_id: string;
|
|
7932
|
+
translation?: NameTranslation;
|
|
7872
7933
|
applied_diff_snapshot?: Record<string, any>;
|
|
7873
7934
|
menu?: DraftMenuDTO;
|
|
7874
7935
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -7894,6 +7955,7 @@ export interface PostMenuV4BrandCategoryResponse {
|
|
|
7894
7955
|
is_active?: boolean;
|
|
7895
7956
|
brand_id: string;
|
|
7896
7957
|
menu_id: string;
|
|
7958
|
+
translation?: NameTranslation;
|
|
7897
7959
|
applied_diff_snapshot?: Record<string, any>;
|
|
7898
7960
|
version?: number;
|
|
7899
7961
|
menu?: DraftMenuDTO;
|
|
@@ -7928,6 +7990,7 @@ export interface PatchMenuV4BrandCategoryBody {
|
|
|
7928
7990
|
is_active?: boolean;
|
|
7929
7991
|
brand_id?: string;
|
|
7930
7992
|
menu_id?: string;
|
|
7993
|
+
translation?: NameTranslation;
|
|
7931
7994
|
applied_diff_snapshot?: Record<string, any>;
|
|
7932
7995
|
version?: number;
|
|
7933
7996
|
menu?: DraftMenuDTO;
|
|
@@ -7950,6 +8013,7 @@ export interface PatchMenuV4BrandCategoryResponse {
|
|
|
7950
8013
|
is_active?: boolean;
|
|
7951
8014
|
brand_id: string;
|
|
7952
8015
|
menu_id: string;
|
|
8016
|
+
translation?: NameTranslation;
|
|
7953
8017
|
applied_diff_snapshot?: Record<string, any>;
|
|
7954
8018
|
menu?: DraftMenuDTO;
|
|
7955
8019
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -7986,6 +8050,7 @@ export interface DeleteMenuV4BrandCategoryResponse {
|
|
|
7986
8050
|
is_active?: boolean;
|
|
7987
8051
|
brand_id: string;
|
|
7988
8052
|
menu_id: string;
|
|
8053
|
+
translation?: NameTranslation;
|
|
7989
8054
|
applied_diff_snapshot?: Record<string, any>;
|
|
7990
8055
|
version?: number;
|
|
7991
8056
|
menu?: DraftMenuDTO;
|
|
@@ -8085,6 +8150,7 @@ export interface PostMenuV4BrandCategoryDuplicateBody {
|
|
|
8085
8150
|
is_active?: boolean;
|
|
8086
8151
|
brand_id?: string;
|
|
8087
8152
|
menu_id?: string;
|
|
8153
|
+
translation?: NameTranslation;
|
|
8088
8154
|
applied_diff_snapshot?: Record<string, any>;
|
|
8089
8155
|
version?: number;
|
|
8090
8156
|
menu?: DraftMenuDTO;
|
|
@@ -8111,6 +8177,7 @@ export interface PostMenuV4BrandCategoryDuplicateResponse {
|
|
|
8111
8177
|
is_active?: boolean;
|
|
8112
8178
|
brand_id: string;
|
|
8113
8179
|
menu_id: string;
|
|
8180
|
+
translation?: NameTranslation;
|
|
8114
8181
|
applied_diff_snapshot?: Record<string, any>;
|
|
8115
8182
|
version?: number;
|
|
8116
8183
|
menu?: DraftMenuDTO;
|
|
@@ -8147,6 +8214,7 @@ export interface PostMenuV4BrandMenuDuplicateBody {
|
|
|
8147
8214
|
parent_id?: string;
|
|
8148
8215
|
name?: string;
|
|
8149
8216
|
brand_id?: string;
|
|
8217
|
+
translation?: NameTranslation;
|
|
8150
8218
|
applied_diff_snapshot?: Record<string, any>;
|
|
8151
8219
|
version?: number;
|
|
8152
8220
|
brand?: DraftBrandDTO;
|
|
@@ -8170,6 +8238,7 @@ export interface PostMenuV4BrandMenuDuplicateResponse {
|
|
|
8170
8238
|
parent_id?: string;
|
|
8171
8239
|
name: string;
|
|
8172
8240
|
brand_id: string;
|
|
8241
|
+
translation?: NameTranslation;
|
|
8173
8242
|
applied_diff_snapshot?: Record<string, any>;
|
|
8174
8243
|
version?: number;
|
|
8175
8244
|
brand?: DraftBrandDTO;
|
|
@@ -8240,6 +8309,7 @@ export interface PostMenuV4ItemBody {
|
|
|
8240
8309
|
unique_id?: number;
|
|
8241
8310
|
cpg_item_id?: string;
|
|
8242
8311
|
price_levels?: Record<string, any>;
|
|
8312
|
+
translation?: Record<string, any>;
|
|
8243
8313
|
base_item_id?: string;
|
|
8244
8314
|
applied_diff_snapshot?: Record<string, any>;
|
|
8245
8315
|
brand?: DraftBrandDTO;
|
|
@@ -8289,6 +8359,7 @@ export interface PostMenuV4ItemResponse {
|
|
|
8289
8359
|
unique_id?: number;
|
|
8290
8360
|
cpg_item_id?: string;
|
|
8291
8361
|
price_levels?: Record<string, any>;
|
|
8362
|
+
translation?: Record<string, any>;
|
|
8292
8363
|
applied_diff_snapshot?: Record<string, any>;
|
|
8293
8364
|
version?: number;
|
|
8294
8365
|
brand?: DraftBrandDTO;
|
|
@@ -8340,6 +8411,7 @@ export type PostMenuV4ItemsBulkCreateBody = {
|
|
|
8340
8411
|
unique_id?: number;
|
|
8341
8412
|
cpg_item_id?: string;
|
|
8342
8413
|
price_levels?: Record<string, any>;
|
|
8414
|
+
translation?: Record<string, any>;
|
|
8343
8415
|
base_item_id?: string;
|
|
8344
8416
|
applied_diff_snapshot?: Record<string, any>;
|
|
8345
8417
|
brand?: DraftBrandDTO;
|
|
@@ -8410,6 +8482,7 @@ export interface GetMenuV4ItemResponse {
|
|
|
8410
8482
|
unique_id?: number;
|
|
8411
8483
|
cpg_item_id?: string;
|
|
8412
8484
|
price_levels?: Record<string, any>;
|
|
8485
|
+
translation?: Record<string, any>;
|
|
8413
8486
|
applied_diff_snapshot?: Record<string, any>;
|
|
8414
8487
|
version?: number;
|
|
8415
8488
|
brand?: DraftBrandDTO;
|
|
@@ -8467,6 +8540,7 @@ export interface PatchMenuV4ItemBody {
|
|
|
8467
8540
|
unique_id?: number;
|
|
8468
8541
|
cpg_item_id?: string;
|
|
8469
8542
|
price_levels?: Record<string, any>;
|
|
8543
|
+
translation?: Record<string, any>;
|
|
8470
8544
|
applied_diff_snapshot?: Record<string, any>;
|
|
8471
8545
|
brand?: DraftBrandDTO;
|
|
8472
8546
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -8515,6 +8589,7 @@ export interface PatchMenuV4ItemResponse {
|
|
|
8515
8589
|
unique_id?: number;
|
|
8516
8590
|
cpg_item_id?: string;
|
|
8517
8591
|
price_levels?: Record<string, any>;
|
|
8592
|
+
translation?: Record<string, any>;
|
|
8518
8593
|
applied_diff_snapshot?: Record<string, any>;
|
|
8519
8594
|
version?: number;
|
|
8520
8595
|
brand?: DraftBrandDTO;
|
|
@@ -8574,6 +8649,7 @@ export interface DeleteMenuV4ItemResponse {
|
|
|
8574
8649
|
unique_id?: number;
|
|
8575
8650
|
cpg_item_id?: string;
|
|
8576
8651
|
price_levels?: Record<string, any>;
|
|
8652
|
+
translation?: Record<string, any>;
|
|
8577
8653
|
applied_diff_snapshot?: Record<string, any>;
|
|
8578
8654
|
version?: number;
|
|
8579
8655
|
brand?: DraftBrandDTO;
|
|
@@ -8625,6 +8701,7 @@ export interface PatchMenuV4ItemsBulkUpdateBody {
|
|
|
8625
8701
|
unique_id?: number;
|
|
8626
8702
|
cpg_item_id?: string;
|
|
8627
8703
|
price_levels?: Record<string, any>;
|
|
8704
|
+
translation?: Record<string, any>;
|
|
8628
8705
|
applied_diff_snapshot?: Record<string, any>;
|
|
8629
8706
|
brand?: DraftBrandDTO;
|
|
8630
8707
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -8684,6 +8761,7 @@ export interface PostMenuV4ItemDuplicateBody {
|
|
|
8684
8761
|
unique_id?: number;
|
|
8685
8762
|
cpg_item_id?: string;
|
|
8686
8763
|
price_levels?: Record<string, any>;
|
|
8764
|
+
translation?: Record<string, any>;
|
|
8687
8765
|
applied_diff_snapshot?: Record<string, any>;
|
|
8688
8766
|
brand?: DraftBrandDTO;
|
|
8689
8767
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -8732,6 +8810,7 @@ export interface PostMenuV4ItemDuplicateResponse {
|
|
|
8732
8810
|
unique_id?: number;
|
|
8733
8811
|
cpg_item_id?: string;
|
|
8734
8812
|
price_levels?: Record<string, any>;
|
|
8813
|
+
translation?: Record<string, any>;
|
|
8735
8814
|
applied_diff_snapshot?: Record<string, any>;
|
|
8736
8815
|
version?: number;
|
|
8737
8816
|
brand?: DraftBrandDTO;
|
|
@@ -8854,6 +8933,7 @@ export interface PostMenuV4ModifierBody {
|
|
|
8854
8933
|
tags?: string[];
|
|
8855
8934
|
unique_id?: number;
|
|
8856
8935
|
price_levels?: Record<string, any>;
|
|
8936
|
+
translation?: Record<string, any>;
|
|
8857
8937
|
applied_diff_snapshot?: Record<string, any>;
|
|
8858
8938
|
brand?: DraftBrandDTO;
|
|
8859
8939
|
changes?: ModifierChangeDTO[];
|
|
@@ -8898,6 +8978,7 @@ export interface PostMenuV4ModifierResponse {
|
|
|
8898
8978
|
tags?: string[];
|
|
8899
8979
|
unique_id?: number;
|
|
8900
8980
|
price_levels?: Record<string, any>;
|
|
8981
|
+
translation?: Record<string, any>;
|
|
8901
8982
|
applied_diff_snapshot?: Record<string, any>;
|
|
8902
8983
|
version?: number;
|
|
8903
8984
|
brand?: DraftBrandDTO;
|
|
@@ -8959,6 +9040,7 @@ export interface GetMenuV4ModifierResponse {
|
|
|
8959
9040
|
tags?: string[];
|
|
8960
9041
|
unique_id?: number;
|
|
8961
9042
|
price_levels?: Record<string, any>;
|
|
9043
|
+
translation?: Record<string, any>;
|
|
8962
9044
|
applied_diff_snapshot?: Record<string, any>;
|
|
8963
9045
|
version?: number;
|
|
8964
9046
|
brand?: DraftBrandDTO;
|
|
@@ -9011,6 +9093,7 @@ export interface PatchMenuV4ModifierBody {
|
|
|
9011
9093
|
tags?: string[];
|
|
9012
9094
|
unique_id?: number;
|
|
9013
9095
|
price_levels?: Record<string, any>;
|
|
9096
|
+
translation?: Record<string, any>;
|
|
9014
9097
|
applied_diff_snapshot?: Record<string, any>;
|
|
9015
9098
|
brand?: DraftBrandDTO;
|
|
9016
9099
|
changes?: ModifierChangeDTO[];
|
|
@@ -9055,6 +9138,7 @@ export interface PatchMenuV4ModifierResponse {
|
|
|
9055
9138
|
tags?: string[];
|
|
9056
9139
|
unique_id?: number;
|
|
9057
9140
|
price_levels?: Record<string, any>;
|
|
9141
|
+
translation?: Record<string, any>;
|
|
9058
9142
|
applied_diff_snapshot?: Record<string, any>;
|
|
9059
9143
|
version?: number;
|
|
9060
9144
|
brand?: DraftBrandDTO;
|
|
@@ -9110,6 +9194,7 @@ export interface DeleteMenuV4ModifierResponse {
|
|
|
9110
9194
|
tags?: string[];
|
|
9111
9195
|
unique_id?: number;
|
|
9112
9196
|
price_levels?: Record<string, any>;
|
|
9197
|
+
translation?: Record<string, any>;
|
|
9113
9198
|
applied_diff_snapshot?: Record<string, any>;
|
|
9114
9199
|
version?: number;
|
|
9115
9200
|
brand?: DraftBrandDTO;
|
|
@@ -9159,6 +9244,7 @@ export interface PostMenuV4ModifierDuplicateBody {
|
|
|
9159
9244
|
tags?: string[];
|
|
9160
9245
|
unique_id?: number;
|
|
9161
9246
|
price_levels?: Record<string, any>;
|
|
9247
|
+
translation?: Record<string, any>;
|
|
9162
9248
|
applied_diff_snapshot?: Record<string, any>;
|
|
9163
9249
|
brand?: DraftBrandDTO;
|
|
9164
9250
|
changes?: ModifierChangeDTO[];
|
|
@@ -9203,6 +9289,7 @@ export interface PostMenuV4ModifierDuplicateResponse {
|
|
|
9203
9289
|
tags?: string[];
|
|
9204
9290
|
unique_id?: number;
|
|
9205
9291
|
price_levels?: Record<string, any>;
|
|
9292
|
+
translation?: Record<string, any>;
|
|
9206
9293
|
applied_diff_snapshot?: Record<string, any>;
|
|
9207
9294
|
version?: number;
|
|
9208
9295
|
brand?: DraftBrandDTO;
|
|
@@ -9254,6 +9341,7 @@ export interface PatchMenuV4ModifiersBulkUpdateBody {
|
|
|
9254
9341
|
tags?: string[];
|
|
9255
9342
|
unique_id?: number;
|
|
9256
9343
|
price_levels?: Record<string, any>;
|
|
9344
|
+
translation?: Record<string, any>;
|
|
9257
9345
|
applied_diff_snapshot?: Record<string, any>;
|
|
9258
9346
|
brand?: DraftBrandDTO;
|
|
9259
9347
|
changes?: ModifierChangeDTO[];
|
|
@@ -9311,6 +9399,7 @@ export interface PostMenuV4ModifierGroupBody {
|
|
|
9311
9399
|
sizing?: string;
|
|
9312
9400
|
is_out_of_stock?: boolean;
|
|
9313
9401
|
is_incremental?: boolean;
|
|
9402
|
+
translation?: NameTranslation;
|
|
9314
9403
|
applied_diff_snapshot?: Record<string, any>;
|
|
9315
9404
|
brand?: DraftBrandDTO;
|
|
9316
9405
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -9340,6 +9429,7 @@ export interface PostMenuV4ModifierGroupResponse {
|
|
|
9340
9429
|
sizing?: string;
|
|
9341
9430
|
is_out_of_stock?: boolean;
|
|
9342
9431
|
is_incremental?: boolean;
|
|
9432
|
+
translation?: NameTranslation;
|
|
9343
9433
|
applied_diff_snapshot?: Record<string, any>;
|
|
9344
9434
|
version?: number;
|
|
9345
9435
|
brand?: DraftBrandDTO;
|
|
@@ -9386,6 +9476,7 @@ export interface GetMenuV4ModifierGroupResponse {
|
|
|
9386
9476
|
sizing?: string;
|
|
9387
9477
|
is_out_of_stock?: boolean;
|
|
9388
9478
|
is_incremental?: boolean;
|
|
9479
|
+
translation?: NameTranslation;
|
|
9389
9480
|
applied_diff_snapshot?: Record<string, any>;
|
|
9390
9481
|
version?: number;
|
|
9391
9482
|
brand?: DraftBrandDTO;
|
|
@@ -9423,6 +9514,7 @@ export interface PatchMenuV4ModifierGroupBody {
|
|
|
9423
9514
|
sizing?: string;
|
|
9424
9515
|
is_out_of_stock?: boolean;
|
|
9425
9516
|
is_incremental?: boolean;
|
|
9517
|
+
translation?: NameTranslation;
|
|
9426
9518
|
applied_diff_snapshot?: Record<string, any>;
|
|
9427
9519
|
brand?: DraftBrandDTO;
|
|
9428
9520
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -9452,6 +9544,7 @@ export interface PatchMenuV4ModifierGroupResponse {
|
|
|
9452
9544
|
sizing?: string;
|
|
9453
9545
|
is_out_of_stock?: boolean;
|
|
9454
9546
|
is_incremental?: boolean;
|
|
9547
|
+
translation?: NameTranslation;
|
|
9455
9548
|
applied_diff_snapshot?: Record<string, any>;
|
|
9456
9549
|
version?: number;
|
|
9457
9550
|
brand?: DraftBrandDTO;
|
|
@@ -9492,6 +9585,7 @@ export interface DeleteMenuV4ModifierGroupResponse {
|
|
|
9492
9585
|
sizing?: string;
|
|
9493
9586
|
is_out_of_stock?: boolean;
|
|
9494
9587
|
is_incremental?: boolean;
|
|
9588
|
+
translation?: NameTranslation;
|
|
9495
9589
|
applied_diff_snapshot?: Record<string, any>;
|
|
9496
9590
|
version?: number;
|
|
9497
9591
|
brand?: DraftBrandDTO;
|
|
@@ -9566,6 +9660,7 @@ export interface PostMenuV4ModifierGroupDuplicateBody {
|
|
|
9566
9660
|
sizing?: string;
|
|
9567
9661
|
is_out_of_stock?: boolean;
|
|
9568
9662
|
is_incremental?: boolean;
|
|
9663
|
+
translation?: NameTranslation;
|
|
9569
9664
|
applied_diff_snapshot?: Record<string, any>;
|
|
9570
9665
|
brand?: DraftBrandDTO;
|
|
9571
9666
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -9595,6 +9690,7 @@ export interface PostMenuV4ModifierGroupDuplicateResponse {
|
|
|
9595
9690
|
sizing?: string;
|
|
9596
9691
|
is_out_of_stock?: boolean;
|
|
9597
9692
|
is_incremental?: boolean;
|
|
9693
|
+
translation?: NameTranslation;
|
|
9598
9694
|
applied_diff_snapshot?: Record<string, any>;
|
|
9599
9695
|
version?: number;
|
|
9600
9696
|
brand?: DraftBrandDTO;
|
|
@@ -9838,6 +9934,7 @@ export interface PostMenuV4ScheduleMenuResponse {
|
|
|
9838
9934
|
parent_id?: string;
|
|
9839
9935
|
name: string;
|
|
9840
9936
|
brand_id: string;
|
|
9937
|
+
translation?: NameTranslation;
|
|
9841
9938
|
applied_diff_snapshot?: Record<string, any>;
|
|
9842
9939
|
version?: number;
|
|
9843
9940
|
brand?: DraftBrandDTO;
|
|
@@ -9873,6 +9970,7 @@ export interface PostMenuV4UnscheduleMenuResponse {
|
|
|
9873
9970
|
parent_id?: string;
|
|
9874
9971
|
name: string;
|
|
9875
9972
|
brand_id: string;
|
|
9973
|
+
translation?: NameTranslation;
|
|
9876
9974
|
applied_diff_snapshot?: Record<string, any>;
|
|
9877
9975
|
version?: number;
|
|
9878
9976
|
brand?: DraftBrandDTO;
|
|
@@ -9912,6 +10010,7 @@ export interface GetMenuV4MenuResponse {
|
|
|
9912
10010
|
parent_id?: string;
|
|
9913
10011
|
name: string;
|
|
9914
10012
|
brand_id?: string;
|
|
10013
|
+
translation?: NameTranslation;
|
|
9915
10014
|
applied_diff_snapshot?: Record<string, any>;
|
|
9916
10015
|
version?: number;
|
|
9917
10016
|
brand?: DraftBrandDTO;
|
|
@@ -9952,6 +10051,7 @@ export interface GetMenuV4CategoryResponse {
|
|
|
9952
10051
|
is_active?: boolean;
|
|
9953
10052
|
brand_id?: string;
|
|
9954
10053
|
menu_id: string;
|
|
10054
|
+
translation?: NameTranslation;
|
|
9955
10055
|
applied_diff_snapshot?: Record<string, any>;
|
|
9956
10056
|
version?: number;
|
|
9957
10057
|
menu?: DraftMenuDTO;
|