@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.
- package/lib/index.d.ts +10 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/calendar.d.ts +1 -1
- package/lib/interface/config.d.ts +1 -3
- package/lib/interface/config.d.ts.map +1 -1
- package/lib/interface/location.d.ts +6 -4
- package/lib/interface/location.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +9 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/partner.d.ts +26 -2
- package/lib/interface/partner.d.ts.map +1 -1
- package/lib/interface/report.d.ts +9 -0
- package/lib/interface/report.d.ts.map +1 -1
- package/lib/interface/task.d.ts +5 -5
- package/lib/interface/task.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +24 -0
- package/src/interface/calendar.ts +1 -1
- package/src/interface/config.ts +1 -3
- package/src/interface/location.ts +6 -4
- package/src/interface/menu.ts +9 -0
- package/src/interface/partner.ts +29 -2
- package/src/interface/report.ts +18 -0
- package/src/interface/task.ts +5 -5
package/src/interface/task.ts
CHANGED
|
@@ -277,7 +277,7 @@ export interface GetTaskAssigneePath {
|
|
|
277
277
|
|
|
278
278
|
export interface GetTaskAssigneeQuery {
|
|
279
279
|
// Task Status
|
|
280
|
-
status?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
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?:
|
|
354
|
+
query_type?: string;
|
|
355
355
|
// Graphql query string
|
|
356
356
|
_query?: string;
|
|
357
357
|
}
|