@compassdigital/sdk.typescript 4.417.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 +0 -38
- 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 +2 -69
- 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/lib/interface/menu.d.ts
CHANGED
|
@@ -886,7 +886,29 @@ export interface MenuWorksDTO {
|
|
|
886
886
|
ingredients?: string[];
|
|
887
887
|
smart_tags?: string[];
|
|
888
888
|
allergen_tags?: string[];
|
|
889
|
-
allergens?:
|
|
889
|
+
allergens?: AllergenDTO[];
|
|
890
|
+
nutrition?: NutritionDTO;
|
|
891
|
+
[index: string]: any;
|
|
892
|
+
}
|
|
893
|
+
export interface AllergenDTO {
|
|
894
|
+
name: string;
|
|
895
|
+
contains: 'Yes' | 'AtRisk';
|
|
896
|
+
[index: string]: any;
|
|
897
|
+
}
|
|
898
|
+
export interface NutritionDTO {
|
|
899
|
+
calories?: NutritionValueDTO;
|
|
900
|
+
total_fat?: Record<string, any>;
|
|
901
|
+
saturated_fat?: Record<string, any>;
|
|
902
|
+
total_carbohydrate?: Record<string, any>;
|
|
903
|
+
total_sugars?: Record<string, any>;
|
|
904
|
+
protein?: Record<string, any>;
|
|
905
|
+
dietary_fiber?: Record<string, any>;
|
|
906
|
+
sodium?: Record<string, any>;
|
|
907
|
+
[index: string]: any;
|
|
908
|
+
}
|
|
909
|
+
export interface NutritionValueDTO {
|
|
910
|
+
amount: number;
|
|
911
|
+
unit: string;
|
|
890
912
|
[index: string]: any;
|
|
891
913
|
}
|
|
892
914
|
export interface ModifierGroupToModifierRelationshipChangeDTO {
|
|
@@ -1646,11 +1668,6 @@ export interface DraftModifierEntityDTO {
|
|
|
1646
1668
|
permissions?: Record<string, any>;
|
|
1647
1669
|
[index: string]: any;
|
|
1648
1670
|
}
|
|
1649
|
-
export interface AllergenDTO {
|
|
1650
|
-
name: string;
|
|
1651
|
-
contains: 'Yes' | 'AtRisk';
|
|
1652
|
-
[index: string]: any;
|
|
1653
|
-
}
|
|
1654
1671
|
export interface UniversalItemWithoutIdDTO {
|
|
1655
1672
|
barcode: string;
|
|
1656
1673
|
name: string;
|
|
@@ -1854,7 +1871,6 @@ export interface HealthMetadataDTO {
|
|
|
1854
1871
|
}
|
|
1855
1872
|
export interface GetMenusQuery {
|
|
1856
1873
|
query: string;
|
|
1857
|
-
_query?: string;
|
|
1858
1874
|
}
|
|
1859
1875
|
export type GetMenusResponse = Menus;
|
|
1860
1876
|
export interface GetMenusRequest extends BaseRequest, RequestQuery<GetMenusQuery> {
|
|
@@ -1922,7 +1938,6 @@ export interface GetFullMenuPath {
|
|
|
1922
1938
|
id: string;
|
|
1923
1939
|
}
|
|
1924
1940
|
export interface GetFullMenuQuery {
|
|
1925
|
-
_query?: string;
|
|
1926
1941
|
nocache?: boolean;
|
|
1927
1942
|
}
|
|
1928
1943
|
export interface GetFullMenuResponse {
|
|
@@ -1944,7 +1959,6 @@ export interface GetMenuItemsQuery {
|
|
|
1944
1959
|
query: string;
|
|
1945
1960
|
barcodes: string;
|
|
1946
1961
|
brand_id: string;
|
|
1947
|
-
_query?: string;
|
|
1948
1962
|
}
|
|
1949
1963
|
export type GetMenuItemsResponse = Items;
|
|
1950
1964
|
export interface GetMenuItemsRequest extends BaseRequest, RequestQuery<GetMenuItemsQuery>, GetMenuItemsPath {
|
|
@@ -1964,20 +1978,14 @@ export interface PostMenuRecommendedRequest extends BaseRequest, PostMenuRecomme
|
|
|
1964
1978
|
export interface GetSectorMenusPath {
|
|
1965
1979
|
sector: string;
|
|
1966
1980
|
}
|
|
1967
|
-
export interface GetSectorMenusQuery {
|
|
1968
|
-
_query?: string;
|
|
1969
|
-
}
|
|
1970
1981
|
export type GetSectorMenusResponse = Menus;
|
|
1971
|
-
export interface GetSectorMenusRequest extends BaseRequest,
|
|
1982
|
+
export interface GetSectorMenusRequest extends BaseRequest, GetSectorMenusPath {
|
|
1972
1983
|
}
|
|
1973
1984
|
export interface GetCompanyMenusPath {
|
|
1974
1985
|
company: string;
|
|
1975
1986
|
}
|
|
1976
|
-
export interface GetCompanyMenusQuery {
|
|
1977
|
-
_query?: string;
|
|
1978
|
-
}
|
|
1979
1987
|
export type GetCompanyMenusResponse = Menus;
|
|
1980
|
-
export interface GetCompanyMenusRequest extends BaseRequest,
|
|
1988
|
+
export interface GetCompanyMenusRequest extends BaseRequest, GetCompanyMenusPath {
|
|
1981
1989
|
}
|
|
1982
1990
|
export type CreateModifierGroupBody = CreateOptionsGroup;
|
|
1983
1991
|
export type CreateModifierGroupResponse = OptionsGroup;
|
|
@@ -1987,11 +1995,8 @@ export interface CreateModifierGroupRequest extends BaseRequest {
|
|
|
1987
1995
|
export interface GetModifierGroupPath {
|
|
1988
1996
|
id: string;
|
|
1989
1997
|
}
|
|
1990
|
-
export interface GetModifierGroupQuery {
|
|
1991
|
-
_query?: string;
|
|
1992
|
-
}
|
|
1993
1998
|
export type GetModifierGroupResponse = OptionsGroup;
|
|
1994
|
-
export interface GetModifierGroupRequest extends BaseRequest,
|
|
1999
|
+
export interface GetModifierGroupRequest extends BaseRequest, GetModifierGroupPath {
|
|
1995
2000
|
}
|
|
1996
2001
|
export interface UpdateModifierGroupPath {
|
|
1997
2002
|
id: string;
|
|
@@ -2010,29 +2015,20 @@ export interface DeleteModifierGroupRequest extends BaseRequest, DeleteModifierG
|
|
|
2010
2015
|
export interface GetCompanyModifierGroupsPath {
|
|
2011
2016
|
company: string;
|
|
2012
2017
|
}
|
|
2013
|
-
export interface GetCompanyModifierGroupsQuery {
|
|
2014
|
-
_query?: string;
|
|
2015
|
-
}
|
|
2016
2018
|
export type GetCompanyModifierGroupsResponse = OptionsGroupList;
|
|
2017
|
-
export interface GetCompanyModifierGroupsRequest extends BaseRequest,
|
|
2019
|
+
export interface GetCompanyModifierGroupsRequest extends BaseRequest, GetCompanyModifierGroupsPath {
|
|
2018
2020
|
}
|
|
2019
2021
|
export interface GetCompanyModifierGroupsExportPath {
|
|
2020
2022
|
company: string;
|
|
2021
2023
|
}
|
|
2022
|
-
export interface GetCompanyModifierGroupsExportQuery {
|
|
2023
|
-
_query?: string;
|
|
2024
|
-
}
|
|
2025
2024
|
export type GetCompanyModifierGroupsExportResponse = ZippedExcelExport;
|
|
2026
|
-
export interface GetCompanyModifierGroupsExportRequest extends BaseRequest,
|
|
2025
|
+
export interface GetCompanyModifierGroupsExportRequest extends BaseRequest, GetCompanyModifierGroupsExportPath {
|
|
2027
2026
|
}
|
|
2028
2027
|
export interface GetMenuExportPath {
|
|
2029
2028
|
id: string;
|
|
2030
2029
|
}
|
|
2031
|
-
export interface GetMenuExportQuery {
|
|
2032
|
-
_query?: string;
|
|
2033
|
-
}
|
|
2034
2030
|
export type GetMenuExportResponse = ZippedExcelExport;
|
|
2035
|
-
export interface GetMenuExportRequest extends BaseRequest,
|
|
2031
|
+
export interface GetMenuExportRequest extends BaseRequest, GetMenuExportPath {
|
|
2036
2032
|
}
|
|
2037
2033
|
export interface GetMenuPartialGroupsPath {
|
|
2038
2034
|
id: string;
|
|
@@ -2041,7 +2037,6 @@ export interface GetMenuPartialGroupsQuery {
|
|
|
2041
2037
|
extended?: boolean;
|
|
2042
2038
|
show_unlinked?: boolean;
|
|
2043
2039
|
include_items_with_weight?: boolean;
|
|
2044
|
-
_query?: string;
|
|
2045
2040
|
}
|
|
2046
2041
|
export type GetMenuPartialGroupsResponse = Menu;
|
|
2047
2042
|
export interface GetMenuPartialGroupsRequest extends BaseRequest, RequestQuery<GetMenuPartialGroupsQuery>, GetMenuPartialGroupsPath {
|
|
@@ -2052,7 +2047,6 @@ export interface GetMenuPartialGroupItemsPath {
|
|
|
2052
2047
|
}
|
|
2053
2048
|
export interface GetMenuPartialGroupItemsQuery {
|
|
2054
2049
|
extended?: boolean;
|
|
2055
|
-
_query?: string;
|
|
2056
2050
|
}
|
|
2057
2051
|
export type GetMenuPartialGroupItemsResponse = Items;
|
|
2058
2052
|
export interface GetMenuPartialGroupItemsRequest extends BaseRequest, RequestQuery<GetMenuPartialGroupItemsQuery>, GetMenuPartialGroupItemsPath {
|
|
@@ -2071,17 +2065,11 @@ export type PostMenuPartialGroupItemOptionsResponse = Items;
|
|
|
2071
2065
|
export interface PostMenuPartialGroupItemOptionsRequest extends BaseRequest, RequestQuery<PostMenuPartialGroupItemOptionsQuery>, PostMenuPartialGroupItemOptionsPath {
|
|
2072
2066
|
body: PostMenuPartialGroupItemOptionsBody;
|
|
2073
2067
|
}
|
|
2074
|
-
export interface PingQuery {
|
|
2075
|
-
_query?: string;
|
|
2076
|
-
}
|
|
2077
2068
|
export type PingResponse$0 = PingResponse;
|
|
2078
|
-
export interface PingRequest extends BaseRequest
|
|
2079
|
-
}
|
|
2080
|
-
export interface HealthQuery {
|
|
2081
|
-
_query?: string;
|
|
2069
|
+
export interface PingRequest extends BaseRequest {
|
|
2082
2070
|
}
|
|
2083
2071
|
export type HealthResponse$0 = HealthResponse;
|
|
2084
|
-
export interface HealthRequest extends BaseRequest
|
|
2072
|
+
export interface HealthRequest extends BaseRequest {
|
|
2085
2073
|
}
|
|
2086
2074
|
export interface PostMenuV3LocalMenuGroupBody {
|
|
2087
2075
|
name: string;
|
|
@@ -2121,7 +2109,6 @@ export interface GetMenuV3LocalMenuGroupPath {
|
|
|
2121
2109
|
export interface GetMenuV3LocalMenuGroupQuery {
|
|
2122
2110
|
select?: string[];
|
|
2123
2111
|
relationships?: string[];
|
|
2124
|
-
_query?: string;
|
|
2125
2112
|
}
|
|
2126
2113
|
export interface GetMenuV3LocalMenuGroupResponse {
|
|
2127
2114
|
global_menu_groups_in_use?: string[];
|
|
@@ -2216,7 +2203,6 @@ export interface GetMenuV3LocalMenuGroupsQuery {
|
|
|
2216
2203
|
sort_by?: string;
|
|
2217
2204
|
sort_order?: 'DESC' | 'ASC';
|
|
2218
2205
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2219
|
-
_query?: string;
|
|
2220
2206
|
}
|
|
2221
2207
|
export interface GetMenuV3LocalMenuGroupsResponse {
|
|
2222
2208
|
results: LocalMenuGroupDTO[];
|
|
@@ -2247,7 +2233,6 @@ export interface PostMenuV3LocalMenuGroupsRequest extends BaseRequest {
|
|
|
2247
2233
|
}
|
|
2248
2234
|
export interface GetMenuV3LocalMenuGroupsCountQuery {
|
|
2249
2235
|
filter?: string;
|
|
2250
|
-
_query?: string;
|
|
2251
2236
|
}
|
|
2252
2237
|
export interface GetMenuV3LocalMenuGroupsCountResponse {
|
|
2253
2238
|
count: number;
|
|
@@ -2273,7 +2258,6 @@ export interface GetMenuV3DraftLocalMenuGroupBrandsQuery {
|
|
|
2273
2258
|
sort_by?: string;
|
|
2274
2259
|
sort_order?: 'DESC' | 'ASC';
|
|
2275
2260
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2276
|
-
_query?: string;
|
|
2277
2261
|
}
|
|
2278
2262
|
export interface GetMenuV3DraftLocalMenuGroupBrandsResponse {
|
|
2279
2263
|
results: DraftBrandDTO[];
|
|
@@ -2294,7 +2278,6 @@ export interface GetMenuV3DraftLocalMenuGroupItemsQuery {
|
|
|
2294
2278
|
sort_by?: string;
|
|
2295
2279
|
sort_order?: 'DESC' | 'ASC';
|
|
2296
2280
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2297
|
-
_query?: string;
|
|
2298
2281
|
}
|
|
2299
2282
|
export interface GetMenuV3DraftLocalMenuGroupItemsResponse {
|
|
2300
2283
|
results: DraftItemDTO[];
|
|
@@ -2315,7 +2298,6 @@ export interface GetMenuV3LocalMenuGroupBrandsQuery {
|
|
|
2315
2298
|
sort_by?: string;
|
|
2316
2299
|
sort_order?: 'DESC' | 'ASC';
|
|
2317
2300
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2318
|
-
_query?: string;
|
|
2319
2301
|
}
|
|
2320
2302
|
export interface GetMenuV3LocalMenuGroupBrandsResponse {
|
|
2321
2303
|
results: DraftBrandDTO[];
|
|
@@ -2336,7 +2318,6 @@ export interface GetMenuV3LocalMenuGroupAllowedGlobalBrandsQuery {
|
|
|
2336
2318
|
sort_by?: string;
|
|
2337
2319
|
sort_order?: 'DESC' | 'ASC';
|
|
2338
2320
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2339
|
-
_query?: string;
|
|
2340
2321
|
}
|
|
2341
2322
|
export interface GetMenuV3LocalMenuGroupAllowedGlobalBrandsResponse {
|
|
2342
2323
|
results: DraftBrandDTO[];
|
|
@@ -2398,24 +2379,18 @@ export interface PostMenuV4LocalMenuGroupImportBrandsRequest extends BaseRequest
|
|
|
2398
2379
|
export interface GetMenuV3LocalMenuGroupSitePath {
|
|
2399
2380
|
id: string;
|
|
2400
2381
|
}
|
|
2401
|
-
export interface GetMenuV3LocalMenuGroupSiteQuery {
|
|
2402
|
-
_query?: string;
|
|
2403
|
-
}
|
|
2404
2382
|
export interface GetMenuV3LocalMenuGroupSiteResponse {
|
|
2405
2383
|
results?: SiteGroupWithMenuGroupNameResponseDTO[];
|
|
2406
2384
|
}
|
|
2407
|
-
export interface GetMenuV3LocalMenuGroupSiteRequest extends BaseRequest,
|
|
2385
|
+
export interface GetMenuV3LocalMenuGroupSiteRequest extends BaseRequest, GetMenuV3LocalMenuGroupSitePath {
|
|
2408
2386
|
}
|
|
2409
2387
|
export interface GetMenuV3LocalMenuGroupMenuGroupPath {
|
|
2410
2388
|
id: string;
|
|
2411
2389
|
}
|
|
2412
|
-
export interface GetMenuV3LocalMenuGroupMenuGroupQuery {
|
|
2413
|
-
_query?: string;
|
|
2414
|
-
}
|
|
2415
2390
|
export interface GetMenuV3LocalMenuGroupMenuGroupResponse {
|
|
2416
2391
|
results?: SiteGroupWithMenuGroupNameResponseDTO[];
|
|
2417
2392
|
}
|
|
2418
|
-
export interface GetMenuV3LocalMenuGroupMenuGroupRequest extends BaseRequest,
|
|
2393
|
+
export interface GetMenuV3LocalMenuGroupMenuGroupRequest extends BaseRequest, GetMenuV3LocalMenuGroupMenuGroupPath {
|
|
2419
2394
|
}
|
|
2420
2395
|
export type PostMenuV3LocalMenuGroupsSiteGroupsBody = {
|
|
2421
2396
|
site_id: string;
|
|
@@ -2437,13 +2412,10 @@ export interface DeleteMenuV3LocalMenuGroupsSiteGroupsResponse {
|
|
|
2437
2412
|
export interface DeleteMenuV3LocalMenuGroupsSiteGroupsRequest extends BaseRequest {
|
|
2438
2413
|
body: DeleteMenuV3LocalMenuGroupsSiteGroupsBody;
|
|
2439
2414
|
}
|
|
2440
|
-
export interface GetMenuV3LocalMenuGroupExportSolutionsQuery {
|
|
2441
|
-
_query?: string;
|
|
2442
|
-
}
|
|
2443
2415
|
export interface GetMenuV3LocalMenuGroupExportSolutionsResponse {
|
|
2444
2416
|
results?: ExportSolutionDTO[];
|
|
2445
2417
|
}
|
|
2446
|
-
export interface GetMenuV3LocalMenuGroupExportSolutionsRequest extends BaseRequest
|
|
2418
|
+
export interface GetMenuV3LocalMenuGroupExportSolutionsRequest extends BaseRequest {
|
|
2447
2419
|
}
|
|
2448
2420
|
export interface GetMenuV3LocalMenuGroupExportSolutionPath {
|
|
2449
2421
|
id: string;
|
|
@@ -2451,7 +2423,6 @@ export interface GetMenuV3LocalMenuGroupExportSolutionPath {
|
|
|
2451
2423
|
}
|
|
2452
2424
|
export interface GetMenuV3LocalMenuGroupExportSolutionQuery {
|
|
2453
2425
|
format?: 'csv' | 'txt' | 'xlsx';
|
|
2454
|
-
_query?: string;
|
|
2455
2426
|
}
|
|
2456
2427
|
export interface GetMenuV3LocalMenuGroupExportSolutionResponse {
|
|
2457
2428
|
s3_links: string[];
|
|
@@ -2485,7 +2456,6 @@ export interface GetMenuV3GlobalMenuGroupPath {
|
|
|
2485
2456
|
export interface GetMenuV3GlobalMenuGroupQuery {
|
|
2486
2457
|
select?: string[];
|
|
2487
2458
|
relationships?: string[];
|
|
2488
|
-
_query?: string;
|
|
2489
2459
|
}
|
|
2490
2460
|
export type GetMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
|
|
2491
2461
|
export interface GetMenuV3GlobalMenuGroupRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalMenuGroupQuery>, GetMenuV3GlobalMenuGroupPath {
|
|
@@ -2554,7 +2524,6 @@ export interface GetMenuV3GlobalMenuGroupsQuery {
|
|
|
2554
2524
|
sort_by?: string;
|
|
2555
2525
|
sort_order?: 'DESC' | 'ASC';
|
|
2556
2526
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2557
|
-
_query?: string;
|
|
2558
2527
|
}
|
|
2559
2528
|
export interface GetMenuV3GlobalMenuGroupsResponse {
|
|
2560
2529
|
results: GlobalMenuGroupDTO[];
|
|
@@ -2589,7 +2558,6 @@ export interface PostMenuV3GlobalMenuGroupsRequest extends BaseRequest {
|
|
|
2589
2558
|
}
|
|
2590
2559
|
export interface GetMenuV3GlobalMenuGroupsCountQuery {
|
|
2591
2560
|
filter?: string;
|
|
2592
|
-
_query?: string;
|
|
2593
2561
|
}
|
|
2594
2562
|
export interface GetMenuV3GlobalMenuGroupsCountResponse {
|
|
2595
2563
|
count: number;
|
|
@@ -2615,7 +2583,6 @@ export interface GetMenuV3DraftGlobalMenuGroupBrandsQuery {
|
|
|
2615
2583
|
sort_by?: string;
|
|
2616
2584
|
sort_order?: 'DESC' | 'ASC';
|
|
2617
2585
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2618
|
-
_query?: string;
|
|
2619
2586
|
}
|
|
2620
2587
|
export interface GetMenuV3DraftGlobalMenuGroupBrandsResponse {
|
|
2621
2588
|
results: DraftBrandDTO[];
|
|
@@ -2636,7 +2603,6 @@ export interface GetMenuV3GlobalMenuGroupBrandsQuery {
|
|
|
2636
2603
|
sort_by?: string;
|
|
2637
2604
|
sort_order?: 'DESC' | 'ASC';
|
|
2638
2605
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2639
|
-
_query?: string;
|
|
2640
2606
|
}
|
|
2641
2607
|
export interface GetMenuV3GlobalMenuGroupBrandsResponse {
|
|
2642
2608
|
results: DraftBrandDTO[];
|
|
@@ -2693,7 +2659,6 @@ export interface GetMenuV3DraftBrandPath {
|
|
|
2693
2659
|
export interface GetMenuV3DraftBrandQuery {
|
|
2694
2660
|
select?: string[];
|
|
2695
2661
|
relationships?: string[];
|
|
2696
|
-
_query?: string;
|
|
2697
2662
|
}
|
|
2698
2663
|
export type GetMenuV3DraftBrandResponse = DraftBrandDTO;
|
|
2699
2664
|
export interface GetMenuV3DraftBrandRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandQuery>, GetMenuV3DraftBrandPath {
|
|
@@ -2763,7 +2728,6 @@ export interface GetMenuV3DraftBrandsQuery {
|
|
|
2763
2728
|
sort_by?: string;
|
|
2764
2729
|
sort_order?: 'DESC' | 'ASC';
|
|
2765
2730
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2766
|
-
_query?: string;
|
|
2767
2731
|
}
|
|
2768
2732
|
export interface GetMenuV3DraftBrandsResponse {
|
|
2769
2733
|
results: DraftBrandDTO[];
|
|
@@ -2820,7 +2784,6 @@ export interface PostMenuV3DraftBrandsRequest extends BaseRequest {
|
|
|
2820
2784
|
}
|
|
2821
2785
|
export interface GetMenuV3DraftBrandsCountQuery {
|
|
2822
2786
|
filter?: string;
|
|
2823
|
-
_query?: string;
|
|
2824
2787
|
}
|
|
2825
2788
|
export interface GetMenuV3DraftBrandsCountResponse {
|
|
2826
2789
|
count: number;
|
|
@@ -2846,7 +2809,6 @@ export interface GetMenuV3DraftBrandAuditsQuery {
|
|
|
2846
2809
|
sort_by?: string;
|
|
2847
2810
|
sort_order?: 'DESC' | 'ASC';
|
|
2848
2811
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2849
|
-
_query?: string;
|
|
2850
2812
|
}
|
|
2851
2813
|
export interface GetMenuV3DraftBrandAuditsResponse {
|
|
2852
2814
|
results: AuditListDraftItemDTO[];
|
|
@@ -2861,7 +2823,6 @@ export interface GetMenuV3DraftBrandAuditsUsersPath {
|
|
|
2861
2823
|
export interface GetMenuV3DraftBrandAuditsUsersQuery {
|
|
2862
2824
|
date_from?: string;
|
|
2863
2825
|
date_to?: string;
|
|
2864
|
-
_query?: string;
|
|
2865
2826
|
}
|
|
2866
2827
|
export interface GetMenuV3DraftBrandAuditsUsersResponse {
|
|
2867
2828
|
users?: AuditUserDTO[];
|
|
@@ -2880,7 +2841,6 @@ export interface GetMenuV3DraftBrandMenusQuery {
|
|
|
2880
2841
|
sort_by?: string;
|
|
2881
2842
|
sort_order?: 'DESC' | 'ASC';
|
|
2882
2843
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2883
|
-
_query?: string;
|
|
2884
2844
|
}
|
|
2885
2845
|
export interface GetMenuV3DraftBrandMenusResponse {
|
|
2886
2846
|
results: DraftMenuDTO[];
|
|
@@ -2901,7 +2861,6 @@ export interface GetMenuV3DraftBrandModifiersQuery {
|
|
|
2901
2861
|
sort_by?: string;
|
|
2902
2862
|
sort_order?: 'DESC' | 'ASC';
|
|
2903
2863
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2904
|
-
_query?: string;
|
|
2905
2864
|
}
|
|
2906
2865
|
export interface GetMenuV3DraftBrandModifiersResponse {
|
|
2907
2866
|
results: DraftModifierDTO[];
|
|
@@ -2922,7 +2881,6 @@ export interface GetMenuV3DraftBrandModifierGroupsQuery {
|
|
|
2922
2881
|
sort_by?: string;
|
|
2923
2882
|
sort_order?: 'DESC' | 'ASC';
|
|
2924
2883
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2925
|
-
_query?: string;
|
|
2926
2884
|
}
|
|
2927
2885
|
export interface GetMenuV3DraftBrandModifierGroupsResponse {
|
|
2928
2886
|
results: DraftModifierGroupDTO[];
|
|
@@ -2943,7 +2901,6 @@ export interface GetMenuV3DraftBrandItemsQuery {
|
|
|
2943
2901
|
sort_by?: string;
|
|
2944
2902
|
sort_order?: 'DESC' | 'ASC';
|
|
2945
2903
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
2946
|
-
_query?: string;
|
|
2947
2904
|
}
|
|
2948
2905
|
export interface GetMenuV3DraftBrandItemsResponse {
|
|
2949
2906
|
results: DraftItemDTO[];
|
|
@@ -2957,7 +2914,6 @@ export interface GetMenuV3DraftBrandItemsReportingCategoriesPath {
|
|
|
2957
2914
|
}
|
|
2958
2915
|
export interface GetMenuV3DraftBrandItemsReportingCategoriesQuery {
|
|
2959
2916
|
search?: string;
|
|
2960
|
-
_query?: string;
|
|
2961
2917
|
}
|
|
2962
2918
|
export interface GetMenuV3DraftBrandItemsReportingCategoriesResponse {
|
|
2963
2919
|
results?: ReportingCategorySuggestion[];
|
|
@@ -2969,7 +2925,6 @@ export interface GetMenuV3DraftBrandModifiersReportingCategoriesPath {
|
|
|
2969
2925
|
}
|
|
2970
2926
|
export interface GetMenuV3DraftBrandModifiersReportingCategoriesQuery {
|
|
2971
2927
|
search?: string;
|
|
2972
|
-
_query?: string;
|
|
2973
2928
|
}
|
|
2974
2929
|
export interface GetMenuV3DraftBrandModifiersReportingCategoriesResponse {
|
|
2975
2930
|
results?: ReportingCategorySuggestion[];
|
|
@@ -2979,24 +2934,18 @@ export interface GetMenuV3DraftBrandModifiersReportingCategoriesRequest extends
|
|
|
2979
2934
|
export interface GetMenuV3DraftBrandItemsTagsPath {
|
|
2980
2935
|
id: string;
|
|
2981
2936
|
}
|
|
2982
|
-
export interface GetMenuV3DraftBrandItemsTagsQuery {
|
|
2983
|
-
_query?: string;
|
|
2984
|
-
}
|
|
2985
2937
|
export interface GetMenuV3DraftBrandItemsTagsResponse {
|
|
2986
2938
|
tags?: string[];
|
|
2987
2939
|
}
|
|
2988
|
-
export interface GetMenuV3DraftBrandItemsTagsRequest extends BaseRequest,
|
|
2940
|
+
export interface GetMenuV3DraftBrandItemsTagsRequest extends BaseRequest, GetMenuV3DraftBrandItemsTagsPath {
|
|
2989
2941
|
}
|
|
2990
2942
|
export interface GetMenuV3DraftBrandModifiersTagsPath {
|
|
2991
2943
|
id: string;
|
|
2992
2944
|
}
|
|
2993
|
-
export interface GetMenuV3DraftBrandModifiersTagsQuery {
|
|
2994
|
-
_query?: string;
|
|
2995
|
-
}
|
|
2996
2945
|
export interface GetMenuV3DraftBrandModifiersTagsResponse {
|
|
2997
2946
|
tags?: string[];
|
|
2998
2947
|
}
|
|
2999
|
-
export interface GetMenuV3DraftBrandModifiersTagsRequest extends BaseRequest,
|
|
2948
|
+
export interface GetMenuV3DraftBrandModifiersTagsRequest extends BaseRequest, GetMenuV3DraftBrandModifiersTagsPath {
|
|
3000
2949
|
}
|
|
3001
2950
|
export interface PostMenuV3DraftBrandPublishPath {
|
|
3002
2951
|
id: string;
|
|
@@ -3030,7 +2979,6 @@ export interface GetMenuV3DraftBrandDiffsQuery {
|
|
|
3030
2979
|
sort_by?: string;
|
|
3031
2980
|
sort_order?: 'DESC' | 'ASC';
|
|
3032
2981
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3033
|
-
_query?: string;
|
|
3034
2982
|
}
|
|
3035
2983
|
export interface GetMenuV3DraftBrandDiffsResponse {
|
|
3036
2984
|
results?: DiffDTO[];
|
|
@@ -3066,7 +3014,6 @@ export interface GetMenuV3DraftBrandExportPath {
|
|
|
3066
3014
|
}
|
|
3067
3015
|
export interface GetMenuV3DraftBrandExportQuery {
|
|
3068
3016
|
format?: 'xlsx';
|
|
3069
|
-
_query?: string;
|
|
3070
3017
|
}
|
|
3071
3018
|
export interface GetMenuV3DraftBrandExportResponse {
|
|
3072
3019
|
s3_link: string;
|
|
@@ -3077,14 +3024,11 @@ export interface GetMenuV3DraftBrandExportRequest extends BaseRequest, RequestQu
|
|
|
3077
3024
|
export interface GetMenuV3DraftBrandImportLinkPath {
|
|
3078
3025
|
id: string;
|
|
3079
3026
|
}
|
|
3080
|
-
export interface GetMenuV3DraftBrandImportLinkQuery {
|
|
3081
|
-
_query?: string;
|
|
3082
|
-
}
|
|
3083
3027
|
export interface GetMenuV3DraftBrandImportLinkResponse {
|
|
3084
3028
|
upload_link: string;
|
|
3085
3029
|
[index: string]: any;
|
|
3086
3030
|
}
|
|
3087
|
-
export interface GetMenuV3DraftBrandImportLinkRequest extends BaseRequest,
|
|
3031
|
+
export interface GetMenuV3DraftBrandImportLinkRequest extends BaseRequest, GetMenuV3DraftBrandImportLinkPath {
|
|
3088
3032
|
}
|
|
3089
3033
|
export interface PostMenuV3DraftBrandImportPath {
|
|
3090
3034
|
id: string;
|
|
@@ -3099,13 +3043,10 @@ export interface PostMenuV3DraftBrandImportRequest extends BaseRequest, PostMenu
|
|
|
3099
3043
|
export interface GetMenuV3DraftBrandVerifyPublishPath {
|
|
3100
3044
|
id: string;
|
|
3101
3045
|
}
|
|
3102
|
-
export interface GetMenuV3DraftBrandVerifyPublishQuery {
|
|
3103
|
-
_query?: string;
|
|
3104
|
-
}
|
|
3105
3046
|
export interface GetMenuV3DraftBrandVerifyPublishResponse {
|
|
3106
3047
|
warnings?: WarningDTO[];
|
|
3107
3048
|
}
|
|
3108
|
-
export interface GetMenuV3DraftBrandVerifyPublishRequest extends BaseRequest,
|
|
3049
|
+
export interface GetMenuV3DraftBrandVerifyPublishRequest extends BaseRequest, GetMenuV3DraftBrandVerifyPublishPath {
|
|
3109
3050
|
}
|
|
3110
3051
|
export interface PostMenuV3DraftBrandArchivePath {
|
|
3111
3052
|
id: string;
|
|
@@ -3247,7 +3188,6 @@ export interface GetMenuV3BrandPath {
|
|
|
3247
3188
|
export interface GetMenuV3BrandQuery {
|
|
3248
3189
|
select?: string[];
|
|
3249
3190
|
relationships?: string[];
|
|
3250
|
-
_query?: string;
|
|
3251
3191
|
nocache?: boolean;
|
|
3252
3192
|
}
|
|
3253
3193
|
export type GetMenuV3BrandResponse = PublishedBrandDTO;
|
|
@@ -3315,7 +3255,6 @@ export interface GetMenuV3BrandsQuery {
|
|
|
3315
3255
|
sort_by?: string;
|
|
3316
3256
|
sort_order?: 'DESC' | 'ASC';
|
|
3317
3257
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3318
|
-
_query?: string;
|
|
3319
3258
|
nocache?: boolean;
|
|
3320
3259
|
}
|
|
3321
3260
|
export interface GetMenuV3BrandsResponse {
|
|
@@ -3369,7 +3308,6 @@ export interface PostMenuV3BrandsRequest extends BaseRequest, RequestQuery<PostM
|
|
|
3369
3308
|
}
|
|
3370
3309
|
export interface GetMenuV3BrandsCountQuery {
|
|
3371
3310
|
filter?: string;
|
|
3372
|
-
_query?: string;
|
|
3373
3311
|
nocache?: boolean;
|
|
3374
3312
|
}
|
|
3375
3313
|
export interface GetMenuV3BrandsCountResponse {
|
|
@@ -3399,7 +3337,6 @@ export interface GetMenuV3BrandMenusQuery {
|
|
|
3399
3337
|
sort_by?: string;
|
|
3400
3338
|
sort_order?: 'DESC' | 'ASC';
|
|
3401
3339
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3402
|
-
_query?: string;
|
|
3403
3340
|
nocache?: boolean;
|
|
3404
3341
|
}
|
|
3405
3342
|
export interface GetMenuV3BrandMenusResponse {
|
|
@@ -3421,7 +3358,6 @@ export interface GetMenuV3BrandModifiersQuery {
|
|
|
3421
3358
|
sort_by?: string;
|
|
3422
3359
|
sort_order?: 'DESC' | 'ASC';
|
|
3423
3360
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3424
|
-
_query?: string;
|
|
3425
3361
|
nocache?: boolean;
|
|
3426
3362
|
}
|
|
3427
3363
|
export interface GetMenuV3BrandModifiersResponse {
|
|
@@ -3443,7 +3379,6 @@ export interface GetMenuV3BrandModifierGroupsQuery {
|
|
|
3443
3379
|
sort_by?: string;
|
|
3444
3380
|
sort_order?: 'DESC' | 'ASC';
|
|
3445
3381
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3446
|
-
_query?: string;
|
|
3447
3382
|
nocache?: boolean;
|
|
3448
3383
|
}
|
|
3449
3384
|
export interface GetMenuV3BrandModifierGroupsResponse {
|
|
@@ -3465,7 +3400,6 @@ export interface GetMenuV3BrandItemsQuery {
|
|
|
3465
3400
|
sort_by?: string;
|
|
3466
3401
|
sort_order?: 'DESC' | 'ASC';
|
|
3467
3402
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3468
|
-
_query?: string;
|
|
3469
3403
|
nocache?: boolean;
|
|
3470
3404
|
}
|
|
3471
3405
|
export interface GetMenuV3BrandItemsResponse {
|
|
@@ -3504,7 +3438,6 @@ export interface GetMenuV3DraftMenuPath {
|
|
|
3504
3438
|
export interface GetMenuV3DraftMenuQuery {
|
|
3505
3439
|
select?: string[];
|
|
3506
3440
|
relationships?: string[];
|
|
3507
|
-
_query?: string;
|
|
3508
3441
|
}
|
|
3509
3442
|
export type GetMenuV3DraftMenuResponse = DraftMenuDTO;
|
|
3510
3443
|
export interface GetMenuV3DraftMenuRequest extends BaseRequest, RequestQuery<GetMenuV3DraftMenuQuery>, GetMenuV3DraftMenuPath {
|
|
@@ -3555,7 +3488,6 @@ export interface GetMenuV3DraftMenusQuery {
|
|
|
3555
3488
|
sort_by?: string;
|
|
3556
3489
|
sort_order?: 'DESC' | 'ASC';
|
|
3557
3490
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3558
|
-
_query?: string;
|
|
3559
3491
|
}
|
|
3560
3492
|
export interface GetMenuV3DraftMenusResponse {
|
|
3561
3493
|
results: DraftMenuDTO[];
|
|
@@ -3593,7 +3525,6 @@ export interface PostMenuV3DraftMenusRequest extends BaseRequest {
|
|
|
3593
3525
|
}
|
|
3594
3526
|
export interface GetMenuV3DraftMenusCountQuery {
|
|
3595
3527
|
filter?: string;
|
|
3596
|
-
_query?: string;
|
|
3597
3528
|
}
|
|
3598
3529
|
export interface GetMenuV3DraftMenusCountResponse {
|
|
3599
3530
|
count: number;
|
|
@@ -3619,7 +3550,6 @@ export interface GetMenuV3DraftMenuCategoriesQuery {
|
|
|
3619
3550
|
sort_by?: string;
|
|
3620
3551
|
sort_order?: 'DESC' | 'ASC';
|
|
3621
3552
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3622
|
-
_query?: string;
|
|
3623
3553
|
}
|
|
3624
3554
|
export interface GetMenuV3DraftMenuCategoriesResponse {
|
|
3625
3555
|
results: DraftCategoryDTO[];
|
|
@@ -3638,7 +3568,6 @@ export interface PostMenuV3DraftMenuPublishRequest extends BaseRequest, PostMenu
|
|
|
3638
3568
|
}
|
|
3639
3569
|
export interface GetMenuV3DraftMenusVerifyPublishQuery {
|
|
3640
3570
|
menu_ids?: string[];
|
|
3641
|
-
_query?: string;
|
|
3642
3571
|
}
|
|
3643
3572
|
export interface GetMenuV3DraftMenusVerifyPublishResponse {
|
|
3644
3573
|
warnings?: WarningDTO[];
|
|
@@ -3698,7 +3627,6 @@ export interface GetMenuV3MenuPath {
|
|
|
3698
3627
|
export interface GetMenuV3MenuQuery {
|
|
3699
3628
|
select?: string[];
|
|
3700
3629
|
relationships?: string[];
|
|
3701
|
-
_query?: string;
|
|
3702
3630
|
nocache?: boolean;
|
|
3703
3631
|
}
|
|
3704
3632
|
export type GetMenuV3MenuResponse = PublishedMenuDTO;
|
|
@@ -3713,7 +3641,6 @@ export interface GetMenuV3MenusQuery {
|
|
|
3713
3641
|
sort_by?: string;
|
|
3714
3642
|
sort_order?: 'DESC' | 'ASC';
|
|
3715
3643
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3716
|
-
_query?: string;
|
|
3717
3644
|
nocache?: boolean;
|
|
3718
3645
|
}
|
|
3719
3646
|
export interface GetMenuV3MenusResponse {
|
|
@@ -3725,7 +3652,6 @@ export interface GetMenuV3MenusRequest extends BaseRequest, RequestQuery<GetMenu
|
|
|
3725
3652
|
}
|
|
3726
3653
|
export interface GetMenuV3MenusCountQuery {
|
|
3727
3654
|
filter?: string;
|
|
3728
|
-
_query?: string;
|
|
3729
3655
|
nocache?: boolean;
|
|
3730
3656
|
}
|
|
3731
3657
|
export interface GetMenuV3MenusCountResponse {
|
|
@@ -3755,7 +3681,6 @@ export interface GetMenuV3MenuCategoriesQuery {
|
|
|
3755
3681
|
sort_by?: string;
|
|
3756
3682
|
sort_order?: 'DESC' | 'ASC';
|
|
3757
3683
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3758
|
-
_query?: string;
|
|
3759
3684
|
nocache?: boolean;
|
|
3760
3685
|
}
|
|
3761
3686
|
export interface GetMenuV3MenuCategoriesResponse {
|
|
@@ -3820,7 +3745,6 @@ export interface GetMenuV3DraftCategoryPath {
|
|
|
3820
3745
|
export interface GetMenuV3DraftCategoryQuery {
|
|
3821
3746
|
select?: string[];
|
|
3822
3747
|
relationships?: string[];
|
|
3823
|
-
_query?: string;
|
|
3824
3748
|
}
|
|
3825
3749
|
export type GetMenuV3DraftCategoryResponse = DraftCategoryDTO;
|
|
3826
3750
|
export interface GetMenuV3DraftCategoryRequest extends BaseRequest, RequestQuery<GetMenuV3DraftCategoryQuery>, GetMenuV3DraftCategoryPath {
|
|
@@ -3866,7 +3790,6 @@ export interface DeleteMenuV3DraftCategoryRequest extends BaseRequest, RequestQu
|
|
|
3866
3790
|
}
|
|
3867
3791
|
export interface GetMenuV3DraftCategoriesCountQuery {
|
|
3868
3792
|
filter?: string;
|
|
3869
|
-
_query?: string;
|
|
3870
3793
|
}
|
|
3871
3794
|
export interface GetMenuV3DraftCategoriesCountResponse {
|
|
3872
3795
|
count: number;
|
|
@@ -3974,7 +3897,6 @@ export interface GetMenuV3DraftCategoryUnattachedItemsQuery {
|
|
|
3974
3897
|
sort_by?: string;
|
|
3975
3898
|
sort_order?: 'DESC' | 'ASC';
|
|
3976
3899
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
3977
|
-
_query?: string;
|
|
3978
3900
|
}
|
|
3979
3901
|
export interface GetMenuV3DraftCategoryUnattachedItemsResponse {
|
|
3980
3902
|
results: DraftItemEntityDTO[];
|
|
@@ -3989,7 +3911,6 @@ export interface GetMenuV3CategoryPath {
|
|
|
3989
3911
|
export interface GetMenuV3CategoryQuery {
|
|
3990
3912
|
select?: string[];
|
|
3991
3913
|
relationships?: string[];
|
|
3992
|
-
_query?: string;
|
|
3993
3914
|
nocache?: boolean;
|
|
3994
3915
|
}
|
|
3995
3916
|
export type GetMenuV3CategoryResponse = PublishedCategoryDTO;
|
|
@@ -3997,7 +3918,6 @@ export interface GetMenuV3CategoryRequest extends BaseRequest, RequestQuery<GetM
|
|
|
3997
3918
|
}
|
|
3998
3919
|
export interface GetMenuV3CategorysCountQuery {
|
|
3999
3920
|
filter?: string;
|
|
4000
|
-
_query?: string;
|
|
4001
3921
|
nocache?: boolean;
|
|
4002
3922
|
}
|
|
4003
3923
|
export interface GetMenuV3CategorysCountResponse {
|
|
@@ -4042,7 +3962,6 @@ export interface GetMenuV3DraftCategoryRelationshipsItemPath {
|
|
|
4042
3962
|
export interface GetMenuV3DraftCategoryRelationshipsItemQuery {
|
|
4043
3963
|
select?: string[];
|
|
4044
3964
|
relationships?: string[];
|
|
4045
|
-
_query?: string;
|
|
4046
3965
|
}
|
|
4047
3966
|
export type GetMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
|
|
4048
3967
|
export interface GetMenuV3DraftCategoryRelationshipsItemRequest extends BaseRequest, RequestQuery<GetMenuV3DraftCategoryRelationshipsItemQuery>, GetMenuV3DraftCategoryRelationshipsItemPath {
|
|
@@ -4091,7 +4010,6 @@ export interface GetMenuV3DraftCategoryRelationshipsItemsQuery {
|
|
|
4091
4010
|
sort_by?: string;
|
|
4092
4011
|
sort_order?: 'DESC' | 'ASC';
|
|
4093
4012
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4094
|
-
_query?: string;
|
|
4095
4013
|
}
|
|
4096
4014
|
export interface GetMenuV3DraftCategoryRelationshipsItemsResponse {
|
|
4097
4015
|
results: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -4127,7 +4045,6 @@ export interface PostMenuV3DraftCategoryRelationshipsItemsRequest extends BaseRe
|
|
|
4127
4045
|
}
|
|
4128
4046
|
export interface GetMenuV3DraftCategoryRelationshipsItemsCountQuery {
|
|
4129
4047
|
filter?: string;
|
|
4130
|
-
_query?: string;
|
|
4131
4048
|
}
|
|
4132
4049
|
export interface GetMenuV3DraftCategoryRelationshipsItemsCountResponse {
|
|
4133
4050
|
count: number;
|
|
@@ -4147,7 +4064,6 @@ export interface GetMenuV3CategoryRelationshipsItemPath {
|
|
|
4147
4064
|
export interface GetMenuV3CategoryRelationshipsItemQuery {
|
|
4148
4065
|
select?: string[];
|
|
4149
4066
|
relationships?: string[];
|
|
4150
|
-
_query?: string;
|
|
4151
4067
|
nocache?: boolean;
|
|
4152
4068
|
}
|
|
4153
4069
|
export type GetMenuV3CategoryRelationshipsItemResponse = PublishedCategoryToItemRelationshipDTO;
|
|
@@ -4162,7 +4078,6 @@ export interface GetMenuV3CategoryRelationshipsItemsQuery {
|
|
|
4162
4078
|
sort_by?: string;
|
|
4163
4079
|
sort_order?: 'DESC' | 'ASC';
|
|
4164
4080
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4165
|
-
_query?: string;
|
|
4166
4081
|
nocache?: boolean;
|
|
4167
4082
|
}
|
|
4168
4083
|
export interface GetMenuV3CategoryRelationshipsItemsResponse {
|
|
@@ -4174,7 +4089,6 @@ export interface GetMenuV3CategoryRelationshipsItemsRequest extends BaseRequest,
|
|
|
4174
4089
|
}
|
|
4175
4090
|
export interface GetMenuV3CategoryRelationshipsItemsCountQuery {
|
|
4176
4091
|
filter?: string;
|
|
4177
|
-
_query?: string;
|
|
4178
4092
|
nocache?: boolean;
|
|
4179
4093
|
}
|
|
4180
4094
|
export interface GetMenuV3CategoryRelationshipsItemsCountResponse {
|
|
@@ -4248,7 +4162,6 @@ export interface GetMenuV3DraftItemPath {
|
|
|
4248
4162
|
export interface GetMenuV3DraftItemQuery {
|
|
4249
4163
|
select?: string[];
|
|
4250
4164
|
relationships?: string[];
|
|
4251
|
-
_query?: string;
|
|
4252
4165
|
}
|
|
4253
4166
|
export type GetMenuV3DraftItemResponse = DraftItemDTO;
|
|
4254
4167
|
export interface GetMenuV3DraftItemRequest extends BaseRequest, RequestQuery<GetMenuV3DraftItemQuery>, GetMenuV3DraftItemPath {
|
|
@@ -4338,7 +4251,6 @@ export interface GetMenuV3DraftItemsQuery {
|
|
|
4338
4251
|
sort_by?: string;
|
|
4339
4252
|
sort_order?: 'DESC' | 'ASC';
|
|
4340
4253
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4341
|
-
_query?: string;
|
|
4342
4254
|
}
|
|
4343
4255
|
export interface GetMenuV3DraftItemsResponse {
|
|
4344
4256
|
results: DraftItemDTO[];
|
|
@@ -4403,7 +4315,6 @@ export interface PostMenuV3DraftItemsRequest extends BaseRequest {
|
|
|
4403
4315
|
}
|
|
4404
4316
|
export interface GetMenuV3DraftItemsCountQuery {
|
|
4405
4317
|
filter?: string;
|
|
4406
|
-
_query?: string;
|
|
4407
4318
|
}
|
|
4408
4319
|
export interface GetMenuV3DraftItemsCountResponse {
|
|
4409
4320
|
count: number;
|
|
@@ -4422,7 +4333,6 @@ export interface GetMenuV3DraftItemLineRoutesPath {
|
|
|
4422
4333
|
}
|
|
4423
4334
|
export interface GetMenuV3DraftItemLineRoutesQuery {
|
|
4424
4335
|
search?: string;
|
|
4425
|
-
_query?: string;
|
|
4426
4336
|
}
|
|
4427
4337
|
export interface GetMenuV3DraftItemLineRoutesResponse {
|
|
4428
4338
|
results?: LineRouteSuggestion[];
|
|
@@ -4537,7 +4447,6 @@ export interface GetMenuV3ItemPath {
|
|
|
4537
4447
|
export interface GetMenuV3ItemQuery {
|
|
4538
4448
|
select?: string[];
|
|
4539
4449
|
relationships?: string[];
|
|
4540
|
-
_query?: string;
|
|
4541
4450
|
nocache?: boolean;
|
|
4542
4451
|
}
|
|
4543
4452
|
export type GetMenuV3ItemResponse = PublishedItemDTO;
|
|
@@ -4552,7 +4461,6 @@ export interface GetMenuV3ItemsQuery {
|
|
|
4552
4461
|
sort_by?: string;
|
|
4553
4462
|
sort_order?: 'DESC' | 'ASC';
|
|
4554
4463
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4555
|
-
_query?: string;
|
|
4556
4464
|
nocache?: boolean;
|
|
4557
4465
|
}
|
|
4558
4466
|
export interface GetMenuV3ItemsResponse {
|
|
@@ -4564,7 +4472,6 @@ export interface GetMenuV3ItemsRequest extends BaseRequest, RequestQuery<GetMenu
|
|
|
4564
4472
|
}
|
|
4565
4473
|
export interface GetMenuV3ItemsCountQuery {
|
|
4566
4474
|
filter?: string;
|
|
4567
|
-
_query?: string;
|
|
4568
4475
|
nocache?: boolean;
|
|
4569
4476
|
}
|
|
4570
4477
|
export interface GetMenuV3ItemsCountResponse {
|
|
@@ -4609,7 +4516,6 @@ export interface GetMenuV3DraftItemRelationshipsModifierGroupPath {
|
|
|
4609
4516
|
export interface GetMenuV3DraftItemRelationshipsModifierGroupQuery {
|
|
4610
4517
|
select?: string[];
|
|
4611
4518
|
relationships?: string[];
|
|
4612
|
-
_query?: string;
|
|
4613
4519
|
}
|
|
4614
4520
|
export type GetMenuV3DraftItemRelationshipsModifierGroupResponse = DraftItemToModifierGroupRelationshipDTO;
|
|
4615
4521
|
export interface GetMenuV3DraftItemRelationshipsModifierGroupRequest extends BaseRequest, RequestQuery<GetMenuV3DraftItemRelationshipsModifierGroupQuery>, GetMenuV3DraftItemRelationshipsModifierGroupPath {
|
|
@@ -4658,7 +4564,6 @@ export interface GetMenuV3DraftItemRelationshipsModifierGroupsQuery {
|
|
|
4658
4564
|
sort_by?: string;
|
|
4659
4565
|
sort_order?: 'DESC' | 'ASC';
|
|
4660
4566
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4661
|
-
_query?: string;
|
|
4662
4567
|
}
|
|
4663
4568
|
export interface GetMenuV3DraftItemRelationshipsModifierGroupsResponse {
|
|
4664
4569
|
results: DraftItemToModifierGroupRelationshipDTO[];
|
|
@@ -4694,7 +4599,6 @@ export interface PostMenuV3DraftItemRelationshipsModifierGroupsRequest extends B
|
|
|
4694
4599
|
}
|
|
4695
4600
|
export interface GetMenuV3DraftItemRelationshipsModifierGroupsCountQuery {
|
|
4696
4601
|
filter?: string;
|
|
4697
|
-
_query?: string;
|
|
4698
4602
|
}
|
|
4699
4603
|
export interface GetMenuV3DraftItemRelationshipsModifierGroupsCountResponse {
|
|
4700
4604
|
count: number;
|
|
@@ -4714,7 +4618,6 @@ export interface GetMenuV3ItemRelationshipsModifierGroupPath {
|
|
|
4714
4618
|
export interface GetMenuV3ItemRelationshipsModifierGroupQuery {
|
|
4715
4619
|
select?: string[];
|
|
4716
4620
|
relationships?: string[];
|
|
4717
|
-
_query?: string;
|
|
4718
4621
|
nocache?: boolean;
|
|
4719
4622
|
}
|
|
4720
4623
|
export type GetMenuV3ItemRelationshipsModifierGroupResponse = PublishedItemToModifierGroupRelationshipDTO;
|
|
@@ -4729,7 +4632,6 @@ export interface GetMenuV3ItemRelationshipsModifierGroupsQuery {
|
|
|
4729
4632
|
sort_by?: string;
|
|
4730
4633
|
sort_order?: 'DESC' | 'ASC';
|
|
4731
4634
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4732
|
-
_query?: string;
|
|
4733
4635
|
nocache?: boolean;
|
|
4734
4636
|
}
|
|
4735
4637
|
export interface GetMenuV3ItemRelationshipsModifierGroupsResponse {
|
|
@@ -4741,7 +4643,6 @@ export interface GetMenuV3ItemRelationshipsModifierGroupsRequest extends BaseReq
|
|
|
4741
4643
|
}
|
|
4742
4644
|
export interface GetMenuV3ItemRelationshipsModifierGroupsCountQuery {
|
|
4743
4645
|
filter?: string;
|
|
4744
|
-
_query?: string;
|
|
4745
4646
|
nocache?: boolean;
|
|
4746
4647
|
}
|
|
4747
4648
|
export interface GetMenuV3ItemRelationshipsModifierGroupsCountResponse {
|
|
@@ -4794,7 +4695,6 @@ export interface GetMenuV3DraftModifierGroupPath {
|
|
|
4794
4695
|
export interface GetMenuV3DraftModifierGroupQuery {
|
|
4795
4696
|
select?: string[];
|
|
4796
4697
|
relationships?: string[];
|
|
4797
|
-
_query?: string;
|
|
4798
4698
|
}
|
|
4799
4699
|
export type GetMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
|
|
4800
4700
|
export interface GetMenuV3DraftModifierGroupRequest extends BaseRequest, RequestQuery<GetMenuV3DraftModifierGroupQuery>, GetMenuV3DraftModifierGroupPath {
|
|
@@ -4851,7 +4751,6 @@ export interface GetMenuV3DraftModifierGroupsQuery {
|
|
|
4851
4751
|
sort_by?: string;
|
|
4852
4752
|
sort_order?: 'DESC' | 'ASC';
|
|
4853
4753
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4854
|
-
_query?: string;
|
|
4855
4754
|
}
|
|
4856
4755
|
export interface GetMenuV3DraftModifierGroupsResponse {
|
|
4857
4756
|
results: DraftModifierGroupDTO[];
|
|
@@ -4895,7 +4794,6 @@ export interface PostMenuV3DraftModifierGroupsRequest extends BaseRequest {
|
|
|
4895
4794
|
}
|
|
4896
4795
|
export interface GetMenuV3DraftModifierGroupsCountQuery {
|
|
4897
4796
|
filter?: string;
|
|
4898
|
-
_query?: string;
|
|
4899
4797
|
}
|
|
4900
4798
|
export interface GetMenuV3DraftModifierGroupsCountResponse {
|
|
4901
4799
|
count: number;
|
|
@@ -4953,7 +4851,6 @@ export interface GetMenuV3ModifierGroupPath {
|
|
|
4953
4851
|
export interface GetMenuV3ModifierGroupQuery {
|
|
4954
4852
|
select?: string[];
|
|
4955
4853
|
relationships?: string[];
|
|
4956
|
-
_query?: string;
|
|
4957
4854
|
nocache?: boolean;
|
|
4958
4855
|
}
|
|
4959
4856
|
export type GetMenuV3ModifierGroupResponse = PublishedModifierGroupDTO;
|
|
@@ -4968,7 +4865,6 @@ export interface GetMenuV3ModifierGroupsQuery {
|
|
|
4968
4865
|
sort_by?: string;
|
|
4969
4866
|
sort_order?: 'DESC' | 'ASC';
|
|
4970
4867
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
4971
|
-
_query?: string;
|
|
4972
4868
|
nocache?: boolean;
|
|
4973
4869
|
}
|
|
4974
4870
|
export interface GetMenuV3ModifierGroupsResponse {
|
|
@@ -4980,7 +4876,6 @@ export interface GetMenuV3ModifierGroupsRequest extends BaseRequest, RequestQuer
|
|
|
4980
4876
|
}
|
|
4981
4877
|
export interface GetMenuV3ModifierGroupsCountQuery {
|
|
4982
4878
|
filter?: string;
|
|
4983
|
-
_query?: string;
|
|
4984
4879
|
nocache?: boolean;
|
|
4985
4880
|
}
|
|
4986
4881
|
export interface GetMenuV3ModifierGroupsCountResponse {
|
|
@@ -5025,7 +4920,6 @@ export interface GetMenuV3DraftModifierGroupRelationshipsModifierPath {
|
|
|
5025
4920
|
export interface GetMenuV3DraftModifierGroupRelationshipsModifierQuery {
|
|
5026
4921
|
select?: string[];
|
|
5027
4922
|
relationships?: string[];
|
|
5028
|
-
_query?: string;
|
|
5029
4923
|
}
|
|
5030
4924
|
export type GetMenuV3DraftModifierGroupRelationshipsModifierResponse = DraftModifierGroupToModifierRelationshipDTO;
|
|
5031
4925
|
export interface GetMenuV3DraftModifierGroupRelationshipsModifierRequest extends BaseRequest, RequestQuery<GetMenuV3DraftModifierGroupRelationshipsModifierQuery>, GetMenuV3DraftModifierGroupRelationshipsModifierPath {
|
|
@@ -5074,7 +4968,6 @@ export interface GetMenuV3DraftModifierGroupRelationshipsModifiersQuery {
|
|
|
5074
4968
|
sort_by?: string;
|
|
5075
4969
|
sort_order?: 'DESC' | 'ASC';
|
|
5076
4970
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5077
|
-
_query?: string;
|
|
5078
4971
|
}
|
|
5079
4972
|
export interface GetMenuV3DraftModifierGroupRelationshipsModifiersResponse {
|
|
5080
4973
|
results: DraftModifierGroupToModifierRelationshipDTO[];
|
|
@@ -5110,7 +5003,6 @@ export interface PostMenuV3DraftModifierGroupRelationshipsModifiersRequest exten
|
|
|
5110
5003
|
}
|
|
5111
5004
|
export interface GetMenuV3DraftModifierGroupRelationshipsModifiersCountQuery {
|
|
5112
5005
|
filter?: string;
|
|
5113
|
-
_query?: string;
|
|
5114
5006
|
}
|
|
5115
5007
|
export interface GetMenuV3DraftModifierGroupRelationshipsModifiersCountResponse {
|
|
5116
5008
|
count: number;
|
|
@@ -5130,7 +5022,6 @@ export interface GetMenuV3ModifierGroupRelationshipsModifierPath {
|
|
|
5130
5022
|
export interface GetMenuV3ModifierGroupRelationshipsModifierQuery {
|
|
5131
5023
|
select?: string[];
|
|
5132
5024
|
relationships?: string[];
|
|
5133
|
-
_query?: string;
|
|
5134
5025
|
nocache?: boolean;
|
|
5135
5026
|
}
|
|
5136
5027
|
export type GetMenuV3ModifierGroupRelationshipsModifierResponse = PublishedModifierGroupToModifierRelationshipDTO;
|
|
@@ -5145,7 +5036,6 @@ export interface GetMenuV3ModifierGroupRelationshipsModifiersQuery {
|
|
|
5145
5036
|
sort_by?: string;
|
|
5146
5037
|
sort_order?: 'DESC' | 'ASC';
|
|
5147
5038
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5148
|
-
_query?: string;
|
|
5149
5039
|
nocache?: boolean;
|
|
5150
5040
|
}
|
|
5151
5041
|
export interface GetMenuV3ModifierGroupRelationshipsModifiersResponse {
|
|
@@ -5157,7 +5047,6 @@ export interface GetMenuV3ModifierGroupRelationshipsModifiersRequest extends Bas
|
|
|
5157
5047
|
}
|
|
5158
5048
|
export interface GetMenuV3ModifierGroupRelationshipsModifiersCountQuery {
|
|
5159
5049
|
filter?: string;
|
|
5160
|
-
_query?: string;
|
|
5161
5050
|
nocache?: boolean;
|
|
5162
5051
|
}
|
|
5163
5052
|
export interface GetMenuV3ModifierGroupRelationshipsModifiersCountResponse {
|
|
@@ -5227,7 +5116,6 @@ export interface GetMenuV3DraftModifierPath {
|
|
|
5227
5116
|
export interface GetMenuV3DraftModifierQuery {
|
|
5228
5117
|
select?: string[];
|
|
5229
5118
|
relationships?: string[];
|
|
5230
|
-
_query?: string;
|
|
5231
5119
|
}
|
|
5232
5120
|
export type GetMenuV3DraftModifierResponse = DraftModifierDTO;
|
|
5233
5121
|
export interface GetMenuV3DraftModifierRequest extends BaseRequest, RequestQuery<GetMenuV3DraftModifierQuery>, GetMenuV3DraftModifierPath {
|
|
@@ -5313,7 +5201,6 @@ export interface GetMenuV3DraftModifiersQuery {
|
|
|
5313
5201
|
sort_by?: string;
|
|
5314
5202
|
sort_order?: 'DESC' | 'ASC';
|
|
5315
5203
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5316
|
-
_query?: string;
|
|
5317
5204
|
}
|
|
5318
5205
|
export interface GetMenuV3DraftModifiersResponse {
|
|
5319
5206
|
results: DraftModifierDTO[];
|
|
@@ -5374,7 +5261,6 @@ export interface PostMenuV3DraftModifiersRequest extends BaseRequest {
|
|
|
5374
5261
|
}
|
|
5375
5262
|
export interface GetMenuV3DraftModifiersCountQuery {
|
|
5376
5263
|
filter?: string;
|
|
5377
|
-
_query?: string;
|
|
5378
5264
|
}
|
|
5379
5265
|
export interface GetMenuV3DraftModifiersCountResponse {
|
|
5380
5266
|
count: number;
|
|
@@ -5393,7 +5279,6 @@ export interface GetMenuV3DraftModifierLineRoutesPath {
|
|
|
5393
5279
|
}
|
|
5394
5280
|
export interface GetMenuV3DraftModifierLineRoutesQuery {
|
|
5395
5281
|
search?: string;
|
|
5396
|
-
_query?: string;
|
|
5397
5282
|
}
|
|
5398
5283
|
export interface GetMenuV3DraftModifierLineRoutesResponse {
|
|
5399
5284
|
results?: LineRouteSuggestion[];
|
|
@@ -5468,7 +5353,6 @@ export interface GetMenuV3ModifierPath {
|
|
|
5468
5353
|
export interface GetMenuV3ModifierQuery {
|
|
5469
5354
|
select?: string[];
|
|
5470
5355
|
relationships?: string[];
|
|
5471
|
-
_query?: string;
|
|
5472
5356
|
nocache?: boolean;
|
|
5473
5357
|
}
|
|
5474
5358
|
export type GetMenuV3ModifierResponse = PublishedModifierDTO;
|
|
@@ -5483,7 +5367,6 @@ export interface GetMenuV3ModifiersQuery {
|
|
|
5483
5367
|
sort_by?: string;
|
|
5484
5368
|
sort_order?: 'DESC' | 'ASC';
|
|
5485
5369
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5486
|
-
_query?: string;
|
|
5487
5370
|
nocache?: boolean;
|
|
5488
5371
|
}
|
|
5489
5372
|
export interface GetMenuV3ModifiersResponse {
|
|
@@ -5495,7 +5378,6 @@ export interface GetMenuV3ModifiersRequest extends BaseRequest, RequestQuery<Get
|
|
|
5495
5378
|
}
|
|
5496
5379
|
export interface GetMenuV3ModifiersCountQuery {
|
|
5497
5380
|
filter?: string;
|
|
5498
|
-
_query?: string;
|
|
5499
5381
|
nocache?: boolean;
|
|
5500
5382
|
}
|
|
5501
5383
|
export interface GetMenuV3ModifiersCountResponse {
|
|
@@ -5528,7 +5410,6 @@ export interface GetMenuV3GlobalDiffPath {
|
|
|
5528
5410
|
export interface GetMenuV3GlobalDiffQuery {
|
|
5529
5411
|
select?: string[];
|
|
5530
5412
|
relationships?: string[];
|
|
5531
|
-
_query?: string;
|
|
5532
5413
|
}
|
|
5533
5414
|
export type GetMenuV3GlobalDiffResponse = GlobalDiffDTO;
|
|
5534
5415
|
export interface GetMenuV3GlobalDiffRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalDiffQuery>, GetMenuV3GlobalDiffPath {
|
|
@@ -5542,7 +5423,6 @@ export interface GetMenuV3GlobalDiffsQuery {
|
|
|
5542
5423
|
sort_by?: string;
|
|
5543
5424
|
sort_order?: 'DESC' | 'ASC';
|
|
5544
5425
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5545
|
-
_query?: string;
|
|
5546
5426
|
}
|
|
5547
5427
|
export interface GetMenuV3GlobalDiffsResponse {
|
|
5548
5428
|
results: GlobalDiffDTO[];
|
|
@@ -5553,7 +5433,6 @@ export interface GetMenuV3GlobalDiffsRequest extends BaseRequest, RequestQuery<G
|
|
|
5553
5433
|
}
|
|
5554
5434
|
export interface GetMenuV3GlobalDiffsCountQuery {
|
|
5555
5435
|
filter?: string;
|
|
5556
|
-
_query?: string;
|
|
5557
5436
|
}
|
|
5558
5437
|
export interface GetMenuV3GlobalDiffsCountResponse {
|
|
5559
5438
|
count: number;
|
|
@@ -5570,7 +5449,6 @@ export interface PostMenuV3GlobalDiffRecoverRequest extends BaseRequest, PostMen
|
|
|
5570
5449
|
export interface GetMenuV3MenuworksQuery {
|
|
5571
5450
|
unit_ids?: string[];
|
|
5572
5451
|
MRN?: string;
|
|
5573
|
-
_query?: string;
|
|
5574
5452
|
}
|
|
5575
5453
|
export interface GetMenuV3MenuworksResponse {
|
|
5576
5454
|
calories?: number;
|
|
@@ -5580,6 +5458,7 @@ export interface GetMenuV3MenuworksResponse {
|
|
|
5580
5458
|
description?: string;
|
|
5581
5459
|
portion_size: string;
|
|
5582
5460
|
allergens?: AllergenDTO[];
|
|
5461
|
+
nutrition?: NutritionDTO;
|
|
5583
5462
|
MRN?: string;
|
|
5584
5463
|
portion_quantity?: number;
|
|
5585
5464
|
portion_unit_name?: string;
|
|
@@ -5601,7 +5480,6 @@ export interface GetMenuV3UniversalItemsQuery {
|
|
|
5601
5480
|
sort_by?: string;
|
|
5602
5481
|
sort_order?: 'DESC' | 'ASC';
|
|
5603
5482
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
5604
|
-
_query?: string;
|
|
5605
5483
|
}
|
|
5606
5484
|
export interface GetMenuV3UniversalItemsResponse {
|
|
5607
5485
|
results: UniversalItemWithoutIdDTO[];
|
|
@@ -5622,9 +5500,6 @@ export interface PutMenuV3UniversalItemsRequest extends BaseRequest {
|
|
|
5622
5500
|
export interface GetMenuV3UniversalItemPath {
|
|
5623
5501
|
barcode: string;
|
|
5624
5502
|
}
|
|
5625
|
-
export interface GetMenuV3UniversalItemQuery {
|
|
5626
|
-
_query?: string;
|
|
5627
|
-
}
|
|
5628
5503
|
export interface GetMenuV3UniversalItemResponse {
|
|
5629
5504
|
barcode: string;
|
|
5630
5505
|
name: string;
|
|
@@ -5640,7 +5515,7 @@ export interface GetMenuV3UniversalItemResponse {
|
|
|
5640
5515
|
metadata?: Record<string, any>;
|
|
5641
5516
|
[index: string]: any;
|
|
5642
5517
|
}
|
|
5643
|
-
export interface GetMenuV3UniversalItemRequest extends BaseRequest,
|
|
5518
|
+
export interface GetMenuV3UniversalItemRequest extends BaseRequest, GetMenuV3UniversalItemPath {
|
|
5644
5519
|
}
|
|
5645
5520
|
export interface PatchMenuV3UniversalItemPath {
|
|
5646
5521
|
barcode: string;
|
|
@@ -5775,7 +5650,6 @@ export interface GetMenuV4BrandPath {
|
|
|
5775
5650
|
}
|
|
5776
5651
|
export interface GetMenuV4BrandQuery {
|
|
5777
5652
|
with_parent?: boolean;
|
|
5778
|
-
_query?: string;
|
|
5779
5653
|
}
|
|
5780
5654
|
export interface GetMenuV4BrandResponse {
|
|
5781
5655
|
price_levels?: Record<string, any>;
|
|
@@ -6114,7 +5988,6 @@ export interface GetMenuV4BrandItemsQuery {
|
|
|
6114
5988
|
sort_by?: string;
|
|
6115
5989
|
sort_order?: 'DESC' | 'ASC';
|
|
6116
5990
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6117
|
-
_query?: string;
|
|
6118
5991
|
}
|
|
6119
5992
|
export interface GetMenuV4BrandItemsResponse {
|
|
6120
5993
|
results: DraftItemEntityDTO[];
|
|
@@ -6135,7 +6008,6 @@ export interface GetMenuV4BrandModifierGroupsQuery {
|
|
|
6135
6008
|
sort_by?: string;
|
|
6136
6009
|
sort_order?: 'DESC' | 'ASC';
|
|
6137
6010
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6138
|
-
_query?: string;
|
|
6139
6011
|
}
|
|
6140
6012
|
export interface GetMenuV4BrandModifierGroupsResponse {
|
|
6141
6013
|
results: DraftModifierGroupEntityDTO[];
|
|
@@ -6156,7 +6028,6 @@ export interface GetMenuV4BrandModifiersQuery {
|
|
|
6156
6028
|
sort_by?: string;
|
|
6157
6029
|
sort_order?: 'DESC' | 'ASC';
|
|
6158
6030
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6159
|
-
_query?: string;
|
|
6160
6031
|
}
|
|
6161
6032
|
export interface GetMenuV4BrandModifiersResponse {
|
|
6162
6033
|
results: DraftModifierEntityDTO[];
|
|
@@ -6178,7 +6049,6 @@ export interface GetMenuV4BrandCategoryItemsQuery {
|
|
|
6178
6049
|
sort_by?: string;
|
|
6179
6050
|
sort_order?: 'DESC' | 'ASC';
|
|
6180
6051
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
6181
|
-
_query?: string;
|
|
6182
6052
|
}
|
|
6183
6053
|
export interface GetMenuV4BrandCategoryItemsResponse {
|
|
6184
6054
|
results: CategoryItemRelationshipDTO[];
|
|
@@ -6486,7 +6356,6 @@ export interface GetMenuV4BrandExportPath {
|
|
|
6486
6356
|
}
|
|
6487
6357
|
export interface GetMenuV4BrandExportQuery {
|
|
6488
6358
|
format?: 'xlsx';
|
|
6489
|
-
_query?: string;
|
|
6490
6359
|
}
|
|
6491
6360
|
export interface GetMenuV4BrandExportResponse {
|
|
6492
6361
|
s3_link: string;
|
|
@@ -6666,7 +6535,6 @@ export interface GetMenuV4ItemPath {
|
|
|
6666
6535
|
}
|
|
6667
6536
|
export interface GetMenuV4ItemQuery {
|
|
6668
6537
|
with_parent?: boolean;
|
|
6669
|
-
_query?: string;
|
|
6670
6538
|
}
|
|
6671
6539
|
export interface GetMenuV4ItemResponse {
|
|
6672
6540
|
is_published?: boolean;
|
|
@@ -7219,7 +7087,6 @@ export interface GetMenuV4ModifierPath {
|
|
|
7219
7087
|
}
|
|
7220
7088
|
export interface GetMenuV4ModifierQuery {
|
|
7221
7089
|
with_parent?: boolean;
|
|
7222
|
-
_query?: string;
|
|
7223
7090
|
}
|
|
7224
7091
|
export interface GetMenuV4ModifierResponse {
|
|
7225
7092
|
parent?: DraftModifierDTO;
|
|
@@ -7611,7 +7478,6 @@ export interface GetMenuV4ModifierGroupPath {
|
|
|
7611
7478
|
}
|
|
7612
7479
|
export interface GetMenuV4ModifierGroupQuery {
|
|
7613
7480
|
with_parent?: boolean;
|
|
7614
|
-
_query?: string;
|
|
7615
7481
|
}
|
|
7616
7482
|
export interface GetMenuV4ModifierGroupResponse {
|
|
7617
7483
|
parent?: DraftModifierGroupDTO;
|
|
@@ -7874,7 +7740,6 @@ export interface GetMenuV4ModifierGroupAttachableModifiersQuery {
|
|
|
7874
7740
|
sort_by?: string;
|
|
7875
7741
|
sort_order?: 'DESC' | 'ASC';
|
|
7876
7742
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
7877
|
-
_query?: string;
|
|
7878
7743
|
}
|
|
7879
7744
|
export interface GetMenuV4ModifierGroupAttachableModifiersResponse {
|
|
7880
7745
|
results: DraftModifierDTO[];
|
|
@@ -7953,7 +7818,6 @@ export interface GetMenuV4StockBusinessUnitQuery {
|
|
|
7953
7818
|
sort_by?: string;
|
|
7954
7819
|
sort_order?: 'DESC' | 'ASC';
|
|
7955
7820
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
7956
|
-
_query?: string;
|
|
7957
7821
|
}
|
|
7958
7822
|
export interface GetMenuV4StockBusinessUnitResponse {
|
|
7959
7823
|
results: StockDTO[];
|
|
@@ -7974,7 +7838,6 @@ export interface GetMenuV4StockBusinessUnitUnpublishedChangesQuery {
|
|
|
7974
7838
|
sort_by?: string;
|
|
7975
7839
|
sort_order?: 'DESC' | 'ASC';
|
|
7976
7840
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
7977
|
-
_query?: string;
|
|
7978
7841
|
}
|
|
7979
7842
|
export interface GetMenuV4StockBusinessUnitUnpublishedChangesResponse {
|
|
7980
7843
|
results: StockDTO[];
|
|
@@ -8064,7 +7927,6 @@ export interface GetMenuV4MenuPath {
|
|
|
8064
7927
|
}
|
|
8065
7928
|
export interface GetMenuV4MenuQuery {
|
|
8066
7929
|
with_parent?: boolean;
|
|
8067
|
-
_query?: string;
|
|
8068
7930
|
}
|
|
8069
7931
|
export interface GetMenuV4MenuResponse {
|
|
8070
7932
|
parent?: DraftMenuDTO;
|
|
@@ -8110,7 +7972,6 @@ export interface GetMenuV4SizePath {
|
|
|
8110
7972
|
}
|
|
8111
7973
|
export interface GetMenuV4SizeQuery {
|
|
8112
7974
|
with_parent?: boolean;
|
|
8113
|
-
_query?: string;
|
|
8114
7975
|
}
|
|
8115
7976
|
export interface GetMenuV4SizeResponse {
|
|
8116
7977
|
id: string;
|
|
@@ -8125,7 +7986,6 @@ export interface GetMenuV4CategoryPath {
|
|
|
8125
7986
|
}
|
|
8126
7987
|
export interface GetMenuV4CategoryQuery {
|
|
8127
7988
|
with_parent?: boolean;
|
|
8128
|
-
_query?: string;
|
|
8129
7989
|
}
|
|
8130
7990
|
export interface GetMenuV4CategoryResponse {
|
|
8131
7991
|
parent?: DraftCategoryDTO;
|
|
@@ -8211,7 +8071,6 @@ export interface GetMenuV4CategoryAttachableItemsQuery {
|
|
|
8211
8071
|
sort_by?: string;
|
|
8212
8072
|
sort_order?: 'DESC' | 'ASC';
|
|
8213
8073
|
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
8214
|
-
_query?: string;
|
|
8215
8074
|
}
|
|
8216
8075
|
export interface GetMenuV4CategoryAttachableItemsResponse {
|
|
8217
8076
|
results: DraftItemDTO[];
|
|
@@ -8220,9 +8079,6 @@ export interface GetMenuV4CategoryAttachableItemsResponse {
|
|
|
8220
8079
|
}
|
|
8221
8080
|
export interface GetMenuV4CategoryAttachableItemsRequest extends BaseRequest, RequestQuery<GetMenuV4CategoryAttachableItemsQuery>, GetMenuV4CategoryAttachableItemsPath {
|
|
8222
8081
|
}
|
|
8223
|
-
export interface GetMenuV3PingQuery {
|
|
8224
|
-
_query?: string;
|
|
8225
|
-
}
|
|
8226
8082
|
export interface GetMenuV3PingResponse {
|
|
8227
8083
|
status: string;
|
|
8228
8084
|
message: string;
|
|
@@ -8230,10 +8086,7 @@ export interface GetMenuV3PingResponse {
|
|
|
8230
8086
|
service: string;
|
|
8231
8087
|
[index: string]: any;
|
|
8232
8088
|
}
|
|
8233
|
-
export interface GetMenuV3PingRequest extends BaseRequest
|
|
8234
|
-
}
|
|
8235
|
-
export interface GetMenuV3HealthQuery {
|
|
8236
|
-
_query?: string;
|
|
8089
|
+
export interface GetMenuV3PingRequest extends BaseRequest {
|
|
8237
8090
|
}
|
|
8238
8091
|
export interface GetMenuV3HealthResponse {
|
|
8239
8092
|
status: string;
|
|
@@ -8243,6 +8096,6 @@ export interface GetMenuV3HealthResponse {
|
|
|
8243
8096
|
metadata: HealthMetadataDTO;
|
|
8244
8097
|
[index: string]: any;
|
|
8245
8098
|
}
|
|
8246
|
-
export interface GetMenuV3HealthRequest extends BaseRequest
|
|
8099
|
+
export interface GetMenuV3HealthRequest extends BaseRequest {
|
|
8247
8100
|
}
|
|
8248
8101
|
//# sourceMappingURL=menu.d.ts.map
|