@compassdigital/sdk.typescript 4.463.0 → 4.464.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 +73 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +74 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -636,6 +636,7 @@ export interface DraftMenuDTO {
|
|
|
636
636
|
brand?: DraftBrandDTO;
|
|
637
637
|
changes?: MenuChangeDTO[];
|
|
638
638
|
vendor_metadata?: VendorMetadataDTO[];
|
|
639
|
+
menu_category_items?: Record<string, any>[];
|
|
639
640
|
attachments?: Record<string, any>;
|
|
640
641
|
permissions?: Record<string, any>;
|
|
641
642
|
[index: string]: any;
|
|
@@ -665,6 +666,7 @@ export interface DraftCategoryDTO {
|
|
|
665
666
|
brand?: DraftBrandDTO;
|
|
666
667
|
changes?: CategoryChangeDTO[];
|
|
667
668
|
vendor_metadata?: VendorMetadataDTO[];
|
|
669
|
+
menu_category_items?: Record<string, any>[];
|
|
668
670
|
attachments?: Record<string, any>;
|
|
669
671
|
permissions?: Record<string, any>;
|
|
670
672
|
[index: string]: any;
|
|
@@ -738,6 +740,7 @@ export interface DraftItemDTO {
|
|
|
738
740
|
categories?: Record<string, any>[];
|
|
739
741
|
changes?: ItemChangeDTO[];
|
|
740
742
|
vendor_metadata?: VendorMetadataDTO[];
|
|
743
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
741
744
|
attachments?: Record<string, any>;
|
|
742
745
|
weight?: Record<string, any>;
|
|
743
746
|
permissions?: Record<string, any>;
|
|
@@ -1021,6 +1024,23 @@ export interface StockDTO {
|
|
|
1021
1024
|
permissions?: Record<string, any>;
|
|
1022
1025
|
[index: string]: any;
|
|
1023
1026
|
}
|
|
1027
|
+
export interface MenuCategoryItemsDTO {
|
|
1028
|
+
item_id?: string;
|
|
1029
|
+
menu_id?: string;
|
|
1030
|
+
category_id?: string;
|
|
1031
|
+
brand_id?: string;
|
|
1032
|
+
id?: string;
|
|
1033
|
+
created_at?: string;
|
|
1034
|
+
updated_at?: string;
|
|
1035
|
+
deleted_at?: string;
|
|
1036
|
+
version?: number;
|
|
1037
|
+
item?: Record<string, any>;
|
|
1038
|
+
menu?: Record<string, any>;
|
|
1039
|
+
category?: Record<string, any>;
|
|
1040
|
+
brand?: DraftBrandDTO;
|
|
1041
|
+
permissions?: Record<string, any>;
|
|
1042
|
+
[index: string]: any;
|
|
1043
|
+
}
|
|
1024
1044
|
export interface CategoryToItemRelationshipChangeDTO {
|
|
1025
1045
|
id?: string;
|
|
1026
1046
|
created_at?: string;
|
|
@@ -1640,6 +1660,7 @@ export interface DraftItemEntityDTO {
|
|
|
1640
1660
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
1641
1661
|
changes?: ItemChangeDTO[];
|
|
1642
1662
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1663
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
1643
1664
|
attachments?: FileAttachmentsDTO;
|
|
1644
1665
|
weight?: WeightDTO;
|
|
1645
1666
|
permissions?: Record<string, any>;
|
|
@@ -1844,6 +1865,7 @@ export interface PartialItemDTO {
|
|
|
1844
1865
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
1845
1866
|
changes?: ItemChangeDTO[];
|
|
1846
1867
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1868
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
1847
1869
|
attachments?: FileAttachmentsDTO;
|
|
1848
1870
|
weight?: WeightDTO;
|
|
1849
1871
|
permissions?: Record<string, any>;
|
|
@@ -2700,6 +2722,7 @@ export interface PostMenuV3DraftBrandBody {
|
|
|
2700
2722
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2701
2723
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2702
2724
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2725
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
2703
2726
|
attachments?: FileAttachmentsDTO;
|
|
2704
2727
|
permissions?: Record<string, any>;
|
|
2705
2728
|
[index: string]: any;
|
|
@@ -2757,6 +2780,7 @@ export interface PatchMenuV3DraftBrandBody {
|
|
|
2757
2780
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2758
2781
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2759
2782
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2783
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
2760
2784
|
attachments?: FileAttachmentsDTO;
|
|
2761
2785
|
permissions?: Record<string, any>;
|
|
2762
2786
|
[index: string]: any;
|
|
@@ -2825,6 +2849,7 @@ export type PostMenuV3DraftBrandsBody = {
|
|
|
2825
2849
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2826
2850
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2827
2851
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2852
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
2828
2853
|
attachments?: FileAttachmentsDTO;
|
|
2829
2854
|
permissions?: Record<string, any>;
|
|
2830
2855
|
[index: string]: any;
|
|
@@ -3145,6 +3170,7 @@ export interface PostMenuV3DraftBrandArchiveResponse {
|
|
|
3145
3170
|
local_menu_group?: LocalMenuGroupDTO;
|
|
3146
3171
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
3147
3172
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3173
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3148
3174
|
attachments?: FileAttachmentsDTO;
|
|
3149
3175
|
permissions?: Record<string, any>;
|
|
3150
3176
|
[index: string]: any;
|
|
@@ -3193,6 +3219,7 @@ export interface PostMenuV3DraftBrandUnarchiveResponse {
|
|
|
3193
3219
|
local_menu_group?: LocalMenuGroupDTO;
|
|
3194
3220
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
3195
3221
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3222
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3196
3223
|
attachments?: FileAttachmentsDTO;
|
|
3197
3224
|
permissions?: Record<string, any>;
|
|
3198
3225
|
[index: string]: any;
|
|
@@ -3489,6 +3516,7 @@ export interface PostMenuV3DraftMenuBody {
|
|
|
3489
3516
|
brand?: DraftBrandDTO;
|
|
3490
3517
|
changes?: MenuChangeDTO[];
|
|
3491
3518
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3519
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3492
3520
|
attachments?: FileAttachmentsDTO;
|
|
3493
3521
|
permissions?: Record<string, any>;
|
|
3494
3522
|
[index: string]: any;
|
|
@@ -3527,6 +3555,7 @@ export interface PatchMenuV3DraftMenuBody {
|
|
|
3527
3555
|
brand?: DraftBrandDTO;
|
|
3528
3556
|
changes?: MenuChangeDTO[];
|
|
3529
3557
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3558
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3530
3559
|
attachments?: FileAttachmentsDTO;
|
|
3531
3560
|
permissions?: Record<string, any>;
|
|
3532
3561
|
[index: string]: any;
|
|
@@ -3576,6 +3605,7 @@ export type PostMenuV3DraftMenusBody = {
|
|
|
3576
3605
|
brand?: DraftBrandDTO;
|
|
3577
3606
|
changes?: MenuChangeDTO[];
|
|
3578
3607
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3608
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3579
3609
|
attachments?: FileAttachmentsDTO;
|
|
3580
3610
|
permissions?: Record<string, any>;
|
|
3581
3611
|
[index: string]: any;
|
|
@@ -3667,6 +3697,7 @@ export interface PostMenuV3DraftMenuDuplicateResponse {
|
|
|
3667
3697
|
brand?: DraftBrandDTO;
|
|
3668
3698
|
changes?: MenuChangeDTO[];
|
|
3669
3699
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3700
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3670
3701
|
attachments?: FileAttachmentsDTO;
|
|
3671
3702
|
permissions?: Record<string, any>;
|
|
3672
3703
|
[index: string]: any;
|
|
@@ -3796,6 +3827,7 @@ export interface PostMenuV3DraftCategoryBody {
|
|
|
3796
3827
|
brand?: DraftBrandDTO;
|
|
3797
3828
|
changes?: CategoryChangeDTO[];
|
|
3798
3829
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3830
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3799
3831
|
attachments?: FileAttachmentsDTO;
|
|
3800
3832
|
permissions?: Record<string, any>;
|
|
3801
3833
|
[index: string]: any;
|
|
@@ -3836,6 +3868,7 @@ export interface PatchMenuV3DraftCategoryBody {
|
|
|
3836
3868
|
brand?: DraftBrandDTO;
|
|
3837
3869
|
changes?: CategoryChangeDTO[];
|
|
3838
3870
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3871
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3839
3872
|
attachments?: FileAttachmentsDTO;
|
|
3840
3873
|
permissions?: Record<string, any>;
|
|
3841
3874
|
[index: string]: any;
|
|
@@ -3879,6 +3912,7 @@ export type PostMenuV3DraftCategoriesBody = {
|
|
|
3879
3912
|
brand?: DraftBrandDTO;
|
|
3880
3913
|
changes?: CategoryChangeDTO[];
|
|
3881
3914
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3915
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3882
3916
|
attachments?: FileAttachmentsDTO;
|
|
3883
3917
|
permissions?: Record<string, any>;
|
|
3884
3918
|
[index: string]: any;
|
|
@@ -3943,6 +3977,7 @@ export interface PostMenuV3DraftCategoryDuplicateResponse {
|
|
|
3943
3977
|
brand?: DraftBrandDTO;
|
|
3944
3978
|
changes?: CategoryChangeDTO[];
|
|
3945
3979
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3980
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
3946
3981
|
attachments?: FileAttachmentsDTO;
|
|
3947
3982
|
permissions?: Record<string, any>;
|
|
3948
3983
|
[index: string]: any;
|
|
@@ -4213,6 +4248,7 @@ export interface PostMenuV3DraftItemBody {
|
|
|
4213
4248
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
4214
4249
|
changes?: ItemChangeDTO[];
|
|
4215
4250
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4251
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
4216
4252
|
attachments?: FileAttachmentsDTO;
|
|
4217
4253
|
weight?: WeightDTO;
|
|
4218
4254
|
permissions?: Record<string, any>;
|
|
@@ -4279,6 +4315,7 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
4279
4315
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
4280
4316
|
changes?: ItemChangeDTO[];
|
|
4281
4317
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4318
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
4282
4319
|
attachments?: FileAttachmentsDTO;
|
|
4283
4320
|
weight?: WeightDTO;
|
|
4284
4321
|
permissions?: Record<string, any>;
|
|
@@ -4368,6 +4405,7 @@ export type PostMenuV3DraftItemsBody = {
|
|
|
4368
4405
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
4369
4406
|
changes?: ItemChangeDTO[];
|
|
4370
4407
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4408
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
4371
4409
|
attachments?: FileAttachmentsDTO;
|
|
4372
4410
|
weight?: WeightDTO;
|
|
4373
4411
|
permissions?: Record<string, any>;
|
|
@@ -4451,6 +4489,7 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
|
4451
4489
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
4452
4490
|
changes?: ItemChangeDTO[];
|
|
4453
4491
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4492
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
4454
4493
|
attachments?: FileAttachmentsDTO;
|
|
4455
4494
|
weight?: WeightDTO;
|
|
4456
4495
|
permissions?: Record<string, any>;
|
|
@@ -5675,6 +5714,7 @@ export interface PostMenuV4BrandBody {
|
|
|
5675
5714
|
local_menu_group?: LocalMenuGroupDTO;
|
|
5676
5715
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
5677
5716
|
vendor_metadata?: VendorMetadataDTO[];
|
|
5717
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5678
5718
|
attachments?: FileAttachmentsDTO;
|
|
5679
5719
|
permissions?: Record<string, any>;
|
|
5680
5720
|
[index: string]: any;
|
|
@@ -5718,6 +5758,7 @@ export interface PostMenuV4BrandResponse {
|
|
|
5718
5758
|
local_menu_group?: LocalMenuGroupDTO;
|
|
5719
5759
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
5720
5760
|
vendor_metadata?: VendorMetadataDTO[];
|
|
5761
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5721
5762
|
attachments?: FileAttachmentsDTO;
|
|
5722
5763
|
permissions?: Record<string, any>;
|
|
5723
5764
|
[index: string]: any;
|
|
@@ -5772,6 +5813,7 @@ export interface GetMenuV4BrandResponse {
|
|
|
5772
5813
|
local_menu_group?: LocalMenuGroupDTO;
|
|
5773
5814
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
5774
5815
|
vendor_metadata?: VendorMetadataDTO[];
|
|
5816
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5775
5817
|
attachments?: FileAttachmentsDTO;
|
|
5776
5818
|
permissions?: Record<string, any>;
|
|
5777
5819
|
[index: string]: any;
|
|
@@ -5815,6 +5857,7 @@ export interface PatchMenuV4BrandBody {
|
|
|
5815
5857
|
local_menu_group?: LocalMenuGroupDTO;
|
|
5816
5858
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
5817
5859
|
vendor_metadata?: VendorMetadataDTO[];
|
|
5860
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5818
5861
|
attachments?: FileAttachmentsDTO;
|
|
5819
5862
|
permissions?: Record<string, any>;
|
|
5820
5863
|
[index: string]: any;
|
|
@@ -5858,6 +5901,7 @@ export interface PatchMenuV4BrandResponse {
|
|
|
5858
5901
|
local_menu_group?: LocalMenuGroupDTO;
|
|
5859
5902
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
5860
5903
|
vendor_metadata?: VendorMetadataDTO[];
|
|
5904
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5861
5905
|
attachments?: FileAttachmentsDTO;
|
|
5862
5906
|
permissions?: Record<string, any>;
|
|
5863
5907
|
[index: string]: any;
|
|
@@ -5907,6 +5951,7 @@ export interface DeleteMenuV4BrandResponse {
|
|
|
5907
5951
|
local_menu_group?: LocalMenuGroupDTO;
|
|
5908
5952
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
5909
5953
|
vendor_metadata?: VendorMetadataDTO[];
|
|
5954
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5910
5955
|
attachments?: FileAttachmentsDTO;
|
|
5911
5956
|
permissions?: Record<string, any>;
|
|
5912
5957
|
[index: string]: any;
|
|
@@ -5943,6 +5988,7 @@ export interface PostMenuV4BrandMenuBody {
|
|
|
5943
5988
|
brand?: DraftBrandDTO;
|
|
5944
5989
|
changes?: MenuChangeDTO[];
|
|
5945
5990
|
vendor_metadata?: VendorMetadataDTO[];
|
|
5991
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5946
5992
|
attachments?: FileAttachmentsDTO;
|
|
5947
5993
|
permissions?: Record<string, any>;
|
|
5948
5994
|
[index: string]: any;
|
|
@@ -5967,6 +6013,7 @@ export interface PostMenuV4BrandMenuResponse {
|
|
|
5967
6013
|
brand?: DraftBrandDTO;
|
|
5968
6014
|
changes?: MenuChangeDTO[];
|
|
5969
6015
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6016
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5970
6017
|
attachments?: FileAttachmentsDTO;
|
|
5971
6018
|
permissions?: Record<string, any>;
|
|
5972
6019
|
[index: string]: any;
|
|
@@ -5995,6 +6042,7 @@ export interface PatchMenuV4BrandMenuBody {
|
|
|
5995
6042
|
brand?: DraftBrandDTO;
|
|
5996
6043
|
changes?: MenuChangeDTO[];
|
|
5997
6044
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6045
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
5998
6046
|
attachments?: FileAttachmentsDTO;
|
|
5999
6047
|
permissions?: Record<string, any>;
|
|
6000
6048
|
[index: string]: any;
|
|
@@ -6019,6 +6067,7 @@ export interface PatchMenuV4BrandMenuResponse {
|
|
|
6019
6067
|
brand?: DraftBrandDTO;
|
|
6020
6068
|
changes?: MenuChangeDTO[];
|
|
6021
6069
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6070
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6022
6071
|
attachments?: FileAttachmentsDTO;
|
|
6023
6072
|
permissions?: Record<string, any>;
|
|
6024
6073
|
[index: string]: any;
|
|
@@ -6050,6 +6099,7 @@ export interface DeleteMenuV4BrandMenuResponse {
|
|
|
6050
6099
|
brand?: DraftBrandDTO;
|
|
6051
6100
|
changes?: MenuChangeDTO[];
|
|
6052
6101
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6102
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6053
6103
|
attachments?: FileAttachmentsDTO;
|
|
6054
6104
|
permissions?: Record<string, any>;
|
|
6055
6105
|
[index: string]: any;
|
|
@@ -6157,6 +6207,7 @@ export interface PostMenuV4BrandCategoryBody {
|
|
|
6157
6207
|
brand?: DraftBrandDTO;
|
|
6158
6208
|
changes?: CategoryChangeDTO[];
|
|
6159
6209
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6210
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6160
6211
|
attachments?: FileAttachmentsDTO;
|
|
6161
6212
|
permissions?: Record<string, any>;
|
|
6162
6213
|
[index: string]: any;
|
|
@@ -6183,6 +6234,7 @@ export interface PostMenuV4BrandCategoryResponse {
|
|
|
6183
6234
|
brand?: DraftBrandDTO;
|
|
6184
6235
|
changes?: CategoryChangeDTO[];
|
|
6185
6236
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6237
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6186
6238
|
attachments?: FileAttachmentsDTO;
|
|
6187
6239
|
permissions?: Record<string, any>;
|
|
6188
6240
|
[index: string]: any;
|
|
@@ -6213,6 +6265,7 @@ export interface PatchMenuV4BrandCategoryBody {
|
|
|
6213
6265
|
brand?: DraftBrandDTO;
|
|
6214
6266
|
changes?: CategoryChangeDTO[];
|
|
6215
6267
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6268
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6216
6269
|
attachments?: FileAttachmentsDTO;
|
|
6217
6270
|
permissions?: Record<string, any>;
|
|
6218
6271
|
[index: string]: any;
|
|
@@ -6239,6 +6292,7 @@ export interface PatchMenuV4BrandCategoryResponse {
|
|
|
6239
6292
|
brand?: DraftBrandDTO;
|
|
6240
6293
|
changes?: CategoryChangeDTO[];
|
|
6241
6294
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6295
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6242
6296
|
attachments?: FileAttachmentsDTO;
|
|
6243
6297
|
permissions?: Record<string, any>;
|
|
6244
6298
|
[index: string]: any;
|
|
@@ -6272,6 +6326,7 @@ export interface DeleteMenuV4BrandCategoryResponse {
|
|
|
6272
6326
|
brand?: DraftBrandDTO;
|
|
6273
6327
|
changes?: CategoryChangeDTO[];
|
|
6274
6328
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6329
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6275
6330
|
attachments?: FileAttachmentsDTO;
|
|
6276
6331
|
permissions?: Record<string, any>;
|
|
6277
6332
|
[index: string]: any;
|
|
@@ -6363,6 +6418,7 @@ export interface PostMenuV4BrandCategoryDuplicateBody {
|
|
|
6363
6418
|
brand?: DraftBrandDTO;
|
|
6364
6419
|
changes?: CategoryChangeDTO[];
|
|
6365
6420
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6421
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6366
6422
|
attachments?: FileAttachmentsDTO;
|
|
6367
6423
|
permissions?: Record<string, any>;
|
|
6368
6424
|
[index: string]: any;
|
|
@@ -6389,6 +6445,7 @@ export interface PostMenuV4BrandCategoryDuplicateResponse {
|
|
|
6389
6445
|
brand?: DraftBrandDTO;
|
|
6390
6446
|
changes?: CategoryChangeDTO[];
|
|
6391
6447
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6448
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6392
6449
|
attachments?: FileAttachmentsDTO;
|
|
6393
6450
|
permissions?: Record<string, any>;
|
|
6394
6451
|
[index: string]: any;
|
|
@@ -6417,6 +6474,7 @@ export interface PostMenuV4BrandMenuDuplicateBody {
|
|
|
6417
6474
|
brand?: DraftBrandDTO;
|
|
6418
6475
|
changes?: MenuChangeDTO[];
|
|
6419
6476
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6477
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6420
6478
|
attachments?: FileAttachmentsDTO;
|
|
6421
6479
|
permissions?: Record<string, any>;
|
|
6422
6480
|
[index: string]: any;
|
|
@@ -6441,6 +6499,7 @@ export interface PostMenuV4BrandMenuDuplicateResponse {
|
|
|
6441
6499
|
brand?: DraftBrandDTO;
|
|
6442
6500
|
changes?: MenuChangeDTO[];
|
|
6443
6501
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6502
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6444
6503
|
attachments?: FileAttachmentsDTO;
|
|
6445
6504
|
permissions?: Record<string, any>;
|
|
6446
6505
|
[index: string]: any;
|
|
@@ -6515,6 +6574,7 @@ export interface PostMenuV4ItemBody {
|
|
|
6515
6574
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6516
6575
|
changes?: ItemChangeDTO[];
|
|
6517
6576
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6577
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6518
6578
|
attachments?: FileAttachmentsDTO;
|
|
6519
6579
|
weight?: WeightDTO;
|
|
6520
6580
|
permissions?: Record<string, any>;
|
|
@@ -6567,6 +6627,7 @@ export interface PostMenuV4ItemResponse {
|
|
|
6567
6627
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6568
6628
|
changes?: ItemChangeDTO[];
|
|
6569
6629
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6630
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6570
6631
|
attachments?: FileAttachmentsDTO;
|
|
6571
6632
|
weight?: WeightDTO;
|
|
6572
6633
|
permissions?: Record<string, any>;
|
|
@@ -6618,6 +6679,7 @@ export type PostMenuV4ItemsBulkCreateBody = {
|
|
|
6618
6679
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6619
6680
|
changes?: ItemChangeDTO[];
|
|
6620
6681
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6682
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6621
6683
|
attachments?: FileAttachmentsDTO;
|
|
6622
6684
|
weight?: WeightDTO;
|
|
6623
6685
|
permissions?: Record<string, any>;
|
|
@@ -6683,6 +6745,7 @@ export interface GetMenuV4ItemResponse {
|
|
|
6683
6745
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6684
6746
|
changes?: ItemChangeDTO[];
|
|
6685
6747
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6748
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6686
6749
|
attachments?: FileAttachmentsDTO;
|
|
6687
6750
|
weight?: WeightDTO;
|
|
6688
6751
|
permissions?: Record<string, any>;
|
|
@@ -6736,6 +6799,7 @@ export interface PatchMenuV4ItemBody {
|
|
|
6736
6799
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6737
6800
|
changes?: ItemChangeDTO[];
|
|
6738
6801
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6802
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6739
6803
|
attachments?: FileAttachmentsDTO;
|
|
6740
6804
|
weight?: WeightDTO;
|
|
6741
6805
|
permissions?: Record<string, any>;
|
|
@@ -6788,6 +6852,7 @@ export interface PatchMenuV4ItemResponse {
|
|
|
6788
6852
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6789
6853
|
changes?: ItemChangeDTO[];
|
|
6790
6854
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6855
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6791
6856
|
attachments?: FileAttachmentsDTO;
|
|
6792
6857
|
weight?: WeightDTO;
|
|
6793
6858
|
permissions?: Record<string, any>;
|
|
@@ -6846,6 +6911,7 @@ export interface DeleteMenuV4ItemResponse {
|
|
|
6846
6911
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6847
6912
|
changes?: ItemChangeDTO[];
|
|
6848
6913
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6914
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6849
6915
|
attachments?: FileAttachmentsDTO;
|
|
6850
6916
|
weight?: WeightDTO;
|
|
6851
6917
|
permissions?: Record<string, any>;
|
|
@@ -6897,6 +6963,7 @@ export interface PatchMenuV4ItemsBulkUpdateBody {
|
|
|
6897
6963
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6898
6964
|
changes?: ItemChangeDTO[];
|
|
6899
6965
|
vendor_metadata?: VendorMetadataDTO[];
|
|
6966
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6900
6967
|
attachments?: FileAttachmentsDTO;
|
|
6901
6968
|
weight?: WeightDTO;
|
|
6902
6969
|
permissions?: Record<string, any>;
|
|
@@ -6954,6 +7021,7 @@ export interface PatchMenuV4ItemsBulkPriceUpdateBody {
|
|
|
6954
7021
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
6955
7022
|
changes?: ItemChangeDTO[];
|
|
6956
7023
|
vendor_metadata?: VendorMetadataDTO[];
|
|
7024
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
6957
7025
|
attachments?: FileAttachmentsDTO;
|
|
6958
7026
|
weight?: WeightDTO;
|
|
6959
7027
|
permissions?: Record<string, any>;
|
|
@@ -7020,6 +7088,7 @@ export interface PostMenuV4ItemDuplicateResponse {
|
|
|
7020
7088
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
7021
7089
|
changes?: ItemChangeDTO[];
|
|
7022
7090
|
vendor_metadata?: VendorMetadataDTO[];
|
|
7091
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
7023
7092
|
attachments?: FileAttachmentsDTO;
|
|
7024
7093
|
weight?: WeightDTO;
|
|
7025
7094
|
permissions?: Record<string, any>;
|
|
@@ -7998,6 +8067,7 @@ export interface PostMenuV4ScheduleMenuResponse {
|
|
|
7998
8067
|
brand?: DraftBrandDTO;
|
|
7999
8068
|
changes?: MenuChangeDTO[];
|
|
8000
8069
|
vendor_metadata?: VendorMetadataDTO[];
|
|
8070
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
8001
8071
|
attachments?: FileAttachmentsDTO;
|
|
8002
8072
|
permissions?: Record<string, any>;
|
|
8003
8073
|
[index: string]: any;
|
|
@@ -8030,6 +8100,7 @@ export interface PostMenuV4UnscheduleMenuResponse {
|
|
|
8030
8100
|
brand?: DraftBrandDTO;
|
|
8031
8101
|
changes?: MenuChangeDTO[];
|
|
8032
8102
|
vendor_metadata?: VendorMetadataDTO[];
|
|
8103
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
8033
8104
|
attachments?: FileAttachmentsDTO;
|
|
8034
8105
|
permissions?: Record<string, any>;
|
|
8035
8106
|
[index: string]: any;
|
|
@@ -8063,6 +8134,7 @@ export interface GetMenuV4MenuResponse {
|
|
|
8063
8134
|
brand?: DraftBrandDTO;
|
|
8064
8135
|
changes?: MenuChangeDTO[];
|
|
8065
8136
|
vendor_metadata?: VendorMetadataDTO[];
|
|
8137
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
8066
8138
|
attachments?: FileAttachmentsDTO;
|
|
8067
8139
|
permissions?: Record<string, any>;
|
|
8068
8140
|
[index: string]: any;
|
|
@@ -8124,6 +8196,7 @@ export interface GetMenuV4CategoryResponse {
|
|
|
8124
8196
|
brand?: DraftBrandDTO;
|
|
8125
8197
|
changes?: CategoryChangeDTO[];
|
|
8126
8198
|
vendor_metadata?: VendorMetadataDTO[];
|
|
8199
|
+
menu_category_items?: MenuCategoryItemsDTO[];
|
|
8127
8200
|
attachments?: FileAttachmentsDTO;
|
|
8128
8201
|
permissions?: Record<string, any>;
|
|
8129
8202
|
[index: string]: any;
|