@compassdigital/sdk.typescript 4.104.0 → 4.106.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.
@@ -362,6 +362,7 @@ export interface GlobalMenuGroupDTO {
362
362
  is_active?: boolean;
363
363
  posid_segment?: string;
364
364
  auto_push_to_local?: boolean;
365
+ price_levels?: Record<string, any>;
365
366
  id?: string;
366
367
  permissions?: Record<string, any>;
367
368
  [index: string]: any;
@@ -492,6 +493,7 @@ export interface LocalMenuGroupDTO {
492
493
  allowed_global_menu_groups?: GlobalMenuGroupDTO[];
493
494
  draft_brands?: DraftBrandDTO[];
494
495
  published_brands?: PublishedBrandDTO[];
496
+ price_levels?: Record<string, any>;
495
497
  id: string;
496
498
  created_at?: string;
497
499
  updated_at?: string;
@@ -600,6 +602,7 @@ export interface DraftItemDTO {
600
602
  tax_jwo_code?: string;
601
603
  unique_id?: number;
602
604
  cpg_item_id?: string;
605
+ price_levels?: Record<string, any>;
603
606
  applied_diff_snapshot?: Record<string, any>;
604
607
  brand?: DraftBrandDTO;
605
608
  categories?: Record<string, any>[];
@@ -701,6 +704,7 @@ export interface DraftModifierDTO {
701
704
  tax_tag_code?: string;
702
705
  tags?: string[];
703
706
  unique_id?: number;
707
+ price_levels?: Record<string, any>;
704
708
  applied_diff_snapshot?: Record<string, any>;
705
709
  brand?: DraftBrandDTO;
706
710
  changes?: ModifierChangeDTO[];
@@ -1016,6 +1020,7 @@ export interface PublishedItemDTO {
1016
1020
  is_featured?: boolean;
1017
1021
  tax_jwo_code?: string;
1018
1022
  cpg_item_id?: string;
1023
+ price_levels?: Record<string, any>;
1019
1024
  permissions?: Record<string, any>;
1020
1025
  [index: string]: any;
1021
1026
  }
@@ -1081,6 +1086,7 @@ export interface PublishedModifierDTO {
1081
1086
  post_surcharge?: number;
1082
1087
  tax_tag_code?: string;
1083
1088
  tags?: string[];
1089
+ price_levels?: Record<string, any>;
1084
1090
  permissions?: Record<string, any>;
1085
1091
  [index: string]: any;
1086
1092
  }
@@ -1344,6 +1350,7 @@ export interface DraftItemEntityDTO {
1344
1350
  tax_jwo_code?: string;
1345
1351
  unique_id?: number;
1346
1352
  cpg_item_id?: string;
1353
+ price_levels?: Record<string, any>;
1347
1354
  applied_diff_snapshot?: Record<string, any>;
1348
1355
  version?: number;
1349
1356
  brand?: DraftBrandDTO;
@@ -1392,6 +1399,7 @@ export interface DraftModifierEntityDTO {
1392
1399
  tax_tag_code?: string;
1393
1400
  tags?: string[];
1394
1401
  unique_id?: number;
1402
+ price_levels?: Record<string, any>;
1395
1403
  applied_diff_snapshot?: Record<string, any>;
1396
1404
  version?: number;
1397
1405
  brand?: DraftBrandDTO;
@@ -1708,6 +1716,7 @@ export interface PostMenuV3LocalMenuGroupBody {
1708
1716
  allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1709
1717
  draft_brands?: DraftBrandDTO[];
1710
1718
  published_brands?: PublishedBrandDTO[];
1719
+ price_levels?: Record<string, any>;
1711
1720
  vendor_metadata?: VendorMetadataDTO[];
1712
1721
  permissions?: Record<string, any>;
1713
1722
  [index: string]: any;
@@ -1718,6 +1727,7 @@ export interface PostMenuV3LocalMenuGroupResponse {
1718
1727
  allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1719
1728
  draft_brands?: DraftBrandDTO[];
1720
1729
  published_brands?: PublishedBrandDTO[];
1730
+ price_levels?: Record<string, any>;
1721
1731
  id: string;
1722
1732
  created_at?: string;
1723
1733
  updated_at?: string;
@@ -1744,6 +1754,7 @@ export interface GetMenuV3LocalMenuGroupResponse {
1744
1754
  allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1745
1755
  draft_brands?: DraftBrandDTO[];
1746
1756
  published_brands?: PublishedBrandDTO[];
1757
+ price_levels?: Record<string, any>;
1747
1758
  id: string;
1748
1759
  created_at?: string;
1749
1760
  updated_at?: string;
@@ -1764,6 +1775,7 @@ export interface PatchMenuV3LocalMenuGroupBody {
1764
1775
  allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1765
1776
  draft_brands?: DraftBrandDTO[];
1766
1777
  published_brands?: PublishedBrandDTO[];
1778
+ price_levels?: Record<string, any>;
1767
1779
  id?: string;
1768
1780
  version?: number;
1769
1781
  vendor_metadata?: VendorMetadataDTO[];
@@ -1776,6 +1788,7 @@ export interface PatchMenuV3LocalMenuGroupResponse {
1776
1788
  allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1777
1789
  draft_brands?: DraftBrandDTO[];
1778
1790
  published_brands?: PublishedBrandDTO[];
1791
+ price_levels?: Record<string, any>;
1779
1792
  id: string;
1780
1793
  created_at?: string;
1781
1794
  updated_at?: string;
@@ -1801,6 +1814,7 @@ export interface DeleteMenuV3LocalMenuGroupResponse {
1801
1814
  allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1802
1815
  draft_brands?: DraftBrandDTO[];
1803
1816
  published_brands?: PublishedBrandDTO[];
1817
+ price_levels?: Record<string, any>;
1804
1818
  id: string;
1805
1819
  created_at?: string;
1806
1820
  updated_at?: string;
@@ -1836,6 +1850,7 @@ export type PostMenuV3LocalMenuGroupsBody = {
1836
1850
  allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1837
1851
  draft_brands?: DraftBrandDTO[];
1838
1852
  published_brands?: PublishedBrandDTO[];
1853
+ price_levels?: Record<string, any>;
1839
1854
  vendor_metadata?: VendorMetadataDTO[];
1840
1855
  permissions?: Record<string, any>;
1841
1856
  [index: string]: any;
@@ -2062,6 +2077,7 @@ export interface PostMenuV3GlobalMenuGroupBody {
2062
2077
  published_brands?: PublishedBrandDTO[];
2063
2078
  posid_segment: string;
2064
2079
  auto_push_to_local?: boolean;
2080
+ price_levels?: Record<string, any>;
2065
2081
  vendor_metadata?: VendorMetadataDTO[];
2066
2082
  permissions?: Record<string, any>;
2067
2083
  [index: string]: any;
@@ -2092,6 +2108,7 @@ export interface PatchMenuV3GlobalMenuGroupBody {
2092
2108
  published_brands?: PublishedBrandDTO[];
2093
2109
  posid_segment?: string;
2094
2110
  auto_push_to_local?: boolean;
2111
+ price_levels?: Record<string, any>;
2095
2112
  id?: string;
2096
2113
  version?: number;
2097
2114
  vendor_metadata?: VendorMetadataDTO[];
@@ -2117,6 +2134,7 @@ export interface DeleteMenuV3GlobalMenuGroupResponse {
2117
2134
  published_brands?: PublishedBrandDTO[];
2118
2135
  posid_segment: string;
2119
2136
  auto_push_to_local?: boolean;
2137
+ price_levels?: Record<string, any>;
2120
2138
  id: string;
2121
2139
  created_at?: string;
2122
2140
  updated_at?: string;
@@ -2154,6 +2172,7 @@ export type PostMenuV3GlobalMenuGroupsBody = {
2154
2172
  published_brands?: PublishedBrandDTO[];
2155
2173
  posid_segment: string;
2156
2174
  auto_push_to_local?: boolean;
2175
+ price_levels?: Record<string, any>;
2157
2176
  vendor_metadata?: VendorMetadataDTO[];
2158
2177
  permissions?: Record<string, any>;
2159
2178
  [index: string]: any;
@@ -3644,6 +3663,7 @@ export interface PostMenuV3DraftItemBody {
3644
3663
  tax_jwo_code?: string;
3645
3664
  unique_id?: number;
3646
3665
  cpg_item_id?: string;
3666
+ price_levels?: Record<string, any>;
3647
3667
  applied_diff_snapshot?: Record<string, any>;
3648
3668
  brand?: DraftBrandDTO;
3649
3669
  categories?: DraftCategoryToItemRelationshipDTO[];
@@ -3705,6 +3725,7 @@ export interface PatchMenuV3DraftItemBody {
3705
3725
  tax_jwo_code?: string;
3706
3726
  unique_id?: number;
3707
3727
  cpg_item_id?: string;
3728
+ price_levels?: Record<string, any>;
3708
3729
  applied_diff_snapshot?: Record<string, any>;
3709
3730
  version?: number;
3710
3731
  brand?: DraftBrandDTO;
@@ -3791,6 +3812,7 @@ export type PostMenuV3DraftItemsBody = {
3791
3812
  tax_jwo_code?: string;
3792
3813
  unique_id?: number;
3793
3814
  cpg_item_id?: string;
3815
+ price_levels?: Record<string, any>;
3794
3816
  applied_diff_snapshot?: Record<string, any>;
3795
3817
  brand?: DraftBrandDTO;
3796
3818
  categories?: DraftCategoryToItemRelationshipDTO[];
@@ -3871,6 +3893,7 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
3871
3893
  tax_jwo_code?: string;
3872
3894
  unique_id?: number;
3873
3895
  cpg_item_id?: string;
3896
+ price_levels?: Record<string, any>;
3874
3897
  applied_diff_snapshot?: Record<string, any>;
3875
3898
  brand?: DraftBrandDTO;
3876
3899
  categories?: DraftCategoryToItemRelationshipDTO[];
@@ -4604,6 +4627,7 @@ export interface PostMenuV3DraftModifierBody {
4604
4627
  tax_tag_code?: string;
4605
4628
  tags?: string[];
4606
4629
  unique_id?: number;
4630
+ price_levels?: Record<string, any>;
4607
4631
  applied_diff_snapshot?: Record<string, any>;
4608
4632
  brand?: DraftBrandDTO;
4609
4633
  changes?: ModifierChangeDTO[];
@@ -4661,6 +4685,7 @@ export interface PatchMenuV3DraftModifierBody {
4661
4685
  tax_tag_code?: string;
4662
4686
  tags?: string[];
4663
4687
  unique_id?: number;
4688
+ price_levels?: Record<string, any>;
4664
4689
  applied_diff_snapshot?: Record<string, any>;
4665
4690
  version?: number;
4666
4691
  brand?: DraftBrandDTO;
@@ -4743,6 +4768,7 @@ export type PostMenuV3DraftModifiersBody = {
4743
4768
  tax_tag_code?: string;
4744
4769
  tags?: string[];
4745
4770
  unique_id?: number;
4771
+ price_levels?: Record<string, any>;
4746
4772
  applied_diff_snapshot?: Record<string, any>;
4747
4773
  brand?: DraftBrandDTO;
4748
4774
  changes?: ModifierChangeDTO[];
@@ -4819,6 +4845,7 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
4819
4845
  tax_tag_code?: string;
4820
4846
  tags?: string[];
4821
4847
  unique_id?: number;
4848
+ price_levels?: Record<string, any>;
4822
4849
  applied_diff_snapshot?: Record<string, any>;
4823
4850
  brand?: DraftBrandDTO;
4824
4851
  changes?: ModifierChangeDTO[];
@@ -5155,6 +5182,7 @@ export interface GetMenuV4BrandQuery {
5155
5182
  _query?: string;
5156
5183
  }
5157
5184
  export interface GetMenuV4BrandResponse {
5185
+ price_levels?: Record<string, any>;
5158
5186
  parent?: DraftBrandDTO;
5159
5187
  children?: DraftBrandDTO[];
5160
5188
  menus?: DraftMenuDTO[];
@@ -5781,6 +5809,7 @@ export interface PostMenuV4ItemBody {
5781
5809
  tax_jwo_code?: string;
5782
5810
  unique_id?: number;
5783
5811
  cpg_item_id?: string;
5812
+ price_levels?: Record<string, any>;
5784
5813
  base_item_id?: string;
5785
5814
  applied_diff_snapshot?: Record<string, any>;
5786
5815
  brand?: DraftBrandDTO;
@@ -5828,6 +5857,7 @@ export interface PostMenuV4ItemResponse {
5828
5857
  tax_jwo_code?: string;
5829
5858
  unique_id?: number;
5830
5859
  cpg_item_id?: string;
5860
+ price_levels?: Record<string, any>;
5831
5861
  applied_diff_snapshot?: Record<string, any>;
5832
5862
  version?: number;
5833
5863
  brand?: DraftBrandDTO;
@@ -5874,6 +5904,7 @@ export type PostMenuV4ItemsBulkCreateBody = {
5874
5904
  tax_jwo_code?: string;
5875
5905
  unique_id?: number;
5876
5906
  cpg_item_id?: string;
5907
+ price_levels?: Record<string, any>;
5877
5908
  base_item_id?: string;
5878
5909
  applied_diff_snapshot?: Record<string, any>;
5879
5910
  brand?: DraftBrandDTO;
@@ -5934,6 +5965,7 @@ export interface GetMenuV4ItemResponse {
5934
5965
  tax_jwo_code?: string;
5935
5966
  unique_id?: number;
5936
5967
  cpg_item_id?: string;
5968
+ price_levels?: Record<string, any>;
5937
5969
  applied_diff_snapshot?: Record<string, any>;
5938
5970
  version?: number;
5939
5971
  brand?: DraftBrandDTO;
@@ -5983,6 +6015,7 @@ export interface PatchMenuV4ItemBody {
5983
6015
  tax_jwo_code?: string;
5984
6016
  unique_id?: number;
5985
6017
  cpg_item_id?: string;
6018
+ price_levels?: Record<string, any>;
5986
6019
  applied_diff_snapshot?: Record<string, any>;
5987
6020
  brand?: DraftBrandDTO;
5988
6021
  categories?: DraftCategoryToItemRelationshipDTO[];
@@ -6029,6 +6062,7 @@ export interface PatchMenuV4ItemResponse {
6029
6062
  tax_jwo_code?: string;
6030
6063
  unique_id?: number;
6031
6064
  cpg_item_id?: string;
6065
+ price_levels?: Record<string, any>;
6032
6066
  applied_diff_snapshot?: Record<string, any>;
6033
6067
  version?: number;
6034
6068
  brand?: DraftBrandDTO;
@@ -6082,6 +6116,7 @@ export interface DeleteMenuV4ItemResponse {
6082
6116
  tax_jwo_code?: string;
6083
6117
  unique_id?: number;
6084
6118
  cpg_item_id?: string;
6119
+ price_levels?: Record<string, any>;
6085
6120
  applied_diff_snapshot?: Record<string, any>;
6086
6121
  version?: number;
6087
6122
  brand?: DraftBrandDTO;
@@ -6129,6 +6164,7 @@ export interface PatchMenuV4ItemsBulkUpdateBody {
6129
6164
  tax_jwo_code?: string;
6130
6165
  unique_id?: number;
6131
6166
  cpg_item_id?: string;
6167
+ price_levels?: Record<string, any>;
6132
6168
  applied_diff_snapshot?: Record<string, any>;
6133
6169
  brand?: DraftBrandDTO;
6134
6170
  categories?: DraftCategoryToItemRelationshipDTO[];
@@ -6181,6 +6217,7 @@ export interface PostMenuV4ItemDuplicateBody {
6181
6217
  tax_jwo_code?: string;
6182
6218
  unique_id?: number;
6183
6219
  cpg_item_id?: string;
6220
+ price_levels?: Record<string, any>;
6184
6221
  applied_diff_snapshot?: Record<string, any>;
6185
6222
  brand?: DraftBrandDTO;
6186
6223
  categories?: DraftCategoryToItemRelationshipDTO[];
@@ -6227,6 +6264,7 @@ export interface PostMenuV4ItemDuplicateResponse {
6227
6264
  tax_jwo_code?: string;
6228
6265
  unique_id?: number;
6229
6266
  cpg_item_id?: string;
6267
+ price_levels?: Record<string, any>;
6230
6268
  applied_diff_snapshot?: Record<string, any>;
6231
6269
  version?: number;
6232
6270
  brand?: DraftBrandDTO;
@@ -6271,6 +6309,7 @@ export interface PostMenuV4ModifierBody {
6271
6309
  tax_tag_code?: string;
6272
6310
  tags?: string[];
6273
6311
  unique_id?: number;
6312
+ price_levels?: Record<string, any>;
6274
6313
  applied_diff_snapshot?: Record<string, any>;
6275
6314
  brand?: DraftBrandDTO;
6276
6315
  changes?: ModifierChangeDTO[];
@@ -6313,6 +6352,7 @@ export interface PostMenuV4ModifierResponse {
6313
6352
  tax_tag_code?: string;
6314
6353
  tags?: string[];
6315
6354
  unique_id?: number;
6355
+ price_levels?: Record<string, any>;
6316
6356
  applied_diff_snapshot?: Record<string, any>;
6317
6357
  version?: number;
6318
6358
  brand?: DraftBrandDTO;
@@ -6365,6 +6405,7 @@ export interface GetMenuV4ModifierResponse {
6365
6405
  tax_tag_code?: string;
6366
6406
  tags?: string[];
6367
6407
  unique_id?: number;
6408
+ price_levels?: Record<string, any>;
6368
6409
  applied_diff_snapshot?: Record<string, any>;
6369
6410
  version?: number;
6370
6411
  brand?: DraftBrandDTO;
@@ -6409,6 +6450,7 @@ export interface PatchMenuV4ModifierBody {
6409
6450
  tax_tag_code?: string;
6410
6451
  tags?: string[];
6411
6452
  unique_id?: number;
6453
+ price_levels?: Record<string, any>;
6412
6454
  applied_diff_snapshot?: Record<string, any>;
6413
6455
  brand?: DraftBrandDTO;
6414
6456
  changes?: ModifierChangeDTO[];
@@ -6451,6 +6493,7 @@ export interface PatchMenuV4ModifierResponse {
6451
6493
  tax_tag_code?: string;
6452
6494
  tags?: string[];
6453
6495
  unique_id?: number;
6496
+ price_levels?: Record<string, any>;
6454
6497
  applied_diff_snapshot?: Record<string, any>;
6455
6498
  version?: number;
6456
6499
  brand?: DraftBrandDTO;
@@ -6500,6 +6543,7 @@ export interface DeleteMenuV4ModifierResponse {
6500
6543
  tax_tag_code?: string;
6501
6544
  tags?: string[];
6502
6545
  unique_id?: number;
6546
+ price_levels?: Record<string, any>;
6503
6547
  applied_diff_snapshot?: Record<string, any>;
6504
6548
  version?: number;
6505
6549
  brand?: DraftBrandDTO;
@@ -6544,6 +6588,7 @@ export interface PostMenuV4ModifierDuplicateBody {
6544
6588
  tax_tag_code?: string;
6545
6589
  tags?: string[];
6546
6590
  unique_id?: number;
6591
+ price_levels?: Record<string, any>;
6547
6592
  applied_diff_snapshot?: Record<string, any>;
6548
6593
  brand?: DraftBrandDTO;
6549
6594
  changes?: ModifierChangeDTO[];
@@ -6586,6 +6631,7 @@ export interface PostMenuV4ModifierDuplicateResponse {
6586
6631
  tax_tag_code?: string;
6587
6632
  tags?: string[];
6588
6633
  unique_id?: number;
6634
+ price_levels?: Record<string, any>;
6589
6635
  applied_diff_snapshot?: Record<string, any>;
6590
6636
  version?: number;
6591
6637
  brand?: DraftBrandDTO;
@@ -6630,6 +6676,7 @@ export interface PatchMenuV4ModifiersBulkUpdateBody {
6630
6676
  tax_tag_code?: string;
6631
6677
  tags?: string[];
6632
6678
  unique_id?: number;
6679
+ price_levels?: Record<string, any>;
6633
6680
  applied_diff_snapshot?: Record<string, any>;
6634
6681
  brand?: DraftBrandDTO;
6635
6682
  changes?: ModifierChangeDTO[];