@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.713.0",
3
+ "version": "4.715.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -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;
@@ -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