@compassdigital/sdk.typescript 4.469.0 → 4.470.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.
@@ -628,6 +628,7 @@ export interface DraftMenuDTO {
628
628
  updated_at?: string;
629
629
  deleted_at?: string;
630
630
  parent_id?: string;
631
+ draft_parent_id?: string;
631
632
  name?: string;
632
633
  brand_id?: string;
633
634
  translation?: NameTranslation;
@@ -652,6 +653,7 @@ export interface DraftCategoryDTO {
652
653
  updated_at?: string;
653
654
  deleted_at?: string;
654
655
  parent_id?: string;
656
+ draft_parent_id?: string;
655
657
  name?: string;
656
658
  label?: string;
657
659
  sequence?: number;
@@ -705,6 +707,7 @@ export interface DraftItemDTO {
705
707
  updated_at?: string;
706
708
  deleted_at?: string;
707
709
  parent_id?: string;
710
+ draft_parent_id?: string;
708
711
  name?: string;
709
712
  name_on_receipt?: string;
710
713
  name_on_kds?: string;
@@ -778,6 +781,7 @@ export interface DraftModifierGroupDTO {
778
781
  updated_at?: string;
779
782
  deleted_at?: string;
780
783
  parent_id?: string;
784
+ draft_parent_id?: string;
781
785
  name?: string;
782
786
  label?: string;
783
787
  min?: number;
@@ -829,6 +833,7 @@ export interface DraftModifierDTO {
829
833
  updated_at?: string;
830
834
  deleted_at?: string;
831
835
  parent_id?: string;
836
+ draft_parent_id?: string;
832
837
  name?: string;
833
838
  name_on_receipt?: string;
834
839
  name_on_kds?: string;
@@ -1240,6 +1245,7 @@ export interface PublishedMenuDTO {
1240
1245
  updated_at?: string;
1241
1246
  deleted_at?: string;
1242
1247
  parent_id?: string;
1248
+ draft_parent_id?: string;
1243
1249
  name?: string;
1244
1250
  brand_id?: string;
1245
1251
  translation?: NameTranslation;
@@ -1253,6 +1259,7 @@ export interface PublishedCategoryDTO {
1253
1259
  updated_at?: string;
1254
1260
  deleted_at?: string;
1255
1261
  parent_id?: string;
1262
+ draft_parent_id?: string;
1256
1263
  name?: string;
1257
1264
  label?: string;
1258
1265
  sequence?: number;
@@ -1285,6 +1292,7 @@ export interface PublishedItemDTO {
1285
1292
  updated_at?: string;
1286
1293
  deleted_at?: string;
1287
1294
  parent_id?: string;
1295
+ draft_parent_id?: string;
1288
1296
  name?: string;
1289
1297
  name_on_receipt?: string;
1290
1298
  name_on_kds?: string;
@@ -1335,6 +1343,7 @@ export interface PublishedModifierGroupDTO {
1335
1343
  updated_at?: string;
1336
1344
  deleted_at?: string;
1337
1345
  parent_id?: string;
1346
+ draft_parent_id?: string;
1338
1347
  name?: string;
1339
1348
  label?: string;
1340
1349
  min?: number;
@@ -1372,6 +1381,7 @@ export interface PublishedModifierDTO {
1372
1381
  updated_at?: string;
1373
1382
  deleted_at?: string;
1374
1383
  parent_id?: string;
1384
+ draft_parent_id?: string;
1375
1385
  name?: string;
1376
1386
  name_on_receipt?: string;
1377
1387
  name_on_kds?: string;
@@ -1625,6 +1635,7 @@ export interface DraftItemEntityDTO {
1625
1635
  updated_at?: string;
1626
1636
  deleted_at?: string;
1627
1637
  parent_id?: string;
1638
+ draft_parent_id?: string;
1628
1639
  name: string;
1629
1640
  name_on_receipt?: string;
1630
1641
  name_on_kds?: string;
@@ -1679,6 +1690,7 @@ export interface DraftModifierEntityDTO {
1679
1690
  updated_at?: string;
1680
1691
  deleted_at?: string;
1681
1692
  parent_id?: string;
1693
+ draft_parent_id?: string;
1682
1694
  name: string;
1683
1695
  name_on_receipt?: string;
1684
1696
  name_on_kds?: string;
@@ -1776,6 +1788,7 @@ export interface DraftModifierGroupEntityDTO {
1776
1788
  updated_at?: string;
1777
1789
  deleted_at?: string;
1778
1790
  parent_id?: string;
1791
+ draft_parent_id?: string;
1779
1792
  name: string;
1780
1793
  label?: string;
1781
1794
  min?: number;
@@ -1884,6 +1897,7 @@ export interface PartialItemDTO {
1884
1897
  cpg_item?: UniversalItemDTO;
1885
1898
  stocks?: StockDTO[];
1886
1899
  parent_id?: string;
1900
+ draft_parent_id?: string;
1887
1901
  name?: string;
1888
1902
  name_on_receipt?: string;
1889
1903
  name_on_kds?: string;
@@ -1929,6 +1943,7 @@ export interface PartialModifierDTO {
1929
1943
  children?: DraftModifierDTO[];
1930
1944
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
1931
1945
  parent_id?: string;
1946
+ draft_parent_id?: string;
1932
1947
  name?: string;
1933
1948
  name_on_receipt?: string;
1934
1949
  name_on_kds?: string;
@@ -3616,6 +3631,7 @@ export interface PostMenuV3DraftMenuBody {
3616
3631
  station_id?: string;
3617
3632
  price_level_id?: string;
3618
3633
  parent_id?: string;
3634
+ draft_parent_id?: string;
3619
3635
  name: string;
3620
3636
  brand_id: string;
3621
3637
  translation?: NameTranslation;
@@ -3654,6 +3670,7 @@ export interface PatchMenuV3DraftMenuBody {
3654
3670
  price_level_id?: string;
3655
3671
  id?: string;
3656
3672
  parent_id?: string;
3673
+ draft_parent_id?: string;
3657
3674
  name?: string;
3658
3675
  brand_id?: string;
3659
3676
  translation?: NameTranslation;
@@ -3705,6 +3722,7 @@ export type PostMenuV3DraftMenusBody = {
3705
3722
  station_id?: string;
3706
3723
  price_level_id?: string;
3707
3724
  parent_id?: string;
3725
+ draft_parent_id?: string;
3708
3726
  name: string;
3709
3727
  brand_id: string;
3710
3728
  translation?: NameTranslation;
@@ -3796,6 +3814,7 @@ export interface PostMenuV3DraftMenuDuplicateResponse {
3796
3814
  updated_at?: string;
3797
3815
  deleted_at?: string;
3798
3816
  parent_id?: string;
3817
+ draft_parent_id?: string;
3799
3818
  name: string;
3800
3819
  brand_id: string;
3801
3820
  translation?: NameTranslation;
@@ -3921,6 +3940,7 @@ export interface PostMenuV3DraftCategoryBody {
3921
3940
  parent?: DraftCategoryDTO;
3922
3941
  children?: DraftCategoryDTO[];
3923
3942
  parent_id?: string;
3943
+ draft_parent_id?: string;
3924
3944
  name: string;
3925
3945
  label?: string;
3926
3946
  sequence?: number;
@@ -3961,6 +3981,7 @@ export interface PatchMenuV3DraftCategoryBody {
3961
3981
  children?: DraftCategoryDTO[];
3962
3982
  id?: string;
3963
3983
  parent_id?: string;
3984
+ draft_parent_id?: string;
3964
3985
  name?: string;
3965
3986
  label?: string;
3966
3987
  sequence?: number;
@@ -4006,6 +4027,7 @@ export type PostMenuV3DraftCategoriesBody = {
4006
4027
  parent?: DraftCategoryDTO;
4007
4028
  children?: DraftCategoryDTO[];
4008
4029
  parent_id?: string;
4030
+ draft_parent_id?: string;
4009
4031
  name: string;
4010
4032
  label?: string;
4011
4033
  sequence?: number;
@@ -4070,6 +4092,7 @@ export interface PostMenuV3DraftCategoryDuplicateResponse {
4070
4092
  updated_at?: string;
4071
4093
  deleted_at?: string;
4072
4094
  parent_id?: string;
4095
+ draft_parent_id?: string;
4073
4096
  name: string;
4074
4097
  label?: string;
4075
4098
  sequence?: number;
@@ -4321,6 +4344,7 @@ export interface PostMenuV3DraftItemBody {
4321
4344
  cpg_item?: UniversalItemDTO;
4322
4345
  stocks?: StockDTO[];
4323
4346
  parent_id?: string;
4347
+ draft_parent_id?: string;
4324
4348
  name: string;
4325
4349
  name_on_receipt?: string;
4326
4350
  name_on_kds?: string;
@@ -4387,6 +4411,7 @@ export interface PatchMenuV3DraftItemBody {
4387
4411
  stocks?: StockDTO[];
4388
4412
  id?: string;
4389
4413
  parent_id?: string;
4414
+ draft_parent_id?: string;
4390
4415
  name?: string;
4391
4416
  name_on_receipt?: string;
4392
4417
  name_on_kds?: string;
@@ -4478,6 +4503,7 @@ export type PostMenuV3DraftItemsBody = {
4478
4503
  cpg_item?: UniversalItemDTO;
4479
4504
  stocks?: StockDTO[];
4480
4505
  parent_id?: string;
4506
+ draft_parent_id?: string;
4481
4507
  name: string;
4482
4508
  name_on_receipt?: string;
4483
4509
  name_on_kds?: string;
@@ -4562,6 +4588,7 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
4562
4588
  stocks?: StockDTO[];
4563
4589
  id?: string;
4564
4590
  parent_id?: string;
4591
+ draft_parent_id?: string;
4565
4592
  name?: string;
4566
4593
  name_on_receipt?: string;
4567
4594
  name_on_kds?: string;
@@ -4881,6 +4908,7 @@ export interface PostMenuV3DraftModifierGroupBody {
4881
4908
  modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
4882
4909
  items?: DraftItemToModifierGroupRelationshipDTO[];
4883
4910
  parent_id?: string;
4911
+ draft_parent_id?: string;
4884
4912
  name: string;
4885
4913
  label?: string;
4886
4914
  min?: number;
@@ -4924,6 +4952,7 @@ export interface PatchMenuV3DraftModifierGroupBody {
4924
4952
  items?: DraftItemToModifierGroupRelationshipDTO[];
4925
4953
  id?: string;
4926
4954
  parent_id?: string;
4955
+ draft_parent_id?: string;
4927
4956
  name?: string;
4928
4957
  label?: string;
4929
4958
  min?: number;
@@ -4980,6 +5009,7 @@ export type PostMenuV3DraftModifierGroupsBody = {
4980
5009
  modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
4981
5010
  items?: DraftItemToModifierGroupRelationshipDTO[];
4982
5011
  parent_id?: string;
5012
+ draft_parent_id?: string;
4983
5013
  name: string;
4984
5014
  label?: string;
4985
5015
  min?: number;
@@ -5038,6 +5068,7 @@ export interface PostMenuV3DraftModifierGroupDuplicateResponse {
5038
5068
  updated_at?: string;
5039
5069
  deleted_at?: string;
5040
5070
  parent_id?: string;
5071
+ draft_parent_id?: string;
5041
5072
  name: string;
5042
5073
  label?: string;
5043
5074
  min?: number;
@@ -5284,6 +5315,7 @@ export interface PostMenuV3DraftModifierBody {
5284
5315
  children?: DraftModifierDTO[];
5285
5316
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
5286
5317
  parent_id?: string;
5318
+ draft_parent_id?: string;
5287
5319
  name: string;
5288
5320
  name_on_receipt?: string;
5289
5321
  name_on_kds?: string;
@@ -5345,6 +5377,7 @@ export interface PatchMenuV3DraftModifierBody {
5345
5377
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
5346
5378
  id?: string;
5347
5379
  parent_id?: string;
5380
+ draft_parent_id?: string;
5348
5381
  name?: string;
5349
5382
  name_on_receipt?: string;
5350
5383
  name_on_kds?: string;
@@ -5431,6 +5464,7 @@ export type PostMenuV3DraftModifiersBody = {
5431
5464
  children?: DraftModifierDTO[];
5432
5465
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
5433
5466
  parent_id?: string;
5467
+ draft_parent_id?: string;
5434
5468
  name: string;
5435
5469
  name_on_receipt?: string;
5436
5470
  name_on_kds?: string;
@@ -5510,6 +5544,7 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
5510
5544
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
5511
5545
  id?: string;
5512
5546
  parent_id?: string;
5547
+ draft_parent_id?: string;
5513
5548
  name?: string;
5514
5549
  name_on_receipt?: string;
5515
5550
  name_on_kds?: string;
@@ -6088,6 +6123,7 @@ export interface PostMenuV4BrandMenuBody {
6088
6123
  station_id?: string;
6089
6124
  price_level_id?: string;
6090
6125
  parent_id?: string;
6126
+ draft_parent_id?: string;
6091
6127
  name: string;
6092
6128
  brand_id: string;
6093
6129
  translation?: NameTranslation;
@@ -6112,6 +6148,7 @@ export interface PostMenuV4BrandMenuResponse {
6112
6148
  updated_at?: string;
6113
6149
  deleted_at?: string;
6114
6150
  parent_id?: string;
6151
+ draft_parent_id?: string;
6115
6152
  name: string;
6116
6153
  brand_id: string;
6117
6154
  translation?: NameTranslation;
@@ -6141,6 +6178,7 @@ export interface PatchMenuV4BrandMenuBody {
6141
6178
  price_level_id?: string;
6142
6179
  id?: string;
6143
6180
  parent_id?: string;
6181
+ draft_parent_id?: string;
6144
6182
  name?: string;
6145
6183
  brand_id?: string;
6146
6184
  translation?: NameTranslation;
@@ -6166,6 +6204,7 @@ export interface PatchMenuV4BrandMenuResponse {
6166
6204
  updated_at?: string;
6167
6205
  deleted_at?: string;
6168
6206
  parent_id?: string;
6207
+ draft_parent_id?: string;
6169
6208
  name: string;
6170
6209
  brand_id: string;
6171
6210
  translation?: NameTranslation;
@@ -6198,6 +6237,7 @@ export interface DeleteMenuV4BrandMenuResponse {
6198
6237
  updated_at?: string;
6199
6238
  deleted_at?: string;
6200
6239
  parent_id?: string;
6240
+ draft_parent_id?: string;
6201
6241
  name: string;
6202
6242
  brand_id: string;
6203
6243
  translation?: NameTranslation;
@@ -6301,6 +6341,7 @@ export interface PostMenuV4BrandCategoryBody {
6301
6341
  parent?: DraftCategoryDTO;
6302
6342
  children?: DraftCategoryDTO[];
6303
6343
  parent_id?: string;
6344
+ draft_parent_id?: string;
6304
6345
  name: string;
6305
6346
  label?: string;
6306
6347
  sequence?: number;
@@ -6327,6 +6368,7 @@ export interface PostMenuV4BrandCategoryResponse {
6327
6368
  updated_at?: string;
6328
6369
  deleted_at?: string;
6329
6370
  parent_id?: string;
6371
+ draft_parent_id?: string;
6330
6372
  name: string;
6331
6373
  label?: string;
6332
6374
  sequence?: number;
@@ -6358,6 +6400,7 @@ export interface PatchMenuV4BrandCategoryBody {
6358
6400
  children?: DraftCategoryDTO[];
6359
6401
  id?: string;
6360
6402
  parent_id?: string;
6403
+ draft_parent_id?: string;
6361
6404
  name?: string;
6362
6405
  label?: string;
6363
6406
  sequence?: number;
@@ -6385,6 +6428,7 @@ export interface PatchMenuV4BrandCategoryResponse {
6385
6428
  updated_at?: string;
6386
6429
  deleted_at?: string;
6387
6430
  parent_id?: string;
6431
+ draft_parent_id?: string;
6388
6432
  name: string;
6389
6433
  label?: string;
6390
6434
  sequence?: number;
@@ -6419,6 +6463,7 @@ export interface DeleteMenuV4BrandCategoryResponse {
6419
6463
  updated_at?: string;
6420
6464
  deleted_at?: string;
6421
6465
  parent_id?: string;
6466
+ draft_parent_id?: string;
6422
6467
  name: string;
6423
6468
  label?: string;
6424
6469
  sequence?: number;
@@ -6511,6 +6556,7 @@ export interface PostMenuV4BrandCategoryDuplicateBody {
6511
6556
  children?: DraftCategoryDTO[];
6512
6557
  id?: string;
6513
6558
  parent_id?: string;
6559
+ draft_parent_id?: string;
6514
6560
  name?: string;
6515
6561
  label?: string;
6516
6562
  sequence?: number;
@@ -6538,6 +6584,7 @@ export interface PostMenuV4BrandCategoryDuplicateResponse {
6538
6584
  updated_at?: string;
6539
6585
  deleted_at?: string;
6540
6586
  parent_id?: string;
6587
+ draft_parent_id?: string;
6541
6588
  name: string;
6542
6589
  label?: string;
6543
6590
  sequence?: number;
@@ -6573,6 +6620,7 @@ export interface PostMenuV4BrandMenuDuplicateBody {
6573
6620
  price_level_id?: string;
6574
6621
  id?: string;
6575
6622
  parent_id?: string;
6623
+ draft_parent_id?: string;
6576
6624
  name?: string;
6577
6625
  brand_id?: string;
6578
6626
  translation?: NameTranslation;
@@ -6598,6 +6646,7 @@ export interface PostMenuV4BrandMenuDuplicateResponse {
6598
6646
  updated_at?: string;
6599
6647
  deleted_at?: string;
6600
6648
  parent_id?: string;
6649
+ draft_parent_id?: string;
6601
6650
  name: string;
6602
6651
  brand_id: string;
6603
6652
  translation?: NameTranslation;
@@ -6669,6 +6718,7 @@ export interface PostMenuV4ItemBody {
6669
6718
  cpg_item?: UniversalItemDTO;
6670
6719
  stocks?: StockDTO[];
6671
6720
  parent_id?: string;
6721
+ draft_parent_id?: string;
6672
6722
  name: string;
6673
6723
  name_on_receipt?: string;
6674
6724
  name_on_kds?: string;
@@ -6722,6 +6772,7 @@ export interface PostMenuV4ItemResponse {
6722
6772
  updated_at?: string;
6723
6773
  deleted_at?: string;
6724
6774
  parent_id?: string;
6775
+ draft_parent_id?: string;
6725
6776
  name: string;
6726
6777
  name_on_receipt?: string;
6727
6778
  name_on_kds?: string;
@@ -6774,6 +6825,7 @@ export type PostMenuV4ItemsBulkCreateBody = {
6774
6825
  cpg_item?: UniversalItemDTO;
6775
6826
  stocks?: StockDTO[];
6776
6827
  parent_id?: string;
6828
+ draft_parent_id?: string;
6777
6829
  name: string;
6778
6830
  name_on_receipt?: string;
6779
6831
  name_on_kds?: string;
@@ -6840,6 +6892,7 @@ export interface GetMenuV4ItemResponse {
6840
6892
  updated_at?: string;
6841
6893
  deleted_at?: string;
6842
6894
  parent_id?: string;
6895
+ draft_parent_id?: string;
6843
6896
  name: string;
6844
6897
  name_on_receipt?: string;
6845
6898
  name_on_kds?: string;
@@ -6895,6 +6948,7 @@ export interface PatchMenuV4ItemBody {
6895
6948
  cpg_item?: UniversalItemDTO;
6896
6949
  stocks?: StockDTO[];
6897
6950
  parent_id?: string;
6951
+ draft_parent_id?: string;
6898
6952
  name?: string;
6899
6953
  name_on_receipt?: string;
6900
6954
  name_on_kds?: string;
@@ -6947,6 +7001,7 @@ export interface PatchMenuV4ItemResponse {
6947
7001
  updated_at?: string;
6948
7002
  deleted_at?: string;
6949
7003
  parent_id?: string;
7004
+ draft_parent_id?: string;
6950
7005
  name: string;
6951
7006
  name_on_receipt?: string;
6952
7007
  name_on_kds?: string;
@@ -7006,6 +7061,7 @@ export interface DeleteMenuV4ItemResponse {
7006
7061
  updated_at?: string;
7007
7062
  deleted_at?: string;
7008
7063
  parent_id?: string;
7064
+ draft_parent_id?: string;
7009
7065
  name: string;
7010
7066
  name_on_receipt?: string;
7011
7067
  name_on_kds?: string;
@@ -7059,6 +7115,7 @@ export interface PatchMenuV4ItemsBulkUpdateBody {
7059
7115
  stocks?: StockDTO[];
7060
7116
  id?: string;
7061
7117
  parent_id?: string;
7118
+ draft_parent_id?: string;
7062
7119
  name?: string;
7063
7120
  name_on_receipt?: string;
7064
7121
  name_on_kds?: string;
@@ -7117,6 +7174,7 @@ export interface PatchMenuV4ItemsBulkPriceUpdateBody {
7117
7174
  stocks?: StockDTO[];
7118
7175
  id?: string;
7119
7176
  parent_id?: string;
7177
+ draft_parent_id?: string;
7120
7178
  name?: string;
7121
7179
  name_on_receipt?: string;
7122
7180
  name_on_kds?: string;
@@ -7183,6 +7241,7 @@ export interface PostMenuV4ItemDuplicateResponse {
7183
7241
  updated_at?: string;
7184
7242
  deleted_at?: string;
7185
7243
  parent_id?: string;
7244
+ draft_parent_id?: string;
7186
7245
  name: string;
7187
7246
  name_on_receipt?: string;
7188
7247
  name_on_kds?: string;
@@ -7301,6 +7360,7 @@ export interface PostMenuV4ModifierBody {
7301
7360
  children?: DraftModifierDTO[];
7302
7361
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
7303
7362
  parent_id?: string;
7363
+ draft_parent_id?: string;
7304
7364
  name: string;
7305
7365
  name_on_receipt?: string;
7306
7366
  name_on_kds?: string;
@@ -7348,6 +7408,7 @@ export interface PostMenuV4ModifierResponse {
7348
7408
  updated_at?: string;
7349
7409
  deleted_at?: string;
7350
7410
  parent_id?: string;
7411
+ draft_parent_id?: string;
7351
7412
  name: string;
7352
7413
  name_on_receipt?: string;
7353
7414
  name_on_kds?: string;
@@ -7405,6 +7466,7 @@ export interface GetMenuV4ModifierResponse {
7405
7466
  updated_at?: string;
7406
7467
  deleted_at?: string;
7407
7468
  parent_id?: string;
7469
+ draft_parent_id?: string;
7408
7470
  name: string;
7409
7471
  name_on_receipt?: string;
7410
7472
  name_on_kds?: string;
@@ -7454,6 +7516,7 @@ export interface PatchMenuV4ModifierBody {
7454
7516
  children?: DraftModifierDTO[];
7455
7517
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
7456
7518
  parent_id?: string;
7519
+ draft_parent_id?: string;
7457
7520
  name?: string;
7458
7521
  name_on_receipt?: string;
7459
7522
  name_on_kds?: string;
@@ -7501,6 +7564,7 @@ export interface PatchMenuV4ModifierResponse {
7501
7564
  updated_at?: string;
7502
7565
  deleted_at?: string;
7503
7566
  parent_id?: string;
7567
+ draft_parent_id?: string;
7504
7568
  name: string;
7505
7569
  name_on_receipt?: string;
7506
7570
  name_on_kds?: string;
@@ -7555,6 +7619,7 @@ export interface DeleteMenuV4ModifierResponse {
7555
7619
  updated_at?: string;
7556
7620
  deleted_at?: string;
7557
7621
  parent_id?: string;
7622
+ draft_parent_id?: string;
7558
7623
  name: string;
7559
7624
  name_on_receipt?: string;
7560
7625
  name_on_kds?: string;
@@ -7613,6 +7678,7 @@ export interface PostMenuV4ModifierDuplicateResponse {
7613
7678
  updated_at?: string;
7614
7679
  deleted_at?: string;
7615
7680
  parent_id?: string;
7681
+ draft_parent_id?: string;
7616
7682
  name: string;
7617
7683
  name_on_receipt?: string;
7618
7684
  name_on_kds?: string;
@@ -7662,6 +7728,7 @@ export interface PatchMenuV4ModifiersBulkUpdateBody {
7662
7728
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
7663
7729
  id?: string;
7664
7730
  parent_id?: string;
7731
+ draft_parent_id?: string;
7665
7732
  name?: string;
7666
7733
  name_on_receipt?: string;
7667
7734
  name_on_kds?: string;
@@ -7735,6 +7802,7 @@ export interface PostMenuV4ModifierGroupBody {
7735
7802
  modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
7736
7803
  items?: DraftItemToModifierGroupRelationshipDTO[];
7737
7804
  parent_id?: string;
7805
+ draft_parent_id?: string;
7738
7806
  name: string;
7739
7807
  label?: string;
7740
7808
  min?: number;
@@ -7764,6 +7832,7 @@ export interface PostMenuV4ModifierGroupResponse {
7764
7832
  updated_at?: string;
7765
7833
  deleted_at?: string;
7766
7834
  parent_id?: string;
7835
+ draft_parent_id?: string;
7767
7836
  name: string;
7768
7837
  label?: string;
7769
7838
  min?: number;
@@ -7803,6 +7872,7 @@ export interface GetMenuV4ModifierGroupResponse {
7803
7872
  updated_at?: string;
7804
7873
  deleted_at?: string;
7805
7874
  parent_id?: string;
7875
+ draft_parent_id?: string;
7806
7876
  name: string;
7807
7877
  label?: string;
7808
7878
  min?: number;
@@ -7834,6 +7904,7 @@ export interface PatchMenuV4ModifierGroupBody {
7834
7904
  modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
7835
7905
  items?: DraftItemToModifierGroupRelationshipDTO[];
7836
7906
  parent_id?: string;
7907
+ draft_parent_id?: string;
7837
7908
  name?: string;
7838
7909
  label?: string;
7839
7910
  min?: number;
@@ -7863,6 +7934,7 @@ export interface PatchMenuV4ModifierGroupResponse {
7863
7934
  updated_at?: string;
7864
7935
  deleted_at?: string;
7865
7936
  parent_id?: string;
7937
+ draft_parent_id?: string;
7866
7938
  name: string;
7867
7939
  label?: string;
7868
7940
  min?: number;
@@ -7899,6 +7971,7 @@ export interface DeleteMenuV4ModifierGroupResponse {
7899
7971
  updated_at?: string;
7900
7972
  deleted_at?: string;
7901
7973
  parent_id?: string;
7974
+ draft_parent_id?: string;
7902
7975
  name: string;
7903
7976
  label?: string;
7904
7977
  min?: number;
@@ -7959,6 +8032,7 @@ export interface PostMenuV4ModifierGroupDuplicateBody {
7959
8032
  modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
7960
8033
  items?: DraftItemToModifierGroupRelationshipDTO[];
7961
8034
  parent_id?: string;
8035
+ draft_parent_id?: string;
7962
8036
  name?: string;
7963
8037
  label?: string;
7964
8038
  min?: number;
@@ -7988,6 +8062,7 @@ export interface PostMenuV4ModifierGroupDuplicateResponse {
7988
8062
  updated_at?: string;
7989
8063
  deleted_at?: string;
7990
8064
  parent_id?: string;
8065
+ draft_parent_id?: string;
7991
8066
  name: string;
7992
8067
  label?: string;
7993
8068
  min?: number;
@@ -8189,6 +8264,7 @@ export interface PostMenuV4ScheduleMenuResponse {
8189
8264
  updated_at?: string;
8190
8265
  deleted_at?: string;
8191
8266
  parent_id?: string;
8267
+ draft_parent_id?: string;
8192
8268
  name: string;
8193
8269
  brand_id: string;
8194
8270
  translation?: NameTranslation;
@@ -8222,6 +8298,7 @@ export interface PostMenuV4UnscheduleMenuResponse {
8222
8298
  updated_at?: string;
8223
8299
  deleted_at?: string;
8224
8300
  parent_id?: string;
8301
+ draft_parent_id?: string;
8225
8302
  name: string;
8226
8303
  brand_id: string;
8227
8304
  translation?: NameTranslation;
@@ -8256,6 +8333,7 @@ export interface GetMenuV4MenuResponse {
8256
8333
  updated_at?: string;
8257
8334
  deleted_at?: string;
8258
8335
  parent_id?: string;
8336
+ draft_parent_id?: string;
8259
8337
  name: string;
8260
8338
  brand_id?: string;
8261
8339
  translation?: NameTranslation;
@@ -8312,6 +8390,7 @@ export interface GetMenuV4CategoryResponse {
8312
8390
  updated_at?: string;
8313
8391
  deleted_at?: string;
8314
8392
  parent_id?: string;
8393
+ draft_parent_id?: string;
8315
8394
  name: string;
8316
8395
  label?: string;
8317
8396
  sequence?: number;