@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/lib/interface/menu.d.ts
CHANGED
|
@@ -391,6 +391,7 @@ export interface DraftBrandDTO {
|
|
|
391
391
|
auto_push_to_local?: boolean;
|
|
392
392
|
frictionless_partner?: string;
|
|
393
393
|
meta?: BrandMeta;
|
|
394
|
+
supported_languages?: SupportedLanguages;
|
|
394
395
|
applied_diff_snapshot?: Record<string, any>;
|
|
395
396
|
version?: number;
|
|
396
397
|
permissions?: Record<string, any>;
|
|
@@ -399,6 +400,11 @@ export interface DraftBrandDTO {
|
|
|
399
400
|
export interface BrandMeta {
|
|
400
401
|
jde_category?: string;
|
|
401
402
|
}
|
|
403
|
+
export interface SupportedLanguages {
|
|
404
|
+
fr?: string;
|
|
405
|
+
kvi?: string;
|
|
406
|
+
es?: string;
|
|
407
|
+
}
|
|
402
408
|
export interface PublishedBrandDTO {
|
|
403
409
|
published_catalog_id?: number;
|
|
404
410
|
id?: string;
|
|
@@ -417,6 +423,7 @@ export interface PublishedBrandDTO {
|
|
|
417
423
|
auto_push_to_local?: boolean;
|
|
418
424
|
frictionless_partner?: string;
|
|
419
425
|
meta?: Record<string, any>;
|
|
426
|
+
supported_languages?: Record<string, any>;
|
|
420
427
|
version?: number;
|
|
421
428
|
permissions?: Record<string, any>;
|
|
422
429
|
[index: string]: any;
|
|
@@ -550,6 +557,7 @@ export interface DraftMenuDTO {
|
|
|
550
557
|
parent_id?: string;
|
|
551
558
|
name?: string;
|
|
552
559
|
brand_id?: string;
|
|
560
|
+
translation?: NameTranslation;
|
|
553
561
|
applied_diff_snapshot?: Record<string, any>;
|
|
554
562
|
version?: number;
|
|
555
563
|
brand?: DraftBrandDTO;
|
|
@@ -558,6 +566,9 @@ export interface DraftMenuDTO {
|
|
|
558
566
|
permissions?: Record<string, any>;
|
|
559
567
|
[index: string]: any;
|
|
560
568
|
}
|
|
569
|
+
export interface NameTranslation {
|
|
570
|
+
name?: SupportedLanguages;
|
|
571
|
+
}
|
|
561
572
|
export interface DraftCategoryDTO {
|
|
562
573
|
parent?: Record<string, any>;
|
|
563
574
|
children?: Record<string, any>[];
|
|
@@ -572,6 +583,7 @@ export interface DraftCategoryDTO {
|
|
|
572
583
|
is_active?: boolean;
|
|
573
584
|
brand_id?: string;
|
|
574
585
|
menu_id?: string;
|
|
586
|
+
translation?: Record<string, any>;
|
|
575
587
|
applied_diff_snapshot?: Record<string, any>;
|
|
576
588
|
version?: number;
|
|
577
589
|
menu?: Record<string, any>;
|
|
@@ -642,6 +654,7 @@ export interface DraftItemDTO {
|
|
|
642
654
|
unique_id?: number;
|
|
643
655
|
cpg_item_id?: string;
|
|
644
656
|
price_levels?: Record<string, any>;
|
|
657
|
+
translation?: Record<string, any>;
|
|
645
658
|
applied_diff_snapshot?: Record<string, any>;
|
|
646
659
|
version?: number;
|
|
647
660
|
brand?: DraftBrandDTO;
|
|
@@ -696,6 +709,7 @@ export interface DraftModifierGroupDTO {
|
|
|
696
709
|
sizing?: string;
|
|
697
710
|
is_out_of_stock?: boolean;
|
|
698
711
|
is_incremental?: boolean;
|
|
712
|
+
translation?: Record<string, any>;
|
|
699
713
|
applied_diff_snapshot?: Record<string, any>;
|
|
700
714
|
version?: number;
|
|
701
715
|
brand?: DraftBrandDTO;
|
|
@@ -760,6 +774,7 @@ export interface DraftModifierDTO {
|
|
|
760
774
|
tags?: string[];
|
|
761
775
|
unique_id?: number;
|
|
762
776
|
price_levels?: Record<string, any>;
|
|
777
|
+
translation?: Record<string, any>;
|
|
763
778
|
applied_diff_snapshot?: Record<string, any>;
|
|
764
779
|
version?: number;
|
|
765
780
|
brand?: DraftBrandDTO;
|
|
@@ -1094,6 +1109,7 @@ export interface PublishedMenuDTO {
|
|
|
1094
1109
|
parent_id?: string;
|
|
1095
1110
|
name?: string;
|
|
1096
1111
|
brand_id?: string;
|
|
1112
|
+
translation?: NameTranslation;
|
|
1097
1113
|
version?: number;
|
|
1098
1114
|
permissions?: Record<string, any>;
|
|
1099
1115
|
[index: string]: any;
|
|
@@ -1110,6 +1126,7 @@ export interface PublishedCategoryDTO {
|
|
|
1110
1126
|
is_active?: boolean;
|
|
1111
1127
|
brand_id?: string;
|
|
1112
1128
|
menu_id?: string;
|
|
1129
|
+
translation?: NameTranslation;
|
|
1113
1130
|
version?: number;
|
|
1114
1131
|
permissions?: Record<string, any>;
|
|
1115
1132
|
[index: string]: any;
|
|
@@ -1157,6 +1174,7 @@ export interface PublishedItemDTO {
|
|
|
1157
1174
|
tax_jwo_code?: string;
|
|
1158
1175
|
cpg_item_id?: string;
|
|
1159
1176
|
price_levels?: Record<string, any>;
|
|
1177
|
+
translation?: Record<string, any>;
|
|
1160
1178
|
version?: number;
|
|
1161
1179
|
permissions?: Record<string, any>;
|
|
1162
1180
|
[index: string]: any;
|
|
@@ -1192,6 +1210,7 @@ export interface PublishedModifierGroupDTO {
|
|
|
1192
1210
|
sizing?: string;
|
|
1193
1211
|
is_out_of_stock?: boolean;
|
|
1194
1212
|
is_incremental?: boolean;
|
|
1213
|
+
translation?: NameTranslation;
|
|
1195
1214
|
version?: number;
|
|
1196
1215
|
permissions?: Record<string, any>;
|
|
1197
1216
|
[index: string]: any;
|
|
@@ -1239,6 +1258,7 @@ export interface PublishedModifierDTO {
|
|
|
1239
1258
|
tax_tag_code?: string;
|
|
1240
1259
|
tags?: string[];
|
|
1241
1260
|
price_levels?: Record<string, any>;
|
|
1261
|
+
translation?: Record<string, any>;
|
|
1242
1262
|
version?: number;
|
|
1243
1263
|
permissions?: Record<string, any>;
|
|
1244
1264
|
[index: string]: any;
|
|
@@ -1491,6 +1511,7 @@ export interface DraftItemEntityDTO {
|
|
|
1491
1511
|
unique_id?: number;
|
|
1492
1512
|
cpg_item_id?: string;
|
|
1493
1513
|
price_levels?: Record<string, any>;
|
|
1514
|
+
translation?: Record<string, any>;
|
|
1494
1515
|
applied_diff_snapshot?: Record<string, any>;
|
|
1495
1516
|
version?: number;
|
|
1496
1517
|
brand?: DraftBrandDTO;
|
|
@@ -1540,6 +1561,7 @@ export interface DraftModifierEntityDTO {
|
|
|
1540
1561
|
tags?: string[];
|
|
1541
1562
|
unique_id?: number;
|
|
1542
1563
|
price_levels?: Record<string, any>;
|
|
1564
|
+
translation?: Record<string, any>;
|
|
1543
1565
|
applied_diff_snapshot?: Record<string, any>;
|
|
1544
1566
|
version?: number;
|
|
1545
1567
|
brand?: DraftBrandDTO;
|
|
@@ -1613,6 +1635,7 @@ export interface DraftModifierGroupEntityDTO {
|
|
|
1613
1635
|
sizing?: string;
|
|
1614
1636
|
is_out_of_stock?: boolean;
|
|
1615
1637
|
is_incremental?: boolean;
|
|
1638
|
+
translation?: NameTranslation;
|
|
1616
1639
|
applied_diff_snapshot?: Record<string, any>;
|
|
1617
1640
|
version?: number;
|
|
1618
1641
|
brand?: DraftBrandDTO;
|
|
@@ -2422,6 +2445,7 @@ export interface PostMenuV3DraftBrandBody {
|
|
|
2422
2445
|
auto_push_to_local?: boolean;
|
|
2423
2446
|
frictionless_partner?: string;
|
|
2424
2447
|
meta?: BrandMeta;
|
|
2448
|
+
supported_languages?: SupportedLanguages;
|
|
2425
2449
|
applied_diff_snapshot?: Record<string, any>;
|
|
2426
2450
|
changes?: BrandChangeDTO[];
|
|
2427
2451
|
local_menu_group?: LocalMenuGroupDTO;
|
|
@@ -2478,6 +2502,7 @@ export interface PatchMenuV3DraftBrandBody {
|
|
|
2478
2502
|
auto_push_to_local?: boolean;
|
|
2479
2503
|
frictionless_partner?: string;
|
|
2480
2504
|
meta?: BrandMeta;
|
|
2505
|
+
supported_languages?: SupportedLanguages;
|
|
2481
2506
|
applied_diff_snapshot?: Record<string, any>;
|
|
2482
2507
|
version?: number;
|
|
2483
2508
|
changes?: BrandChangeDTO[];
|
|
@@ -2547,6 +2572,7 @@ export type PostMenuV3DraftBrandsBody = {
|
|
|
2547
2572
|
auto_push_to_local?: boolean;
|
|
2548
2573
|
frictionless_partner?: string;
|
|
2549
2574
|
meta?: BrandMeta;
|
|
2575
|
+
supported_languages?: SupportedLanguages;
|
|
2550
2576
|
applied_diff_snapshot?: Record<string, any>;
|
|
2551
2577
|
changes?: BrandChangeDTO[];
|
|
2552
2578
|
local_menu_group?: LocalMenuGroupDTO;
|
|
@@ -2866,6 +2892,7 @@ export interface PostMenuV3BrandBody {
|
|
|
2866
2892
|
auto_push_to_local?: boolean;
|
|
2867
2893
|
frictionless_partner?: string;
|
|
2868
2894
|
meta?: BrandMeta;
|
|
2895
|
+
supported_languages?: SupportedLanguages;
|
|
2869
2896
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2870
2897
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2871
2898
|
attachments?: FileAttachmentsDTO;
|
|
@@ -2919,6 +2946,7 @@ export interface PatchMenuV3BrandBody {
|
|
|
2919
2946
|
auto_push_to_local?: boolean;
|
|
2920
2947
|
frictionless_partner?: string;
|
|
2921
2948
|
meta?: BrandMeta;
|
|
2949
|
+
supported_languages?: SupportedLanguages;
|
|
2922
2950
|
version?: number;
|
|
2923
2951
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2924
2952
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
@@ -2986,6 +3014,7 @@ export type PostMenuV3BrandsBody = {
|
|
|
2986
3014
|
auto_push_to_local?: boolean;
|
|
2987
3015
|
frictionless_partner?: string;
|
|
2988
3016
|
meta?: BrandMeta;
|
|
3017
|
+
supported_languages?: SupportedLanguages;
|
|
2989
3018
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2990
3019
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2991
3020
|
attachments?: FileAttachmentsDTO;
|
|
@@ -3118,6 +3147,7 @@ export interface PostMenuV3DraftMenuBody {
|
|
|
3118
3147
|
parent_id?: string;
|
|
3119
3148
|
name: string;
|
|
3120
3149
|
brand_id: string;
|
|
3150
|
+
translation?: NameTranslation;
|
|
3121
3151
|
applied_diff_snapshot?: Record<string, any>;
|
|
3122
3152
|
brand?: DraftBrandDTO;
|
|
3123
3153
|
changes?: MenuChangeDTO[];
|
|
@@ -3154,6 +3184,7 @@ export interface PatchMenuV3DraftMenuBody {
|
|
|
3154
3184
|
parent_id?: string;
|
|
3155
3185
|
name?: string;
|
|
3156
3186
|
brand_id?: string;
|
|
3187
|
+
translation?: NameTranslation;
|
|
3157
3188
|
applied_diff_snapshot?: Record<string, any>;
|
|
3158
3189
|
version?: number;
|
|
3159
3190
|
brand?: DraftBrandDTO;
|
|
@@ -3203,6 +3234,7 @@ export type PostMenuV3DraftMenusBody = {
|
|
|
3203
3234
|
parent_id?: string;
|
|
3204
3235
|
name: string;
|
|
3205
3236
|
brand_id: string;
|
|
3237
|
+
translation?: NameTranslation;
|
|
3206
3238
|
applied_diff_snapshot?: Record<string, any>;
|
|
3207
3239
|
brand?: DraftBrandDTO;
|
|
3208
3240
|
changes?: MenuChangeDTO[];
|
|
@@ -3293,6 +3325,7 @@ export interface PostMenuV3DraftMenuDuplicateResponse {
|
|
|
3293
3325
|
parent_id?: string;
|
|
3294
3326
|
name: string;
|
|
3295
3327
|
brand_id: string;
|
|
3328
|
+
translation?: NameTranslation;
|
|
3296
3329
|
applied_diff_snapshot?: Record<string, any>;
|
|
3297
3330
|
version?: number;
|
|
3298
3331
|
brand?: DraftBrandDTO;
|
|
@@ -3411,6 +3444,7 @@ export interface PostMenuV3DraftCategoryBody {
|
|
|
3411
3444
|
is_active?: boolean;
|
|
3412
3445
|
brand_id: string;
|
|
3413
3446
|
menu_id: string;
|
|
3447
|
+
translation?: NameTranslation;
|
|
3414
3448
|
applied_diff_snapshot?: Record<string, any>;
|
|
3415
3449
|
menu?: DraftMenuDTO;
|
|
3416
3450
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -3450,6 +3484,7 @@ export interface PatchMenuV3DraftCategoryBody {
|
|
|
3450
3484
|
is_active?: boolean;
|
|
3451
3485
|
brand_id?: string;
|
|
3452
3486
|
menu_id?: string;
|
|
3487
|
+
translation?: NameTranslation;
|
|
3453
3488
|
applied_diff_snapshot?: Record<string, any>;
|
|
3454
3489
|
version?: number;
|
|
3455
3490
|
menu?: DraftMenuDTO;
|
|
@@ -3494,6 +3529,7 @@ export type PostMenuV3DraftCategoriesBody = {
|
|
|
3494
3529
|
is_active?: boolean;
|
|
3495
3530
|
brand_id: string;
|
|
3496
3531
|
menu_id: string;
|
|
3532
|
+
translation?: NameTranslation;
|
|
3497
3533
|
applied_diff_snapshot?: Record<string, any>;
|
|
3498
3534
|
menu?: DraftMenuDTO;
|
|
3499
3535
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -3555,6 +3591,7 @@ export interface PostMenuV3DraftCategoryDuplicateResponse {
|
|
|
3555
3591
|
is_active?: boolean;
|
|
3556
3592
|
brand_id: string;
|
|
3557
3593
|
menu_id: string;
|
|
3594
|
+
translation?: NameTranslation;
|
|
3558
3595
|
applied_diff_snapshot?: Record<string, any>;
|
|
3559
3596
|
version?: number;
|
|
3560
3597
|
menu?: DraftMenuDTO;
|
|
@@ -3832,6 +3869,7 @@ export interface PostMenuV3DraftItemBody {
|
|
|
3832
3869
|
unique_id?: number;
|
|
3833
3870
|
cpg_item_id?: string;
|
|
3834
3871
|
price_levels?: Record<string, any>;
|
|
3872
|
+
translation?: Record<string, any>;
|
|
3835
3873
|
applied_diff_snapshot?: Record<string, any>;
|
|
3836
3874
|
brand?: DraftBrandDTO;
|
|
3837
3875
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -3894,6 +3932,7 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
3894
3932
|
unique_id?: number;
|
|
3895
3933
|
cpg_item_id?: string;
|
|
3896
3934
|
price_levels?: Record<string, any>;
|
|
3935
|
+
translation?: Record<string, any>;
|
|
3897
3936
|
applied_diff_snapshot?: Record<string, any>;
|
|
3898
3937
|
version?: number;
|
|
3899
3938
|
brand?: DraftBrandDTO;
|
|
@@ -3981,6 +4020,7 @@ export type PostMenuV3DraftItemsBody = {
|
|
|
3981
4020
|
unique_id?: number;
|
|
3982
4021
|
cpg_item_id?: string;
|
|
3983
4022
|
price_levels?: Record<string, any>;
|
|
4023
|
+
translation?: Record<string, any>;
|
|
3984
4024
|
applied_diff_snapshot?: Record<string, any>;
|
|
3985
4025
|
brand?: DraftBrandDTO;
|
|
3986
4026
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -4062,6 +4102,7 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
|
4062
4102
|
unique_id?: number;
|
|
4063
4103
|
cpg_item_id?: string;
|
|
4064
4104
|
price_levels?: Record<string, any>;
|
|
4105
|
+
translation?: Record<string, any>;
|
|
4065
4106
|
applied_diff_snapshot?: Record<string, any>;
|
|
4066
4107
|
brand?: DraftBrandDTO;
|
|
4067
4108
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -4371,6 +4412,7 @@ export interface PostMenuV3DraftModifierGroupBody {
|
|
|
4371
4412
|
sizing?: string;
|
|
4372
4413
|
is_out_of_stock?: boolean;
|
|
4373
4414
|
is_incremental?: boolean;
|
|
4415
|
+
translation?: NameTranslation;
|
|
4374
4416
|
applied_diff_snapshot?: Record<string, any>;
|
|
4375
4417
|
brand?: DraftBrandDTO;
|
|
4376
4418
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -4414,6 +4456,7 @@ export interface PatchMenuV3DraftModifierGroupBody {
|
|
|
4414
4456
|
sizing?: string;
|
|
4415
4457
|
is_out_of_stock?: boolean;
|
|
4416
4458
|
is_incremental?: boolean;
|
|
4459
|
+
translation?: NameTranslation;
|
|
4417
4460
|
applied_diff_snapshot?: Record<string, any>;
|
|
4418
4461
|
version?: number;
|
|
4419
4462
|
brand?: DraftBrandDTO;
|
|
@@ -4470,6 +4513,7 @@ export type PostMenuV3DraftModifierGroupsBody = {
|
|
|
4470
4513
|
sizing?: string;
|
|
4471
4514
|
is_out_of_stock?: boolean;
|
|
4472
4515
|
is_incremental?: boolean;
|
|
4516
|
+
translation?: NameTranslation;
|
|
4473
4517
|
applied_diff_snapshot?: Record<string, any>;
|
|
4474
4518
|
brand?: DraftBrandDTO;
|
|
4475
4519
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -4528,6 +4572,7 @@ export interface PostMenuV3DraftModifierGroupDuplicateResponse {
|
|
|
4528
4572
|
sizing?: string;
|
|
4529
4573
|
is_out_of_stock?: boolean;
|
|
4530
4574
|
is_incremental?: boolean;
|
|
4575
|
+
translation?: NameTranslation;
|
|
4531
4576
|
applied_diff_snapshot?: Record<string, any>;
|
|
4532
4577
|
version?: number;
|
|
4533
4578
|
brand?: DraftBrandDTO;
|
|
@@ -4796,6 +4841,7 @@ export interface PostMenuV3DraftModifierBody {
|
|
|
4796
4841
|
tags?: string[];
|
|
4797
4842
|
unique_id?: number;
|
|
4798
4843
|
price_levels?: Record<string, any>;
|
|
4844
|
+
translation?: Record<string, any>;
|
|
4799
4845
|
applied_diff_snapshot?: Record<string, any>;
|
|
4800
4846
|
brand?: DraftBrandDTO;
|
|
4801
4847
|
changes?: ModifierChangeDTO[];
|
|
@@ -4854,6 +4900,7 @@ export interface PatchMenuV3DraftModifierBody {
|
|
|
4854
4900
|
tags?: string[];
|
|
4855
4901
|
unique_id?: number;
|
|
4856
4902
|
price_levels?: Record<string, any>;
|
|
4903
|
+
translation?: Record<string, any>;
|
|
4857
4904
|
applied_diff_snapshot?: Record<string, any>;
|
|
4858
4905
|
version?: number;
|
|
4859
4906
|
brand?: DraftBrandDTO;
|
|
@@ -4937,6 +4984,7 @@ export type PostMenuV3DraftModifiersBody = {
|
|
|
4937
4984
|
tags?: string[];
|
|
4938
4985
|
unique_id?: number;
|
|
4939
4986
|
price_levels?: Record<string, any>;
|
|
4987
|
+
translation?: Record<string, any>;
|
|
4940
4988
|
applied_diff_snapshot?: Record<string, any>;
|
|
4941
4989
|
brand?: DraftBrandDTO;
|
|
4942
4990
|
changes?: ModifierChangeDTO[];
|
|
@@ -5014,6 +5062,7 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
|
|
|
5014
5062
|
tags?: string[];
|
|
5015
5063
|
unique_id?: number;
|
|
5016
5064
|
price_levels?: Record<string, any>;
|
|
5065
|
+
translation?: Record<string, any>;
|
|
5017
5066
|
applied_diff_snapshot?: Record<string, any>;
|
|
5018
5067
|
brand?: DraftBrandDTO;
|
|
5019
5068
|
changes?: ModifierChangeDTO[];
|
|
@@ -5292,6 +5341,7 @@ export interface PostMenuV4BrandBody {
|
|
|
5292
5341
|
auto_push_to_local?: boolean;
|
|
5293
5342
|
frictionless_partner?: string;
|
|
5294
5343
|
meta?: BrandMeta;
|
|
5344
|
+
supported_languages?: SupportedLanguages;
|
|
5295
5345
|
applied_diff_snapshot?: Record<string, any>;
|
|
5296
5346
|
changes?: BrandChangeDTO[];
|
|
5297
5347
|
local_menu_group?: LocalMenuGroupDTO;
|
|
@@ -5333,6 +5383,7 @@ export interface PostMenuV4BrandResponse {
|
|
|
5333
5383
|
auto_push_to_local?: boolean;
|
|
5334
5384
|
frictionless_partner?: string;
|
|
5335
5385
|
meta?: BrandMeta;
|
|
5386
|
+
supported_languages?: SupportedLanguages;
|
|
5336
5387
|
applied_diff_snapshot?: Record<string, any>;
|
|
5337
5388
|
version?: number;
|
|
5338
5389
|
changes?: BrandChangeDTO[];
|
|
@@ -5385,6 +5436,7 @@ export interface GetMenuV4BrandResponse {
|
|
|
5385
5436
|
auto_push_to_local?: boolean;
|
|
5386
5437
|
frictionless_partner?: string;
|
|
5387
5438
|
meta?: BrandMeta;
|
|
5439
|
+
supported_languages?: SupportedLanguages;
|
|
5388
5440
|
applied_diff_snapshot?: Record<string, any>;
|
|
5389
5441
|
version?: number;
|
|
5390
5442
|
changes?: BrandChangeDTO[];
|
|
@@ -5432,6 +5484,7 @@ export interface DeleteMenuV4BrandResponse {
|
|
|
5432
5484
|
auto_push_to_local?: boolean;
|
|
5433
5485
|
frictionless_partner?: string;
|
|
5434
5486
|
meta?: BrandMeta;
|
|
5487
|
+
supported_languages?: SupportedLanguages;
|
|
5435
5488
|
applied_diff_snapshot?: Record<string, any>;
|
|
5436
5489
|
version?: number;
|
|
5437
5490
|
changes?: BrandChangeDTO[];
|
|
@@ -5457,6 +5510,7 @@ export interface PostMenuV4BrandMenuBody {
|
|
|
5457
5510
|
parent_id?: string;
|
|
5458
5511
|
name: string;
|
|
5459
5512
|
brand_id: string;
|
|
5513
|
+
translation?: NameTranslation;
|
|
5460
5514
|
applied_diff_snapshot?: Record<string, any>;
|
|
5461
5515
|
brand?: DraftBrandDTO;
|
|
5462
5516
|
changes?: MenuChangeDTO[];
|
|
@@ -5478,6 +5532,7 @@ export interface PostMenuV4BrandMenuResponse {
|
|
|
5478
5532
|
parent_id?: string;
|
|
5479
5533
|
name: string;
|
|
5480
5534
|
brand_id: string;
|
|
5535
|
+
translation?: NameTranslation;
|
|
5481
5536
|
applied_diff_snapshot?: Record<string, any>;
|
|
5482
5537
|
version?: number;
|
|
5483
5538
|
brand?: DraftBrandDTO;
|
|
@@ -5504,6 +5559,7 @@ export interface PatchMenuV4BrandMenuBody {
|
|
|
5504
5559
|
parent_id?: string;
|
|
5505
5560
|
name?: string;
|
|
5506
5561
|
brand_id?: string;
|
|
5562
|
+
translation?: NameTranslation;
|
|
5507
5563
|
applied_diff_snapshot?: Record<string, any>;
|
|
5508
5564
|
version?: number;
|
|
5509
5565
|
brand?: DraftBrandDTO;
|
|
@@ -5526,6 +5582,7 @@ export interface PatchMenuV4BrandMenuResponse {
|
|
|
5526
5582
|
parent_id?: string;
|
|
5527
5583
|
name: string;
|
|
5528
5584
|
brand_id: string;
|
|
5585
|
+
translation?: NameTranslation;
|
|
5529
5586
|
applied_diff_snapshot?: Record<string, any>;
|
|
5530
5587
|
version?: number;
|
|
5531
5588
|
brand?: DraftBrandDTO;
|
|
@@ -5555,6 +5612,7 @@ export interface DeleteMenuV4BrandMenuResponse {
|
|
|
5555
5612
|
parent_id?: string;
|
|
5556
5613
|
name: string;
|
|
5557
5614
|
brand_id: string;
|
|
5615
|
+
translation?: NameTranslation;
|
|
5558
5616
|
applied_diff_snapshot?: Record<string, any>;
|
|
5559
5617
|
version?: number;
|
|
5560
5618
|
brand?: DraftBrandDTO;
|
|
@@ -5663,6 +5721,7 @@ export interface PostMenuV4BrandCategoryBody {
|
|
|
5663
5721
|
is_active?: boolean;
|
|
5664
5722
|
brand_id: string;
|
|
5665
5723
|
menu_id: string;
|
|
5724
|
+
translation?: NameTranslation;
|
|
5666
5725
|
applied_diff_snapshot?: Record<string, any>;
|
|
5667
5726
|
menu?: DraftMenuDTO;
|
|
5668
5727
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -5687,6 +5746,7 @@ export interface PostMenuV4BrandCategoryResponse {
|
|
|
5687
5746
|
is_active?: boolean;
|
|
5688
5747
|
brand_id: string;
|
|
5689
5748
|
menu_id: string;
|
|
5749
|
+
translation?: NameTranslation;
|
|
5690
5750
|
applied_diff_snapshot?: Record<string, any>;
|
|
5691
5751
|
version?: number;
|
|
5692
5752
|
menu?: DraftMenuDTO;
|
|
@@ -5716,6 +5776,7 @@ export interface PatchMenuV4BrandCategoryBody {
|
|
|
5716
5776
|
is_active?: boolean;
|
|
5717
5777
|
brand_id?: string;
|
|
5718
5778
|
menu_id?: string;
|
|
5779
|
+
translation?: NameTranslation;
|
|
5719
5780
|
applied_diff_snapshot?: Record<string, any>;
|
|
5720
5781
|
version?: number;
|
|
5721
5782
|
menu?: DraftMenuDTO;
|
|
@@ -5737,6 +5798,7 @@ export interface PatchMenuV4BrandCategoryResponse {
|
|
|
5737
5798
|
is_active?: boolean;
|
|
5738
5799
|
brand_id: string;
|
|
5739
5800
|
menu_id: string;
|
|
5801
|
+
translation?: NameTranslation;
|
|
5740
5802
|
applied_diff_snapshot?: Record<string, any>;
|
|
5741
5803
|
menu?: DraftMenuDTO;
|
|
5742
5804
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -5768,6 +5830,7 @@ export interface DeleteMenuV4BrandCategoryResponse {
|
|
|
5768
5830
|
is_active?: boolean;
|
|
5769
5831
|
brand_id: string;
|
|
5770
5832
|
menu_id: string;
|
|
5833
|
+
translation?: NameTranslation;
|
|
5771
5834
|
applied_diff_snapshot?: Record<string, any>;
|
|
5772
5835
|
version?: number;
|
|
5773
5836
|
menu?: DraftMenuDTO;
|
|
@@ -5841,6 +5904,7 @@ export interface PostMenuV4BrandCategoryDuplicateBody {
|
|
|
5841
5904
|
is_active?: boolean;
|
|
5842
5905
|
brand_id?: string;
|
|
5843
5906
|
menu_id?: string;
|
|
5907
|
+
translation?: NameTranslation;
|
|
5844
5908
|
applied_diff_snapshot?: Record<string, any>;
|
|
5845
5909
|
version?: number;
|
|
5846
5910
|
menu?: DraftMenuDTO;
|
|
@@ -5866,6 +5930,7 @@ export interface PostMenuV4BrandCategoryDuplicateResponse {
|
|
|
5866
5930
|
is_active?: boolean;
|
|
5867
5931
|
brand_id: string;
|
|
5868
5932
|
menu_id: string;
|
|
5933
|
+
translation?: NameTranslation;
|
|
5869
5934
|
applied_diff_snapshot?: Record<string, any>;
|
|
5870
5935
|
version?: number;
|
|
5871
5936
|
menu?: DraftMenuDTO;
|
|
@@ -5895,6 +5960,7 @@ export interface PostMenuV4BrandMenuDuplicateBody {
|
|
|
5895
5960
|
parent_id?: string;
|
|
5896
5961
|
name?: string;
|
|
5897
5962
|
brand_id?: string;
|
|
5963
|
+
translation?: NameTranslation;
|
|
5898
5964
|
applied_diff_snapshot?: Record<string, any>;
|
|
5899
5965
|
version?: number;
|
|
5900
5966
|
brand?: DraftBrandDTO;
|
|
@@ -5917,6 +5983,7 @@ export interface PostMenuV4BrandMenuDuplicateResponse {
|
|
|
5917
5983
|
parent_id?: string;
|
|
5918
5984
|
name: string;
|
|
5919
5985
|
brand_id: string;
|
|
5986
|
+
translation?: NameTranslation;
|
|
5920
5987
|
applied_diff_snapshot?: Record<string, any>;
|
|
5921
5988
|
version?: number;
|
|
5922
5989
|
brand?: DraftBrandDTO;
|
|
@@ -5973,6 +6040,7 @@ export interface PostMenuV4ItemBody {
|
|
|
5973
6040
|
unique_id?: number;
|
|
5974
6041
|
cpg_item_id?: string;
|
|
5975
6042
|
price_levels?: Record<string, any>;
|
|
6043
|
+
translation?: Record<string, any>;
|
|
5976
6044
|
base_item_id?: string;
|
|
5977
6045
|
applied_diff_snapshot?: Record<string, any>;
|
|
5978
6046
|
brand?: DraftBrandDTO;
|
|
@@ -6021,6 +6089,7 @@ export interface PostMenuV4ItemResponse {
|
|
|
6021
6089
|
unique_id?: number;
|
|
6022
6090
|
cpg_item_id?: string;
|
|
6023
6091
|
price_levels?: Record<string, any>;
|
|
6092
|
+
translation?: Record<string, any>;
|
|
6024
6093
|
applied_diff_snapshot?: Record<string, any>;
|
|
6025
6094
|
version?: number;
|
|
6026
6095
|
brand?: DraftBrandDTO;
|
|
@@ -6068,6 +6137,7 @@ export type PostMenuV4ItemsBulkCreateBody = {
|
|
|
6068
6137
|
unique_id?: number;
|
|
6069
6138
|
cpg_item_id?: string;
|
|
6070
6139
|
price_levels?: Record<string, any>;
|
|
6140
|
+
translation?: Record<string, any>;
|
|
6071
6141
|
base_item_id?: string;
|
|
6072
6142
|
applied_diff_snapshot?: Record<string, any>;
|
|
6073
6143
|
brand?: DraftBrandDTO;
|
|
@@ -6130,6 +6200,7 @@ export interface GetMenuV4ItemResponse {
|
|
|
6130
6200
|
unique_id?: number;
|
|
6131
6201
|
cpg_item_id?: string;
|
|
6132
6202
|
price_levels?: Record<string, any>;
|
|
6203
|
+
translation?: Record<string, any>;
|
|
6133
6204
|
applied_diff_snapshot?: Record<string, any>;
|
|
6134
6205
|
version?: number;
|
|
6135
6206
|
brand?: DraftBrandDTO;
|
|
@@ -6180,6 +6251,7 @@ export interface PatchMenuV4ItemBody {
|
|
|
6180
6251
|
unique_id?: number;
|
|
6181
6252
|
cpg_item_id?: string;
|
|
6182
6253
|
price_levels?: Record<string, any>;
|
|
6254
|
+
translation?: Record<string, any>;
|
|
6183
6255
|
applied_diff_snapshot?: Record<string, any>;
|
|
6184
6256
|
brand?: DraftBrandDTO;
|
|
6185
6257
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -6227,6 +6299,7 @@ export interface PatchMenuV4ItemResponse {
|
|
|
6227
6299
|
unique_id?: number;
|
|
6228
6300
|
cpg_item_id?: string;
|
|
6229
6301
|
price_levels?: Record<string, any>;
|
|
6302
|
+
translation?: Record<string, any>;
|
|
6230
6303
|
applied_diff_snapshot?: Record<string, any>;
|
|
6231
6304
|
version?: number;
|
|
6232
6305
|
brand?: DraftBrandDTO;
|
|
@@ -6281,6 +6354,7 @@ export interface DeleteMenuV4ItemResponse {
|
|
|
6281
6354
|
unique_id?: number;
|
|
6282
6355
|
cpg_item_id?: string;
|
|
6283
6356
|
price_levels?: Record<string, any>;
|
|
6357
|
+
translation?: Record<string, any>;
|
|
6284
6358
|
applied_diff_snapshot?: Record<string, any>;
|
|
6285
6359
|
version?: number;
|
|
6286
6360
|
brand?: DraftBrandDTO;
|
|
@@ -6329,6 +6403,7 @@ export interface PatchMenuV4ItemsBulkUpdateBody {
|
|
|
6329
6403
|
unique_id?: number;
|
|
6330
6404
|
cpg_item_id?: string;
|
|
6331
6405
|
price_levels?: Record<string, any>;
|
|
6406
|
+
translation?: Record<string, any>;
|
|
6332
6407
|
applied_diff_snapshot?: Record<string, any>;
|
|
6333
6408
|
brand?: DraftBrandDTO;
|
|
6334
6409
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -6382,6 +6457,7 @@ export interface PostMenuV4ItemDuplicateBody {
|
|
|
6382
6457
|
unique_id?: number;
|
|
6383
6458
|
cpg_item_id?: string;
|
|
6384
6459
|
price_levels?: Record<string, any>;
|
|
6460
|
+
translation?: Record<string, any>;
|
|
6385
6461
|
applied_diff_snapshot?: Record<string, any>;
|
|
6386
6462
|
brand?: DraftBrandDTO;
|
|
6387
6463
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -6429,6 +6505,7 @@ export interface PostMenuV4ItemDuplicateResponse {
|
|
|
6429
6505
|
unique_id?: number;
|
|
6430
6506
|
cpg_item_id?: string;
|
|
6431
6507
|
price_levels?: Record<string, any>;
|
|
6508
|
+
translation?: Record<string, any>;
|
|
6432
6509
|
applied_diff_snapshot?: Record<string, any>;
|
|
6433
6510
|
version?: number;
|
|
6434
6511
|
brand?: DraftBrandDTO;
|
|
@@ -6531,6 +6608,7 @@ export interface PostMenuV4ModifierBody {
|
|
|
6531
6608
|
tags?: string[];
|
|
6532
6609
|
unique_id?: number;
|
|
6533
6610
|
price_levels?: Record<string, any>;
|
|
6611
|
+
translation?: Record<string, any>;
|
|
6534
6612
|
applied_diff_snapshot?: Record<string, any>;
|
|
6535
6613
|
brand?: DraftBrandDTO;
|
|
6536
6614
|
changes?: ModifierChangeDTO[];
|
|
@@ -6574,6 +6652,7 @@ export interface PostMenuV4ModifierResponse {
|
|
|
6574
6652
|
tags?: string[];
|
|
6575
6653
|
unique_id?: number;
|
|
6576
6654
|
price_levels?: Record<string, any>;
|
|
6655
|
+
translation?: Record<string, any>;
|
|
6577
6656
|
applied_diff_snapshot?: Record<string, any>;
|
|
6578
6657
|
version?: number;
|
|
6579
6658
|
brand?: DraftBrandDTO;
|
|
@@ -6628,6 +6707,7 @@ export interface GetMenuV4ModifierResponse {
|
|
|
6628
6707
|
tags?: string[];
|
|
6629
6708
|
unique_id?: number;
|
|
6630
6709
|
price_levels?: Record<string, any>;
|
|
6710
|
+
translation?: Record<string, any>;
|
|
6631
6711
|
applied_diff_snapshot?: Record<string, any>;
|
|
6632
6712
|
version?: number;
|
|
6633
6713
|
brand?: DraftBrandDTO;
|
|
@@ -6673,6 +6753,7 @@ export interface PatchMenuV4ModifierBody {
|
|
|
6673
6753
|
tags?: string[];
|
|
6674
6754
|
unique_id?: number;
|
|
6675
6755
|
price_levels?: Record<string, any>;
|
|
6756
|
+
translation?: Record<string, any>;
|
|
6676
6757
|
applied_diff_snapshot?: Record<string, any>;
|
|
6677
6758
|
brand?: DraftBrandDTO;
|
|
6678
6759
|
changes?: ModifierChangeDTO[];
|
|
@@ -6716,6 +6797,7 @@ export interface PatchMenuV4ModifierResponse {
|
|
|
6716
6797
|
tags?: string[];
|
|
6717
6798
|
unique_id?: number;
|
|
6718
6799
|
price_levels?: Record<string, any>;
|
|
6800
|
+
translation?: Record<string, any>;
|
|
6719
6801
|
applied_diff_snapshot?: Record<string, any>;
|
|
6720
6802
|
version?: number;
|
|
6721
6803
|
brand?: DraftBrandDTO;
|
|
@@ -6766,6 +6848,7 @@ export interface DeleteMenuV4ModifierResponse {
|
|
|
6766
6848
|
tags?: string[];
|
|
6767
6849
|
unique_id?: number;
|
|
6768
6850
|
price_levels?: Record<string, any>;
|
|
6851
|
+
translation?: Record<string, any>;
|
|
6769
6852
|
applied_diff_snapshot?: Record<string, any>;
|
|
6770
6853
|
version?: number;
|
|
6771
6854
|
brand?: DraftBrandDTO;
|
|
@@ -6811,6 +6894,7 @@ export interface PostMenuV4ModifierDuplicateBody {
|
|
|
6811
6894
|
tags?: string[];
|
|
6812
6895
|
unique_id?: number;
|
|
6813
6896
|
price_levels?: Record<string, any>;
|
|
6897
|
+
translation?: Record<string, any>;
|
|
6814
6898
|
applied_diff_snapshot?: Record<string, any>;
|
|
6815
6899
|
brand?: DraftBrandDTO;
|
|
6816
6900
|
changes?: ModifierChangeDTO[];
|
|
@@ -6854,6 +6938,7 @@ export interface PostMenuV4ModifierDuplicateResponse {
|
|
|
6854
6938
|
tags?: string[];
|
|
6855
6939
|
unique_id?: number;
|
|
6856
6940
|
price_levels?: Record<string, any>;
|
|
6941
|
+
translation?: Record<string, any>;
|
|
6857
6942
|
applied_diff_snapshot?: Record<string, any>;
|
|
6858
6943
|
version?: number;
|
|
6859
6944
|
brand?: DraftBrandDTO;
|
|
@@ -6899,6 +6984,7 @@ export interface PatchMenuV4ModifiersBulkUpdateBody {
|
|
|
6899
6984
|
tags?: string[];
|
|
6900
6985
|
unique_id?: number;
|
|
6901
6986
|
price_levels?: Record<string, any>;
|
|
6987
|
+
translation?: Record<string, any>;
|
|
6902
6988
|
applied_diff_snapshot?: Record<string, any>;
|
|
6903
6989
|
brand?: DraftBrandDTO;
|
|
6904
6990
|
changes?: ModifierChangeDTO[];
|
|
@@ -6943,6 +7029,7 @@ export interface PostMenuV4ModifierGroupBody {
|
|
|
6943
7029
|
sizing?: string;
|
|
6944
7030
|
is_out_of_stock?: boolean;
|
|
6945
7031
|
is_incremental?: boolean;
|
|
7032
|
+
translation?: NameTranslation;
|
|
6946
7033
|
applied_diff_snapshot?: Record<string, any>;
|
|
6947
7034
|
brand?: DraftBrandDTO;
|
|
6948
7035
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -6971,6 +7058,7 @@ export interface PostMenuV4ModifierGroupResponse {
|
|
|
6971
7058
|
sizing?: string;
|
|
6972
7059
|
is_out_of_stock?: boolean;
|
|
6973
7060
|
is_incremental?: boolean;
|
|
7061
|
+
translation?: NameTranslation;
|
|
6974
7062
|
applied_diff_snapshot?: Record<string, any>;
|
|
6975
7063
|
version?: number;
|
|
6976
7064
|
brand?: DraftBrandDTO;
|
|
@@ -7010,6 +7098,7 @@ export interface GetMenuV4ModifierGroupResponse {
|
|
|
7010
7098
|
sizing?: string;
|
|
7011
7099
|
is_out_of_stock?: boolean;
|
|
7012
7100
|
is_incremental?: boolean;
|
|
7101
|
+
translation?: NameTranslation;
|
|
7013
7102
|
applied_diff_snapshot?: Record<string, any>;
|
|
7014
7103
|
version?: number;
|
|
7015
7104
|
brand?: DraftBrandDTO;
|
|
@@ -7040,6 +7129,7 @@ export interface PatchMenuV4ModifierGroupBody {
|
|
|
7040
7129
|
sizing?: string;
|
|
7041
7130
|
is_out_of_stock?: boolean;
|
|
7042
7131
|
is_incremental?: boolean;
|
|
7132
|
+
translation?: NameTranslation;
|
|
7043
7133
|
applied_diff_snapshot?: Record<string, any>;
|
|
7044
7134
|
brand?: DraftBrandDTO;
|
|
7045
7135
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -7068,6 +7158,7 @@ export interface PatchMenuV4ModifierGroupResponse {
|
|
|
7068
7158
|
sizing?: string;
|
|
7069
7159
|
is_out_of_stock?: boolean;
|
|
7070
7160
|
is_incremental?: boolean;
|
|
7161
|
+
translation?: NameTranslation;
|
|
7071
7162
|
applied_diff_snapshot?: Record<string, any>;
|
|
7072
7163
|
version?: number;
|
|
7073
7164
|
brand?: DraftBrandDTO;
|
|
@@ -7103,6 +7194,7 @@ export interface DeleteMenuV4ModifierGroupResponse {
|
|
|
7103
7194
|
sizing?: string;
|
|
7104
7195
|
is_out_of_stock?: boolean;
|
|
7105
7196
|
is_incremental?: boolean;
|
|
7197
|
+
translation?: NameTranslation;
|
|
7106
7198
|
applied_diff_snapshot?: Record<string, any>;
|
|
7107
7199
|
version?: number;
|
|
7108
7200
|
brand?: DraftBrandDTO;
|
|
@@ -7162,6 +7254,7 @@ export interface PostMenuV4ModifierGroupDuplicateBody {
|
|
|
7162
7254
|
sizing?: string;
|
|
7163
7255
|
is_out_of_stock?: boolean;
|
|
7164
7256
|
is_incremental?: boolean;
|
|
7257
|
+
translation?: NameTranslation;
|
|
7165
7258
|
applied_diff_snapshot?: Record<string, any>;
|
|
7166
7259
|
brand?: DraftBrandDTO;
|
|
7167
7260
|
changes?: ModifierGroupChangeDTO[];
|
|
@@ -7190,6 +7283,7 @@ export interface PostMenuV4ModifierGroupDuplicateResponse {
|
|
|
7190
7283
|
sizing?: string;
|
|
7191
7284
|
is_out_of_stock?: boolean;
|
|
7192
7285
|
is_incremental?: boolean;
|
|
7286
|
+
translation?: NameTranslation;
|
|
7193
7287
|
applied_diff_snapshot?: Record<string, any>;
|
|
7194
7288
|
version?: number;
|
|
7195
7289
|
brand?: DraftBrandDTO;
|
|
@@ -7363,6 +7457,7 @@ export interface PostMenuV4ScheduleMenuResponse {
|
|
|
7363
7457
|
parent_id?: string;
|
|
7364
7458
|
name: string;
|
|
7365
7459
|
brand_id: string;
|
|
7460
|
+
translation?: NameTranslation;
|
|
7366
7461
|
applied_diff_snapshot?: Record<string, any>;
|
|
7367
7462
|
version?: number;
|
|
7368
7463
|
brand?: DraftBrandDTO;
|
|
@@ -7393,6 +7488,7 @@ export interface PostMenuV4UnscheduleMenuResponse {
|
|
|
7393
7488
|
parent_id?: string;
|
|
7394
7489
|
name: string;
|
|
7395
7490
|
brand_id: string;
|
|
7491
|
+
translation?: NameTranslation;
|
|
7396
7492
|
applied_diff_snapshot?: Record<string, any>;
|
|
7397
7493
|
version?: number;
|
|
7398
7494
|
brand?: DraftBrandDTO;
|
|
@@ -7425,6 +7521,7 @@ export interface GetMenuV4MenuResponse {
|
|
|
7425
7521
|
parent_id?: string;
|
|
7426
7522
|
name: string;
|
|
7427
7523
|
brand_id?: string;
|
|
7524
|
+
translation?: NameTranslation;
|
|
7428
7525
|
applied_diff_snapshot?: Record<string, any>;
|
|
7429
7526
|
version?: number;
|
|
7430
7527
|
brand?: DraftBrandDTO;
|
|
@@ -7456,6 +7553,7 @@ export interface GetMenuV4CategoryResponse {
|
|
|
7456
7553
|
is_active?: boolean;
|
|
7457
7554
|
brand_id?: string;
|
|
7458
7555
|
menu_id: string;
|
|
7556
|
+
translation?: NameTranslation;
|
|
7459
7557
|
applied_diff_snapshot?: Record<string, any>;
|
|
7460
7558
|
version?: number;
|
|
7461
7559
|
menu?: DraftMenuDTO;
|