@wix/auto_sdk_crm_tasks 1.0.2 → 1.0.4
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/build/cjs/src/crm-tasks-v2-task-tasks.context.d.ts +2 -2
- package/build/cjs/src/crm-tasks-v2-task-tasks.context.js +2 -2
- package/build/cjs/src/crm-tasks-v2-task-tasks.context.js.map +1 -1
- package/build/cjs/src/crm-tasks-v2-task-tasks.types.d.ts +120 -42
- package/build/cjs/src/crm-tasks-v2-task-tasks.types.js +7 -7
- package/build/cjs/src/crm-tasks-v2-task-tasks.types.js.map +1 -1
- package/build/cjs/src/crm-tasks-v2-task-tasks.universal.d.ts +140 -46
- package/build/cjs/src/crm-tasks-v2-task-tasks.universal.js +7 -7
- package/build/cjs/src/crm-tasks-v2-task-tasks.universal.js.map +1 -1
- package/build/es/src/crm-tasks-v2-task-tasks.context.d.ts +2 -2
- package/build/es/src/crm-tasks-v2-task-tasks.context.js +1 -1
- package/build/es/src/crm-tasks-v2-task-tasks.context.js.map +1 -1
- package/build/es/src/crm-tasks-v2-task-tasks.types.d.ts +120 -42
- package/build/es/src/crm-tasks-v2-task-tasks.types.js +6 -6
- package/build/es/src/crm-tasks-v2-task-tasks.types.js.map +1 -1
- package/build/es/src/crm-tasks-v2-task-tasks.universal.d.ts +140 -46
- package/build/es/src/crm-tasks-v2-task-tasks.universal.js +6 -6
- package/build/es/src/crm-tasks-v2-task-tasks.universal.js.map +1 -1
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.context.d.ts +2 -2
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.context.js +2 -2
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.context.js.map +1 -1
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.types.d.ts +120 -42
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.types.js +7 -7
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.types.js.map +1 -1
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.universal.d.ts +140 -46
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.universal.js +7 -7
- package/build/internal/cjs/src/crm-tasks-v2-task-tasks.universal.js.map +1 -1
- package/build/internal/es/src/crm-tasks-v2-task-tasks.context.d.ts +2 -2
- package/build/internal/es/src/crm-tasks-v2-task-tasks.context.js +1 -1
- package/build/internal/es/src/crm-tasks-v2-task-tasks.context.js.map +1 -1
- package/build/internal/es/src/crm-tasks-v2-task-tasks.types.d.ts +120 -42
- package/build/internal/es/src/crm-tasks-v2-task-tasks.types.js +6 -6
- package/build/internal/es/src/crm-tasks-v2-task-tasks.types.js.map +1 -1
- package/build/internal/es/src/crm-tasks-v2-task-tasks.universal.d.ts +140 -46
- package/build/internal/es/src/crm-tasks-v2-task-tasks.universal.js +6 -6
- package/build/internal/es/src/crm-tasks-v2-task-tasks.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export interface Task {
|
|
2
2
|
/**
|
|
3
3
|
* Task ID.
|
|
4
|
+
* @format GUID
|
|
4
5
|
* @readonly
|
|
5
6
|
*/
|
|
6
7
|
_id?: string | null;
|
|
@@ -9,9 +10,17 @@ export interface Task {
|
|
|
9
10
|
* @readonly
|
|
10
11
|
*/
|
|
11
12
|
revision?: string | null;
|
|
12
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* Title of the task.
|
|
15
|
+
* @minLength 1
|
|
16
|
+
* @maxLength 250
|
|
17
|
+
*/
|
|
13
18
|
title?: string | null;
|
|
14
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* Description of the task.
|
|
21
|
+
* @minLength 1
|
|
22
|
+
* @maxLength 500
|
|
23
|
+
*/
|
|
15
24
|
description?: string | null;
|
|
16
25
|
/**
|
|
17
26
|
* Date and time the task was created.
|
|
@@ -51,11 +60,13 @@ export interface TaskSource {
|
|
|
51
60
|
sourceType?: SourceType;
|
|
52
61
|
/**
|
|
53
62
|
* App ID, if the task was created by an app.
|
|
63
|
+
* @format GUID
|
|
54
64
|
* @readonly
|
|
55
65
|
*/
|
|
56
66
|
appId?: string | null;
|
|
57
67
|
/**
|
|
58
68
|
* User ID, if the task was created by a Wix user.
|
|
69
|
+
* @format GUID
|
|
59
70
|
* @readonly
|
|
60
71
|
*/
|
|
61
72
|
userId?: string | null;
|
|
@@ -68,7 +79,10 @@ export declare enum SourceType {
|
|
|
68
79
|
USER = "USER"
|
|
69
80
|
}
|
|
70
81
|
export interface ContactInfo {
|
|
71
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* ID of the contact associated with the task.
|
|
84
|
+
* @format GUID
|
|
85
|
+
*/
|
|
72
86
|
_id?: string | null;
|
|
73
87
|
/**
|
|
74
88
|
* Contact's first name.
|
|
@@ -96,29 +110,11 @@ export interface ContactInfo {
|
|
|
96
110
|
*/
|
|
97
111
|
phone?: string | null;
|
|
98
112
|
}
|
|
99
|
-
export interface DeleteCompletedTasksRequest {
|
|
100
|
-
/** Optional list of tasks ids of the tasks to delete. If the list is not provided the filter is used. */
|
|
101
|
-
taskIds?: string[];
|
|
102
|
-
/** An optional filter of tasks to count. See 'queryTasks' for supported filter options. */
|
|
103
|
-
filter?: Record<string, any> | null;
|
|
104
|
-
}
|
|
105
|
-
export interface DeleteCompletedTasksResponse {
|
|
106
|
-
}
|
|
107
|
-
export interface SendTasksReminderRequest {
|
|
108
|
-
/** Ids of the tasks to remind */
|
|
109
|
-
taskIds?: string[];
|
|
110
|
-
/** The reminder type */
|
|
111
|
-
reminderType?: ReminderType;
|
|
112
|
-
}
|
|
113
|
-
export declare enum ReminderType {
|
|
114
|
-
UNKNOWN_REMINDER_TYPE = "UNKNOWN_REMINDER_TYPE",
|
|
115
|
-
FIRST_REMINDER = "FIRST_REMINDER",
|
|
116
|
-
LAST_REMINDER = "LAST_REMINDER"
|
|
117
|
-
}
|
|
118
|
-
export interface SendTasksReminderResponse {
|
|
119
|
-
}
|
|
120
113
|
export interface RepositionTask {
|
|
121
|
-
/**
|
|
114
|
+
/**
|
|
115
|
+
* The id of the last task that was re-positioned
|
|
116
|
+
* @format GUID
|
|
117
|
+
*/
|
|
122
118
|
taskId?: string | null;
|
|
123
119
|
/** The position of the last task that was re-positioned */
|
|
124
120
|
position?: string | null;
|
|
@@ -128,7 +124,10 @@ export interface TaskOverdue {
|
|
|
128
124
|
task?: Task;
|
|
129
125
|
}
|
|
130
126
|
export interface TaskAssigned {
|
|
131
|
-
/**
|
|
127
|
+
/**
|
|
128
|
+
* The id of the assignee
|
|
129
|
+
* @format GUID
|
|
130
|
+
*/
|
|
132
131
|
assigneeId?: string;
|
|
133
132
|
/** The task that was assigned */
|
|
134
133
|
task?: Task;
|
|
@@ -142,10 +141,14 @@ export interface CreateTaskResponse {
|
|
|
142
141
|
task?: Task;
|
|
143
142
|
}
|
|
144
143
|
export interface ContactNotFoundError {
|
|
144
|
+
/** @format GUID */
|
|
145
145
|
contactId?: string;
|
|
146
146
|
}
|
|
147
147
|
export interface GetTaskRequest {
|
|
148
|
-
/**
|
|
148
|
+
/**
|
|
149
|
+
* ID of the task to retrieve.
|
|
150
|
+
* @format GUID
|
|
151
|
+
*/
|
|
149
152
|
taskId: string;
|
|
150
153
|
}
|
|
151
154
|
export interface GetTaskResponse {
|
|
@@ -161,7 +164,10 @@ export interface UpdateTaskResponse {
|
|
|
161
164
|
task?: Task;
|
|
162
165
|
}
|
|
163
166
|
export interface DeleteTaskRequest {
|
|
164
|
-
/**
|
|
167
|
+
/**
|
|
168
|
+
* ID of the task to delete.
|
|
169
|
+
* @format GUID
|
|
170
|
+
*/
|
|
165
171
|
taskId: string;
|
|
166
172
|
}
|
|
167
173
|
export interface DeleteTaskResponse {
|
|
@@ -206,7 +212,10 @@ export declare enum SortOrder {
|
|
|
206
212
|
DESC = "DESC"
|
|
207
213
|
}
|
|
208
214
|
export interface CursorPaging {
|
|
209
|
-
/**
|
|
215
|
+
/**
|
|
216
|
+
* Number of items to load.
|
|
217
|
+
* @max 1000
|
|
218
|
+
*/
|
|
210
219
|
limit?: number | null;
|
|
211
220
|
/**
|
|
212
221
|
* Pointer to the next or previous page in the list of results.
|
|
@@ -296,7 +305,10 @@ export interface QueryV2PagingMethodOneOf {
|
|
|
296
305
|
cursorPaging?: CursorPaging;
|
|
297
306
|
}
|
|
298
307
|
export interface Paging {
|
|
299
|
-
/**
|
|
308
|
+
/**
|
|
309
|
+
* Number of items to load.
|
|
310
|
+
* @max 1000
|
|
311
|
+
*/
|
|
300
312
|
limit?: number | null;
|
|
301
313
|
/** Number of items to skip in the current sort order. */
|
|
302
314
|
offset?: number | null;
|
|
@@ -320,18 +332,25 @@ export interface PagingMetadataV2 {
|
|
|
320
332
|
cursors?: Cursors;
|
|
321
333
|
}
|
|
322
334
|
export interface MoveTaskAfterRequest {
|
|
323
|
-
/**
|
|
335
|
+
/**
|
|
336
|
+
* ID of the task to move.
|
|
337
|
+
* @format GUID
|
|
338
|
+
*/
|
|
324
339
|
taskId: string;
|
|
325
340
|
/**
|
|
326
341
|
* The ID of the task after which the moved task is positioned in the task display.
|
|
327
342
|
* If `beforeTaskId` is not specified, the moved task is positioned first in the task display.
|
|
343
|
+
* @format GUID
|
|
328
344
|
*/
|
|
329
345
|
beforeTaskId?: string | null;
|
|
330
346
|
}
|
|
331
347
|
export interface MoveTaskAfterResponse {
|
|
332
348
|
}
|
|
333
349
|
export interface TaskNotFoundError {
|
|
334
|
-
/**
|
|
350
|
+
/**
|
|
351
|
+
* The task id that was not found
|
|
352
|
+
* @format GUID
|
|
353
|
+
*/
|
|
335
354
|
taskId?: string;
|
|
336
355
|
}
|
|
337
356
|
export interface Empty {
|
|
@@ -407,9 +426,15 @@ export interface ActionEvent {
|
|
|
407
426
|
body?: string;
|
|
408
427
|
}
|
|
409
428
|
export interface MessageEnvelope {
|
|
410
|
-
/**
|
|
429
|
+
/**
|
|
430
|
+
* App instance ID.
|
|
431
|
+
* @format GUID
|
|
432
|
+
*/
|
|
411
433
|
instanceId?: string | null;
|
|
412
|
-
/**
|
|
434
|
+
/**
|
|
435
|
+
* Event type.
|
|
436
|
+
* @maxLength 150
|
|
437
|
+
*/
|
|
413
438
|
eventType?: string;
|
|
414
439
|
/** The identification type and identity data. */
|
|
415
440
|
identity?: IdentificationData;
|
|
@@ -417,26 +442,50 @@ export interface MessageEnvelope {
|
|
|
417
442
|
data?: string;
|
|
418
443
|
}
|
|
419
444
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
420
|
-
/**
|
|
445
|
+
/**
|
|
446
|
+
* ID of a site visitor that has not logged in to the site.
|
|
447
|
+
* @format GUID
|
|
448
|
+
*/
|
|
421
449
|
anonymousVisitorId?: string;
|
|
422
|
-
/**
|
|
450
|
+
/**
|
|
451
|
+
* ID of a site visitor that has logged in to the site.
|
|
452
|
+
* @format GUID
|
|
453
|
+
*/
|
|
423
454
|
memberId?: string;
|
|
424
|
-
/**
|
|
455
|
+
/**
|
|
456
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
457
|
+
* @format GUID
|
|
458
|
+
*/
|
|
425
459
|
wixUserId?: string;
|
|
426
|
-
/**
|
|
460
|
+
/**
|
|
461
|
+
* ID of an app.
|
|
462
|
+
* @format GUID
|
|
463
|
+
*/
|
|
427
464
|
appId?: string;
|
|
428
465
|
/** @readonly */
|
|
429
466
|
identityType?: WebhookIdentityType;
|
|
430
467
|
}
|
|
431
468
|
/** @oneof */
|
|
432
469
|
export interface IdentificationDataIdOneOf {
|
|
433
|
-
/**
|
|
470
|
+
/**
|
|
471
|
+
* ID of a site visitor that has not logged in to the site.
|
|
472
|
+
* @format GUID
|
|
473
|
+
*/
|
|
434
474
|
anonymousVisitorId?: string;
|
|
435
|
-
/**
|
|
475
|
+
/**
|
|
476
|
+
* ID of a site visitor that has logged in to the site.
|
|
477
|
+
* @format GUID
|
|
478
|
+
*/
|
|
436
479
|
memberId?: string;
|
|
437
|
-
/**
|
|
480
|
+
/**
|
|
481
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
482
|
+
* @format GUID
|
|
483
|
+
*/
|
|
438
484
|
wixUserId?: string;
|
|
439
|
-
/**
|
|
485
|
+
/**
|
|
486
|
+
* ID of an app.
|
|
487
|
+
* @format GUID
|
|
488
|
+
*/
|
|
440
489
|
appId?: string;
|
|
441
490
|
}
|
|
442
491
|
export declare enum WebhookIdentityType {
|
|
@@ -446,6 +495,35 @@ export declare enum WebhookIdentityType {
|
|
|
446
495
|
WIX_USER = "WIX_USER",
|
|
447
496
|
APP = "APP"
|
|
448
497
|
}
|
|
498
|
+
export interface DeleteCompletedTasksRequest {
|
|
499
|
+
/**
|
|
500
|
+
* Optional list of tasks ids of the tasks to delete. If the list is not provided the filter is used.
|
|
501
|
+
* @format GUID
|
|
502
|
+
* @maxSize 1000
|
|
503
|
+
*/
|
|
504
|
+
taskIds?: string[];
|
|
505
|
+
/** An optional filter of tasks to count. See 'queryTasks' for supported filter options. */
|
|
506
|
+
filter?: Record<string, any> | null;
|
|
507
|
+
}
|
|
508
|
+
export interface DeleteCompletedTasksResponse {
|
|
509
|
+
}
|
|
510
|
+
export interface SendTasksReminderRequest {
|
|
511
|
+
/**
|
|
512
|
+
* Ids of the tasks to remind
|
|
513
|
+
* @format GUID
|
|
514
|
+
* @maxSize 50
|
|
515
|
+
*/
|
|
516
|
+
taskIds?: string[];
|
|
517
|
+
/** The reminder type */
|
|
518
|
+
reminderType?: ReminderType;
|
|
519
|
+
}
|
|
520
|
+
export declare enum ReminderType {
|
|
521
|
+
UNKNOWN_REMINDER_TYPE = "UNKNOWN_REMINDER_TYPE",
|
|
522
|
+
FIRST_REMINDER = "FIRST_REMINDER",
|
|
523
|
+
LAST_REMINDER = "LAST_REMINDER"
|
|
524
|
+
}
|
|
525
|
+
export interface SendTasksReminderResponse {
|
|
526
|
+
}
|
|
449
527
|
interface TaskSourceNonNullableFields {
|
|
450
528
|
sourceType: SourceType;
|
|
451
529
|
}
|
|
@@ -469,9 +547,15 @@ export interface CountTasksResponseNonNullableFields {
|
|
|
469
547
|
count: number;
|
|
470
548
|
}
|
|
471
549
|
export interface BaseEventMetadata {
|
|
472
|
-
/**
|
|
550
|
+
/**
|
|
551
|
+
* App instance ID.
|
|
552
|
+
* @format GUID
|
|
553
|
+
*/
|
|
473
554
|
instanceId?: string | null;
|
|
474
|
-
/**
|
|
555
|
+
/**
|
|
556
|
+
* Event type.
|
|
557
|
+
* @maxLength 150
|
|
558
|
+
*/
|
|
475
559
|
eventType?: string;
|
|
476
560
|
/** The identification type and identity data. */
|
|
477
561
|
identity?: IdentificationData;
|
|
@@ -633,6 +717,7 @@ export declare function updateTask(_id: string | null, task: UpdateTask): Promis
|
|
|
633
717
|
export interface UpdateTask {
|
|
634
718
|
/**
|
|
635
719
|
* Task ID.
|
|
720
|
+
* @format GUID
|
|
636
721
|
* @readonly
|
|
637
722
|
*/
|
|
638
723
|
_id?: string | null;
|
|
@@ -641,9 +726,17 @@ export interface UpdateTask {
|
|
|
641
726
|
* @readonly
|
|
642
727
|
*/
|
|
643
728
|
revision?: string | null;
|
|
644
|
-
/**
|
|
729
|
+
/**
|
|
730
|
+
* Title of the task.
|
|
731
|
+
* @minLength 1
|
|
732
|
+
* @maxLength 250
|
|
733
|
+
*/
|
|
645
734
|
title?: string | null;
|
|
646
|
-
/**
|
|
735
|
+
/**
|
|
736
|
+
* Description of the task.
|
|
737
|
+
* @minLength 1
|
|
738
|
+
* @maxLength 500
|
|
739
|
+
*/
|
|
647
740
|
description?: string | null;
|
|
648
741
|
/**
|
|
649
742
|
* Date and time the task was created.
|
|
@@ -806,6 +899,7 @@ export interface MoveTaskAfterOptions {
|
|
|
806
899
|
/**
|
|
807
900
|
* The ID of the task after which the moved task is positioned in the task display.
|
|
808
901
|
* If `beforeTaskId` is not specified, the moved task is positioned first in the task display.
|
|
902
|
+
* @format GUID
|
|
809
903
|
*/
|
|
810
904
|
beforeTaskId?: string | null;
|
|
811
905
|
}
|
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.moveTaskAfter = exports.countTasks = exports.queryTasks = exports.deleteTask = exports.updateTask = exports.getTask = exports.createTask = exports.
|
|
26
|
+
exports.moveTaskAfter = exports.countTasks = exports.queryTasks = exports.deleteTask = exports.updateTask = exports.getTask = exports.createTask = exports.ReminderType = exports.WebhookIdentityType = exports.SortOrder = exports.SourceType = exports.TaskStatus = void 0;
|
|
27
27
|
const transform_error_1 = require("@wix/sdk-runtime/transform-error");
|
|
28
28
|
const query_builder_1 = require("@wix/sdk-runtime/query-builder");
|
|
29
29
|
const rename_all_nested_keys_1 = require("@wix/sdk-runtime/rename-all-nested-keys");
|
|
@@ -44,12 +44,6 @@ var SourceType;
|
|
|
44
44
|
/** Task was created by a Wix user. */
|
|
45
45
|
SourceType["USER"] = "USER";
|
|
46
46
|
})(SourceType || (exports.SourceType = SourceType = {}));
|
|
47
|
-
var ReminderType;
|
|
48
|
-
(function (ReminderType) {
|
|
49
|
-
ReminderType["UNKNOWN_REMINDER_TYPE"] = "UNKNOWN_REMINDER_TYPE";
|
|
50
|
-
ReminderType["FIRST_REMINDER"] = "FIRST_REMINDER";
|
|
51
|
-
ReminderType["LAST_REMINDER"] = "LAST_REMINDER";
|
|
52
|
-
})(ReminderType || (exports.ReminderType = ReminderType = {}));
|
|
53
47
|
var SortOrder;
|
|
54
48
|
(function (SortOrder) {
|
|
55
49
|
/** Sort by ascending order. */
|
|
@@ -65,6 +59,12 @@ var WebhookIdentityType;
|
|
|
65
59
|
WebhookIdentityType["WIX_USER"] = "WIX_USER";
|
|
66
60
|
WebhookIdentityType["APP"] = "APP";
|
|
67
61
|
})(WebhookIdentityType || (exports.WebhookIdentityType = WebhookIdentityType = {}));
|
|
62
|
+
var ReminderType;
|
|
63
|
+
(function (ReminderType) {
|
|
64
|
+
ReminderType["UNKNOWN_REMINDER_TYPE"] = "UNKNOWN_REMINDER_TYPE";
|
|
65
|
+
ReminderType["FIRST_REMINDER"] = "FIRST_REMINDER";
|
|
66
|
+
ReminderType["LAST_REMINDER"] = "LAST_REMINDER";
|
|
67
|
+
})(ReminderType || (exports.ReminderType = ReminderType = {}));
|
|
68
68
|
/**
|
|
69
69
|
* Creates a new task.
|
|
70
70
|
* @param task - Task to create.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crm-tasks-v2-task-tasks.universal.js","sourceRoot":"","sources":["../../../src/crm-tasks-v2-task-tasks.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,+FAAiF;
|
|
1
|
+
{"version":3,"file":"crm-tasks-v2-task-tasks.universal.js","sourceRoot":"","sources":["../../../src/crm-tasks-v2-task-tasks.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -28,5 +28,5 @@ export declare const onTaskOverdue: ReturnType<typeof createEventModule<typeof p
|
|
|
28
28
|
* Triggered when a task is updated.
|
|
29
29
|
*/
|
|
30
30
|
export declare const onTaskUpdated: ReturnType<typeof createEventModule<typeof publicOnTaskUpdated>>;
|
|
31
|
-
export { TaskStatus, SourceType,
|
|
32
|
-
export { Task, TaskSource, ContactInfo,
|
|
31
|
+
export { TaskStatus, SourceType, SortOrder, WebhookIdentityType, ReminderType, } from './crm-tasks-v2-task-tasks.universal.js';
|
|
32
|
+
export { Task, TaskSource, ContactInfo, RepositionTask, TaskOverdue, TaskAssigned, CreateTaskRequest, CreateTaskResponse, ContactNotFoundError, GetTaskRequest, GetTaskResponse, UpdateTaskRequest, UpdateTaskResponse, DeleteTaskRequest, DeleteTaskResponse, QueryTasksRequest, CursorQuery, CursorQueryPagingMethodOneOf, Sorting, CursorPaging, QueryTasksResponse, CursorPagingMetadata, Cursors, CountTasksRequest, CountTasksResponse, QueryTasksInternalRequest, QueryV2, QueryV2PagingMethodOneOf, Paging, QueryTasksInternalResponse, PagingMetadataV2, MoveTaskAfterRequest, MoveTaskAfterResponse, TaskNotFoundError, Empty, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, RestoreInfo, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, MessageEnvelope, IdentificationData, IdentificationDataIdOneOf, DeleteCompletedTasksRequest, DeleteCompletedTasksResponse, SendTasksReminderRequest, SendTasksReminderResponse, TaskNonNullableFields, CreateTaskResponseNonNullableFields, GetTaskResponseNonNullableFields, UpdateTaskResponseNonNullableFields, QueryTasksResponseNonNullableFields, CountTasksResponseNonNullableFields, BaseEventMetadata, EventMetadata, TaskCreatedEnvelope, TaskDeletedEnvelope, TaskOverdueEnvelope, TaskUpdatedEnvelope, UpdateTask, TasksQueryResult, TasksQueryBuilder, CountTasksOptions, MoveTaskAfterOptions, } from './crm-tasks-v2-task-tasks.universal.js';
|
|
@@ -28,5 +28,5 @@ export const onTaskOverdue = createEventModule(publicOnTaskOverdue);
|
|
|
28
28
|
* Triggered when a task is updated.
|
|
29
29
|
*/
|
|
30
30
|
export const onTaskUpdated = createEventModule(publicOnTaskUpdated);
|
|
31
|
-
export { TaskStatus, SourceType,
|
|
31
|
+
export { TaskStatus, SourceType, SortOrder, WebhookIdentityType, ReminderType, } from './crm-tasks-v2-task-tasks.universal.js';
|
|
32
32
|
//# sourceMappingURL=crm-tasks-v2-task-tasks.context.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crm-tasks-v2-task-tasks.context.js","sourceRoot":"","sources":["../../../src/crm-tasks-v2-task-tasks.context.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,IAAI,gBAAgB,EAC9B,OAAO,IAAI,aAAa,EACxB,UAAU,IAAI,gBAAgB,EAC9B,UAAU,IAAI,gBAAgB,EAC9B,UAAU,IAAI,gBAAgB,EAC9B,UAAU,IAAI,gBAAgB,EAC9B,aAAa,IAAI,mBAAmB,GACrC,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAA2C,CAAC;AAE9E,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC3F,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC3F,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC3F,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE3F,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,OAAO,GAEhB,aAAa,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;AAClD,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,aAAa,GAEtB,aAAa,CAAC,gBAAgB,CAAC,mBAAmB,CAAC,CAAC;AACxD;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAEtB,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;AAC3C;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAEtB,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;AAC3C;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAEtB,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;AAC3C;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAEtB,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;AAE3C,OAAO,EACL,UAAU,EACV,UAAU,EACV,
|
|
1
|
+
{"version":3,"file":"crm-tasks-v2-task-tasks.context.js","sourceRoot":"","sources":["../../../src/crm-tasks-v2-task-tasks.context.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,IAAI,gBAAgB,EAC9B,OAAO,IAAI,aAAa,EACxB,UAAU,IAAI,gBAAgB,EAC9B,UAAU,IAAI,gBAAgB,EAC9B,UAAU,IAAI,gBAAgB,EAC9B,UAAU,IAAI,gBAAgB,EAC9B,aAAa,IAAI,mBAAmB,GACrC,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAA2C,CAAC;AAE9E,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC3F,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC3F,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC3F,OAAO,EAAE,aAAa,IAAI,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE3F,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,OAAO,GAEhB,aAAa,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC;AAClD,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAEnB,aAAa,CAAC,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;AACrD,MAAM,CAAC,MAAM,aAAa,GAEtB,aAAa,CAAC,gBAAgB,CAAC,mBAAmB,CAAC,CAAC;AACxD;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAEtB,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;AAC3C;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAEtB,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;AAC3C;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAEtB,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;AAC3C;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAEtB,iBAAiB,CAAC,mBAAmB,CAAC,CAAC;AAE3C,OAAO,EACL,UAAU,EACV,UAAU,EACV,SAAS,EACT,mBAAmB,EACnB,YAAY,GACb,MAAM,wCAAwC,CAAC"}
|