@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.471.0",
3
+ "version": "4.472.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -2058,20 +2058,23 @@ export interface FetchMetaDTO {
2058
2058
  }
2059
2059
 
2060
2060
  export interface FetchEntityWithMenusDTO {
2061
- id?: string;
2062
- name?: string;
2063
- menus?: FetchMenuDTO[];
2061
+ id: string;
2062
+ name: string;
2063
+ menus: FetchMenuDTO[];
2064
+ [index: string]: any;
2064
2065
  }
2065
2066
 
2066
2067
  export interface FetchMenuDTO {
2067
- id?: string;
2068
- name?: string;
2069
- categories?: FetchCategoryDTO[];
2068
+ id: string;
2069
+ name: string;
2070
+ categories: FetchCategoryDTO[];
2071
+ [index: string]: any;
2070
2072
  }
2071
2073
 
2072
2074
  export interface FetchCategoryDTO {
2073
- id?: string;
2074
- name?: string;
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?: string;
2099
- name?: string;
2100
- menus?: FetchMenuWithItemsDTO[];
2101
+ id: string;
2102
+ name: string;
2103
+ menus: FetchMenuWithItemsDTO[];
2104
+ [index: string]: any;
2101
2105
  }
2102
2106
 
2103
2107
  export interface FetchMenuWithItemsDTO {
2104
- id?: string;
2105
- name?: string;
2106
- categories?: FetchCategoryWithItemsDTO[];
2108
+ id: string;
2109
+ name: string;
2110
+ categories: FetchCategoryWithItemsDTO[];
2111
+ [index: string]: any;
2107
2112
  }
2108
2113
 
2109
2114
  export interface FetchCategoryWithItemsDTO {
2110
- id?: string;
2111
- name?: string;
2112
- items?: FetchItemDTO[];
2115
+ id: string;
2116
+ name: string;
2117
+ items: FetchItemDTO[];
2118
+ [index: string]: any;
2113
2119
  }
2114
2120
 
2115
2121
  export interface FetchItemDTO {
2116
- id?: string;
2117
- name?: string;
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?: string;
2225
- name?: string;
2226
- menus?: FetchStationMenuDTO[];
2231
+ id: string;
2232
+ name: string;
2233
+ menus: FetchStationMenuDTO[];
2234
+ [index: string]: any;
2227
2235
  }
2228
2236
 
2229
2237
  export interface FetchStationMenuDTO {
2230
- id?: string;
2231
- name?: string;
2232
- categories?: FetchStationCategoryDTO[];
2238
+ id: string;
2239
+ name: string;
2240
+ categories: FetchStationCategoryDTO[];
2241
+ [index: string]: any;
2233
2242
  }
2234
2243
 
2235
2244
  export interface FetchStationCategoryDTO {
2236
- items?: FetchItemDTO[];
2237
- id?: string;
2238
- name?: string;
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?: string;
2271
- name?: string;
2272
- stations?: FetchStationDTO[];
2279
+ id: string;
2280
+ name: string;
2281
+ stations: FetchStationDTO[];
2282
+ [index: string]: any;
2273
2283
  }
2274
2284
 
2275
2285
  export interface FetchStationDTO {
2276
- id?: string;
2277
- name?: string;
2278
- menus?: FetchStationItemStationMenuDTO[];
2286
+ id: string;
2287
+ name: string;
2288
+ menus: FetchStationItemStationMenuDTO[];
2289
+ [index: string]: any;
2279
2290
  }
2280
2291
 
2281
2292
  export interface FetchStationItemStationMenuDTO {
2282
- id?: string;
2283
- name?: string;
2284
- categories?: FetchCategoryWithItemsDTO[];
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?: FetchMetaDTO;
8950
- results?: FetchEntityWithMenusDTO[];
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?: FetchMetaDTO;
8967
- results?: FetchEntityWithMenusAndItemsDTO[];
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?: FetchMetaDTO;
11070
- results?: FetchStationWithMenusDTO[];
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?: FetchMetaDTO;
11087
- results?: FetchSiteWithStationsDTO[];
11101
+ meta: FetchMetaDTO;
11102
+ results: FetchSiteWithStationsDTO[];
11103
+ [index: string]: any;
11088
11104
  }
11089
11105
 
11090
11106
  export interface PostMenuV4StationItemsSearchRequest extends BaseRequest {