@compassdigital/sdk.typescript 4.607.0 → 4.609.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 +18 -9
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +19 -10
- package/lib/index.js.map +1 -1
- package/lib/interface/consumer.d.ts +128 -95
- package/lib/interface/consumer.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +4 -4
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +48 -24
- package/src/interface/consumer.ts +192 -142
- package/src/interface/discount.ts +2 -2
- package/src/interface/menu.ts +4 -4
package/lib/interface/menu.d.ts
CHANGED
|
@@ -6355,7 +6355,7 @@ export interface GetMenuV4BrandItemsPath {
|
|
|
6355
6355
|
id: string;
|
|
6356
6356
|
}
|
|
6357
6357
|
export interface GetMenuV4BrandItemsQuery {
|
|
6358
|
-
filter?: string;
|
|
6358
|
+
filter?: string[];
|
|
6359
6359
|
select?: string[];
|
|
6360
6360
|
relationships?: string[];
|
|
6361
6361
|
limit?: number;
|
|
@@ -6375,7 +6375,7 @@ export interface GetMenuV4BrandModifierGroupsPath {
|
|
|
6375
6375
|
id: string;
|
|
6376
6376
|
}
|
|
6377
6377
|
export interface GetMenuV4BrandModifierGroupsQuery {
|
|
6378
|
-
filter?: string;
|
|
6378
|
+
filter?: string[];
|
|
6379
6379
|
select?: string[];
|
|
6380
6380
|
relationships?: string[];
|
|
6381
6381
|
limit?: number;
|
|
@@ -6395,7 +6395,7 @@ export interface GetMenuV4BrandModifiersPath {
|
|
|
6395
6395
|
id: string;
|
|
6396
6396
|
}
|
|
6397
6397
|
export interface GetMenuV4BrandModifiersQuery {
|
|
6398
|
-
filter?: string;
|
|
6398
|
+
filter?: string[];
|
|
6399
6399
|
select?: string[];
|
|
6400
6400
|
relationships?: string[];
|
|
6401
6401
|
limit?: number;
|
|
@@ -6416,7 +6416,7 @@ export interface GetMenuV4BrandCategoryItemsPath {
|
|
|
6416
6416
|
category_id: string;
|
|
6417
6417
|
}
|
|
6418
6418
|
export interface GetMenuV4BrandCategoryItemsQuery {
|
|
6419
|
-
filter?: string;
|
|
6419
|
+
filter?: string[];
|
|
6420
6420
|
select?: string[];
|
|
6421
6421
|
relationships?: string[];
|
|
6422
6422
|
limit?: number;
|