@compassdigital/sdk.typescript 4.41.1 → 4.43.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.
@@ -406,11 +406,11 @@ export interface LocalMenuGroupDTO {
406
406
  }
407
407
  export interface BrandChangeDTO {
408
408
  id?: string;
409
- insert?: FilterFieldDTO;
410
- delete?: FilterFieldDTO;
411
- snapshot_entity_id?: FilterFieldDTO;
409
+ insert?: Record<string, any>;
410
+ delete?: Record<string, any>;
411
+ snapshot_entity_id?: string;
412
412
  snapshot_entity?: DraftBrandDTO;
413
- permissions?: FilterFieldDTO;
413
+ permissions?: Record<string, any>;
414
414
  [index: string]: any;
415
415
  }
416
416
  export interface DraftMenuDTO {
@@ -421,11 +421,11 @@ export interface DraftMenuDTO {
421
421
  parent_id?: string;
422
422
  name?: string;
423
423
  brand_id?: string;
424
- applied_diff_snapshot?: FilterFieldDTO;
424
+ applied_diff_snapshot?: Record<string, any>;
425
425
  brand?: DraftBrandDTO;
426
426
  changes?: MenuChangeDTO[];
427
427
  vendor_metadata?: VendorMetadataDTO[];
428
- permissions?: FilterFieldDTO;
428
+ permissions?: Record<string, any>;
429
429
  [index: string]: any;
430
430
  }
431
431
  export interface DraftCategoryDTO {
@@ -439,14 +439,14 @@ export interface DraftCategoryDTO {
439
439
  is_active?: boolean;
440
440
  brand_id?: string;
441
441
  menu_id?: string;
442
- applied_diff_snapshot?: FilterFieldDTO;
442
+ applied_diff_snapshot?: Record<string, any>;
443
443
  menu?: Record<string, any>;
444
444
  items?: DraftCategoryToItemRelationshipDTO[];
445
445
  brand?: DraftBrandDTO;
446
446
  changes?: CategoryChangeDTO[];
447
447
  vendor_metadata?: VendorMetadataDTO[];
448
448
  attachments?: Record<string, any>;
449
- permissions?: FilterFieldDTO;
449
+ permissions?: Record<string, any>;
450
450
  [index: string]: any;
451
451
  }
452
452
  export interface DraftCategoryToItemRelationshipDTO {
@@ -456,15 +456,15 @@ export interface DraftCategoryToItemRelationshipDTO {
456
456
  parent_id?: string;
457
457
  item_id?: string;
458
458
  category_id?: string;
459
- brand_id?: FilterFieldDTO;
459
+ brand_id?: string;
460
460
  sequence?: number;
461
- applied_diff_snapshot?: FilterFieldDTO;
461
+ applied_diff_snapshot?: Record<string, any>;
462
462
  category?: Record<string, any>;
463
463
  item?: DraftItemDTO;
464
464
  brand?: DraftBrandDTO;
465
465
  changes?: CategoryToItemRelationshipChangeDTO[];
466
466
  vendor_metadata?: VendorMetadataDTO[];
467
- permissions?: FilterFieldDTO;
467
+ permissions?: Record<string, any>;
468
468
  [index: string]: any;
469
469
  }
470
470
  export interface DraftItemDTO {
@@ -482,22 +482,22 @@ export interface DraftItemDTO {
482
482
  calories?: number;
483
483
  meal_value?: number;
484
484
  is_active?: boolean;
485
- posid?: FilterFieldDTO;
486
- tax_tags?: FilterFieldDTO[];
485
+ posid?: string;
486
+ tax_tags?: string[];
487
487
  brand_id?: string;
488
- line_route?: FilterFieldDTO;
489
- posid_segment?: FilterFieldDTO;
488
+ line_route?: string;
489
+ posid_segment?: string;
490
490
  menu_works?: Record<string, any>;
491
- is_out_of_stock?: FilterFieldDTO;
492
- tax_tag_code?: FilterFieldDTO;
493
- applied_diff_snapshot?: FilterFieldDTO;
491
+ is_out_of_stock?: boolean;
492
+ tax_tag_code?: string;
493
+ applied_diff_snapshot?: Record<string, any>;
494
494
  brand?: DraftBrandDTO;
495
495
  categories?: Record<string, any>[];
496
496
  changes?: ItemChangeDTO[];
497
497
  vendor_metadata?: VendorMetadataDTO[];
498
498
  attachments?: Record<string, any>;
499
499
  weight?: Record<string, any>;
500
- permissions?: FilterFieldDTO;
500
+ permissions?: Record<string, any>;
501
501
  [index: string]: any;
502
502
  }
503
503
  export interface DraftItemToModifierGroupRelationshipDTO {
@@ -507,15 +507,15 @@ export interface DraftItemToModifierGroupRelationshipDTO {
507
507
  parent_id?: string;
508
508
  modifier_group_id?: string;
509
509
  item_id?: string;
510
- brand_id?: FilterFieldDTO;
510
+ brand_id?: string;
511
511
  sequence?: number;
512
- applied_diff_snapshot?: FilterFieldDTO;
512
+ applied_diff_snapshot?: Record<string, any>;
513
513
  item?: Record<string, any>;
514
514
  modifier_group?: DraftModifierGroupDTO;
515
515
  brand?: DraftBrandDTO;
516
516
  changes?: ItemToModifierGroupRelationshipChangeDTO[];
517
517
  vendor_metadata?: VendorMetadataDTO[];
518
- permissions?: FilterFieldDTO;
518
+ permissions?: Record<string, any>;
519
519
  [index: string]: any;
520
520
  }
521
521
  export interface DraftModifierGroupDTO {
@@ -534,13 +534,13 @@ export interface DraftModifierGroupDTO {
534
534
  brand_id?: string;
535
535
  order_type?: "selection" | "option" | "quantity";
536
536
  sizing?: string;
537
- is_out_of_stock?: FilterFieldDTO;
538
- is_incremental?: FilterFieldDTO;
539
- applied_diff_snapshot?: FilterFieldDTO;
537
+ is_out_of_stock?: boolean;
538
+ is_incremental?: boolean;
539
+ applied_diff_snapshot?: Record<string, any>;
540
540
  brand?: DraftBrandDTO;
541
541
  changes?: ModifierGroupChangeDTO[];
542
542
  vendor_metadata?: VendorMetadataDTO[];
543
- permissions?: FilterFieldDTO;
543
+ permissions?: Record<string, any>;
544
544
  [index: string]: any;
545
545
  }
546
546
  export interface DraftModifierGroupToModifierRelationshipDTO {
@@ -550,15 +550,15 @@ export interface DraftModifierGroupToModifierRelationshipDTO {
550
550
  parent_id?: string;
551
551
  modifier_id?: string;
552
552
  modifier_group_id?: string;
553
- brand_id?: FilterFieldDTO;
553
+ brand_id?: string;
554
554
  sequence?: number;
555
- applied_diff_snapshot?: FilterFieldDTO;
555
+ applied_diff_snapshot?: Record<string, any>;
556
556
  modifier?: DraftModifierDTO;
557
557
  modifier_group?: Record<string, any>;
558
558
  brand?: DraftBrandDTO;
559
559
  changes?: ModifierGroupToModifierRelationshipChangeDTO[];
560
560
  vendor_metadata?: VendorMetadataDTO[];
561
- permissions?: FilterFieldDTO;
561
+ permissions?: Record<string, any>;
562
562
  [index: string]: any;
563
563
  }
564
564
  export interface DraftModifierDTO {
@@ -572,141 +572,136 @@ export interface DraftModifierDTO {
572
572
  description?: string;
573
573
  price?: number;
574
574
  calories?: number;
575
- tax_tags?: FilterFieldDTO[];
575
+ tax_tags?: string[];
576
576
  is_active?: boolean;
577
- posid?: FilterFieldDTO;
577
+ posid?: string;
578
578
  reporting?: ReportingMetadataDTO;
579
- posid_segment?: FilterFieldDTO;
579
+ posid_segment?: string;
580
580
  brand_id?: string;
581
581
  menu_works?: MenuWorksDTO;
582
- is_out_of_stock?: FilterFieldDTO;
582
+ is_out_of_stock?: boolean;
583
583
  price_for_none?: number;
584
584
  price_for_less?: number;
585
585
  price_for_more?: number;
586
586
  pre_surcharge?: number;
587
587
  post_surcharge?: number;
588
- tax_tag_code?: FilterFieldDTO;
589
- applied_diff_snapshot?: FilterFieldDTO;
588
+ tax_tag_code?: string;
589
+ applied_diff_snapshot?: Record<string, any>;
590
590
  brand?: DraftBrandDTO;
591
591
  changes?: ModifierChangeDTO[];
592
592
  vendor_metadata?: VendorMetadataDTO[];
593
593
  weight?: WeightDTO;
594
594
  attachments?: FileAttachmentsDTO;
595
- permissions?: FilterFieldDTO;
595
+ permissions?: Record<string, any>;
596
596
  [index: string]: any;
597
597
  }
598
598
  export interface ModifierChangeDTO {
599
599
  id?: string;
600
- insert?: FilterFieldDTO;
601
- delete?: FilterFieldDTO;
602
- snapshot_entity_id?: FilterFieldDTO;
600
+ insert?: Record<string, any>;
601
+ delete?: Record<string, any>;
602
+ snapshot_entity_id?: string;
603
603
  snapshot_entity?: Record<string, any>;
604
- permissions?: FilterFieldDTO;
604
+ permissions?: Record<string, any>;
605
605
  [index: string]: any;
606
606
  }
607
607
  export interface ReportingMetadataDTO {
608
608
  category?: ReportingCategoryMetadataDTO;
609
- id?: Record<string, any>;
610
609
  [index: string]: any;
611
610
  }
612
611
  export interface ReportingCategoryMetadataDTO {
613
612
  primary?: "Food" | "Beverage" | "Sundry" | "Alcohol" | "Snack";
614
- secondary?: FilterFieldDTO;
615
- id?: Record<string, any>;
613
+ secondary?: string;
616
614
  [index: string]: any;
617
615
  }
618
616
  export interface WeightDTO {
619
- unit?: FilterFieldDTO;
620
- amount?: FilterFieldDTO;
621
- id?: Record<string, any>;
617
+ unit?: string;
618
+ amount?: number;
622
619
  [index: string]: any;
623
620
  }
624
621
  export interface FileAttachmentsDTO {
625
- thumbnail?: FilterFieldDTO;
626
- id?: Record<string, any>;
622
+ thumbnail?: string;
627
623
  [index: string]: any;
628
624
  }
629
625
  export interface MenuWorksDTO {
630
- MRN?: FilterFieldDTO;
631
- unit_id?: FilterFieldDTO;
626
+ MRN?: string;
627
+ unit_id?: string;
632
628
  portion_quantity?: number;
633
- portion_unit_name?: FilterFieldDTO;
629
+ portion_unit_name?: string;
634
630
  grams?: number;
635
631
  cost?: number;
636
- id?: Record<string, any>;
637
632
  [index: string]: any;
638
633
  }
639
634
  export interface ModifierGroupToModifierRelationshipChangeDTO {
640
635
  id?: string;
641
- insert?: FilterFieldDTO;
642
- delete?: FilterFieldDTO;
643
- snapshot_entity_id?: FilterFieldDTO;
636
+ insert?: Record<string, any>;
637
+ delete?: Record<string, any>;
638
+ snapshot_entity_id?: string;
644
639
  snapshot_entity?: Record<string, any>;
645
- permissions?: FilterFieldDTO;
640
+ permissions?: Record<string, any>;
646
641
  [index: string]: any;
647
642
  }
648
643
  export interface ModifierGroupChangeDTO {
649
644
  id?: string;
650
- insert?: FilterFieldDTO;
651
- delete?: FilterFieldDTO;
652
- snapshot_entity_id?: FilterFieldDTO;
645
+ insert?: Record<string, any>;
646
+ delete?: Record<string, any>;
647
+ snapshot_entity_id?: string;
653
648
  snapshot_entity?: Record<string, any>;
654
- permissions?: FilterFieldDTO;
649
+ permissions?: Record<string, any>;
655
650
  [index: string]: any;
656
651
  }
657
652
  export interface ItemToModifierGroupRelationshipChangeDTO {
658
653
  id?: string;
659
- insert?: FilterFieldDTO;
660
- delete?: FilterFieldDTO;
661
- snapshot_entity_id?: FilterFieldDTO;
654
+ insert?: Record<string, any>;
655
+ delete?: Record<string, any>;
656
+ snapshot_entity_id?: string;
662
657
  snapshot_entity?: Record<string, any>;
663
- permissions?: FilterFieldDTO;
658
+ permissions?: Record<string, any>;
664
659
  [index: string]: any;
665
660
  }
666
661
  export interface ItemChangeDTO {
667
662
  id?: string;
668
- insert?: FilterFieldDTO;
669
- delete?: FilterFieldDTO;
670
- snapshot_entity_id?: FilterFieldDTO;
663
+ insert?: Record<string, any>;
664
+ delete?: Record<string, any>;
665
+ snapshot_entity_id?: string;
671
666
  snapshot_entity?: Record<string, any>;
672
- permissions?: FilterFieldDTO;
667
+ permissions?: Record<string, any>;
673
668
  [index: string]: any;
674
669
  }
675
670
  export interface CategoryToItemRelationshipChangeDTO {
676
671
  id?: string;
677
- insert?: FilterFieldDTO;
678
- delete?: FilterFieldDTO;
679
- snapshot_entity_id?: FilterFieldDTO;
672
+ insert?: Record<string, any>;
673
+ delete?: Record<string, any>;
674
+ snapshot_entity_id?: string;
680
675
  snapshot_entity?: Record<string, any>;
681
- permissions?: FilterFieldDTO;
676
+ permissions?: Record<string, any>;
682
677
  [index: string]: any;
683
678
  }
684
679
  export interface CategoryChangeDTO {
685
680
  id?: string;
686
- insert?: FilterFieldDTO;
687
- delete?: FilterFieldDTO;
688
- snapshot_entity_id?: FilterFieldDTO;
681
+ insert?: Record<string, any>;
682
+ delete?: Record<string, any>;
683
+ snapshot_entity_id?: string;
689
684
  snapshot_entity?: Record<string, any>;
690
- permissions?: FilterFieldDTO;
685
+ permissions?: Record<string, any>;
691
686
  [index: string]: any;
692
687
  }
693
688
  export interface MenuChangeDTO {
694
689
  id?: string;
695
- insert?: FilterFieldDTO;
696
- delete?: FilterFieldDTO;
697
- snapshot_entity_id?: FilterFieldDTO;
690
+ insert?: Record<string, any>;
691
+ delete?: Record<string, any>;
692
+ snapshot_entity_id?: string;
698
693
  snapshot_entity?: Record<string, any>;
699
- permissions?: FilterFieldDTO;
694
+ permissions?: Record<string, any>;
700
695
  [index: string]: any;
701
696
  }
702
697
  export interface BrandStatusDTO {
703
- brand_id?: FilterFieldDTO;
698
+ brand_id?: string;
704
699
  type?: string;
705
700
  status?: string;
706
- metadata?: FilterFieldDTO;
701
+ metadata?: Record<string, any>;
707
702
  id?: string;
708
703
  brand?: DraftBrandDTO;
709
- permissions?: FilterFieldDTO;
704
+ permissions?: Record<string, any>;
710
705
  [index: string]: any;
711
706
  }
712
707
  export interface SiteGroupWithMenuGroupNameResponseDTO {
@@ -734,24 +729,24 @@ export interface GlobalDiffDependencyDTO {
734
729
  id?: string;
735
730
  depends_on?: GlobalDiffDTO;
736
731
  is_depended_by?: Record<string, any>;
737
- permissions?: FilterFieldDTO;
732
+ permissions?: Record<string, any>;
738
733
  [index: string]: any;
739
734
  }
740
735
  export interface GlobalDiffDTO {
741
736
  action?: "create" | "update" | "delete";
742
737
  id?: string;
743
- entity_type?: FilterFieldDTO;
744
- local_id?: FilterFieldDTO;
745
- changes?: FilterFieldDTO;
746
- local_changes?: FilterFieldDTO;
747
- local_snapshot?: FilterFieldDTO;
748
- global_id?: FilterFieldDTO;
749
- global_snapshot?: FilterFieldDTO;
750
- brand_id?: FilterFieldDTO;
738
+ entity_type?: string;
739
+ local_id?: string;
740
+ changes?: Record<string, any>;
741
+ local_changes?: Record<string, any>;
742
+ local_snapshot?: Record<string, any>;
743
+ global_id?: string;
744
+ global_snapshot?: Record<string, any>;
745
+ brand_id?: string;
751
746
  depends_on?: Record<string, any>[];
752
747
  is_depended_by?: Record<string, any>[];
753
748
  brand?: DraftBrandDTO;
754
- permissions?: FilterFieldDTO;
749
+ permissions?: Record<string, any>;
755
750
  [index: string]: any;
756
751
  }
757
752
  export interface DiffDTO {
@@ -824,7 +819,7 @@ export interface PublishedItemDTO {
824
819
  meal_value?: number;
825
820
  is_active?: boolean;
826
821
  posid?: string;
827
- tax_tags?: Record<string, any>[];
822
+ tax_tags?: string[];
828
823
  brand_id?: string;
829
824
  line_route?: string;
830
825
  posid_segment?: string;
@@ -878,7 +873,7 @@ export interface PublishedModifierDTO {
878
873
  description?: string;
879
874
  price?: number;
880
875
  calories?: number;
881
- tax_tags?: Record<string, any>[];
876
+ tax_tags?: string[];
882
877
  is_active?: boolean;
883
878
  posid?: string;
884
879
  posid_segment?: string;
@@ -1138,7 +1133,7 @@ export interface DraftItemEntityDTO {
1138
1133
  meal_value?: number;
1139
1134
  is_active?: boolean;
1140
1135
  posid?: string;
1141
- tax_tags?: Record<string, any>[];
1136
+ tax_tags?: string[];
1142
1137
  brand_id: string;
1143
1138
  line_route?: string;
1144
1139
  posid_segment?: string;
@@ -1170,7 +1165,7 @@ export interface DraftModifierEntityDTO {
1170
1165
  description?: string;
1171
1166
  price: number;
1172
1167
  calories?: number;
1173
- tax_tags?: Record<string, any>[];
1168
+ tax_tags?: string[];
1174
1169
  is_active?: boolean;
1175
1170
  posid?: string;
1176
1171
  reporting: ReportingMetadataDTO;
@@ -1549,6 +1544,7 @@ export interface DeleteMenuV3LocalMenuGroupPath {
1549
1544
  }
1550
1545
  export interface DeleteMenuV3LocalMenuGroupQuery {
1551
1546
  delete_posid?: boolean;
1547
+ hard_delete?: boolean;
1552
1548
  }
1553
1549
  export interface DeleteMenuV3LocalMenuGroupResponse {
1554
1550
  name: string;
@@ -1570,9 +1566,7 @@ export interface DeleteMenuV3LocalMenuGroupRequest extends BaseRequest, RequestQ
1570
1566
  export interface GetMenuV3LocalMenuGroupsQuery {
1571
1567
  select?: string[];
1572
1568
  relationships?: string[];
1573
- filter?: {
1574
- [index: string]: any;
1575
- };
1569
+ filter?: string;
1576
1570
  limit?: number;
1577
1571
  page?: number;
1578
1572
  sort_by?: string;
@@ -1606,9 +1600,7 @@ export interface PostMenuV3LocalMenuGroupsRequest extends BaseRequest {
1606
1600
  body: PostMenuV3LocalMenuGroupsBody;
1607
1601
  }
1608
1602
  export interface GetMenuV3LocalMenuGroupsCountQuery {
1609
- filter?: {
1610
- [index: string]: any;
1611
- };
1603
+ filter?: string;
1612
1604
  _query?: string;
1613
1605
  }
1614
1606
  export interface GetMenuV3LocalMenuGroupsCountResponse {
@@ -1623,9 +1615,7 @@ export interface GetMenuV3DraftLocalMenuGroupBrandsPath {
1623
1615
  export interface GetMenuV3DraftLocalMenuGroupBrandsQuery {
1624
1616
  select?: string[];
1625
1617
  relationships?: string[];
1626
- filter?: {
1627
- [index: string]: any;
1628
- };
1618
+ filter?: string;
1629
1619
  limit?: number;
1630
1620
  page?: number;
1631
1621
  sort_by?: string;
@@ -1646,9 +1636,7 @@ export interface GetMenuV3LocalMenuGroupBrandsPath {
1646
1636
  export interface GetMenuV3LocalMenuGroupBrandsQuery {
1647
1637
  select?: string[];
1648
1638
  relationships?: string[];
1649
- filter?: {
1650
- [index: string]: any;
1651
- };
1639
+ filter?: string;
1652
1640
  limit?: number;
1653
1641
  page?: number;
1654
1642
  sort_by?: string;
@@ -1669,9 +1657,7 @@ export interface GetMenuV3LocalMenuGroupAllowedGlobalBrandsPath {
1669
1657
  export interface GetMenuV3LocalMenuGroupAllowedGlobalBrandsQuery {
1670
1658
  select?: string[];
1671
1659
  relationships?: string[];
1672
- filter?: {
1673
- [index: string]: any;
1674
- };
1660
+ filter?: string;
1675
1661
  limit?: number;
1676
1662
  page?: number;
1677
1663
  sort_by?: string;
@@ -1693,9 +1679,7 @@ export interface PostMenuV3LocalMenuGroupImportBrandsQuery {
1693
1679
  select?: string[];
1694
1680
  relationships?: string[];
1695
1681
  "body.brand_ids"?: string[];
1696
- filter?: {
1697
- [index: string]: any;
1698
- };
1682
+ filter?: string;
1699
1683
  limit?: number;
1700
1684
  page?: number;
1701
1685
  sort_by?: string;
@@ -1802,6 +1786,7 @@ export interface DeleteMenuV3GlobalMenuGroupPath {
1802
1786
  }
1803
1787
  export interface DeleteMenuV3GlobalMenuGroupQuery {
1804
1788
  delete_posid?: boolean;
1789
+ hard_delete?: boolean;
1805
1790
  }
1806
1791
  export interface DeleteMenuV3GlobalMenuGroupResponse {
1807
1792
  name: string;
@@ -1824,9 +1809,7 @@ export interface DeleteMenuV3GlobalMenuGroupRequest extends BaseRequest, Request
1824
1809
  export interface GetMenuV3GlobalMenuGroupsQuery {
1825
1810
  select?: string[];
1826
1811
  relationships?: string[];
1827
- filter?: {
1828
- [index: string]: any;
1829
- };
1812
+ filter?: string;
1830
1813
  limit?: number;
1831
1814
  page?: number;
1832
1815
  sort_by?: string;
@@ -1861,9 +1844,7 @@ export interface PostMenuV3GlobalMenuGroupsRequest extends BaseRequest {
1861
1844
  body: PostMenuV3GlobalMenuGroupsBody;
1862
1845
  }
1863
1846
  export interface GetMenuV3GlobalMenuGroupsCountQuery {
1864
- filter?: {
1865
- [index: string]: any;
1866
- };
1847
+ filter?: string;
1867
1848
  _query?: string;
1868
1849
  }
1869
1850
  export interface GetMenuV3GlobalMenuGroupsCountResponse {
@@ -1878,9 +1859,7 @@ export interface GetMenuV3DraftGlobalMenuGroupBrandsPath {
1878
1859
  export interface GetMenuV3DraftGlobalMenuGroupBrandsQuery {
1879
1860
  select?: string[];
1880
1861
  relationships?: string[];
1881
- filter?: {
1882
- [index: string]: any;
1883
- };
1862
+ filter?: string;
1884
1863
  limit?: number;
1885
1864
  page?: number;
1886
1865
  sort_by?: string;
@@ -1901,9 +1880,7 @@ export interface GetMenuV3GlobalMenuGroupBrandsPath {
1901
1880
  export interface GetMenuV3GlobalMenuGroupBrandsQuery {
1902
1881
  select?: string[];
1903
1882
  relationships?: string[];
1904
- filter?: {
1905
- [index: string]: any;
1906
- };
1883
+ filter?: string;
1907
1884
  limit?: number;
1908
1885
  page?: number;
1909
1886
  sort_by?: string;
@@ -2003,15 +1980,16 @@ export interface PatchMenuV3DraftBrandRequest extends BaseRequest, PatchMenuV3Dr
2003
1980
  export interface DeleteMenuV3DraftBrandPath {
2004
1981
  id: string;
2005
1982
  }
1983
+ export interface DeleteMenuV3DraftBrandQuery {
1984
+ hard_delete?: boolean;
1985
+ }
2006
1986
  export type DeleteMenuV3DraftBrandResponse = DraftBrandDTO;
2007
- export interface DeleteMenuV3DraftBrandRequest extends BaseRequest, DeleteMenuV3DraftBrandPath {
1987
+ export interface DeleteMenuV3DraftBrandRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftBrandQuery>, DeleteMenuV3DraftBrandPath {
2008
1988
  }
2009
1989
  export interface GetMenuV3DraftBrandsQuery {
2010
1990
  select?: string[];
2011
1991
  relationships?: string[];
2012
- filter?: {
2013
- [index: string]: any;
2014
- };
1992
+ filter?: string;
2015
1993
  limit?: number;
2016
1994
  page?: number;
2017
1995
  sort_by?: string;
@@ -2064,9 +2042,7 @@ export interface PostMenuV3DraftBrandsRequest extends BaseRequest {
2064
2042
  body: PostMenuV3DraftBrandsBody;
2065
2043
  }
2066
2044
  export interface GetMenuV3DraftBrandsCountQuery {
2067
- filter?: {
2068
- [index: string]: any;
2069
- };
2045
+ filter?: string;
2070
2046
  _query?: string;
2071
2047
  }
2072
2048
  export interface GetMenuV3DraftBrandsCountResponse {
@@ -2081,9 +2057,7 @@ export interface GetMenuV3DraftBrandMenusPath {
2081
2057
  export interface GetMenuV3DraftBrandMenusQuery {
2082
2058
  select?: string[];
2083
2059
  relationships?: string[];
2084
- filter?: {
2085
- [index: string]: any;
2086
- };
2060
+ filter?: string;
2087
2061
  limit?: number;
2088
2062
  page?: number;
2089
2063
  sort_by?: string;
@@ -2104,9 +2078,7 @@ export interface GetMenuV3DraftBrandModifiersPath {
2104
2078
  export interface GetMenuV3DraftBrandModifiersQuery {
2105
2079
  select?: string[];
2106
2080
  relationships?: string[];
2107
- filter?: {
2108
- [index: string]: any;
2109
- };
2081
+ filter?: string;
2110
2082
  limit?: number;
2111
2083
  page?: number;
2112
2084
  sort_by?: string;
@@ -2127,9 +2099,7 @@ export interface GetMenuV3DraftBrandModifierGroupsPath {
2127
2099
  export interface GetMenuV3DraftBrandModifierGroupsQuery {
2128
2100
  select?: string[];
2129
2101
  relationships?: string[];
2130
- filter?: {
2131
- [index: string]: any;
2132
- };
2102
+ filter?: string;
2133
2103
  limit?: number;
2134
2104
  page?: number;
2135
2105
  sort_by?: string;
@@ -2150,9 +2120,7 @@ export interface GetMenuV3DraftBrandItemsPath {
2150
2120
  export interface GetMenuV3DraftBrandItemsQuery {
2151
2121
  select?: string[];
2152
2122
  relationships?: string[];
2153
- filter?: {
2154
- [index: string]: any;
2155
- };
2123
+ filter?: string;
2156
2124
  limit?: number;
2157
2125
  page?: number;
2158
2126
  sort_by?: string;
@@ -2213,9 +2181,7 @@ export interface GetMenuV3DraftBrandDiffsPath {
2213
2181
  export interface GetMenuV3DraftBrandDiffsQuery {
2214
2182
  select?: string[];
2215
2183
  relationships?: string[];
2216
- filter?: {
2217
- [index: string]: any;
2218
- };
2184
+ filter?: string;
2219
2185
  limit?: number;
2220
2186
  page?: number;
2221
2187
  sort_by?: string;
@@ -2231,13 +2197,14 @@ export interface GetMenuV3DraftBrandDiffsRequest extends BaseRequest, RequestQue
2231
2197
  export interface PostMenuV3DraftBrandGlobalDiffsApplyPath {
2232
2198
  id: string;
2233
2199
  }
2234
- export interface PostMenuV3DraftBrandGlobalDiffsApplyQuery {
2235
- "body.diffs"?: ApplyDiffDTO[];
2200
+ export interface PostMenuV3DraftBrandGlobalDiffsApplyBody {
2201
+ diffs?: ApplyDiffDTO[];
2236
2202
  }
2237
2203
  export interface PostMenuV3DraftBrandGlobalDiffsApplyResponse {
2238
2204
  status?: string;
2239
2205
  }
2240
- export interface PostMenuV3DraftBrandGlobalDiffsApplyRequest extends BaseRequest, RequestQuery<PostMenuV3DraftBrandGlobalDiffsApplyQuery>, PostMenuV3DraftBrandGlobalDiffsApplyPath {
2206
+ export interface PostMenuV3DraftBrandGlobalDiffsApplyRequest extends BaseRequest, PostMenuV3DraftBrandGlobalDiffsApplyPath {
2207
+ body: PostMenuV3DraftBrandGlobalDiffsApplyBody;
2241
2208
  }
2242
2209
  export interface PostMenuV3DraftBrandAttachmentPath {
2243
2210
  id: string;
@@ -2338,6 +2305,7 @@ export interface DeleteMenuV3BrandPath {
2338
2305
  id: string;
2339
2306
  }
2340
2307
  export interface DeleteMenuV3BrandQuery {
2308
+ hard_delete?: boolean;
2341
2309
  nocache?: boolean;
2342
2310
  }
2343
2311
  export type DeleteMenuV3BrandResponse = PublishedBrandDTO;
@@ -2346,9 +2314,7 @@ export interface DeleteMenuV3BrandRequest extends BaseRequest, RequestQuery<Dele
2346
2314
  export interface GetMenuV3BrandsQuery {
2347
2315
  select?: string[];
2348
2316
  relationships?: string[];
2349
- filter?: {
2350
- [index: string]: any;
2351
- };
2317
+ filter?: string;
2352
2318
  limit?: number;
2353
2319
  page?: number;
2354
2320
  sort_by?: string;
@@ -2402,9 +2368,7 @@ export interface PostMenuV3BrandsRequest extends BaseRequest, RequestQuery<PostM
2402
2368
  body: PostMenuV3BrandsBody;
2403
2369
  }
2404
2370
  export interface GetMenuV3BrandsCountQuery {
2405
- filter?: {
2406
- [index: string]: any;
2407
- };
2371
+ filter?: string;
2408
2372
  _query?: string;
2409
2373
  nocache?: boolean;
2410
2374
  }
@@ -2420,9 +2384,7 @@ export interface GetMenuV3BrandMenusPath {
2420
2384
  export interface GetMenuV3BrandMenusQuery {
2421
2385
  select?: string[];
2422
2386
  relationships?: string[];
2423
- filter?: {
2424
- [index: string]: any;
2425
- };
2387
+ filter?: string;
2426
2388
  limit?: number;
2427
2389
  page?: number;
2428
2390
  sort_by?: string;
@@ -2444,9 +2406,7 @@ export interface GetMenuV3BrandModifiersPath {
2444
2406
  export interface GetMenuV3BrandModifiersQuery {
2445
2407
  select?: string[];
2446
2408
  relationships?: string[];
2447
- filter?: {
2448
- [index: string]: any;
2449
- };
2409
+ filter?: string;
2450
2410
  limit?: number;
2451
2411
  page?: number;
2452
2412
  sort_by?: string;
@@ -2468,9 +2428,7 @@ export interface GetMenuV3BrandModifierGroupsPath {
2468
2428
  export interface GetMenuV3BrandModifierGroupsQuery {
2469
2429
  select?: string[];
2470
2430
  relationships?: string[];
2471
- filter?: {
2472
- [index: string]: any;
2473
- };
2431
+ filter?: string;
2474
2432
  limit?: number;
2475
2433
  page?: number;
2476
2434
  sort_by?: string;
@@ -2492,9 +2450,7 @@ export interface GetMenuV3BrandItemsPath {
2492
2450
  export interface GetMenuV3BrandItemsQuery {
2493
2451
  select?: string[];
2494
2452
  relationships?: string[];
2495
- filter?: {
2496
- [index: string]: any;
2497
- };
2453
+ filter?: string;
2498
2454
  limit?: number;
2499
2455
  page?: number;
2500
2456
  sort_by?: string;
@@ -2565,15 +2521,16 @@ export interface PatchMenuV3DraftMenuRequest extends BaseRequest, PatchMenuV3Dra
2565
2521
  export interface DeleteMenuV3DraftMenuPath {
2566
2522
  id: string;
2567
2523
  }
2524
+ export interface DeleteMenuV3DraftMenuQuery {
2525
+ hard_delete?: boolean;
2526
+ }
2568
2527
  export type DeleteMenuV3DraftMenuResponse = DraftMenuDTO;
2569
- export interface DeleteMenuV3DraftMenuRequest extends BaseRequest, DeleteMenuV3DraftMenuPath {
2528
+ export interface DeleteMenuV3DraftMenuRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftMenuQuery>, DeleteMenuV3DraftMenuPath {
2570
2529
  }
2571
2530
  export interface GetMenuV3DraftMenusQuery {
2572
2531
  select?: string[];
2573
2532
  relationships?: string[];
2574
- filter?: {
2575
- [index: string]: any;
2576
- };
2533
+ filter?: string;
2577
2534
  limit?: number;
2578
2535
  page?: number;
2579
2536
  sort_by?: string;
@@ -2611,9 +2568,7 @@ export interface PostMenuV3DraftMenusRequest extends BaseRequest {
2611
2568
  body: PostMenuV3DraftMenusBody;
2612
2569
  }
2613
2570
  export interface GetMenuV3DraftMenusCountQuery {
2614
- filter?: {
2615
- [index: string]: any;
2616
- };
2571
+ filter?: string;
2617
2572
  _query?: string;
2618
2573
  }
2619
2574
  export interface GetMenuV3DraftMenusCountResponse {
@@ -2628,9 +2583,7 @@ export interface GetMenuV3DraftMenuCategoriesPath {
2628
2583
  export interface GetMenuV3DraftMenuCategoriesQuery {
2629
2584
  select?: string[];
2630
2585
  relationships?: string[];
2631
- filter?: {
2632
- [index: string]: any;
2633
- };
2586
+ filter?: string;
2634
2587
  limit?: number;
2635
2588
  page?: number;
2636
2589
  sort_by?: string;
@@ -2668,9 +2621,7 @@ export interface GetMenuV3MenuRequest extends BaseRequest, RequestQuery<GetMenuV
2668
2621
  export interface GetMenuV3MenusQuery {
2669
2622
  select?: string[];
2670
2623
  relationships?: string[];
2671
- filter?: {
2672
- [index: string]: any;
2673
- };
2624
+ filter?: string;
2674
2625
  limit?: number;
2675
2626
  page?: number;
2676
2627
  sort_by?: string;
@@ -2687,9 +2638,7 @@ export interface GetMenuV3MenusResponse {
2687
2638
  export interface GetMenuV3MenusRequest extends BaseRequest, RequestQuery<GetMenuV3MenusQuery> {
2688
2639
  }
2689
2640
  export interface GetMenuV3MenusCountQuery {
2690
- filter?: {
2691
- [index: string]: any;
2692
- };
2641
+ filter?: string;
2693
2642
  _query?: string;
2694
2643
  nocache?: boolean;
2695
2644
  }
@@ -2705,9 +2654,7 @@ export interface GetMenuV3MenuCategoriesPath {
2705
2654
  export interface GetMenuV3MenuCategoriesQuery {
2706
2655
  select?: string[];
2707
2656
  relationships?: string[];
2708
- filter?: {
2709
- [index: string]: any;
2710
- };
2657
+ filter?: string;
2711
2658
  limit?: number;
2712
2659
  page?: number;
2713
2660
  sort_by?: string;
@@ -2813,13 +2760,14 @@ export interface PatchMenuV3DraftCategoryRequest extends BaseRequest, PatchMenuV
2813
2760
  export interface DeleteMenuV3DraftCategoryPath {
2814
2761
  id: string;
2815
2762
  }
2763
+ export interface DeleteMenuV3DraftCategoryQuery {
2764
+ hard_delete?: boolean;
2765
+ }
2816
2766
  export type DeleteMenuV3DraftCategoryResponse = DraftCategoryDTO;
2817
- export interface DeleteMenuV3DraftCategoryRequest extends BaseRequest, DeleteMenuV3DraftCategoryPath {
2767
+ export interface DeleteMenuV3DraftCategoryRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftCategoryQuery>, DeleteMenuV3DraftCategoryPath {
2818
2768
  }
2819
2769
  export interface GetMenuV3DraftCategoriesCountQuery {
2820
- filter?: {
2821
- [index: string]: any;
2822
- };
2770
+ filter?: string;
2823
2771
  _query?: string;
2824
2772
  }
2825
2773
  export interface GetMenuV3DraftCategoriesCountResponse {
@@ -2881,9 +2829,7 @@ export type GetMenuV3CategoryResponse = PublishedCategoryDTO;
2881
2829
  export interface GetMenuV3CategoryRequest extends BaseRequest, RequestQuery<GetMenuV3CategoryQuery>, GetMenuV3CategoryPath {
2882
2830
  }
2883
2831
  export interface GetMenuV3CategorysCountQuery {
2884
- filter?: {
2885
- [index: string]: any;
2886
- };
2832
+ filter?: string;
2887
2833
  _query?: string;
2888
2834
  nocache?: boolean;
2889
2835
  }
@@ -2954,15 +2900,16 @@ export interface PatchMenuV3DraftCategoryRelationshipsItemRequest extends BaseRe
2954
2900
  export interface DeleteMenuV3DraftCategoryRelationshipsItemPath {
2955
2901
  id: string;
2956
2902
  }
2903
+ export interface DeleteMenuV3DraftCategoryRelationshipsItemQuery {
2904
+ hard_delete?: boolean;
2905
+ }
2957
2906
  export type DeleteMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
2958
- export interface DeleteMenuV3DraftCategoryRelationshipsItemRequest extends BaseRequest, DeleteMenuV3DraftCategoryRelationshipsItemPath {
2907
+ export interface DeleteMenuV3DraftCategoryRelationshipsItemRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftCategoryRelationshipsItemQuery>, DeleteMenuV3DraftCategoryRelationshipsItemPath {
2959
2908
  }
2960
2909
  export interface GetMenuV3DraftCategoryRelationshipsItemsQuery {
2961
2910
  select?: string[];
2962
2911
  relationships?: string[];
2963
- filter?: {
2964
- [index: string]: any;
2965
- };
2912
+ filter?: string;
2966
2913
  limit?: number;
2967
2914
  page?: number;
2968
2915
  sort_by?: string;
@@ -3003,9 +2950,7 @@ export interface PostMenuV3DraftCategoryRelationshipsItemsRequest extends BaseRe
3003
2950
  body: PostMenuV3DraftCategoryRelationshipsItemsBody;
3004
2951
  }
3005
2952
  export interface GetMenuV3DraftCategoryRelationshipsItemsCountQuery {
3006
- filter?: {
3007
- [index: string]: any;
3008
- };
2953
+ filter?: string;
3009
2954
  _query?: string;
3010
2955
  }
3011
2956
  export interface GetMenuV3DraftCategoryRelationshipsItemsCountResponse {
@@ -3029,9 +2974,7 @@ export interface GetMenuV3CategoryRelationshipsItemRequest extends BaseRequest,
3029
2974
  export interface GetMenuV3CategoryRelationshipsItemsQuery {
3030
2975
  select?: string[];
3031
2976
  relationships?: string[];
3032
- filter?: {
3033
- [index: string]: any;
3034
- };
2977
+ filter?: string;
3035
2978
  limit?: number;
3036
2979
  page?: number;
3037
2980
  sort_by?: string;
@@ -3048,9 +2991,7 @@ export interface GetMenuV3CategoryRelationshipsItemsResponse {
3048
2991
  export interface GetMenuV3CategoryRelationshipsItemsRequest extends BaseRequest, RequestQuery<GetMenuV3CategoryRelationshipsItemsQuery> {
3049
2992
  }
3050
2993
  export interface GetMenuV3CategoryRelationshipsItemsCountQuery {
3051
- filter?: {
3052
- [index: string]: any;
3053
- };
2994
+ filter?: string;
3054
2995
  _query?: string;
3055
2996
  nocache?: boolean;
3056
2997
  }
@@ -3075,7 +3016,7 @@ export interface PostMenuV3DraftItemBody {
3075
3016
  meal_value?: number;
3076
3017
  is_active?: boolean;
3077
3018
  posid?: string;
3078
- tax_tags?: Record<string, any>[];
3019
+ tax_tags?: string[];
3079
3020
  brand_id: string;
3080
3021
  line_route?: string;
3081
3022
  posid_segment?: string;
@@ -3126,7 +3067,7 @@ export interface PatchMenuV3DraftItemBody {
3126
3067
  meal_value?: number;
3127
3068
  is_active?: boolean;
3128
3069
  posid?: string;
3129
- tax_tags?: Record<string, any>[];
3070
+ tax_tags?: string[];
3130
3071
  brand_id?: string;
3131
3072
  line_route?: string;
3132
3073
  posid_segment?: string;
@@ -3151,15 +3092,16 @@ export interface PatchMenuV3DraftItemRequest extends BaseRequest, PatchMenuV3Dra
3151
3092
  export interface DeleteMenuV3DraftItemPath {
3152
3093
  id: string;
3153
3094
  }
3095
+ export interface DeleteMenuV3DraftItemQuery {
3096
+ hard_delete?: boolean;
3097
+ }
3154
3098
  export type DeleteMenuV3DraftItemResponse = DraftItemDTO;
3155
- export interface DeleteMenuV3DraftItemRequest extends BaseRequest, DeleteMenuV3DraftItemPath {
3099
+ export interface DeleteMenuV3DraftItemRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftItemQuery>, DeleteMenuV3DraftItemPath {
3156
3100
  }
3157
3101
  export interface GetMenuV3DraftItemsQuery {
3158
3102
  select?: string[];
3159
3103
  relationships?: string[];
3160
- filter?: {
3161
- [index: string]: any;
3162
- };
3104
+ filter?: string;
3163
3105
  limit?: number;
3164
3106
  page?: number;
3165
3107
  sort_by?: string;
@@ -3189,7 +3131,7 @@ export type PostMenuV3DraftItemsBody = {
3189
3131
  meal_value?: number;
3190
3132
  is_active?: boolean;
3191
3133
  posid?: string;
3192
- tax_tags?: Record<string, any>[];
3134
+ tax_tags?: string[];
3193
3135
  brand_id: string;
3194
3136
  line_route?: string;
3195
3137
  posid_segment?: string;
@@ -3215,9 +3157,7 @@ export interface PostMenuV3DraftItemsRequest extends BaseRequest {
3215
3157
  body: PostMenuV3DraftItemsBody;
3216
3158
  }
3217
3159
  export interface GetMenuV3DraftItemsCountQuery {
3218
- filter?: {
3219
- [index: string]: any;
3220
- };
3160
+ filter?: string;
3221
3161
  _query?: string;
3222
3162
  }
3223
3163
  export interface GetMenuV3DraftItemsCountResponse {
@@ -3239,7 +3179,7 @@ export interface GetMenuV3DraftItemLineRoutesResponse {
3239
3179
  export interface GetMenuV3DraftItemLineRoutesRequest extends BaseRequest, RequestQuery<GetMenuV3DraftItemLineRoutesQuery>, GetMenuV3DraftItemLineRoutesPath {
3240
3180
  }
3241
3181
  export interface PatchMenuV3DraftItemsBulkUpdateBody {
3242
- id_list: Record<string, any>[];
3182
+ id_list: string[];
3243
3183
  parent?: DraftItemDTO;
3244
3184
  children?: DraftItemDTO[];
3245
3185
  modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
@@ -3255,7 +3195,7 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
3255
3195
  meal_value?: number;
3256
3196
  is_active?: boolean;
3257
3197
  posid?: string;
3258
- tax_tags?: Record<string, any>[];
3198
+ tax_tags?: string[];
3259
3199
  brand_id?: string;
3260
3200
  line_route?: string;
3261
3201
  posid_segment?: string;
@@ -3341,9 +3281,7 @@ export interface GetMenuV3ItemRequest extends BaseRequest, RequestQuery<GetMenuV
3341
3281
  export interface GetMenuV3ItemsQuery {
3342
3282
  select?: string[];
3343
3283
  relationships?: string[];
3344
- filter?: {
3345
- [index: string]: any;
3346
- };
3284
+ filter?: string;
3347
3285
  limit?: number;
3348
3286
  page?: number;
3349
3287
  sort_by?: string;
@@ -3360,9 +3298,7 @@ export interface GetMenuV3ItemsResponse {
3360
3298
  export interface GetMenuV3ItemsRequest extends BaseRequest, RequestQuery<GetMenuV3ItemsQuery> {
3361
3299
  }
3362
3300
  export interface GetMenuV3ItemsCountQuery {
3363
- filter?: {
3364
- [index: string]: any;
3365
- };
3301
+ filter?: string;
3366
3302
  _query?: string;
3367
3303
  nocache?: boolean;
3368
3304
  }
@@ -3433,15 +3369,16 @@ export interface PatchMenuV3DraftItemRelationshipsModifierGroupRequest extends B
3433
3369
  export interface DeleteMenuV3DraftItemRelationshipsModifierGroupPath {
3434
3370
  id: string;
3435
3371
  }
3372
+ export interface DeleteMenuV3DraftItemRelationshipsModifierGroupQuery {
3373
+ hard_delete?: boolean;
3374
+ }
3436
3375
  export type DeleteMenuV3DraftItemRelationshipsModifierGroupResponse = DraftItemToModifierGroupRelationshipDTO;
3437
- export interface DeleteMenuV3DraftItemRelationshipsModifierGroupRequest extends BaseRequest, DeleteMenuV3DraftItemRelationshipsModifierGroupPath {
3376
+ export interface DeleteMenuV3DraftItemRelationshipsModifierGroupRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftItemRelationshipsModifierGroupQuery>, DeleteMenuV3DraftItemRelationshipsModifierGroupPath {
3438
3377
  }
3439
3378
  export interface GetMenuV3DraftItemRelationshipsModifierGroupsQuery {
3440
3379
  select?: string[];
3441
3380
  relationships?: string[];
3442
- filter?: {
3443
- [index: string]: any;
3444
- };
3381
+ filter?: string;
3445
3382
  limit?: number;
3446
3383
  page?: number;
3447
3384
  sort_by?: string;
@@ -3482,9 +3419,7 @@ export interface PostMenuV3DraftItemRelationshipsModifierGroupsRequest extends B
3482
3419
  body: PostMenuV3DraftItemRelationshipsModifierGroupsBody;
3483
3420
  }
3484
3421
  export interface GetMenuV3DraftItemRelationshipsModifierGroupsCountQuery {
3485
- filter?: {
3486
- [index: string]: any;
3487
- };
3422
+ filter?: string;
3488
3423
  _query?: string;
3489
3424
  }
3490
3425
  export interface GetMenuV3DraftItemRelationshipsModifierGroupsCountResponse {
@@ -3508,9 +3443,7 @@ export interface GetMenuV3ItemRelationshipsModifierGroupRequest extends BaseRequ
3508
3443
  export interface GetMenuV3ItemRelationshipsModifierGroupsQuery {
3509
3444
  select?: string[];
3510
3445
  relationships?: string[];
3511
- filter?: {
3512
- [index: string]: any;
3513
- };
3446
+ filter?: string;
3514
3447
  limit?: number;
3515
3448
  page?: number;
3516
3449
  sort_by?: string;
@@ -3527,9 +3460,7 @@ export interface GetMenuV3ItemRelationshipsModifierGroupsResponse {
3527
3460
  export interface GetMenuV3ItemRelationshipsModifierGroupsRequest extends BaseRequest, RequestQuery<GetMenuV3ItemRelationshipsModifierGroupsQuery> {
3528
3461
  }
3529
3462
  export interface GetMenuV3ItemRelationshipsModifierGroupsCountQuery {
3530
- filter?: {
3531
- [index: string]: any;
3532
- };
3463
+ filter?: string;
3533
3464
  _query?: string;
3534
3465
  nocache?: boolean;
3535
3466
  }
@@ -3614,15 +3545,16 @@ export interface PatchMenuV3DraftModifierGroupRequest extends BaseRequest, Patch
3614
3545
  export interface DeleteMenuV3DraftModifierGroupPath {
3615
3546
  id: string;
3616
3547
  }
3548
+ export interface DeleteMenuV3DraftModifierGroupQuery {
3549
+ hard_delete?: boolean;
3550
+ }
3617
3551
  export type DeleteMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
3618
- export interface DeleteMenuV3DraftModifierGroupRequest extends BaseRequest, DeleteMenuV3DraftModifierGroupPath {
3552
+ export interface DeleteMenuV3DraftModifierGroupRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftModifierGroupQuery>, DeleteMenuV3DraftModifierGroupPath {
3619
3553
  }
3620
3554
  export interface GetMenuV3DraftModifierGroupsQuery {
3621
3555
  select?: string[];
3622
3556
  relationships?: string[];
3623
- filter?: {
3624
- [index: string]: any;
3625
- };
3557
+ filter?: string;
3626
3558
  limit?: number;
3627
3559
  page?: number;
3628
3560
  sort_by?: string;
@@ -3670,9 +3602,7 @@ export interface PostMenuV3DraftModifierGroupsRequest extends BaseRequest {
3670
3602
  body: PostMenuV3DraftModifierGroupsBody;
3671
3603
  }
3672
3604
  export interface GetMenuV3DraftModifierGroupsCountQuery {
3673
- filter?: {
3674
- [index: string]: any;
3675
- };
3605
+ filter?: string;
3676
3606
  _query?: string;
3677
3607
  }
3678
3608
  export interface GetMenuV3DraftModifierGroupsCountResponse {
@@ -3730,9 +3660,7 @@ export interface GetMenuV3ModifierGroupRequest extends BaseRequest, RequestQuery
3730
3660
  export interface GetMenuV3ModifierGroupsQuery {
3731
3661
  select?: string[];
3732
3662
  relationships?: string[];
3733
- filter?: {
3734
- [index: string]: any;
3735
- };
3663
+ filter?: string;
3736
3664
  limit?: number;
3737
3665
  page?: number;
3738
3666
  sort_by?: string;
@@ -3749,9 +3677,7 @@ export interface GetMenuV3ModifierGroupsResponse {
3749
3677
  export interface GetMenuV3ModifierGroupsRequest extends BaseRequest, RequestQuery<GetMenuV3ModifierGroupsQuery> {
3750
3678
  }
3751
3679
  export interface GetMenuV3ModifierGroupsCountQuery {
3752
- filter?: {
3753
- [index: string]: any;
3754
- };
3680
+ filter?: string;
3755
3681
  _query?: string;
3756
3682
  nocache?: boolean;
3757
3683
  }
@@ -3822,15 +3748,16 @@ export interface PatchMenuV3DraftModifierGroupRelationshipsModifierRequest exten
3822
3748
  export interface DeleteMenuV3DraftModifierGroupRelationshipsModifierPath {
3823
3749
  id: string;
3824
3750
  }
3751
+ export interface DeleteMenuV3DraftModifierGroupRelationshipsModifierQuery {
3752
+ hard_delete?: boolean;
3753
+ }
3825
3754
  export type DeleteMenuV3DraftModifierGroupRelationshipsModifierResponse = DraftModifierGroupToModifierRelationshipDTO;
3826
- export interface DeleteMenuV3DraftModifierGroupRelationshipsModifierRequest extends BaseRequest, DeleteMenuV3DraftModifierGroupRelationshipsModifierPath {
3755
+ export interface DeleteMenuV3DraftModifierGroupRelationshipsModifierRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftModifierGroupRelationshipsModifierQuery>, DeleteMenuV3DraftModifierGroupRelationshipsModifierPath {
3827
3756
  }
3828
3757
  export interface GetMenuV3DraftModifierGroupRelationshipsModifiersQuery {
3829
3758
  select?: string[];
3830
3759
  relationships?: string[];
3831
- filter?: {
3832
- [index: string]: any;
3833
- };
3760
+ filter?: string;
3834
3761
  limit?: number;
3835
3762
  page?: number;
3836
3763
  sort_by?: string;
@@ -3871,9 +3798,7 @@ export interface PostMenuV3DraftModifierGroupRelationshipsModifiersRequest exten
3871
3798
  body: PostMenuV3DraftModifierGroupRelationshipsModifiersBody;
3872
3799
  }
3873
3800
  export interface GetMenuV3DraftModifierGroupRelationshipsModifiersCountQuery {
3874
- filter?: {
3875
- [index: string]: any;
3876
- };
3801
+ filter?: string;
3877
3802
  _query?: string;
3878
3803
  }
3879
3804
  export interface GetMenuV3DraftModifierGroupRelationshipsModifiersCountResponse {
@@ -3897,9 +3822,7 @@ export interface GetMenuV3ModifierGroupRelationshipsModifierRequest extends Base
3897
3822
  export interface GetMenuV3ModifierGroupRelationshipsModifiersQuery {
3898
3823
  select?: string[];
3899
3824
  relationships?: string[];
3900
- filter?: {
3901
- [index: string]: any;
3902
- };
3825
+ filter?: string;
3903
3826
  limit?: number;
3904
3827
  page?: number;
3905
3828
  sort_by?: string;
@@ -3916,9 +3839,7 @@ export interface GetMenuV3ModifierGroupRelationshipsModifiersResponse {
3916
3839
  export interface GetMenuV3ModifierGroupRelationshipsModifiersRequest extends BaseRequest, RequestQuery<GetMenuV3ModifierGroupRelationshipsModifiersQuery> {
3917
3840
  }
3918
3841
  export interface GetMenuV3ModifierGroupRelationshipsModifiersCountQuery {
3919
- filter?: {
3920
- [index: string]: any;
3921
- };
3842
+ filter?: string;
3922
3843
  _query?: string;
3923
3844
  nocache?: boolean;
3924
3845
  }
@@ -3938,7 +3859,7 @@ export interface PostMenuV3DraftModifierBody {
3938
3859
  description?: string;
3939
3860
  price: number;
3940
3861
  calories?: number;
3941
- tax_tags?: Record<string, any>[];
3862
+ tax_tags?: string[];
3942
3863
  is_active?: boolean;
3943
3864
  posid?: string;
3944
3865
  reporting: ReportingMetadataDTO;
@@ -3990,7 +3911,7 @@ export interface PatchMenuV3DraftModifierBody {
3990
3911
  description?: string;
3991
3912
  price?: number;
3992
3913
  calories?: number;
3993
- tax_tags?: Record<string, any>[];
3914
+ tax_tags?: string[];
3994
3915
  is_active?: boolean;
3995
3916
  posid?: string;
3996
3917
  reporting?: ReportingMetadataDTO;
@@ -4021,15 +3942,16 @@ export interface PatchMenuV3DraftModifierRequest extends BaseRequest, PatchMenuV
4021
3942
  export interface DeleteMenuV3DraftModifierPath {
4022
3943
  id: string;
4023
3944
  }
3945
+ export interface DeleteMenuV3DraftModifierQuery {
3946
+ hard_delete?: boolean;
3947
+ }
4024
3948
  export type DeleteMenuV3DraftModifierResponse = DraftModifierDTO;
4025
- export interface DeleteMenuV3DraftModifierRequest extends BaseRequest, DeleteMenuV3DraftModifierPath {
3949
+ export interface DeleteMenuV3DraftModifierRequest extends BaseRequest, RequestQuery<DeleteMenuV3DraftModifierQuery>, DeleteMenuV3DraftModifierPath {
4026
3950
  }
4027
3951
  export interface GetMenuV3DraftModifiersQuery {
4028
3952
  select?: string[];
4029
3953
  relationships?: string[];
4030
- filter?: {
4031
- [index: string]: any;
4032
- };
3954
+ filter?: string;
4033
3955
  limit?: number;
4034
3956
  page?: number;
4035
3957
  sort_by?: string;
@@ -4054,7 +3976,7 @@ export type PostMenuV3DraftModifiersBody = {
4054
3976
  description?: string;
4055
3977
  price: number;
4056
3978
  calories?: number;
4057
- tax_tags?: Record<string, any>[];
3979
+ tax_tags?: string[];
4058
3980
  is_active?: boolean;
4059
3981
  posid?: string;
4060
3982
  reporting: ReportingMetadataDTO;
@@ -4086,9 +4008,7 @@ export interface PostMenuV3DraftModifiersRequest extends BaseRequest {
4086
4008
  body: PostMenuV3DraftModifiersBody;
4087
4009
  }
4088
4010
  export interface GetMenuV3DraftModifiersCountQuery {
4089
- filter?: {
4090
- [index: string]: any;
4091
- };
4011
+ filter?: string;
4092
4012
  _query?: string;
4093
4013
  }
4094
4014
  export interface GetMenuV3DraftModifiersCountResponse {
@@ -4098,7 +4018,7 @@ export interface GetMenuV3DraftModifiersCountResponse {
4098
4018
  export interface GetMenuV3DraftModifiersCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftModifiersCountQuery> {
4099
4019
  }
4100
4020
  export interface PatchMenuV3DraftModifiersBulkUpdateBody {
4101
- id_list: Record<string, any>[];
4021
+ id_list: string[];
4102
4022
  parent?: DraftModifierDTO;
4103
4023
  children?: DraftModifierDTO[];
4104
4024
  modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
@@ -4109,7 +4029,7 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
4109
4029
  description?: string;
4110
4030
  price?: number;
4111
4031
  calories?: number;
4112
- tax_tags?: Record<string, any>[];
4032
+ tax_tags?: string[];
4113
4033
  is_active?: boolean;
4114
4034
  posid?: string;
4115
4035
  reporting?: ReportingMetadataDTO;
@@ -4165,9 +4085,7 @@ export interface GetMenuV3ModifierRequest extends BaseRequest, RequestQuery<GetM
4165
4085
  export interface GetMenuV3ModifiersQuery {
4166
4086
  select?: string[];
4167
4087
  relationships?: string[];
4168
- filter?: {
4169
- [index: string]: any;
4170
- };
4088
+ filter?: string;
4171
4089
  limit?: number;
4172
4090
  page?: number;
4173
4091
  sort_by?: string;
@@ -4184,9 +4102,7 @@ export interface GetMenuV3ModifiersResponse {
4184
4102
  export interface GetMenuV3ModifiersRequest extends BaseRequest, RequestQuery<GetMenuV3ModifiersQuery> {
4185
4103
  }
4186
4104
  export interface GetMenuV3ModifiersCountQuery {
4187
- filter?: {
4188
- [index: string]: any;
4189
- };
4105
+ filter?: string;
4190
4106
  _query?: string;
4191
4107
  nocache?: boolean;
4192
4108
  }
@@ -4219,9 +4135,7 @@ export interface GetMenuV3GlobalDiffRequest extends BaseRequest, RequestQuery<Ge
4219
4135
  export interface GetMenuV3GlobalDiffsQuery {
4220
4136
  select?: string[];
4221
4137
  relationships?: string[];
4222
- filter?: {
4223
- [index: string]: any;
4224
- };
4138
+ filter?: string;
4225
4139
  limit?: number;
4226
4140
  page?: number;
4227
4141
  sort_by?: string;
@@ -4237,9 +4151,7 @@ export interface GetMenuV3GlobalDiffsResponse {
4237
4151
  export interface GetMenuV3GlobalDiffsRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalDiffsQuery> {
4238
4152
  }
4239
4153
  export interface GetMenuV3GlobalDiffsCountQuery {
4240
- filter?: {
4241
- [index: string]: any;
4242
- };
4154
+ filter?: string;
4243
4155
  _query?: string;
4244
4156
  }
4245
4157
  export interface GetMenuV3GlobalDiffsCountResponse {