@compassdigital/sdk.typescript 4.729.0 → 4.731.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
|
@@ -1631,8 +1631,6 @@ export interface HomePageResponse {
|
|
|
1631
1631
|
freeCoffee?: FreeCoffeeDTO;
|
|
1632
1632
|
// mealplan barcode object
|
|
1633
1633
|
mealplanBarcode?: GetUserMealplanBarcodeResponse;
|
|
1634
|
-
// is site audible and integration enabled
|
|
1635
|
-
isSiteAudibleAtriumIntegrated?: boolean;
|
|
1636
1634
|
}
|
|
1637
1635
|
|
|
1638
1636
|
export interface FrictionlessCheckinResponse {
|
package/src/interface/menu.ts
CHANGED
|
@@ -2316,6 +2316,13 @@ export interface PartialItemDTO {
|
|
|
2316
2316
|
[index: string]: any;
|
|
2317
2317
|
}
|
|
2318
2318
|
|
|
2319
|
+
export interface BulkDeletedItemResultDTO {
|
|
2320
|
+
id: string;
|
|
2321
|
+
brand_id?: string;
|
|
2322
|
+
name?: string;
|
|
2323
|
+
[index: string]: any;
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2319
2326
|
export interface PartialModifierDTO {
|
|
2320
2327
|
parent?: DraftModifierDTO;
|
|
2321
2328
|
children?: DraftModifierDTO[];
|
|
@@ -2361,6 +2368,13 @@ export interface PartialModifierDTO {
|
|
|
2361
2368
|
[index: string]: any;
|
|
2362
2369
|
}
|
|
2363
2370
|
|
|
2371
|
+
export interface BulkDeletedModifierResultDTO {
|
|
2372
|
+
id: string;
|
|
2373
|
+
brand_id?: string;
|
|
2374
|
+
name?: string;
|
|
2375
|
+
[index: string]: any;
|
|
2376
|
+
}
|
|
2377
|
+
|
|
2364
2378
|
export interface MenuSizeDTO {
|
|
2365
2379
|
format: string;
|
|
2366
2380
|
raw: number;
|
|
@@ -10145,7 +10159,7 @@ export interface DeleteMenuV4ItemsBulkDeleteBody {
|
|
|
10145
10159
|
|
|
10146
10160
|
export interface DeleteMenuV4ItemsBulkDeleteResponse {
|
|
10147
10161
|
meta?: Record<string, any>;
|
|
10148
|
-
results?:
|
|
10162
|
+
results?: BulkDeletedItemResultDTO[];
|
|
10149
10163
|
}
|
|
10150
10164
|
|
|
10151
10165
|
export interface DeleteMenuV4ItemsBulkDeleteRequest extends BaseRequest {
|
|
@@ -10636,7 +10650,7 @@ export interface DeleteMenuV4ModifiersBulkDeleteBody {
|
|
|
10636
10650
|
|
|
10637
10651
|
export interface DeleteMenuV4ModifiersBulkDeleteResponse {
|
|
10638
10652
|
meta?: Record<string, any>;
|
|
10639
|
-
results?:
|
|
10653
|
+
results?: BulkDeletedModifierResultDTO[];
|
|
10640
10654
|
}
|
|
10641
10655
|
|
|
10642
10656
|
export interface DeleteMenuV4ModifiersBulkDeleteRequest extends BaseRequest {
|