@compassdigital/sdk.typescript 4.471.0 → 4.472.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/interface/menu.d.ts +61 -45
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +61 -45
package/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -2058,20 +2058,23 @@ export interface FetchMetaDTO {
|
|
|
2058
2058
|
}
|
|
2059
2059
|
|
|
2060
2060
|
export interface FetchEntityWithMenusDTO {
|
|
2061
|
-
id
|
|
2062
|
-
name
|
|
2063
|
-
menus
|
|
2061
|
+
id: string;
|
|
2062
|
+
name: string;
|
|
2063
|
+
menus: FetchMenuDTO[];
|
|
2064
|
+
[index: string]: any;
|
|
2064
2065
|
}
|
|
2065
2066
|
|
|
2066
2067
|
export interface FetchMenuDTO {
|
|
2067
|
-
id
|
|
2068
|
-
name
|
|
2069
|
-
categories
|
|
2068
|
+
id: string;
|
|
2069
|
+
name: string;
|
|
2070
|
+
categories: FetchCategoryDTO[];
|
|
2071
|
+
[index: string]: any;
|
|
2070
2072
|
}
|
|
2071
2073
|
|
|
2072
2074
|
export interface FetchCategoryDTO {
|
|
2073
|
-
id
|
|
2074
|
-
name
|
|
2075
|
+
id: string;
|
|
2076
|
+
name: string;
|
|
2077
|
+
[index: string]: any;
|
|
2075
2078
|
}
|
|
2076
2079
|
|
|
2077
2080
|
export interface FetchBrandItemsMenuBrandRequestDTO {
|
|
@@ -2095,26 +2098,30 @@ export interface FetchBrandItemsCategoryRequestDTO {
|
|
|
2095
2098
|
}
|
|
2096
2099
|
|
|
2097
2100
|
export interface FetchEntityWithMenusAndItemsDTO {
|
|
2098
|
-
id
|
|
2099
|
-
name
|
|
2100
|
-
menus
|
|
2101
|
+
id: string;
|
|
2102
|
+
name: string;
|
|
2103
|
+
menus: FetchMenuWithItemsDTO[];
|
|
2104
|
+
[index: string]: any;
|
|
2101
2105
|
}
|
|
2102
2106
|
|
|
2103
2107
|
export interface FetchMenuWithItemsDTO {
|
|
2104
|
-
id
|
|
2105
|
-
name
|
|
2106
|
-
categories
|
|
2108
|
+
id: string;
|
|
2109
|
+
name: string;
|
|
2110
|
+
categories: FetchCategoryWithItemsDTO[];
|
|
2111
|
+
[index: string]: any;
|
|
2107
2112
|
}
|
|
2108
2113
|
|
|
2109
2114
|
export interface FetchCategoryWithItemsDTO {
|
|
2110
|
-
id
|
|
2111
|
-
name
|
|
2112
|
-
items
|
|
2115
|
+
id: string;
|
|
2116
|
+
name: string;
|
|
2117
|
+
items: FetchItemDTO[];
|
|
2118
|
+
[index: string]: any;
|
|
2113
2119
|
}
|
|
2114
2120
|
|
|
2115
2121
|
export interface FetchItemDTO {
|
|
2116
|
-
id
|
|
2117
|
-
name
|
|
2122
|
+
id: string;
|
|
2123
|
+
name: string;
|
|
2124
|
+
[index: string]: any;
|
|
2118
2125
|
}
|
|
2119
2126
|
|
|
2120
2127
|
export interface PartialItemDTO {
|
|
@@ -2221,21 +2228,23 @@ export interface MenuSizeDTO {
|
|
|
2221
2228
|
}
|
|
2222
2229
|
|
|
2223
2230
|
export interface FetchStationWithMenusDTO {
|
|
2224
|
-
id
|
|
2225
|
-
name
|
|
2226
|
-
menus
|
|
2231
|
+
id: string;
|
|
2232
|
+
name: string;
|
|
2233
|
+
menus: FetchStationMenuDTO[];
|
|
2234
|
+
[index: string]: any;
|
|
2227
2235
|
}
|
|
2228
2236
|
|
|
2229
2237
|
export interface FetchStationMenuDTO {
|
|
2230
|
-
id
|
|
2231
|
-
name
|
|
2232
|
-
categories
|
|
2238
|
+
id: string;
|
|
2239
|
+
name: string;
|
|
2240
|
+
categories: FetchStationCategoryDTO[];
|
|
2241
|
+
[index: string]: any;
|
|
2233
2242
|
}
|
|
2234
2243
|
|
|
2235
2244
|
export interface FetchStationCategoryDTO {
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2245
|
+
id: string;
|
|
2246
|
+
name: string;
|
|
2247
|
+
items: FetchItemDTO[];
|
|
2239
2248
|
[index: string]: any;
|
|
2240
2249
|
}
|
|
2241
2250
|
|
|
@@ -2267,21 +2276,24 @@ export interface FetchStationItemsSearchCategoryRequestDTO {
|
|
|
2267
2276
|
}
|
|
2268
2277
|
|
|
2269
2278
|
export interface FetchSiteWithStationsDTO {
|
|
2270
|
-
id
|
|
2271
|
-
name
|
|
2272
|
-
stations
|
|
2279
|
+
id: string;
|
|
2280
|
+
name: string;
|
|
2281
|
+
stations: FetchStationDTO[];
|
|
2282
|
+
[index: string]: any;
|
|
2273
2283
|
}
|
|
2274
2284
|
|
|
2275
2285
|
export interface FetchStationDTO {
|
|
2276
|
-
id
|
|
2277
|
-
name
|
|
2278
|
-
menus
|
|
2286
|
+
id: string;
|
|
2287
|
+
name: string;
|
|
2288
|
+
menus: FetchStationItemStationMenuDTO[];
|
|
2289
|
+
[index: string]: any;
|
|
2279
2290
|
}
|
|
2280
2291
|
|
|
2281
2292
|
export interface FetchStationItemStationMenuDTO {
|
|
2282
|
-
id
|
|
2283
|
-
name
|
|
2284
|
-
categories
|
|
2293
|
+
id: string;
|
|
2294
|
+
name: string;
|
|
2295
|
+
categories: FetchCategoryWithItemsDTO[];
|
|
2296
|
+
[index: string]: any;
|
|
2285
2297
|
}
|
|
2286
2298
|
|
|
2287
2299
|
export interface HealthDependencyDTO {
|
|
@@ -8946,8 +8958,9 @@ export interface PostMenuV4BrandsFetchBody {
|
|
|
8946
8958
|
}
|
|
8947
8959
|
|
|
8948
8960
|
export interface PostMenuV4BrandsFetchResponse {
|
|
8949
|
-
meta
|
|
8950
|
-
results
|
|
8961
|
+
meta: FetchMetaDTO;
|
|
8962
|
+
results: FetchEntityWithMenusDTO[];
|
|
8963
|
+
[index: string]: any;
|
|
8951
8964
|
}
|
|
8952
8965
|
|
|
8953
8966
|
export interface PostMenuV4BrandsFetchRequest extends BaseRequest {
|
|
@@ -8963,8 +8976,9 @@ export interface PostMenuV4BrandItemsSearchBody {
|
|
|
8963
8976
|
}
|
|
8964
8977
|
|
|
8965
8978
|
export interface PostMenuV4BrandItemsSearchResponse {
|
|
8966
|
-
meta
|
|
8967
|
-
results
|
|
8979
|
+
meta: FetchMetaDTO;
|
|
8980
|
+
results: FetchEntityWithMenusAndItemsDTO[];
|
|
8981
|
+
[index: string]: any;
|
|
8968
8982
|
}
|
|
8969
8983
|
|
|
8970
8984
|
export interface PostMenuV4BrandItemsSearchRequest extends BaseRequest {
|
|
@@ -11066,8 +11080,9 @@ export interface PostMenuV4StationsMenusFetchBody {
|
|
|
11066
11080
|
}
|
|
11067
11081
|
|
|
11068
11082
|
export interface PostMenuV4StationsMenusFetchResponse {
|
|
11069
|
-
meta
|
|
11070
|
-
results
|
|
11083
|
+
meta: FetchMetaDTO;
|
|
11084
|
+
results: FetchStationWithMenusDTO[];
|
|
11085
|
+
[index: string]: any;
|
|
11071
11086
|
}
|
|
11072
11087
|
|
|
11073
11088
|
export interface PostMenuV4StationsMenusFetchRequest extends BaseRequest {
|
|
@@ -11083,8 +11098,9 @@ export interface PostMenuV4StationItemsSearchBody {
|
|
|
11083
11098
|
}
|
|
11084
11099
|
|
|
11085
11100
|
export interface PostMenuV4StationItemsSearchResponse {
|
|
11086
|
-
meta
|
|
11087
|
-
results
|
|
11101
|
+
meta: FetchMetaDTO;
|
|
11102
|
+
results: FetchSiteWithStationsDTO[];
|
|
11103
|
+
[index: string]: any;
|
|
11088
11104
|
}
|
|
11089
11105
|
|
|
11090
11106
|
export interface PostMenuV4StationItemsSearchRequest extends BaseRequest {
|