@compassdigital/sdk.typescript 4.14.0 → 4.15.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.
@@ -277,7 +277,7 @@ export interface GetTaskAssigneePath {
277
277
 
278
278
  export interface GetTaskAssigneeQuery {
279
279
  // Task Status
280
- status?: TaskStatus;
280
+ status?: string;
281
281
  // Task Location ID
282
282
  location_id?: string;
283
283
  // Filter tasks by their created date. Only return tasks that have a date greater than or equal to the date.
@@ -306,7 +306,7 @@ export interface GetTaskLocationBrandPath {
306
306
 
307
307
  export interface GetTaskLocationBrandQuery {
308
308
  // Task Status
309
- status?: TaskStatus;
309
+ status?: string;
310
310
  // Task Location ID
311
311
  location_id?: string;
312
312
  // Filter tasks by their created date. Only return tasks that have a date greater than or equal to the date.
@@ -318,7 +318,7 @@ export interface GetTaskLocationBrandQuery {
318
318
  // Filter tasks by the action_time in pickup_details. Only return tasks that have a pickup_time date greater than or equal to the date.
319
319
  pickup_time?: number;
320
320
  // The type of task that will be searched on. The default is: 'bolter'
321
- query_type?: "kds" | "bolter";
321
+ query_type?: string;
322
322
  // Graphql query string
323
323
  _query?: string;
324
324
  }
@@ -339,7 +339,7 @@ export interface GetTaskLocationGroupPath {
339
339
 
340
340
  export interface GetTaskLocationGroupQuery {
341
341
  // Task Status
342
- status?: TaskStatus;
342
+ status?: string;
343
343
  // Task Location ID
344
344
  location_id?: string;
345
345
  // Filter tasks by their created date. Only return tasks that have a date greater than or equal to the date.
@@ -351,7 +351,7 @@ export interface GetTaskLocationGroupQuery {
351
351
  // Filter tasks by the action_time in pickup_details. Only return tasks that have a pickup_time date greater than or equal to the date.
352
352
  pickup_time?: number;
353
353
  // The type of task that will be searched on. The default is: 'bolter'
354
- query_type?: "kds" | "bolter";
354
+ query_type?: string;
355
355
  // Graphql query string
356
356
  _query?: string;
357
357
  }