@compassdigital/sdk.typescript 4.416.0 → 4.418.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +121 -307
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/interface/announcement.d.ts +1 -5
- package/lib/interface/announcement.d.ts.map +1 -1
- package/lib/interface/auth.d.ts +0 -8
- package/lib/interface/auth.d.ts.map +1 -1
- package/lib/interface/calendar.d.ts +3 -14
- package/lib/interface/calendar.d.ts.map +1 -1
- package/lib/interface/catalog.d.ts +6 -26
- package/lib/interface/catalog.d.ts.map +1 -1
- package/lib/interface/centricos.d.ts +0 -35
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/compassconnect.d.ts +0 -1
- package/lib/interface/compassconnect.d.ts.map +1 -1
- package/lib/interface/config.d.ts +5 -17
- package/lib/interface/config.d.ts.map +1 -1
- package/lib/interface/consumer.d.ts +2 -40
- package/lib/interface/consumer.d.ts.map +1 -1
- package/lib/interface/datalake.d.ts +2 -5
- package/lib/interface/datalake.d.ts.map +1 -1
- package/lib/interface/discount.d.ts +0 -7
- package/lib/interface/discount.d.ts.map +1 -1
- package/lib/interface/forecasting.d.ts +0 -5
- package/lib/interface/forecasting.d.ts.map +1 -1
- package/lib/interface/frictionless.d.ts +0 -15
- package/lib/interface/frictionless.d.ts.map +1 -1
- package/lib/interface/kds.d.ts +1 -5
- package/lib/interface/kds.d.ts.map +1 -1
- package/lib/interface/location.d.ts +2 -25
- package/lib/interface/location.d.ts.map +1 -1
- package/lib/interface/mealplan.d.ts +2 -9
- package/lib/interface/mealplan.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +42 -189
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/notification.d.ts +1 -5
- package/lib/interface/notification.d.ts.map +1 -1
- package/lib/interface/order.d.ts +2 -6
- package/lib/interface/order.d.ts.map +1 -1
- package/lib/interface/partner.d.ts +1 -6
- package/lib/interface/partner.d.ts.map +1 -1
- package/lib/interface/payment.d.ts +1 -8
- package/lib/interface/payment.d.ts.map +1 -1
- package/lib/interface/promo.d.ts +1 -7
- package/lib/interface/promo.d.ts.map +1 -1
- package/lib/interface/report.d.ts +3 -16
- package/lib/interface/report.d.ts.map +1 -1
- package/lib/interface/review.d.ts +0 -4
- package/lib/interface/review.d.ts.map +1 -1
- package/lib/interface/search.d.ts +0 -7
- package/lib/interface/search.d.ts.map +1 -1
- package/lib/interface/shoppingcart.d.ts +4 -16
- package/lib/interface/shoppingcart.d.ts.map +1 -1
- package/lib/interface/task.d.ts +2 -10
- package/lib/interface/task.d.ts.map +1 -1
- package/lib/interface/tax.d.ts +0 -3
- package/lib/interface/tax.d.ts.map +1 -1
- package/lib/interface/timeslots.d.ts +0 -1
- package/lib/interface/timeslots.d.ts.map +1 -1
- package/lib/interface/user.d.ts +3 -18
- package/lib/interface/user.d.ts.map +1 -1
- package/lib/interface/vendor.d.ts +5 -22
- package/lib/interface/vendor.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +94 -440
- package/src/interface/announcement.ts +1 -11
- package/src/interface/auth.ts +0 -14
- package/src/interface/calendar.ts +3 -26
- package/src/interface/catalog.ts +6 -47
- package/src/interface/centricos.ts +0 -60
- package/src/interface/compassconnect.ts +0 -2
- package/src/interface/config.ts +4 -32
- package/src/interface/consumer.ts +10 -73
- package/src/interface/datalake.ts +1 -8
- package/src/interface/discount.ts +0 -12
- package/src/interface/forecasting.ts +0 -9
- package/src/interface/frictionless.ts +0 -25
- package/src/interface/kds.ts +1 -8
- package/src/interface/location.ts +0 -46
- package/src/interface/mealplan.ts +2 -19
- package/src/interface/menu.ts +38 -355
- package/src/interface/notification.ts +1 -10
- package/src/interface/order.ts +2 -10
- package/src/interface/partner.ts +1 -12
- package/src/interface/payment.ts +1 -17
- package/src/interface/promo.ts +1 -14
- package/src/interface/report.ts +1 -29
- package/src/interface/review.ts +0 -7
- package/src/interface/search.ts +0 -13
- package/src/interface/shoppingcart.ts +3 -31
- package/src/interface/task.ts +2 -19
- package/src/interface/tax.ts +0 -5
- package/src/interface/timeslots.ts +0 -2
- package/src/interface/user.ts +3 -36
- package/src/interface/vendor.ts +5 -43
package/src/interface/menu.ts
CHANGED
|
@@ -1019,7 +1019,32 @@ export interface MenuWorksDTO {
|
|
|
1019
1019
|
ingredients?: string[];
|
|
1020
1020
|
smart_tags?: string[];
|
|
1021
1021
|
allergen_tags?: string[];
|
|
1022
|
-
allergens?:
|
|
1022
|
+
allergens?: AllergenDTO[];
|
|
1023
|
+
nutrition?: NutritionDTO;
|
|
1024
|
+
[index: string]: any;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
export interface AllergenDTO {
|
|
1028
|
+
name: string;
|
|
1029
|
+
contains: 'Yes' | 'AtRisk';
|
|
1030
|
+
[index: string]: any;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
export interface NutritionDTO {
|
|
1034
|
+
calories?: NutritionValueDTO;
|
|
1035
|
+
total_fat?: Record<string, any>;
|
|
1036
|
+
saturated_fat?: Record<string, any>;
|
|
1037
|
+
total_carbohydrate?: Record<string, any>;
|
|
1038
|
+
total_sugars?: Record<string, any>;
|
|
1039
|
+
protein?: Record<string, any>;
|
|
1040
|
+
dietary_fiber?: Record<string, any>;
|
|
1041
|
+
sodium?: Record<string, any>;
|
|
1042
|
+
[index: string]: any;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
export interface NutritionValueDTO {
|
|
1046
|
+
amount: number;
|
|
1047
|
+
unit: string;
|
|
1023
1048
|
[index: string]: any;
|
|
1024
1049
|
}
|
|
1025
1050
|
|
|
@@ -1846,12 +1871,6 @@ export interface DraftModifierEntityDTO {
|
|
|
1846
1871
|
[index: string]: any;
|
|
1847
1872
|
}
|
|
1848
1873
|
|
|
1849
|
-
export interface AllergenDTO {
|
|
1850
|
-
name: string;
|
|
1851
|
-
contains: 'Yes' | 'AtRisk';
|
|
1852
|
-
[index: string]: any;
|
|
1853
|
-
}
|
|
1854
|
-
|
|
1855
1874
|
export interface UniversalItemWithoutIdDTO {
|
|
1856
1875
|
barcode: string;
|
|
1857
1876
|
name: string;
|
|
@@ -2067,8 +2086,6 @@ export interface HealthMetadataDTO {
|
|
|
2067
2086
|
|
|
2068
2087
|
export interface GetMenusQuery {
|
|
2069
2088
|
query: string;
|
|
2070
|
-
// Graphql query string
|
|
2071
|
-
_query?: string;
|
|
2072
2089
|
}
|
|
2073
2090
|
|
|
2074
2091
|
export type GetMenusResponse = Menus;
|
|
@@ -2179,7 +2196,7 @@ export interface PatchMenuPath {
|
|
|
2179
2196
|
}
|
|
2180
2197
|
|
|
2181
2198
|
export interface PatchMenuQuery {
|
|
2182
|
-
//
|
|
2199
|
+
// Graphql query string
|
|
2183
2200
|
_query?: string;
|
|
2184
2201
|
}
|
|
2185
2202
|
|
|
@@ -2199,8 +2216,6 @@ export interface GetFullMenuPath {
|
|
|
2199
2216
|
}
|
|
2200
2217
|
|
|
2201
2218
|
export interface GetFullMenuQuery {
|
|
2202
|
-
// Graphql query string
|
|
2203
|
-
_query?: string;
|
|
2204
2219
|
nocache?: boolean;
|
|
2205
2220
|
}
|
|
2206
2221
|
|
|
@@ -2239,8 +2254,6 @@ export interface GetMenuItemsQuery {
|
|
|
2239
2254
|
barcodes: string;
|
|
2240
2255
|
// AP3 Brand ID
|
|
2241
2256
|
brand_id: string;
|
|
2242
|
-
// Graphql query string
|
|
2243
|
-
_query?: string;
|
|
2244
2257
|
}
|
|
2245
2258
|
|
|
2246
2259
|
export type GetMenuItemsResponse = Items;
|
|
@@ -2276,17 +2289,9 @@ export interface GetSectorMenusPath {
|
|
|
2276
2289
|
sector: string;
|
|
2277
2290
|
}
|
|
2278
2291
|
|
|
2279
|
-
export interface GetSectorMenusQuery {
|
|
2280
|
-
// Graphql query string
|
|
2281
|
-
_query?: string;
|
|
2282
|
-
}
|
|
2283
|
-
|
|
2284
2292
|
export type GetSectorMenusResponse = Menus;
|
|
2285
2293
|
|
|
2286
|
-
export interface GetSectorMenusRequest
|
|
2287
|
-
extends BaseRequest,
|
|
2288
|
-
RequestQuery<GetSectorMenusQuery>,
|
|
2289
|
-
GetSectorMenusPath {}
|
|
2294
|
+
export interface GetSectorMenusRequest extends BaseRequest, GetSectorMenusPath {}
|
|
2290
2295
|
|
|
2291
2296
|
// GET /menu/company/{company} - Get menus that belong to company
|
|
2292
2297
|
|
|
@@ -2295,17 +2300,9 @@ export interface GetCompanyMenusPath {
|
|
|
2295
2300
|
company: string;
|
|
2296
2301
|
}
|
|
2297
2302
|
|
|
2298
|
-
export interface GetCompanyMenusQuery {
|
|
2299
|
-
// Graphql query string
|
|
2300
|
-
_query?: string;
|
|
2301
|
-
}
|
|
2302
|
-
|
|
2303
2303
|
export type GetCompanyMenusResponse = Menus;
|
|
2304
2304
|
|
|
2305
|
-
export interface GetCompanyMenusRequest
|
|
2306
|
-
extends BaseRequest,
|
|
2307
|
-
RequestQuery<GetCompanyMenusQuery>,
|
|
2308
|
-
GetCompanyMenusPath {}
|
|
2305
|
+
export interface GetCompanyMenusRequest extends BaseRequest, GetCompanyMenusPath {}
|
|
2309
2306
|
|
|
2310
2307
|
// POST /menu/modifier/group - Create a new Menu Modifier Group
|
|
2311
2308
|
|
|
@@ -2324,17 +2321,9 @@ export interface GetModifierGroupPath {
|
|
|
2324
2321
|
id: string;
|
|
2325
2322
|
}
|
|
2326
2323
|
|
|
2327
|
-
export interface GetModifierGroupQuery {
|
|
2328
|
-
// Graphql query string
|
|
2329
|
-
_query?: string;
|
|
2330
|
-
}
|
|
2331
|
-
|
|
2332
2324
|
export type GetModifierGroupResponse = OptionsGroup;
|
|
2333
2325
|
|
|
2334
|
-
export interface GetModifierGroupRequest
|
|
2335
|
-
extends BaseRequest,
|
|
2336
|
-
RequestQuery<GetModifierGroupQuery>,
|
|
2337
|
-
GetModifierGroupPath {}
|
|
2326
|
+
export interface GetModifierGroupRequest extends BaseRequest, GetModifierGroupPath {}
|
|
2338
2327
|
|
|
2339
2328
|
// PUT /menu/modifier/group/{id} - Update a Menu Modifier Group
|
|
2340
2329
|
|
|
@@ -2369,16 +2358,10 @@ export interface GetCompanyModifierGroupsPath {
|
|
|
2369
2358
|
company: string;
|
|
2370
2359
|
}
|
|
2371
2360
|
|
|
2372
|
-
export interface GetCompanyModifierGroupsQuery {
|
|
2373
|
-
// Graphql query string
|
|
2374
|
-
_query?: string;
|
|
2375
|
-
}
|
|
2376
|
-
|
|
2377
2361
|
export type GetCompanyModifierGroupsResponse = OptionsGroupList;
|
|
2378
2362
|
|
|
2379
2363
|
export interface GetCompanyModifierGroupsRequest
|
|
2380
2364
|
extends BaseRequest,
|
|
2381
|
-
RequestQuery<GetCompanyModifierGroupsQuery>,
|
|
2382
2365
|
GetCompanyModifierGroupsPath {}
|
|
2383
2366
|
|
|
2384
2367
|
// GET /menu/modifier/group/company/{company}/export - Export company modifier groups to zipped excel file.
|
|
@@ -2388,16 +2371,10 @@ export interface GetCompanyModifierGroupsExportPath {
|
|
|
2388
2371
|
company: string;
|
|
2389
2372
|
}
|
|
2390
2373
|
|
|
2391
|
-
export interface GetCompanyModifierGroupsExportQuery {
|
|
2392
|
-
// Graphql query string
|
|
2393
|
-
_query?: string;
|
|
2394
|
-
}
|
|
2395
|
-
|
|
2396
2374
|
export type GetCompanyModifierGroupsExportResponse = ZippedExcelExport;
|
|
2397
2375
|
|
|
2398
2376
|
export interface GetCompanyModifierGroupsExportRequest
|
|
2399
2377
|
extends BaseRequest,
|
|
2400
|
-
RequestQuery<GetCompanyModifierGroupsExportQuery>,
|
|
2401
2378
|
GetCompanyModifierGroupsExportPath {}
|
|
2402
2379
|
|
|
2403
2380
|
// GET /menu/{id}/export - Export menu set to zipped excel file.
|
|
@@ -2407,17 +2384,9 @@ export interface GetMenuExportPath {
|
|
|
2407
2384
|
id: string;
|
|
2408
2385
|
}
|
|
2409
2386
|
|
|
2410
|
-
export interface GetMenuExportQuery {
|
|
2411
|
-
// Graphql query string
|
|
2412
|
-
_query?: string;
|
|
2413
|
-
}
|
|
2414
|
-
|
|
2415
2387
|
export type GetMenuExportResponse = ZippedExcelExport;
|
|
2416
2388
|
|
|
2417
|
-
export interface GetMenuExportRequest
|
|
2418
|
-
extends BaseRequest,
|
|
2419
|
-
RequestQuery<GetMenuExportQuery>,
|
|
2420
|
-
GetMenuExportPath {}
|
|
2389
|
+
export interface GetMenuExportRequest extends BaseRequest, GetMenuExportPath {}
|
|
2421
2390
|
|
|
2422
2391
|
// GET /menu/partial/{id}/groups - Get an individual menu with its categories only partially loaded. (No items)
|
|
2423
2392
|
|
|
@@ -2433,8 +2402,6 @@ export interface GetMenuPartialGroupsQuery {
|
|
|
2433
2402
|
show_unlinked?: boolean;
|
|
2434
2403
|
// Show items and modifiers with weight
|
|
2435
2404
|
include_items_with_weight?: boolean;
|
|
2436
|
-
// Graphql query string
|
|
2437
|
-
_query?: string;
|
|
2438
2405
|
}
|
|
2439
2406
|
|
|
2440
2407
|
export type GetMenuPartialGroupsResponse = Menu;
|
|
@@ -2456,8 +2423,6 @@ export interface GetMenuPartialGroupItemsPath {
|
|
|
2456
2423
|
export interface GetMenuPartialGroupItemsQuery {
|
|
2457
2424
|
// Show additional fields like hidden menu items, parent_id. Defaults to false
|
|
2458
2425
|
extended?: boolean;
|
|
2459
|
-
// Graphql query string
|
|
2460
|
-
_query?: string;
|
|
2461
2426
|
}
|
|
2462
2427
|
|
|
2463
2428
|
export type GetMenuPartialGroupItemsResponse = Items;
|
|
@@ -2496,25 +2461,15 @@ export interface PostMenuPartialGroupItemOptionsRequest
|
|
|
2496
2461
|
|
|
2497
2462
|
// GET /menu/ping - Service ping endpoint for basic connectivity check
|
|
2498
2463
|
|
|
2499
|
-
export interface PingQuery {
|
|
2500
|
-
// Graphql query string
|
|
2501
|
-
_query?: string;
|
|
2502
|
-
}
|
|
2503
|
-
|
|
2504
2464
|
export type PingResponse$0 = PingResponse;
|
|
2505
2465
|
|
|
2506
|
-
export interface PingRequest extends BaseRequest
|
|
2466
|
+
export interface PingRequest extends BaseRequest {}
|
|
2507
2467
|
|
|
2508
2468
|
// GET /menu/health - Service health check endpoint
|
|
2509
2469
|
|
|
2510
|
-
export interface HealthQuery {
|
|
2511
|
-
// Graphql query string
|
|
2512
|
-
_query?: string;
|
|
2513
|
-
}
|
|
2514
|
-
|
|
2515
2470
|
export type HealthResponse$0 = HealthResponse;
|
|
2516
2471
|
|
|
2517
|
-
export interface HealthRequest extends BaseRequest
|
|
2472
|
+
export interface HealthRequest extends BaseRequest {}
|
|
2518
2473
|
|
|
2519
2474
|
// POST /menu/v3/local-menu-group
|
|
2520
2475
|
|
|
@@ -2564,8 +2519,6 @@ export interface GetMenuV3LocalMenuGroupQuery {
|
|
|
2564
2519
|
select?: string[];
|
|
2565
2520
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
2566
2521
|
relationships?: string[];
|
|
2567
|
-
// Graphql query string
|
|
2568
|
-
_query?: string;
|
|
2569
2522
|
}
|
|
2570
2523
|
|
|
2571
2524
|
export interface GetMenuV3LocalMenuGroupResponse {
|
|
@@ -2691,8 +2644,6 @@ export interface GetMenuV3LocalMenuGroupsQuery {
|
|
|
2691
2644
|
sort_order?: 'DESC' | 'ASC';
|
|
2692
2645
|
// How soft deleted records should be shown in the list
|
|
2693
2646
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2694
|
-
// Graphql query string
|
|
2695
|
-
_query?: string;
|
|
2696
2647
|
}
|
|
2697
2648
|
|
|
2698
2649
|
export interface GetMenuV3LocalMenuGroupsResponse {
|
|
@@ -2735,8 +2686,6 @@ export interface PostMenuV3LocalMenuGroupsRequest extends BaseRequest {
|
|
|
2735
2686
|
export interface GetMenuV3LocalMenuGroupsCountQuery {
|
|
2736
2687
|
// The fields that filtering is allowed on
|
|
2737
2688
|
filter?: string;
|
|
2738
|
-
// Graphql query string
|
|
2739
|
-
_query?: string;
|
|
2740
2689
|
}
|
|
2741
2690
|
|
|
2742
2691
|
export interface GetMenuV3LocalMenuGroupsCountResponse {
|
|
@@ -2781,8 +2730,6 @@ export interface GetMenuV3DraftLocalMenuGroupBrandsQuery {
|
|
|
2781
2730
|
sort_order?: 'DESC' | 'ASC';
|
|
2782
2731
|
// How soft deleted records should be shown in the list
|
|
2783
2732
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2784
|
-
// Graphql query string
|
|
2785
|
-
_query?: string;
|
|
2786
2733
|
}
|
|
2787
2734
|
|
|
2788
2735
|
export interface GetMenuV3DraftLocalMenuGroupBrandsResponse {
|
|
@@ -2817,8 +2764,6 @@ export interface GetMenuV3DraftLocalMenuGroupItemsQuery {
|
|
|
2817
2764
|
sort_order?: 'DESC' | 'ASC';
|
|
2818
2765
|
// How soft deleted records should be shown in the list
|
|
2819
2766
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2820
|
-
// Graphql query string
|
|
2821
|
-
_query?: string;
|
|
2822
2767
|
}
|
|
2823
2768
|
|
|
2824
2769
|
export interface GetMenuV3DraftLocalMenuGroupItemsResponse {
|
|
@@ -2853,8 +2798,6 @@ export interface GetMenuV3LocalMenuGroupBrandsQuery {
|
|
|
2853
2798
|
sort_order?: 'DESC' | 'ASC';
|
|
2854
2799
|
// How soft deleted records should be shown in the list
|
|
2855
2800
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2856
|
-
// Graphql query string
|
|
2857
|
-
_query?: string;
|
|
2858
2801
|
}
|
|
2859
2802
|
|
|
2860
2803
|
export interface GetMenuV3LocalMenuGroupBrandsResponse {
|
|
@@ -2889,8 +2832,6 @@ export interface GetMenuV3LocalMenuGroupAllowedGlobalBrandsQuery {
|
|
|
2889
2832
|
sort_order?: 'DESC' | 'ASC';
|
|
2890
2833
|
// How soft deleted records should be shown in the list
|
|
2891
2834
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2892
|
-
// Graphql query string
|
|
2893
|
-
_query?: string;
|
|
2894
2835
|
}
|
|
2895
2836
|
|
|
2896
2837
|
export interface GetMenuV3LocalMenuGroupAllowedGlobalBrandsResponse {
|
|
@@ -2992,18 +2933,12 @@ export interface GetMenuV3LocalMenuGroupSitePath {
|
|
|
2992
2933
|
id: string;
|
|
2993
2934
|
}
|
|
2994
2935
|
|
|
2995
|
-
export interface GetMenuV3LocalMenuGroupSiteQuery {
|
|
2996
|
-
// Graphql query string
|
|
2997
|
-
_query?: string;
|
|
2998
|
-
}
|
|
2999
|
-
|
|
3000
2936
|
export interface GetMenuV3LocalMenuGroupSiteResponse {
|
|
3001
2937
|
results?: SiteGroupWithMenuGroupNameResponseDTO[];
|
|
3002
2938
|
}
|
|
3003
2939
|
|
|
3004
2940
|
export interface GetMenuV3LocalMenuGroupSiteRequest
|
|
3005
2941
|
extends BaseRequest,
|
|
3006
|
-
RequestQuery<GetMenuV3LocalMenuGroupSiteQuery>,
|
|
3007
2942
|
GetMenuV3LocalMenuGroupSitePath {}
|
|
3008
2943
|
|
|
3009
2944
|
// GET /menu/v3/local-menu-group/{id}/menu-group
|
|
@@ -3012,18 +2947,12 @@ export interface GetMenuV3LocalMenuGroupMenuGroupPath {
|
|
|
3012
2947
|
id: string;
|
|
3013
2948
|
}
|
|
3014
2949
|
|
|
3015
|
-
export interface GetMenuV3LocalMenuGroupMenuGroupQuery {
|
|
3016
|
-
// Graphql query string
|
|
3017
|
-
_query?: string;
|
|
3018
|
-
}
|
|
3019
|
-
|
|
3020
2950
|
export interface GetMenuV3LocalMenuGroupMenuGroupResponse {
|
|
3021
2951
|
results?: SiteGroupWithMenuGroupNameResponseDTO[];
|
|
3022
2952
|
}
|
|
3023
2953
|
|
|
3024
2954
|
export interface GetMenuV3LocalMenuGroupMenuGroupRequest
|
|
3025
2955
|
extends BaseRequest,
|
|
3026
|
-
RequestQuery<GetMenuV3LocalMenuGroupMenuGroupQuery>,
|
|
3027
2956
|
GetMenuV3LocalMenuGroupMenuGroupPath {}
|
|
3028
2957
|
|
|
3029
2958
|
// POST /menu/v3/local-menu-groups/site-groups
|
|
@@ -3058,18 +2987,11 @@ export interface DeleteMenuV3LocalMenuGroupsSiteGroupsRequest extends BaseReques
|
|
|
3058
2987
|
|
|
3059
2988
|
// GET /menu/v3/local-menu-group/export/solutions
|
|
3060
2989
|
|
|
3061
|
-
export interface GetMenuV3LocalMenuGroupExportSolutionsQuery {
|
|
3062
|
-
// Graphql query string
|
|
3063
|
-
_query?: string;
|
|
3064
|
-
}
|
|
3065
|
-
|
|
3066
2990
|
export interface GetMenuV3LocalMenuGroupExportSolutionsResponse {
|
|
3067
2991
|
results?: ExportSolutionDTO[];
|
|
3068
2992
|
}
|
|
3069
2993
|
|
|
3070
|
-
export interface GetMenuV3LocalMenuGroupExportSolutionsRequest
|
|
3071
|
-
extends BaseRequest,
|
|
3072
|
-
RequestQuery<GetMenuV3LocalMenuGroupExportSolutionsQuery> {}
|
|
2994
|
+
export interface GetMenuV3LocalMenuGroupExportSolutionsRequest extends BaseRequest {}
|
|
3073
2995
|
|
|
3074
2996
|
// GET /menu/v3/local-menu-group/{id}/export/solution/{solution_id}
|
|
3075
2997
|
|
|
@@ -3082,8 +3004,6 @@ export interface GetMenuV3LocalMenuGroupExportSolutionPath {
|
|
|
3082
3004
|
|
|
3083
3005
|
export interface GetMenuV3LocalMenuGroupExportSolutionQuery {
|
|
3084
3006
|
format?: 'csv' | 'txt' | 'xlsx';
|
|
3085
|
-
// Graphql query string
|
|
3086
|
-
_query?: string;
|
|
3087
3007
|
}
|
|
3088
3008
|
|
|
3089
3009
|
export interface GetMenuV3LocalMenuGroupExportSolutionResponse {
|
|
@@ -3132,8 +3052,6 @@ export interface GetMenuV3GlobalMenuGroupQuery {
|
|
|
3132
3052
|
select?: string[];
|
|
3133
3053
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
3134
3054
|
relationships?: string[];
|
|
3135
|
-
// Graphql query string
|
|
3136
|
-
_query?: string;
|
|
3137
3055
|
}
|
|
3138
3056
|
|
|
3139
3057
|
export type GetMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
|
|
@@ -3231,8 +3149,6 @@ export interface GetMenuV3GlobalMenuGroupsQuery {
|
|
|
3231
3149
|
sort_order?: 'DESC' | 'ASC';
|
|
3232
3150
|
// How soft deleted records should be shown in the list
|
|
3233
3151
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3234
|
-
// Graphql query string
|
|
3235
|
-
_query?: string;
|
|
3236
3152
|
}
|
|
3237
3153
|
|
|
3238
3154
|
export interface GetMenuV3GlobalMenuGroupsResponse {
|
|
@@ -3279,8 +3195,6 @@ export interface PostMenuV3GlobalMenuGroupsRequest extends BaseRequest {
|
|
|
3279
3195
|
export interface GetMenuV3GlobalMenuGroupsCountQuery {
|
|
3280
3196
|
// The fields that filtering is allowed on
|
|
3281
3197
|
filter?: string;
|
|
3282
|
-
// Graphql query string
|
|
3283
|
-
_query?: string;
|
|
3284
3198
|
}
|
|
3285
3199
|
|
|
3286
3200
|
export interface GetMenuV3GlobalMenuGroupsCountResponse {
|
|
@@ -3325,8 +3239,6 @@ export interface GetMenuV3DraftGlobalMenuGroupBrandsQuery {
|
|
|
3325
3239
|
sort_order?: 'DESC' | 'ASC';
|
|
3326
3240
|
// How soft deleted records should be shown in the list
|
|
3327
3241
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3328
|
-
// Graphql query string
|
|
3329
|
-
_query?: string;
|
|
3330
3242
|
}
|
|
3331
3243
|
|
|
3332
3244
|
export interface GetMenuV3DraftGlobalMenuGroupBrandsResponse {
|
|
@@ -3361,8 +3273,6 @@ export interface GetMenuV3GlobalMenuGroupBrandsQuery {
|
|
|
3361
3273
|
sort_order?: 'DESC' | 'ASC';
|
|
3362
3274
|
// How soft deleted records should be shown in the list
|
|
3363
3275
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3364
|
-
// Graphql query string
|
|
3365
|
-
_query?: string;
|
|
3366
3276
|
}
|
|
3367
3277
|
|
|
3368
3278
|
export interface GetMenuV3GlobalMenuGroupBrandsResponse {
|
|
@@ -3434,8 +3344,6 @@ export interface GetMenuV3DraftBrandQuery {
|
|
|
3434
3344
|
select?: string[];
|
|
3435
3345
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
3436
3346
|
relationships?: string[];
|
|
3437
|
-
// Graphql query string
|
|
3438
|
-
_query?: string;
|
|
3439
3347
|
}
|
|
3440
3348
|
|
|
3441
3349
|
export type GetMenuV3DraftBrandResponse = DraftBrandDTO;
|
|
@@ -3532,8 +3440,6 @@ export interface GetMenuV3DraftBrandsQuery {
|
|
|
3532
3440
|
sort_order?: 'DESC' | 'ASC';
|
|
3533
3441
|
// How soft deleted records should be shown in the list
|
|
3534
3442
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3535
|
-
// Graphql query string
|
|
3536
|
-
_query?: string;
|
|
3537
3443
|
}
|
|
3538
3444
|
|
|
3539
3445
|
export interface GetMenuV3DraftBrandsResponse {
|
|
@@ -3602,8 +3508,6 @@ export interface PostMenuV3DraftBrandsRequest extends BaseRequest {
|
|
|
3602
3508
|
export interface GetMenuV3DraftBrandsCountQuery {
|
|
3603
3509
|
// The fields that filtering is allowed on
|
|
3604
3510
|
filter?: string;
|
|
3605
|
-
// Graphql query string
|
|
3606
|
-
_query?: string;
|
|
3607
3511
|
}
|
|
3608
3512
|
|
|
3609
3513
|
export interface GetMenuV3DraftBrandsCountResponse {
|
|
@@ -3647,8 +3551,6 @@ export interface GetMenuV3DraftBrandAuditsQuery {
|
|
|
3647
3551
|
sort_order?: 'DESC' | 'ASC';
|
|
3648
3552
|
// How soft deleted records should be shown in the list
|
|
3649
3553
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3650
|
-
// Graphql query string
|
|
3651
|
-
_query?: string;
|
|
3652
3554
|
}
|
|
3653
3555
|
|
|
3654
3556
|
export interface GetMenuV3DraftBrandAuditsResponse {
|
|
@@ -3671,8 +3573,6 @@ export interface GetMenuV3DraftBrandAuditsUsersPath {
|
|
|
3671
3573
|
export interface GetMenuV3DraftBrandAuditsUsersQuery {
|
|
3672
3574
|
date_from?: string;
|
|
3673
3575
|
date_to?: string;
|
|
3674
|
-
// Graphql query string
|
|
3675
|
-
_query?: string;
|
|
3676
3576
|
}
|
|
3677
3577
|
|
|
3678
3578
|
export interface GetMenuV3DraftBrandAuditsUsersResponse {
|
|
@@ -3705,8 +3605,6 @@ export interface GetMenuV3DraftBrandMenusQuery {
|
|
|
3705
3605
|
sort_order?: 'DESC' | 'ASC';
|
|
3706
3606
|
// How soft deleted records should be shown in the list
|
|
3707
3607
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3708
|
-
// Graphql query string
|
|
3709
|
-
_query?: string;
|
|
3710
3608
|
}
|
|
3711
3609
|
|
|
3712
3610
|
export interface GetMenuV3DraftBrandMenusResponse {
|
|
@@ -3741,8 +3639,6 @@ export interface GetMenuV3DraftBrandModifiersQuery {
|
|
|
3741
3639
|
sort_order?: 'DESC' | 'ASC';
|
|
3742
3640
|
// How soft deleted records should be shown in the list
|
|
3743
3641
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3744
|
-
// Graphql query string
|
|
3745
|
-
_query?: string;
|
|
3746
3642
|
}
|
|
3747
3643
|
|
|
3748
3644
|
export interface GetMenuV3DraftBrandModifiersResponse {
|
|
@@ -3777,8 +3673,6 @@ export interface GetMenuV3DraftBrandModifierGroupsQuery {
|
|
|
3777
3673
|
sort_order?: 'DESC' | 'ASC';
|
|
3778
3674
|
// How soft deleted records should be shown in the list
|
|
3779
3675
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3780
|
-
// Graphql query string
|
|
3781
|
-
_query?: string;
|
|
3782
3676
|
}
|
|
3783
3677
|
|
|
3784
3678
|
export interface GetMenuV3DraftBrandModifierGroupsResponse {
|
|
@@ -3813,8 +3707,6 @@ export interface GetMenuV3DraftBrandItemsQuery {
|
|
|
3813
3707
|
sort_order?: 'DESC' | 'ASC';
|
|
3814
3708
|
// How soft deleted records should be shown in the list
|
|
3815
3709
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3816
|
-
// Graphql query string
|
|
3817
|
-
_query?: string;
|
|
3818
3710
|
}
|
|
3819
3711
|
|
|
3820
3712
|
export interface GetMenuV3DraftBrandItemsResponse {
|
|
@@ -3836,8 +3728,6 @@ export interface GetMenuV3DraftBrandItemsReportingCategoriesPath {
|
|
|
3836
3728
|
|
|
3837
3729
|
export interface GetMenuV3DraftBrandItemsReportingCategoriesQuery {
|
|
3838
3730
|
search?: string;
|
|
3839
|
-
// Graphql query string
|
|
3840
|
-
_query?: string;
|
|
3841
3731
|
}
|
|
3842
3732
|
|
|
3843
3733
|
export interface GetMenuV3DraftBrandItemsReportingCategoriesResponse {
|
|
@@ -3857,8 +3747,6 @@ export interface GetMenuV3DraftBrandModifiersReportingCategoriesPath {
|
|
|
3857
3747
|
|
|
3858
3748
|
export interface GetMenuV3DraftBrandModifiersReportingCategoriesQuery {
|
|
3859
3749
|
search?: string;
|
|
3860
|
-
// Graphql query string
|
|
3861
|
-
_query?: string;
|
|
3862
3750
|
}
|
|
3863
3751
|
|
|
3864
3752
|
export interface GetMenuV3DraftBrandModifiersReportingCategoriesResponse {
|
|
@@ -3876,18 +3764,12 @@ export interface GetMenuV3DraftBrandItemsTagsPath {
|
|
|
3876
3764
|
id: string;
|
|
3877
3765
|
}
|
|
3878
3766
|
|
|
3879
|
-
export interface GetMenuV3DraftBrandItemsTagsQuery {
|
|
3880
|
-
// Graphql query string
|
|
3881
|
-
_query?: string;
|
|
3882
|
-
}
|
|
3883
|
-
|
|
3884
3767
|
export interface GetMenuV3DraftBrandItemsTagsResponse {
|
|
3885
3768
|
tags?: string[];
|
|
3886
3769
|
}
|
|
3887
3770
|
|
|
3888
3771
|
export interface GetMenuV3DraftBrandItemsTagsRequest
|
|
3889
3772
|
extends BaseRequest,
|
|
3890
|
-
RequestQuery<GetMenuV3DraftBrandItemsTagsQuery>,
|
|
3891
3773
|
GetMenuV3DraftBrandItemsTagsPath {}
|
|
3892
3774
|
|
|
3893
3775
|
// GET /menu/v3/draft/brand/{id}/modifiers/tags
|
|
@@ -3896,18 +3778,12 @@ export interface GetMenuV3DraftBrandModifiersTagsPath {
|
|
|
3896
3778
|
id: string;
|
|
3897
3779
|
}
|
|
3898
3780
|
|
|
3899
|
-
export interface GetMenuV3DraftBrandModifiersTagsQuery {
|
|
3900
|
-
// Graphql query string
|
|
3901
|
-
_query?: string;
|
|
3902
|
-
}
|
|
3903
|
-
|
|
3904
3781
|
export interface GetMenuV3DraftBrandModifiersTagsResponse {
|
|
3905
3782
|
tags?: string[];
|
|
3906
3783
|
}
|
|
3907
3784
|
|
|
3908
3785
|
export interface GetMenuV3DraftBrandModifiersTagsRequest
|
|
3909
3786
|
extends BaseRequest,
|
|
3910
|
-
RequestQuery<GetMenuV3DraftBrandModifiersTagsQuery>,
|
|
3911
3787
|
GetMenuV3DraftBrandModifiersTagsPath {}
|
|
3912
3788
|
|
|
3913
3789
|
// POST /menu/v3/draft/brand/{id}/publish
|
|
@@ -3965,8 +3841,6 @@ export interface GetMenuV3DraftBrandDiffsQuery {
|
|
|
3965
3841
|
sort_order?: 'DESC' | 'ASC';
|
|
3966
3842
|
// How soft deleted records should be shown in the list
|
|
3967
3843
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3968
|
-
// Graphql query string
|
|
3969
|
-
_query?: string;
|
|
3970
3844
|
}
|
|
3971
3845
|
|
|
3972
3846
|
export interface GetMenuV3DraftBrandDiffsResponse {
|
|
@@ -4026,8 +3900,6 @@ export interface GetMenuV3DraftBrandExportPath {
|
|
|
4026
3900
|
|
|
4027
3901
|
export interface GetMenuV3DraftBrandExportQuery {
|
|
4028
3902
|
format?: 'xlsx';
|
|
4029
|
-
// Graphql query string
|
|
4030
|
-
_query?: string;
|
|
4031
3903
|
}
|
|
4032
3904
|
|
|
4033
3905
|
export interface GetMenuV3DraftBrandExportResponse {
|
|
@@ -4046,11 +3918,6 @@ export interface GetMenuV3DraftBrandImportLinkPath {
|
|
|
4046
3918
|
id: string;
|
|
4047
3919
|
}
|
|
4048
3920
|
|
|
4049
|
-
export interface GetMenuV3DraftBrandImportLinkQuery {
|
|
4050
|
-
// Graphql query string
|
|
4051
|
-
_query?: string;
|
|
4052
|
-
}
|
|
4053
|
-
|
|
4054
3921
|
export interface GetMenuV3DraftBrandImportLinkResponse {
|
|
4055
3922
|
upload_link: string;
|
|
4056
3923
|
[index: string]: any;
|
|
@@ -4058,7 +3925,6 @@ export interface GetMenuV3DraftBrandImportLinkResponse {
|
|
|
4058
3925
|
|
|
4059
3926
|
export interface GetMenuV3DraftBrandImportLinkRequest
|
|
4060
3927
|
extends BaseRequest,
|
|
4061
|
-
RequestQuery<GetMenuV3DraftBrandImportLinkQuery>,
|
|
4062
3928
|
GetMenuV3DraftBrandImportLinkPath {}
|
|
4063
3929
|
|
|
4064
3930
|
// POST /menu/v3/draft/brand/{id}/import
|
|
@@ -4083,18 +3949,12 @@ export interface GetMenuV3DraftBrandVerifyPublishPath {
|
|
|
4083
3949
|
id: string;
|
|
4084
3950
|
}
|
|
4085
3951
|
|
|
4086
|
-
export interface GetMenuV3DraftBrandVerifyPublishQuery {
|
|
4087
|
-
// Graphql query string
|
|
4088
|
-
_query?: string;
|
|
4089
|
-
}
|
|
4090
|
-
|
|
4091
3952
|
export interface GetMenuV3DraftBrandVerifyPublishResponse {
|
|
4092
3953
|
warnings?: WarningDTO[];
|
|
4093
3954
|
}
|
|
4094
3955
|
|
|
4095
3956
|
export interface GetMenuV3DraftBrandVerifyPublishRequest
|
|
4096
3957
|
extends BaseRequest,
|
|
4097
|
-
RequestQuery<GetMenuV3DraftBrandVerifyPublishQuery>,
|
|
4098
3958
|
GetMenuV3DraftBrandVerifyPublishPath {}
|
|
4099
3959
|
|
|
4100
3960
|
// POST /menu/v3/draft/brand/{id}/archive
|
|
@@ -4260,8 +4120,6 @@ export interface GetMenuV3BrandQuery {
|
|
|
4260
4120
|
select?: string[];
|
|
4261
4121
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
4262
4122
|
relationships?: string[];
|
|
4263
|
-
// Graphql query string
|
|
4264
|
-
_query?: string;
|
|
4265
4123
|
nocache?: boolean;
|
|
4266
4124
|
}
|
|
4267
4125
|
|
|
@@ -4360,8 +4218,6 @@ export interface GetMenuV3BrandsQuery {
|
|
|
4360
4218
|
sort_order?: 'DESC' | 'ASC';
|
|
4361
4219
|
// How soft deleted records should be shown in the list
|
|
4362
4220
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4363
|
-
// Graphql query string
|
|
4364
|
-
_query?: string;
|
|
4365
4221
|
nocache?: boolean;
|
|
4366
4222
|
}
|
|
4367
4223
|
|
|
@@ -4426,8 +4282,6 @@ export interface PostMenuV3BrandsRequest extends BaseRequest, RequestQuery<PostM
|
|
|
4426
4282
|
export interface GetMenuV3BrandsCountQuery {
|
|
4427
4283
|
// The fields that filtering is allowed on
|
|
4428
4284
|
filter?: string;
|
|
4429
|
-
// Graphql query string
|
|
4430
|
-
_query?: string;
|
|
4431
4285
|
nocache?: boolean;
|
|
4432
4286
|
}
|
|
4433
4287
|
|
|
@@ -4478,8 +4332,6 @@ export interface GetMenuV3BrandMenusQuery {
|
|
|
4478
4332
|
sort_order?: 'DESC' | 'ASC';
|
|
4479
4333
|
// How soft deleted records should be shown in the list
|
|
4480
4334
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4481
|
-
// Graphql query string
|
|
4482
|
-
_query?: string;
|
|
4483
4335
|
nocache?: boolean;
|
|
4484
4336
|
}
|
|
4485
4337
|
|
|
@@ -4515,8 +4367,6 @@ export interface GetMenuV3BrandModifiersQuery {
|
|
|
4515
4367
|
sort_order?: 'DESC' | 'ASC';
|
|
4516
4368
|
// How soft deleted records should be shown in the list
|
|
4517
4369
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4518
|
-
// Graphql query string
|
|
4519
|
-
_query?: string;
|
|
4520
4370
|
nocache?: boolean;
|
|
4521
4371
|
}
|
|
4522
4372
|
|
|
@@ -4552,8 +4402,6 @@ export interface GetMenuV3BrandModifierGroupsQuery {
|
|
|
4552
4402
|
sort_order?: 'DESC' | 'ASC';
|
|
4553
4403
|
// How soft deleted records should be shown in the list
|
|
4554
4404
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4555
|
-
// Graphql query string
|
|
4556
|
-
_query?: string;
|
|
4557
4405
|
nocache?: boolean;
|
|
4558
4406
|
}
|
|
4559
4407
|
|
|
@@ -4589,8 +4437,6 @@ export interface GetMenuV3BrandItemsQuery {
|
|
|
4589
4437
|
sort_order?: 'DESC' | 'ASC';
|
|
4590
4438
|
// How soft deleted records should be shown in the list
|
|
4591
4439
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4592
|
-
// Graphql query string
|
|
4593
|
-
_query?: string;
|
|
4594
4440
|
nocache?: boolean;
|
|
4595
4441
|
}
|
|
4596
4442
|
|
|
@@ -4644,8 +4490,6 @@ export interface GetMenuV3DraftMenuQuery {
|
|
|
4644
4490
|
select?: string[];
|
|
4645
4491
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
4646
4492
|
relationships?: string[];
|
|
4647
|
-
// Graphql query string
|
|
4648
|
-
_query?: string;
|
|
4649
4493
|
}
|
|
4650
4494
|
|
|
4651
4495
|
export type GetMenuV3DraftMenuResponse = DraftMenuDTO;
|
|
@@ -4723,8 +4567,6 @@ export interface GetMenuV3DraftMenusQuery {
|
|
|
4723
4567
|
sort_order?: 'DESC' | 'ASC';
|
|
4724
4568
|
// How soft deleted records should be shown in the list
|
|
4725
4569
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4726
|
-
// Graphql query string
|
|
4727
|
-
_query?: string;
|
|
4728
4570
|
}
|
|
4729
4571
|
|
|
4730
4572
|
export interface GetMenuV3DraftMenusResponse {
|
|
@@ -4774,8 +4616,6 @@ export interface PostMenuV3DraftMenusRequest extends BaseRequest {
|
|
|
4774
4616
|
export interface GetMenuV3DraftMenusCountQuery {
|
|
4775
4617
|
// The fields that filtering is allowed on
|
|
4776
4618
|
filter?: string;
|
|
4777
|
-
// Graphql query string
|
|
4778
|
-
_query?: string;
|
|
4779
4619
|
}
|
|
4780
4620
|
|
|
4781
4621
|
export interface GetMenuV3DraftMenusCountResponse {
|
|
@@ -4820,8 +4660,6 @@ export interface GetMenuV3DraftMenuCategoriesQuery {
|
|
|
4820
4660
|
sort_order?: 'DESC' | 'ASC';
|
|
4821
4661
|
// How soft deleted records should be shown in the list
|
|
4822
4662
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4823
|
-
// Graphql query string
|
|
4824
|
-
_query?: string;
|
|
4825
4663
|
}
|
|
4826
4664
|
|
|
4827
4665
|
export interface GetMenuV3DraftMenuCategoriesResponse {
|
|
@@ -4853,8 +4691,6 @@ export interface PostMenuV3DraftMenuPublishRequest
|
|
|
4853
4691
|
|
|
4854
4692
|
export interface GetMenuV3DraftMenusVerifyPublishQuery {
|
|
4855
4693
|
menu_ids?: string[];
|
|
4856
|
-
// Graphql query string
|
|
4857
|
-
_query?: string;
|
|
4858
4694
|
}
|
|
4859
4695
|
|
|
4860
4696
|
export interface GetMenuV3DraftMenusVerifyPublishResponse {
|
|
@@ -4939,8 +4775,6 @@ export interface GetMenuV3MenuQuery {
|
|
|
4939
4775
|
select?: string[];
|
|
4940
4776
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
4941
4777
|
relationships?: string[];
|
|
4942
|
-
// Graphql query string
|
|
4943
|
-
_query?: string;
|
|
4944
4778
|
nocache?: boolean;
|
|
4945
4779
|
}
|
|
4946
4780
|
|
|
@@ -4968,8 +4802,6 @@ export interface GetMenuV3MenusQuery {
|
|
|
4968
4802
|
sort_order?: 'DESC' | 'ASC';
|
|
4969
4803
|
// How soft deleted records should be shown in the list
|
|
4970
4804
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4971
|
-
// Graphql query string
|
|
4972
|
-
_query?: string;
|
|
4973
4805
|
nocache?: boolean;
|
|
4974
4806
|
}
|
|
4975
4807
|
|
|
@@ -4986,8 +4818,6 @@ export interface GetMenuV3MenusRequest extends BaseRequest, RequestQuery<GetMenu
|
|
|
4986
4818
|
export interface GetMenuV3MenusCountQuery {
|
|
4987
4819
|
// The fields that filtering is allowed on
|
|
4988
4820
|
filter?: string;
|
|
4989
|
-
// Graphql query string
|
|
4990
|
-
_query?: string;
|
|
4991
4821
|
nocache?: boolean;
|
|
4992
4822
|
}
|
|
4993
4823
|
|
|
@@ -5038,8 +4868,6 @@ export interface GetMenuV3MenuCategoriesQuery {
|
|
|
5038
4868
|
sort_order?: 'DESC' | 'ASC';
|
|
5039
4869
|
// How soft deleted records should be shown in the list
|
|
5040
4870
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5041
|
-
// Graphql query string
|
|
5042
|
-
_query?: string;
|
|
5043
4871
|
nocache?: boolean;
|
|
5044
4872
|
}
|
|
5045
4873
|
|
|
@@ -5125,8 +4953,6 @@ export interface GetMenuV3DraftCategoryQuery {
|
|
|
5125
4953
|
select?: string[];
|
|
5126
4954
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
5127
4955
|
relationships?: string[];
|
|
5128
|
-
// Graphql query string
|
|
5129
|
-
_query?: string;
|
|
5130
4956
|
}
|
|
5131
4957
|
|
|
5132
4958
|
export type GetMenuV3DraftCategoryResponse = DraftCategoryDTO;
|
|
@@ -5194,8 +5020,6 @@ export interface DeleteMenuV3DraftCategoryRequest
|
|
|
5194
5020
|
export interface GetMenuV3DraftCategoriesCountQuery {
|
|
5195
5021
|
// The fields that filtering is allowed on
|
|
5196
5022
|
filter?: string;
|
|
5197
|
-
// Graphql query string
|
|
5198
|
-
_query?: string;
|
|
5199
5023
|
}
|
|
5200
5024
|
|
|
5201
5025
|
export interface GetMenuV3DraftCategoriesCountResponse {
|
|
@@ -5342,8 +5166,6 @@ export interface GetMenuV3DraftCategoryUnattachedItemsQuery {
|
|
|
5342
5166
|
sort_order?: 'DESC' | 'ASC';
|
|
5343
5167
|
// How soft deleted records should be shown in the list
|
|
5344
5168
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5345
|
-
// Graphql query string
|
|
5346
|
-
_query?: string;
|
|
5347
5169
|
}
|
|
5348
5170
|
|
|
5349
5171
|
export interface GetMenuV3DraftCategoryUnattachedItemsResponse {
|
|
@@ -5368,8 +5190,6 @@ export interface GetMenuV3CategoryQuery {
|
|
|
5368
5190
|
select?: string[];
|
|
5369
5191
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
5370
5192
|
relationships?: string[];
|
|
5371
|
-
// Graphql query string
|
|
5372
|
-
_query?: string;
|
|
5373
5193
|
nocache?: boolean;
|
|
5374
5194
|
}
|
|
5375
5195
|
|
|
@@ -5385,8 +5205,6 @@ export interface GetMenuV3CategoryRequest
|
|
|
5385
5205
|
export interface GetMenuV3CategorysCountQuery {
|
|
5386
5206
|
// The fields that filtering is allowed on
|
|
5387
5207
|
filter?: string;
|
|
5388
|
-
// Graphql query string
|
|
5389
|
-
_query?: string;
|
|
5390
5208
|
nocache?: boolean;
|
|
5391
5209
|
}
|
|
5392
5210
|
|
|
@@ -5453,8 +5271,6 @@ export interface GetMenuV3DraftCategoryRelationshipsItemQuery {
|
|
|
5453
5271
|
select?: string[];
|
|
5454
5272
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
5455
5273
|
relationships?: string[];
|
|
5456
|
-
// Graphql query string
|
|
5457
|
-
_query?: string;
|
|
5458
5274
|
}
|
|
5459
5275
|
|
|
5460
5276
|
export type GetMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
|
|
@@ -5532,8 +5348,6 @@ export interface GetMenuV3DraftCategoryRelationshipsItemsQuery {
|
|
|
5532
5348
|
sort_order?: 'DESC' | 'ASC';
|
|
5533
5349
|
// How soft deleted records should be shown in the list
|
|
5534
5350
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5535
|
-
// Graphql query string
|
|
5536
|
-
_query?: string;
|
|
5537
5351
|
}
|
|
5538
5352
|
|
|
5539
5353
|
export interface GetMenuV3DraftCategoryRelationshipsItemsResponse {
|
|
@@ -5581,8 +5395,6 @@ export interface PostMenuV3DraftCategoryRelationshipsItemsRequest extends BaseRe
|
|
|
5581
5395
|
export interface GetMenuV3DraftCategoryRelationshipsItemsCountQuery {
|
|
5582
5396
|
// The fields that filtering is allowed on
|
|
5583
5397
|
filter?: string;
|
|
5584
|
-
// Graphql query string
|
|
5585
|
-
_query?: string;
|
|
5586
5398
|
}
|
|
5587
5399
|
|
|
5588
5400
|
export interface GetMenuV3DraftCategoryRelationshipsItemsCountResponse {
|
|
@@ -5618,8 +5430,6 @@ export interface GetMenuV3CategoryRelationshipsItemQuery {
|
|
|
5618
5430
|
select?: string[];
|
|
5619
5431
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
5620
5432
|
relationships?: string[];
|
|
5621
|
-
// Graphql query string
|
|
5622
|
-
_query?: string;
|
|
5623
5433
|
nocache?: boolean;
|
|
5624
5434
|
}
|
|
5625
5435
|
|
|
@@ -5647,8 +5457,6 @@ export interface GetMenuV3CategoryRelationshipsItemsQuery {
|
|
|
5647
5457
|
sort_order?: 'DESC' | 'ASC';
|
|
5648
5458
|
// How soft deleted records should be shown in the list
|
|
5649
5459
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5650
|
-
// Graphql query string
|
|
5651
|
-
_query?: string;
|
|
5652
5460
|
nocache?: boolean;
|
|
5653
5461
|
}
|
|
5654
5462
|
|
|
@@ -5667,8 +5475,6 @@ export interface GetMenuV3CategoryRelationshipsItemsRequest
|
|
|
5667
5475
|
export interface GetMenuV3CategoryRelationshipsItemsCountQuery {
|
|
5668
5476
|
// The fields that filtering is allowed on
|
|
5669
5477
|
filter?: string;
|
|
5670
|
-
// Graphql query string
|
|
5671
|
-
_query?: string;
|
|
5672
5478
|
nocache?: boolean;
|
|
5673
5479
|
}
|
|
5674
5480
|
|
|
@@ -5765,8 +5571,6 @@ export interface GetMenuV3DraftItemQuery {
|
|
|
5765
5571
|
select?: string[];
|
|
5766
5572
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
5767
5573
|
relationships?: string[];
|
|
5768
|
-
// Graphql query string
|
|
5769
|
-
_query?: string;
|
|
5770
5574
|
}
|
|
5771
5575
|
|
|
5772
5576
|
export type GetMenuV3DraftItemResponse = DraftItemDTO;
|
|
@@ -5888,8 +5692,6 @@ export interface GetMenuV3DraftItemsQuery {
|
|
|
5888
5692
|
sort_order?: 'DESC' | 'ASC';
|
|
5889
5693
|
// How soft deleted records should be shown in the list
|
|
5890
5694
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5891
|
-
// Graphql query string
|
|
5892
|
-
_query?: string;
|
|
5893
5695
|
}
|
|
5894
5696
|
|
|
5895
5697
|
export interface GetMenuV3DraftItemsResponse {
|
|
@@ -5966,8 +5768,6 @@ export interface PostMenuV3DraftItemsRequest extends BaseRequest {
|
|
|
5966
5768
|
export interface GetMenuV3DraftItemsCountQuery {
|
|
5967
5769
|
// The fields that filtering is allowed on
|
|
5968
5770
|
filter?: string;
|
|
5969
|
-
// Graphql query string
|
|
5970
|
-
_query?: string;
|
|
5971
5771
|
}
|
|
5972
5772
|
|
|
5973
5773
|
export interface GetMenuV3DraftItemsCountResponse {
|
|
@@ -5999,8 +5799,6 @@ export interface GetMenuV3DraftItemLineRoutesPath {
|
|
|
5999
5799
|
|
|
6000
5800
|
export interface GetMenuV3DraftItemLineRoutesQuery {
|
|
6001
5801
|
search?: string;
|
|
6002
|
-
// Graphql query string
|
|
6003
|
-
_query?: string;
|
|
6004
5802
|
}
|
|
6005
5803
|
|
|
6006
5804
|
export interface GetMenuV3DraftItemLineRoutesResponse {
|
|
@@ -6153,8 +5951,6 @@ export interface GetMenuV3ItemQuery {
|
|
|
6153
5951
|
select?: string[];
|
|
6154
5952
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
6155
5953
|
relationships?: string[];
|
|
6156
|
-
// Graphql query string
|
|
6157
|
-
_query?: string;
|
|
6158
5954
|
nocache?: boolean;
|
|
6159
5955
|
}
|
|
6160
5956
|
|
|
@@ -6182,8 +5978,6 @@ export interface GetMenuV3ItemsQuery {
|
|
|
6182
5978
|
sort_order?: 'DESC' | 'ASC';
|
|
6183
5979
|
// How soft deleted records should be shown in the list
|
|
6184
5980
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6185
|
-
// Graphql query string
|
|
6186
|
-
_query?: string;
|
|
6187
5981
|
nocache?: boolean;
|
|
6188
5982
|
}
|
|
6189
5983
|
|
|
@@ -6200,8 +5994,6 @@ export interface GetMenuV3ItemsRequest extends BaseRequest, RequestQuery<GetMenu
|
|
|
6200
5994
|
export interface GetMenuV3ItemsCountQuery {
|
|
6201
5995
|
// The fields that filtering is allowed on
|
|
6202
5996
|
filter?: string;
|
|
6203
|
-
// Graphql query string
|
|
6204
|
-
_query?: string;
|
|
6205
5997
|
nocache?: boolean;
|
|
6206
5998
|
}
|
|
6207
5999
|
|
|
@@ -6269,8 +6061,6 @@ export interface GetMenuV3DraftItemRelationshipsModifierGroupQuery {
|
|
|
6269
6061
|
select?: string[];
|
|
6270
6062
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
6271
6063
|
relationships?: string[];
|
|
6272
|
-
// Graphql query string
|
|
6273
|
-
_query?: string;
|
|
6274
6064
|
}
|
|
6275
6065
|
|
|
6276
6066
|
export type GetMenuV3DraftItemRelationshipsModifierGroupResponse =
|
|
@@ -6351,8 +6141,6 @@ export interface GetMenuV3DraftItemRelationshipsModifierGroupsQuery {
|
|
|
6351
6141
|
sort_order?: 'DESC' | 'ASC';
|
|
6352
6142
|
// How soft deleted records should be shown in the list
|
|
6353
6143
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6354
|
-
// Graphql query string
|
|
6355
|
-
_query?: string;
|
|
6356
6144
|
}
|
|
6357
6145
|
|
|
6358
6146
|
export interface GetMenuV3DraftItemRelationshipsModifierGroupsResponse {
|
|
@@ -6400,8 +6188,6 @@ export interface PostMenuV3DraftItemRelationshipsModifierGroupsRequest extends B
|
|
|
6400
6188
|
export interface GetMenuV3DraftItemRelationshipsModifierGroupsCountQuery {
|
|
6401
6189
|
// The fields that filtering is allowed on
|
|
6402
6190
|
filter?: string;
|
|
6403
|
-
// Graphql query string
|
|
6404
|
-
_query?: string;
|
|
6405
6191
|
}
|
|
6406
6192
|
|
|
6407
6193
|
export interface GetMenuV3DraftItemRelationshipsModifierGroupsCountResponse {
|
|
@@ -6437,8 +6223,6 @@ export interface GetMenuV3ItemRelationshipsModifierGroupQuery {
|
|
|
6437
6223
|
select?: string[];
|
|
6438
6224
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
6439
6225
|
relationships?: string[];
|
|
6440
|
-
// Graphql query string
|
|
6441
|
-
_query?: string;
|
|
6442
6226
|
nocache?: boolean;
|
|
6443
6227
|
}
|
|
6444
6228
|
|
|
@@ -6467,8 +6251,6 @@ export interface GetMenuV3ItemRelationshipsModifierGroupsQuery {
|
|
|
6467
6251
|
sort_order?: 'DESC' | 'ASC';
|
|
6468
6252
|
// How soft deleted records should be shown in the list
|
|
6469
6253
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6470
|
-
// Graphql query string
|
|
6471
|
-
_query?: string;
|
|
6472
6254
|
nocache?: boolean;
|
|
6473
6255
|
}
|
|
6474
6256
|
|
|
@@ -6487,8 +6269,6 @@ export interface GetMenuV3ItemRelationshipsModifierGroupsRequest
|
|
|
6487
6269
|
export interface GetMenuV3ItemRelationshipsModifierGroupsCountQuery {
|
|
6488
6270
|
// The fields that filtering is allowed on
|
|
6489
6271
|
filter?: string;
|
|
6490
|
-
// Graphql query string
|
|
6491
|
-
_query?: string;
|
|
6492
6272
|
nocache?: boolean;
|
|
6493
6273
|
}
|
|
6494
6274
|
|
|
@@ -6564,8 +6344,6 @@ export interface GetMenuV3DraftModifierGroupQuery {
|
|
|
6564
6344
|
select?: string[];
|
|
6565
6345
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
6566
6346
|
relationships?: string[];
|
|
6567
|
-
// Graphql query string
|
|
6568
|
-
_query?: string;
|
|
6569
6347
|
}
|
|
6570
6348
|
|
|
6571
6349
|
export type GetMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
|
|
@@ -6651,8 +6429,6 @@ export interface GetMenuV3DraftModifierGroupsQuery {
|
|
|
6651
6429
|
sort_order?: 'DESC' | 'ASC';
|
|
6652
6430
|
// How soft deleted records should be shown in the list
|
|
6653
6431
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6654
|
-
// Graphql query string
|
|
6655
|
-
_query?: string;
|
|
6656
6432
|
}
|
|
6657
6433
|
|
|
6658
6434
|
export interface GetMenuV3DraftModifierGroupsResponse {
|
|
@@ -6708,8 +6484,6 @@ export interface PostMenuV3DraftModifierGroupsRequest extends BaseRequest {
|
|
|
6708
6484
|
export interface GetMenuV3DraftModifierGroupsCountQuery {
|
|
6709
6485
|
// The fields that filtering is allowed on
|
|
6710
6486
|
filter?: string;
|
|
6711
|
-
// Graphql query string
|
|
6712
|
-
_query?: string;
|
|
6713
6487
|
}
|
|
6714
6488
|
|
|
6715
6489
|
export interface GetMenuV3DraftModifierGroupsCountResponse {
|
|
@@ -6790,8 +6564,6 @@ export interface GetMenuV3ModifierGroupQuery {
|
|
|
6790
6564
|
select?: string[];
|
|
6791
6565
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
6792
6566
|
relationships?: string[];
|
|
6793
|
-
// Graphql query string
|
|
6794
|
-
_query?: string;
|
|
6795
6567
|
nocache?: boolean;
|
|
6796
6568
|
}
|
|
6797
6569
|
|
|
@@ -6819,8 +6591,6 @@ export interface GetMenuV3ModifierGroupsQuery {
|
|
|
6819
6591
|
sort_order?: 'DESC' | 'ASC';
|
|
6820
6592
|
// How soft deleted records should be shown in the list
|
|
6821
6593
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6822
|
-
// Graphql query string
|
|
6823
|
-
_query?: string;
|
|
6824
6594
|
nocache?: boolean;
|
|
6825
6595
|
}
|
|
6826
6596
|
|
|
@@ -6839,8 +6609,6 @@ export interface GetMenuV3ModifierGroupsRequest
|
|
|
6839
6609
|
export interface GetMenuV3ModifierGroupsCountQuery {
|
|
6840
6610
|
// The fields that filtering is allowed on
|
|
6841
6611
|
filter?: string;
|
|
6842
|
-
// Graphql query string
|
|
6843
|
-
_query?: string;
|
|
6844
6612
|
nocache?: boolean;
|
|
6845
6613
|
}
|
|
6846
6614
|
|
|
@@ -6908,8 +6676,6 @@ export interface GetMenuV3DraftModifierGroupRelationshipsModifierQuery {
|
|
|
6908
6676
|
select?: string[];
|
|
6909
6677
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
6910
6678
|
relationships?: string[];
|
|
6911
|
-
// Graphql query string
|
|
6912
|
-
_query?: string;
|
|
6913
6679
|
}
|
|
6914
6680
|
|
|
6915
6681
|
export type GetMenuV3DraftModifierGroupRelationshipsModifierResponse =
|
|
@@ -6990,8 +6756,6 @@ export interface GetMenuV3DraftModifierGroupRelationshipsModifiersQuery {
|
|
|
6990
6756
|
sort_order?: 'DESC' | 'ASC';
|
|
6991
6757
|
// How soft deleted records should be shown in the list
|
|
6992
6758
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6993
|
-
// Graphql query string
|
|
6994
|
-
_query?: string;
|
|
6995
6759
|
}
|
|
6996
6760
|
|
|
6997
6761
|
export interface GetMenuV3DraftModifierGroupRelationshipsModifiersResponse {
|
|
@@ -7039,8 +6803,6 @@ export interface PostMenuV3DraftModifierGroupRelationshipsModifiersRequest exten
|
|
|
7039
6803
|
export interface GetMenuV3DraftModifierGroupRelationshipsModifiersCountQuery {
|
|
7040
6804
|
// The fields that filtering is allowed on
|
|
7041
6805
|
filter?: string;
|
|
7042
|
-
// Graphql query string
|
|
7043
|
-
_query?: string;
|
|
7044
6806
|
}
|
|
7045
6807
|
|
|
7046
6808
|
export interface GetMenuV3DraftModifierGroupRelationshipsModifiersCountResponse {
|
|
@@ -7076,8 +6838,6 @@ export interface GetMenuV3ModifierGroupRelationshipsModifierQuery {
|
|
|
7076
6838
|
select?: string[];
|
|
7077
6839
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
7078
6840
|
relationships?: string[];
|
|
7079
|
-
// Graphql query string
|
|
7080
|
-
_query?: string;
|
|
7081
6841
|
nocache?: boolean;
|
|
7082
6842
|
}
|
|
7083
6843
|
|
|
@@ -7106,8 +6866,6 @@ export interface GetMenuV3ModifierGroupRelationshipsModifiersQuery {
|
|
|
7106
6866
|
sort_order?: 'DESC' | 'ASC';
|
|
7107
6867
|
// How soft deleted records should be shown in the list
|
|
7108
6868
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
7109
|
-
// Graphql query string
|
|
7110
|
-
_query?: string;
|
|
7111
6869
|
nocache?: boolean;
|
|
7112
6870
|
}
|
|
7113
6871
|
|
|
@@ -7126,8 +6884,6 @@ export interface GetMenuV3ModifierGroupRelationshipsModifiersRequest
|
|
|
7126
6884
|
export interface GetMenuV3ModifierGroupRelationshipsModifiersCountQuery {
|
|
7127
6885
|
// The fields that filtering is allowed on
|
|
7128
6886
|
filter?: string;
|
|
7129
|
-
// Graphql query string
|
|
7130
|
-
_query?: string;
|
|
7131
6887
|
nocache?: boolean;
|
|
7132
6888
|
}
|
|
7133
6889
|
|
|
@@ -7220,8 +6976,6 @@ export interface GetMenuV3DraftModifierQuery {
|
|
|
7220
6976
|
select?: string[];
|
|
7221
6977
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
7222
6978
|
relationships?: string[];
|
|
7223
|
-
// Graphql query string
|
|
7224
|
-
_query?: string;
|
|
7225
6979
|
}
|
|
7226
6980
|
|
|
7227
6981
|
export type GetMenuV3DraftModifierResponse = DraftModifierDTO;
|
|
@@ -7339,8 +7093,6 @@ export interface GetMenuV3DraftModifiersQuery {
|
|
|
7339
7093
|
sort_order?: 'DESC' | 'ASC';
|
|
7340
7094
|
// How soft deleted records should be shown in the list
|
|
7341
7095
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
7342
|
-
// Graphql query string
|
|
7343
|
-
_query?: string;
|
|
7344
7096
|
}
|
|
7345
7097
|
|
|
7346
7098
|
export interface GetMenuV3DraftModifiersResponse {
|
|
@@ -7413,8 +7165,6 @@ export interface PostMenuV3DraftModifiersRequest extends BaseRequest {
|
|
|
7413
7165
|
export interface GetMenuV3DraftModifiersCountQuery {
|
|
7414
7166
|
// The fields that filtering is allowed on
|
|
7415
7167
|
filter?: string;
|
|
7416
|
-
// Graphql query string
|
|
7417
|
-
_query?: string;
|
|
7418
7168
|
}
|
|
7419
7169
|
|
|
7420
7170
|
export interface GetMenuV3DraftModifiersCountResponse {
|
|
@@ -7446,8 +7196,6 @@ export interface GetMenuV3DraftModifierLineRoutesPath {
|
|
|
7446
7196
|
|
|
7447
7197
|
export interface GetMenuV3DraftModifierLineRoutesQuery {
|
|
7448
7198
|
search?: string;
|
|
7449
|
-
// Graphql query string
|
|
7450
|
-
_query?: string;
|
|
7451
7199
|
}
|
|
7452
7200
|
|
|
7453
7201
|
export interface GetMenuV3DraftModifierLineRoutesResponse {
|
|
@@ -7545,8 +7293,6 @@ export interface GetMenuV3ModifierQuery {
|
|
|
7545
7293
|
select?: string[];
|
|
7546
7294
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
7547
7295
|
relationships?: string[];
|
|
7548
|
-
// Graphql query string
|
|
7549
|
-
_query?: string;
|
|
7550
7296
|
nocache?: boolean;
|
|
7551
7297
|
}
|
|
7552
7298
|
|
|
@@ -7574,8 +7320,6 @@ export interface GetMenuV3ModifiersQuery {
|
|
|
7574
7320
|
sort_order?: 'DESC' | 'ASC';
|
|
7575
7321
|
// How soft deleted records should be shown in the list
|
|
7576
7322
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
7577
|
-
// Graphql query string
|
|
7578
|
-
_query?: string;
|
|
7579
7323
|
nocache?: boolean;
|
|
7580
7324
|
}
|
|
7581
7325
|
|
|
@@ -7594,8 +7338,6 @@ export interface GetMenuV3ModifiersRequest
|
|
|
7594
7338
|
export interface GetMenuV3ModifiersCountQuery {
|
|
7595
7339
|
// The fields that filtering is allowed on
|
|
7596
7340
|
filter?: string;
|
|
7597
|
-
// Graphql query string
|
|
7598
|
-
_query?: string;
|
|
7599
7341
|
nocache?: boolean;
|
|
7600
7342
|
}
|
|
7601
7343
|
|
|
@@ -7651,8 +7393,6 @@ export interface GetMenuV3GlobalDiffQuery {
|
|
|
7651
7393
|
select?: string[];
|
|
7652
7394
|
// List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
|
|
7653
7395
|
relationships?: string[];
|
|
7654
|
-
// Graphql query string
|
|
7655
|
-
_query?: string;
|
|
7656
7396
|
}
|
|
7657
7397
|
|
|
7658
7398
|
export type GetMenuV3GlobalDiffResponse = GlobalDiffDTO;
|
|
@@ -7679,8 +7419,6 @@ export interface GetMenuV3GlobalDiffsQuery {
|
|
|
7679
7419
|
sort_order?: 'DESC' | 'ASC';
|
|
7680
7420
|
// How soft deleted records should be shown in the list
|
|
7681
7421
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
7682
|
-
// Graphql query string
|
|
7683
|
-
_query?: string;
|
|
7684
7422
|
}
|
|
7685
7423
|
|
|
7686
7424
|
export interface GetMenuV3GlobalDiffsResponse {
|
|
@@ -7698,8 +7436,6 @@ export interface GetMenuV3GlobalDiffsRequest
|
|
|
7698
7436
|
export interface GetMenuV3GlobalDiffsCountQuery {
|
|
7699
7437
|
// The fields that filtering is allowed on
|
|
7700
7438
|
filter?: string;
|
|
7701
|
-
// Graphql query string
|
|
7702
|
-
_query?: string;
|
|
7703
7439
|
}
|
|
7704
7440
|
|
|
7705
7441
|
export interface GetMenuV3GlobalDiffsCountResponse {
|
|
@@ -7728,8 +7464,6 @@ export interface PostMenuV3GlobalDiffRecoverRequest
|
|
|
7728
7464
|
export interface GetMenuV3MenuworksQuery {
|
|
7729
7465
|
unit_ids?: string[];
|
|
7730
7466
|
MRN?: string;
|
|
7731
|
-
// Graphql query string
|
|
7732
|
-
_query?: string;
|
|
7733
7467
|
}
|
|
7734
7468
|
|
|
7735
7469
|
export interface GetMenuV3MenuworksResponse {
|
|
@@ -7740,6 +7474,7 @@ export interface GetMenuV3MenuworksResponse {
|
|
|
7740
7474
|
description?: string;
|
|
7741
7475
|
portion_size: string;
|
|
7742
7476
|
allergens?: AllergenDTO[];
|
|
7477
|
+
nutrition?: NutritionDTO;
|
|
7743
7478
|
MRN?: string;
|
|
7744
7479
|
portion_quantity?: number;
|
|
7745
7480
|
portion_unit_name?: string;
|
|
@@ -7772,8 +7507,6 @@ export interface GetMenuV3UniversalItemsQuery {
|
|
|
7772
7507
|
sort_order?: 'DESC' | 'ASC';
|
|
7773
7508
|
// How soft deleted records should be shown in the list
|
|
7774
7509
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
7775
|
-
// Graphql query string
|
|
7776
|
-
_query?: string;
|
|
7777
7510
|
}
|
|
7778
7511
|
|
|
7779
7512
|
export interface GetMenuV3UniversalItemsResponse {
|
|
@@ -7806,11 +7539,6 @@ export interface GetMenuV3UniversalItemPath {
|
|
|
7806
7539
|
barcode: string;
|
|
7807
7540
|
}
|
|
7808
7541
|
|
|
7809
|
-
export interface GetMenuV3UniversalItemQuery {
|
|
7810
|
-
// Graphql query string
|
|
7811
|
-
_query?: string;
|
|
7812
|
-
}
|
|
7813
|
-
|
|
7814
7542
|
export interface GetMenuV3UniversalItemResponse {
|
|
7815
7543
|
barcode: string;
|
|
7816
7544
|
name: string;
|
|
@@ -7827,10 +7555,7 @@ export interface GetMenuV3UniversalItemResponse {
|
|
|
7827
7555
|
[index: string]: any;
|
|
7828
7556
|
}
|
|
7829
7557
|
|
|
7830
|
-
export interface GetMenuV3UniversalItemRequest
|
|
7831
|
-
extends BaseRequest,
|
|
7832
|
-
RequestQuery<GetMenuV3UniversalItemQuery>,
|
|
7833
|
-
GetMenuV3UniversalItemPath {}
|
|
7558
|
+
export interface GetMenuV3UniversalItemRequest extends BaseRequest, GetMenuV3UniversalItemPath {}
|
|
7834
7559
|
|
|
7835
7560
|
// PATCH /menu/v3/universal-item/{barcode}
|
|
7836
7561
|
|
|
@@ -7987,8 +7712,6 @@ export interface GetMenuV4BrandPath {
|
|
|
7987
7712
|
|
|
7988
7713
|
export interface GetMenuV4BrandQuery {
|
|
7989
7714
|
with_parent?: boolean;
|
|
7990
|
-
// Graphql query string
|
|
7991
|
-
_query?: string;
|
|
7992
7715
|
}
|
|
7993
7716
|
|
|
7994
7717
|
export interface GetMenuV4BrandResponse {
|
|
@@ -8374,8 +8097,6 @@ export interface GetMenuV4BrandItemsQuery {
|
|
|
8374
8097
|
sort_order?: 'DESC' | 'ASC';
|
|
8375
8098
|
// How soft deleted records should be shown in the list
|
|
8376
8099
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
8377
|
-
// Graphql query string
|
|
8378
|
-
_query?: string;
|
|
8379
8100
|
}
|
|
8380
8101
|
|
|
8381
8102
|
export interface GetMenuV4BrandItemsResponse {
|
|
@@ -8409,8 +8130,6 @@ export interface GetMenuV4BrandModifierGroupsQuery {
|
|
|
8409
8130
|
sort_order?: 'DESC' | 'ASC';
|
|
8410
8131
|
// How soft deleted records should be shown in the list
|
|
8411
8132
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
8412
|
-
// Graphql query string
|
|
8413
|
-
_query?: string;
|
|
8414
8133
|
}
|
|
8415
8134
|
|
|
8416
8135
|
export interface GetMenuV4BrandModifierGroupsResponse {
|
|
@@ -8444,8 +8163,6 @@ export interface GetMenuV4BrandModifiersQuery {
|
|
|
8444
8163
|
sort_order?: 'DESC' | 'ASC';
|
|
8445
8164
|
// How soft deleted records should be shown in the list
|
|
8446
8165
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
8447
|
-
// Graphql query string
|
|
8448
|
-
_query?: string;
|
|
8449
8166
|
}
|
|
8450
8167
|
|
|
8451
8168
|
export interface GetMenuV4BrandModifiersResponse {
|
|
@@ -8480,8 +8197,6 @@ export interface GetMenuV4BrandCategoryItemsQuery {
|
|
|
8480
8197
|
sort_order?: 'DESC' | 'ASC';
|
|
8481
8198
|
// How soft deleted records should be shown in the list
|
|
8482
8199
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
8483
|
-
// Graphql query string
|
|
8484
|
-
_query?: string;
|
|
8485
8200
|
}
|
|
8486
8201
|
|
|
8487
8202
|
export interface GetMenuV4BrandCategoryItemsResponse {
|
|
@@ -8851,8 +8566,6 @@ export interface GetMenuV4BrandExportPath {
|
|
|
8851
8566
|
|
|
8852
8567
|
export interface GetMenuV4BrandExportQuery {
|
|
8853
8568
|
format?: 'xlsx';
|
|
8854
|
-
// Graphql query string
|
|
8855
|
-
_query?: string;
|
|
8856
8569
|
}
|
|
8857
8570
|
|
|
8858
8571
|
export interface GetMenuV4BrandExportResponse {
|
|
@@ -9058,8 +8771,6 @@ export interface GetMenuV4ItemPath {
|
|
|
9058
8771
|
|
|
9059
8772
|
export interface GetMenuV4ItemQuery {
|
|
9060
8773
|
with_parent?: boolean;
|
|
9061
|
-
// Graphql query string
|
|
9062
|
-
_query?: string;
|
|
9063
8774
|
}
|
|
9064
8775
|
|
|
9065
8776
|
export interface GetMenuV4ItemResponse {
|
|
@@ -9672,8 +9383,6 @@ export interface GetMenuV4ModifierPath {
|
|
|
9672
9383
|
|
|
9673
9384
|
export interface GetMenuV4ModifierQuery {
|
|
9674
9385
|
with_parent?: boolean;
|
|
9675
|
-
// Graphql query string
|
|
9676
|
-
_query?: string;
|
|
9677
9386
|
}
|
|
9678
9387
|
|
|
9679
9388
|
export interface GetMenuV4ModifierResponse {
|
|
@@ -10114,8 +9823,6 @@ export interface GetMenuV4ModifierGroupPath {
|
|
|
10114
9823
|
|
|
10115
9824
|
export interface GetMenuV4ModifierGroupQuery {
|
|
10116
9825
|
with_parent?: boolean;
|
|
10117
|
-
// Graphql query string
|
|
10118
|
-
_query?: string;
|
|
10119
9826
|
}
|
|
10120
9827
|
|
|
10121
9828
|
export interface GetMenuV4ModifierGroupResponse {
|
|
@@ -10429,8 +10136,6 @@ export interface GetMenuV4ModifierGroupAttachableModifiersQuery {
|
|
|
10429
10136
|
sort_order?: 'DESC' | 'ASC';
|
|
10430
10137
|
// How soft deleted records should be shown in the list
|
|
10431
10138
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
10432
|
-
// Graphql query string
|
|
10433
|
-
_query?: string;
|
|
10434
10139
|
}
|
|
10435
10140
|
|
|
10436
10141
|
export interface GetMenuV4ModifierGroupAttachableModifiersResponse {
|
|
@@ -10543,8 +10248,6 @@ export interface GetMenuV4StockBusinessUnitQuery {
|
|
|
10543
10248
|
sort_order?: 'DESC' | 'ASC';
|
|
10544
10249
|
// How soft deleted records should be shown in the list
|
|
10545
10250
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
10546
|
-
// Graphql query string
|
|
10547
|
-
_query?: string;
|
|
10548
10251
|
}
|
|
10549
10252
|
|
|
10550
10253
|
export interface GetMenuV4StockBusinessUnitResponse {
|
|
@@ -10578,8 +10281,6 @@ export interface GetMenuV4StockBusinessUnitUnpublishedChangesQuery {
|
|
|
10578
10281
|
sort_order?: 'DESC' | 'ASC';
|
|
10579
10282
|
// How soft deleted records should be shown in the list
|
|
10580
10283
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
10581
|
-
// Graphql query string
|
|
10582
|
-
_query?: string;
|
|
10583
10284
|
}
|
|
10584
10285
|
|
|
10585
10286
|
export interface GetMenuV4StockBusinessUnitUnpublishedChangesResponse {
|
|
@@ -10692,8 +10393,6 @@ export interface GetMenuV4MenuPath {
|
|
|
10692
10393
|
|
|
10693
10394
|
export interface GetMenuV4MenuQuery {
|
|
10694
10395
|
with_parent?: boolean;
|
|
10695
|
-
// Graphql query string
|
|
10696
|
-
_query?: string;
|
|
10697
10396
|
}
|
|
10698
10397
|
|
|
10699
10398
|
export interface GetMenuV4MenuResponse {
|
|
@@ -10755,8 +10454,6 @@ export interface GetMenuV4SizePath {
|
|
|
10755
10454
|
|
|
10756
10455
|
export interface GetMenuV4SizeQuery {
|
|
10757
10456
|
with_parent?: boolean;
|
|
10758
|
-
// Graphql query string
|
|
10759
|
-
_query?: string;
|
|
10760
10457
|
}
|
|
10761
10458
|
|
|
10762
10459
|
export interface GetMenuV4SizeResponse {
|
|
@@ -10779,8 +10476,6 @@ export interface GetMenuV4CategoryPath {
|
|
|
10779
10476
|
|
|
10780
10477
|
export interface GetMenuV4CategoryQuery {
|
|
10781
10478
|
with_parent?: boolean;
|
|
10782
|
-
// Graphql query string
|
|
10783
|
-
_query?: string;
|
|
10784
10479
|
}
|
|
10785
10480
|
|
|
10786
10481
|
export interface GetMenuV4CategoryResponse {
|
|
@@ -10895,8 +10590,6 @@ export interface GetMenuV4CategoryAttachableItemsQuery {
|
|
|
10895
10590
|
sort_order?: 'DESC' | 'ASC';
|
|
10896
10591
|
// How soft deleted records should be shown in the list
|
|
10897
10592
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
10898
|
-
// Graphql query string
|
|
10899
|
-
_query?: string;
|
|
10900
10593
|
}
|
|
10901
10594
|
|
|
10902
10595
|
export interface GetMenuV4CategoryAttachableItemsResponse {
|
|
@@ -10912,11 +10605,6 @@ export interface GetMenuV4CategoryAttachableItemsRequest
|
|
|
10912
10605
|
|
|
10913
10606
|
// GET /menu/v3/ping
|
|
10914
10607
|
|
|
10915
|
-
export interface GetMenuV3PingQuery {
|
|
10916
|
-
// Graphql query string
|
|
10917
|
-
_query?: string;
|
|
10918
|
-
}
|
|
10919
|
-
|
|
10920
10608
|
export interface GetMenuV3PingResponse {
|
|
10921
10609
|
status: string;
|
|
10922
10610
|
message: string;
|
|
@@ -10925,15 +10613,10 @@ export interface GetMenuV3PingResponse {
|
|
|
10925
10613
|
[index: string]: any;
|
|
10926
10614
|
}
|
|
10927
10615
|
|
|
10928
|
-
export interface GetMenuV3PingRequest extends BaseRequest
|
|
10616
|
+
export interface GetMenuV3PingRequest extends BaseRequest {}
|
|
10929
10617
|
|
|
10930
10618
|
// GET /menu/v3/health
|
|
10931
10619
|
|
|
10932
|
-
export interface GetMenuV3HealthQuery {
|
|
10933
|
-
// Graphql query string
|
|
10934
|
-
_query?: string;
|
|
10935
|
-
}
|
|
10936
|
-
|
|
10937
10620
|
export interface GetMenuV3HealthResponse {
|
|
10938
10621
|
status: string;
|
|
10939
10622
|
timestamp: string;
|
|
@@ -10943,4 +10626,4 @@ export interface GetMenuV3HealthResponse {
|
|
|
10943
10626
|
[index: string]: any;
|
|
10944
10627
|
}
|
|
10945
10628
|
|
|
10946
|
-
export interface GetMenuV3HealthRequest extends BaseRequest
|
|
10629
|
+
export interface GetMenuV3HealthRequest extends BaseRequest {}
|