@smartytalent/api-client 0.9.17 → 0.9.19
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/dist/apis/TasksApi.d.ts +17 -2
- package/dist/apis/TasksApi.d.ts.map +1 -1
- package/dist/apis/TasksApi.js +27 -3
- package/dist/apis/TasksApi.js.map +1 -1
- package/dist/models/TaskAttributesSchema.d.ts +7 -1
- package/dist/models/TaskAttributesSchema.d.ts.map +1 -1
- package/dist/models/TaskAttributesSchema.js +2 -0
- package/dist/models/TaskAttributesSchema.js.map +1 -1
- package/package.json +1 -1
package/dist/apis/TasksApi.d.ts
CHANGED
|
@@ -16,6 +16,11 @@ export interface CreateTaskRequest {
|
|
|
16
16
|
}
|
|
17
17
|
export interface ListTasksRequest {
|
|
18
18
|
filterStatus?: ListTasksFilterStatusEnum;
|
|
19
|
+
filterConversationId?: string;
|
|
20
|
+
filterFamily?: string;
|
|
21
|
+
filterAuthorId?: string;
|
|
22
|
+
filterClaimedBy?: string;
|
|
23
|
+
sort?: ListTasksSortEnum;
|
|
19
24
|
filterCreatedFrom?: Date;
|
|
20
25
|
filterCreatedTo?: Date;
|
|
21
26
|
filterModifiedFrom?: Date;
|
|
@@ -58,12 +63,12 @@ export declare class TasksApi extends runtime.BaseAPI {
|
|
|
58
63
|
*/
|
|
59
64
|
listTasksRequestOpts(requestParameters: ListTasksRequest): Promise<runtime.RequestOpts>;
|
|
60
65
|
/**
|
|
61
|
-
* Returns a collection of your account tasks. TENANT-scoped, not user-scoped: the list returns every task row in the tenant, including tasks another operator filed. This is the deliberate v1 shape (a shared team inbox); filter client-side on `route`/`kind` or on `relationships.author` if you need one operator\'s lane - there is no filterRoute, no filterKind and no filterAuthorId. ONE FILTER AT A TIME: `filterStatus` and the created/modified ranges each pick a different GSI, so combining any two is a hard 400 \"Only one filter can be used at the time\" (a from/to pair on the same axis counts as one). `filterStatus` takes exactly one value - repeating it does not OR the statuses. Both traditional (`pageNumber`) and cursor-based (`pageAfter`/`pageBefore`) pagination are supported, and the two styles cannot be combined.
|
|
66
|
+
* Returns a collection of your account tasks. TENANT-scoped, not user-scoped: the list returns every task row in the tenant, including tasks another operator filed. This is the deliberate v1 shape (a shared team inbox); filter client-side on `route`/`kind` or on `relationships.author` if you need one operator\'s lane - there is no filterRoute, no filterKind and no filterAuthorId. `filterConversationId` is the exception, and exists because counting one thread\'s tasks by paging the tenant\'s and filtering client-side works only while the tenant\'s tasks fit in the page. Tasks accumulate monotonically, so the day they stop fitting, a per-thread count silently drops to zero while the work is still there. Served by ConversationIdIndex off a scalar denormalised at create; a task with no thread is absent from the index rather than matching nothing. ONE FILTER AT A TIME: `filterStatus`, `filterConversationId` and the created/modified ranges each pick a different GSI, so combining any two is a hard 400 \"Only one filter can be used at the time\" (a from/to pair on the same axis counts as one). Narrow by thread and filter the handful of rows by status client-side. `filterStatus` takes exactly one value - repeating it does not OR the statuses. Both traditional (`pageNumber`) and cursor-based (`pageAfter`/`pageBefore`) pagination are supported, and the two styles cannot be combined.
|
|
62
67
|
* List Tasks
|
|
63
68
|
*/
|
|
64
69
|
listTasksRaw(requestParameters: ListTasksRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TasksSchema>>;
|
|
65
70
|
/**
|
|
66
|
-
* Returns a collection of your account tasks. TENANT-scoped, not user-scoped: the list returns every task row in the tenant, including tasks another operator filed. This is the deliberate v1 shape (a shared team inbox); filter client-side on `route`/`kind` or on `relationships.author` if you need one operator\'s lane - there is no filterRoute, no filterKind and no filterAuthorId. ONE FILTER AT A TIME: `filterStatus` and the created/modified ranges each pick a different GSI, so combining any two is a hard 400 \"Only one filter can be used at the time\" (a from/to pair on the same axis counts as one). `filterStatus` takes exactly one value - repeating it does not OR the statuses. Both traditional (`pageNumber`) and cursor-based (`pageAfter`/`pageBefore`) pagination are supported, and the two styles cannot be combined.
|
|
71
|
+
* Returns a collection of your account tasks. TENANT-scoped, not user-scoped: the list returns every task row in the tenant, including tasks another operator filed. This is the deliberate v1 shape (a shared team inbox); filter client-side on `route`/`kind` or on `relationships.author` if you need one operator\'s lane - there is no filterRoute, no filterKind and no filterAuthorId. `filterConversationId` is the exception, and exists because counting one thread\'s tasks by paging the tenant\'s and filtering client-side works only while the tenant\'s tasks fit in the page. Tasks accumulate monotonically, so the day they stop fitting, a per-thread count silently drops to zero while the work is still there. Served by ConversationIdIndex off a scalar denormalised at create; a task with no thread is absent from the index rather than matching nothing. ONE FILTER AT A TIME: `filterStatus`, `filterConversationId` and the created/modified ranges each pick a different GSI, so combining any two is a hard 400 \"Only one filter can be used at the time\" (a from/to pair on the same axis counts as one). Narrow by thread and filter the handful of rows by status client-side. `filterStatus` takes exactly one value - repeating it does not OR the statuses. Both traditional (`pageNumber`) and cursor-based (`pageAfter`/`pageBefore`) pagination are supported, and the two styles cannot be combined.
|
|
67
72
|
* List Tasks
|
|
68
73
|
*/
|
|
69
74
|
listTasks(requestParameters?: ListTasksRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TasksSchema>;
|
|
@@ -138,4 +143,14 @@ export declare const ListTasksFilterStatusEnum: {
|
|
|
138
143
|
readonly Done: "done";
|
|
139
144
|
};
|
|
140
145
|
export type ListTasksFilterStatusEnum = typeof ListTasksFilterStatusEnum[keyof typeof ListTasksFilterStatusEnum];
|
|
146
|
+
/**
|
|
147
|
+
* @export
|
|
148
|
+
*/
|
|
149
|
+
export declare const ListTasksSortEnum: {
|
|
150
|
+
readonly Created: "created";
|
|
151
|
+
readonly Created2: "-created";
|
|
152
|
+
readonly Modified: "modified";
|
|
153
|
+
readonly Modified2: "-modified";
|
|
154
|
+
};
|
|
155
|
+
export type ListTasksSortEnum = typeof ListTasksSortEnum[keyof typeof ListTasksSortEnum];
|
|
141
156
|
//# sourceMappingURL=TasksApi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TasksApi.d.ts","sourceRoot":"","sources":["../../src/apis/TasksApi.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,OAAO,MAAM,YAAY,CAAC;AACtC,OAAO,KAAK,EACV,qBAAqB,EAErB,UAAU,EACV,WAAW,EACX,qBAAqB,EACtB,MAAM,iBAAiB,CAAC;AAczB,MAAM,WAAW,iBAAiB;IAC9B,qBAAqB,EAAE,qBAAqB,CAAC;CAChD;AAED,MAAM,WAAW,gBAAgB;IAC7B,YAAY,CAAC,EAAE,yBAAyB,CAAC;IACzC,iBAAiB,CAAC,EAAE,IAAI,CAAC;IACzB,eAAe,CAAC,EAAE,IAAI,CAAC;IACvB,kBAAkB,CAAC,EAAE,IAAI,CAAC;IAC1B,gBAAgB,CAAC,EAAE,IAAI,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,eAAe;IAC5B,MAAM,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,kBAAkB;IAC/B,MAAM,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,iBAAiB;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,qBAAqB,EAAE,qBAAqB,CAAC;CAChD;AAED;;GAEG;AACH,qBAAa,QAAS,SAAQ,OAAO,CAAC,OAAO;IAEzC;;OAEG;IACG,qBAAqB,CAAC,iBAAiB,EAAE,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC;IAmC/F;;;OAGG;IACG,aAAa,CAAC,iBAAiB,EAAE,iBAAiB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAO/J;;;OAGG;IACG,UAAU,CAAC,iBAAiB,EAAE,iBAAiB,EAAE,aAAa,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;IAKvI;;OAEG;IACG,oBAAoB,CAAC,iBAAiB,EAAE,gBAAgB,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"TasksApi.d.ts","sourceRoot":"","sources":["../../src/apis/TasksApi.ts"],"names":[],"mappings":"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"}
|
package/dist/apis/TasksApi.js
CHANGED
|
@@ -46,7 +46,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
46
46
|
};
|
|
47
47
|
})();
|
|
48
48
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49
|
-
exports.ListTasksFilterStatusEnum = exports.TasksApi = void 0;
|
|
49
|
+
exports.ListTasksSortEnum = exports.ListTasksFilterStatusEnum = exports.TasksApi = void 0;
|
|
50
50
|
const runtime = __importStar(require("../runtime"));
|
|
51
51
|
const index_1 = require("../models/index");
|
|
52
52
|
/**
|
|
@@ -104,6 +104,21 @@ class TasksApi extends runtime.BaseAPI {
|
|
|
104
104
|
if (requestParameters['filterStatus'] != null) {
|
|
105
105
|
queryParameters['filterStatus'] = requestParameters['filterStatus'];
|
|
106
106
|
}
|
|
107
|
+
if (requestParameters['filterConversationId'] != null) {
|
|
108
|
+
queryParameters['filterConversationId'] = requestParameters['filterConversationId'];
|
|
109
|
+
}
|
|
110
|
+
if (requestParameters['filterFamily'] != null) {
|
|
111
|
+
queryParameters['filterFamily'] = requestParameters['filterFamily'];
|
|
112
|
+
}
|
|
113
|
+
if (requestParameters['filterAuthorId'] != null) {
|
|
114
|
+
queryParameters['filterAuthorId'] = requestParameters['filterAuthorId'];
|
|
115
|
+
}
|
|
116
|
+
if (requestParameters['filterClaimedBy'] != null) {
|
|
117
|
+
queryParameters['filterClaimedBy'] = requestParameters['filterClaimedBy'];
|
|
118
|
+
}
|
|
119
|
+
if (requestParameters['sort'] != null) {
|
|
120
|
+
queryParameters['sort'] = requestParameters['sort'];
|
|
121
|
+
}
|
|
107
122
|
if (requestParameters['filterCreatedFrom'] != null) {
|
|
108
123
|
queryParameters['filterCreatedFrom'] = requestParameters['filterCreatedFrom'].toISOString();
|
|
109
124
|
}
|
|
@@ -145,7 +160,7 @@ class TasksApi extends runtime.BaseAPI {
|
|
|
145
160
|
};
|
|
146
161
|
}
|
|
147
162
|
/**
|
|
148
|
-
* Returns a collection of your account tasks. TENANT-scoped, not user-scoped: the list returns every task row in the tenant, including tasks another operator filed. This is the deliberate v1 shape (a shared team inbox); filter client-side on `route`/`kind` or on `relationships.author` if you need one operator\'s lane - there is no filterRoute, no filterKind and no filterAuthorId. ONE FILTER AT A TIME: `filterStatus` and the created/modified ranges each pick a different GSI, so combining any two is a hard 400 \"Only one filter can be used at the time\" (a from/to pair on the same axis counts as one). `filterStatus` takes exactly one value - repeating it does not OR the statuses. Both traditional (`pageNumber`) and cursor-based (`pageAfter`/`pageBefore`) pagination are supported, and the two styles cannot be combined.
|
|
163
|
+
* Returns a collection of your account tasks. TENANT-scoped, not user-scoped: the list returns every task row in the tenant, including tasks another operator filed. This is the deliberate v1 shape (a shared team inbox); filter client-side on `route`/`kind` or on `relationships.author` if you need one operator\'s lane - there is no filterRoute, no filterKind and no filterAuthorId. `filterConversationId` is the exception, and exists because counting one thread\'s tasks by paging the tenant\'s and filtering client-side works only while the tenant\'s tasks fit in the page. Tasks accumulate monotonically, so the day they stop fitting, a per-thread count silently drops to zero while the work is still there. Served by ConversationIdIndex off a scalar denormalised at create; a task with no thread is absent from the index rather than matching nothing. ONE FILTER AT A TIME: `filterStatus`, `filterConversationId` and the created/modified ranges each pick a different GSI, so combining any two is a hard 400 \"Only one filter can be used at the time\" (a from/to pair on the same axis counts as one). Narrow by thread and filter the handful of rows by status client-side. `filterStatus` takes exactly one value - repeating it does not OR the statuses. Both traditional (`pageNumber`) and cursor-based (`pageAfter`/`pageBefore`) pagination are supported, and the two styles cannot be combined.
|
|
149
164
|
* List Tasks
|
|
150
165
|
*/
|
|
151
166
|
async listTasksRaw(requestParameters, initOverrides) {
|
|
@@ -154,7 +169,7 @@ class TasksApi extends runtime.BaseAPI {
|
|
|
154
169
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.TasksSchemaFromJSON)(jsonValue));
|
|
155
170
|
}
|
|
156
171
|
/**
|
|
157
|
-
* Returns a collection of your account tasks. TENANT-scoped, not user-scoped: the list returns every task row in the tenant, including tasks another operator filed. This is the deliberate v1 shape (a shared team inbox); filter client-side on `route`/`kind` or on `relationships.author` if you need one operator\'s lane - there is no filterRoute, no filterKind and no filterAuthorId. ONE FILTER AT A TIME: `filterStatus` and the created/modified ranges each pick a different GSI, so combining any two is a hard 400 \"Only one filter can be used at the time\" (a from/to pair on the same axis counts as one). `filterStatus` takes exactly one value - repeating it does not OR the statuses. Both traditional (`pageNumber`) and cursor-based (`pageAfter`/`pageBefore`) pagination are supported, and the two styles cannot be combined.
|
|
172
|
+
* Returns a collection of your account tasks. TENANT-scoped, not user-scoped: the list returns every task row in the tenant, including tasks another operator filed. This is the deliberate v1 shape (a shared team inbox); filter client-side on `route`/`kind` or on `relationships.author` if you need one operator\'s lane - there is no filterRoute, no filterKind and no filterAuthorId. `filterConversationId` is the exception, and exists because counting one thread\'s tasks by paging the tenant\'s and filtering client-side works only while the tenant\'s tasks fit in the page. Tasks accumulate monotonically, so the day they stop fitting, a per-thread count silently drops to zero while the work is still there. Served by ConversationIdIndex off a scalar denormalised at create; a task with no thread is absent from the index rather than matching nothing. ONE FILTER AT A TIME: `filterStatus`, `filterConversationId` and the created/modified ranges each pick a different GSI, so combining any two is a hard 400 \"Only one filter can be used at the time\" (a from/to pair on the same axis counts as one). Narrow by thread and filter the handful of rows by status client-side. `filterStatus` takes exactly one value - repeating it does not OR the statuses. Both traditional (`pageNumber`) and cursor-based (`pageAfter`/`pageBefore`) pagination are supported, and the two styles cannot be combined.
|
|
158
173
|
* List Tasks
|
|
159
174
|
*/
|
|
160
175
|
async listTasks(requestParameters = {}, initOverrides) {
|
|
@@ -329,4 +344,13 @@ exports.ListTasksFilterStatusEnum = {
|
|
|
329
344
|
Failed: 'failed',
|
|
330
345
|
Done: 'done'
|
|
331
346
|
};
|
|
347
|
+
/**
|
|
348
|
+
* @export
|
|
349
|
+
*/
|
|
350
|
+
exports.ListTasksSortEnum = {
|
|
351
|
+
Created: 'created',
|
|
352
|
+
Created2: '-created',
|
|
353
|
+
Modified: 'modified',
|
|
354
|
+
Modified2: '-modified'
|
|
355
|
+
};
|
|
332
356
|
//# sourceMappingURL=TasksApi.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TasksApi.js","sourceRoot":"","sources":["../../src/apis/TasksApi.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGH,oDAAsC;AAQtC,2CAWyB;
|
|
1
|
+
{"version":3,"file":"TasksApi.js","sourceRoot":"","sources":["../../src/apis/TasksApi.ts"],"names":[],"mappings":"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"}
|
|
@@ -23,11 +23,17 @@ export interface TaskAttributesSchema {
|
|
|
23
23
|
*/
|
|
24
24
|
route?: string | null;
|
|
25
25
|
/**
|
|
26
|
-
* Free-form task kind label (e.g. email_reply). Not a filter: the list door
|
|
26
|
+
* Free-form task kind label (e.g. email_reply). Not a filter: the list door filters by status, thread, route family (filterFamily), author and claim - never by kind.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof TaskAttributesSchema
|
|
29
29
|
*/
|
|
30
30
|
kind?: string | null;
|
|
31
|
+
/**
|
|
32
|
+
* Recops board (2026-09-02): the deadline for a HUMAN to act on this task (not the sending moment of a draft - that is meta.scheduledFor). Optional; written by the client (PATCH, `null` clears) and, later, by the flows that file decision tasks. Accepted as ISO 8601 with an offset or Z (a naive value is read as UTC), always returned as UTC with Z. A moment in the past is allowed - it means "already overdue". Not indexed: overdue is computed on the page.
|
|
33
|
+
* @type {Date}
|
|
34
|
+
* @memberof TaskAttributesSchema
|
|
35
|
+
*/
|
|
36
|
+
dueAt?: Date | null;
|
|
31
37
|
/**
|
|
32
38
|
* Multilingual task content keyed by language code
|
|
33
39
|
* @type {{ [key: string]: any; }}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TaskAttributesSchema.d.ts","sourceRoot":"","sources":["../../src/models/TaskAttributesSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAQ3E;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAClC;;;;OAIG;IACH,MAAM,CAAC,EAAE,8BAA8B,CAAC;IACxC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB;;;;OAIG;IACH,IAAI,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAC/B;;;;OAIG;IACH,UAAU,CAAC,EAAE,wBAAwB,CAAC;CACzC;AAGD;;GAEG;AACH,eAAO,MAAM,8BAA8B;;;;;;;;;CASjC,CAAC;AACX,MAAM,MAAM,8BAA8B,GAAG,OAAO,8BAA8B,CAAC,MAAM,OAAO,8BAA8B,CAAC,CAAC;AAGhI;;GAEG;AACH,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,oBAAoB,CAE3F;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE5E;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,
|
|
1
|
+
{"version":3,"file":"TaskAttributesSchema.d.ts","sourceRoot":"","sources":["../../src/models/TaskAttributesSchema.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAQ3E;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,KAAK,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACpB;;;;OAIG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAClC;;;;OAIG;IACH,MAAM,CAAC,EAAE,8BAA8B,CAAC;IACxC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB;;;;OAIG;IACH,IAAI,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KAAE,CAAC;IAC/B;;;;OAIG;IACH,UAAU,CAAC,EAAE,wBAAwB,CAAC;CACzC;AAGD;;GAEG;AACH,eAAO,MAAM,8BAA8B;;;;;;;;;CASjC,CAAC;AACX,MAAM,MAAM,8BAA8B,GAAG,OAAO,8BAA8B,CAAC,MAAM,OAAO,8BAA8B,CAAC,CAAC;AAGhI;;GAEG;AACH,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,oBAAoB,CAE3F;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE5E;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,CAiB/G;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE1E;AAED,wBAAgB,+BAA+B,CAAC,KAAK,CAAC,EAAE,oBAAoB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAkB9H"}
|
|
@@ -49,6 +49,7 @@ function TaskAttributesSchemaFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
49
49
|
return {
|
|
50
50
|
'route': json['route'] == null ? undefined : json['route'],
|
|
51
51
|
'kind': json['kind'] == null ? undefined : json['kind'],
|
|
52
|
+
'dueAt': json['dueAt'] == null ? undefined : (new Date(json['dueAt'])),
|
|
52
53
|
'content': json['content'] == null ? undefined : json['content'],
|
|
53
54
|
'context': json['context'] == null ? undefined : json['context'],
|
|
54
55
|
'status': json['status'] == null ? undefined : json['status'],
|
|
@@ -68,6 +69,7 @@ function TaskAttributesSchemaToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
68
69
|
return {
|
|
69
70
|
'route': value['route'],
|
|
70
71
|
'kind': value['kind'],
|
|
72
|
+
'dueAt': value['dueAt'] == null ? value['dueAt'] : value['dueAt'].toISOString(),
|
|
71
73
|
'content': value['content'],
|
|
72
74
|
'context': value['context'],
|
|
73
75
|
'status': value['status'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TaskAttributesSchema.js","sourceRoot":"","sources":["../../src/models/TaskAttributesSchema.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;;
|
|
1
|
+
{"version":3,"file":"TaskAttributesSchema.js","sourceRoot":"","sources":["../../src/models/TaskAttributesSchema.ts"],"names":[],"mappings":"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"}
|