@compassdigital/sdk.typescript 4.728.0 → 4.730.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
package/src/interface/config.ts
CHANGED
|
@@ -156,9 +156,14 @@ export interface PrivateMealplanConfig {
|
|
|
156
156
|
port?: number;
|
|
157
157
|
vendor_number?: number;
|
|
158
158
|
client?: string;
|
|
159
|
+
restricted?: KeystoreRestricted;
|
|
159
160
|
};
|
|
160
161
|
}
|
|
161
162
|
|
|
163
|
+
export interface KeystoreRestricted {
|
|
164
|
+
[index: string]: Record<string, any>;
|
|
165
|
+
}
|
|
166
|
+
|
|
162
167
|
export interface Keystore {
|
|
163
168
|
mealplan?: CbordMealplanConfig;
|
|
164
169
|
payment?: {
|
|
@@ -175,6 +180,7 @@ export interface Keystore {
|
|
|
175
180
|
freedompay_terminal_id?: string;
|
|
176
181
|
};
|
|
177
182
|
};
|
|
183
|
+
restricted?: KeystoreRestricted;
|
|
178
184
|
}
|
|
179
185
|
|
|
180
186
|
export interface CbordMealplanConfig {
|
|
@@ -551,6 +557,7 @@ export interface PrivateStationKeystore {
|
|
|
551
557
|
};
|
|
552
558
|
// Legacy pointer into the external keystore table.
|
|
553
559
|
hash_id?: string;
|
|
560
|
+
restricted?: KeystoreRestricted;
|
|
554
561
|
}
|
|
555
562
|
|
|
556
563
|
export interface PrivateSiteKeystore {
|
|
@@ -563,6 +570,7 @@ export interface PrivateSiteKeystore {
|
|
|
563
570
|
mealplan?: CbordMealplanConfig;
|
|
564
571
|
// Legacy pointer into the external keystore table.
|
|
565
572
|
hash_id?: string;
|
|
573
|
+
restricted?: KeystoreRestricted;
|
|
566
574
|
}
|
|
567
575
|
|
|
568
576
|
// GET /config/appconfig - get appconfig - an object with data for clients including minimum versions apps (boost, thrive, J&J) should be running and a link to the respective app store
|
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 {
|