@compassdigital/sdk.typescript 4.713.0 → 4.715.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/location.d.ts +5 -0
- package/lib/interface/location.d.ts.map +1 -1
- package/lib/interface/location.js +4 -1
- package/lib/interface/location.js.map +1 -1
- package/lib/interface/menu.d.ts +2 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/location.ts +7 -0
- package/src/interface/menu.ts +2 -0
package/package.json
CHANGED
|
@@ -370,10 +370,17 @@ export interface Group {
|
|
|
370
370
|
device_mapping?: Record<string, DeviceMapping[]>;
|
|
371
371
|
// Site operational status
|
|
372
372
|
status?: 'active' | 'inactive' | 'archived';
|
|
373
|
+
// External client the site is assigned to; send null to clear the assignment
|
|
374
|
+
client?: ClientSlug | null;
|
|
373
375
|
date?: DateInfo;
|
|
374
376
|
[index: string]: any;
|
|
375
377
|
}
|
|
376
378
|
|
|
379
|
+
export const ClientSlug = {
|
|
380
|
+
AMAZON: 'amazon',
|
|
381
|
+
} as const;
|
|
382
|
+
export type ClientSlug = (typeof ClientSlug)[keyof typeof ClientSlug];
|
|
383
|
+
|
|
377
384
|
export interface MultiGroup {
|
|
378
385
|
// multigroup
|
|
379
386
|
id?: string;
|
package/src/interface/menu.ts
CHANGED
|
@@ -9148,6 +9148,7 @@ export interface PostMenuV4BrandPublishPath {
|
|
|
9148
9148
|
|
|
9149
9149
|
export interface PostMenuV4BrandPublishResponse {
|
|
9150
9150
|
status?: string;
|
|
9151
|
+
process_id?: string;
|
|
9151
9152
|
}
|
|
9152
9153
|
|
|
9153
9154
|
export interface PostMenuV4BrandPublishRequest extends BaseRequest, PostMenuV4BrandPublishPath {}
|
|
@@ -9160,6 +9161,7 @@ export interface PostMenuV4BrandIntegrationSyncPath {
|
|
|
9160
9161
|
|
|
9161
9162
|
export interface PostMenuV4BrandIntegrationSyncResponse {
|
|
9162
9163
|
status?: string;
|
|
9164
|
+
process_id?: string;
|
|
9163
9165
|
}
|
|
9164
9166
|
|
|
9165
9167
|
export interface PostMenuV4BrandIntegrationSyncRequest
|