@wix/auto_sdk_crm_tasks 1.0.3 → 1.0.5

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.
@@ -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
- /** Title of the task. */
13
+ /**
14
+ * Title of the task.
15
+ * @minLength 1
16
+ * @maxLength 250
17
+ */
13
18
  title?: string | null;
14
- /** Description of the task. */
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
- /** ID of the contact associated with the task. */
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.
@@ -97,7 +111,10 @@ export interface ContactInfo {
97
111
  phone?: string | null;
98
112
  }
99
113
  export interface RepositionTask {
100
- /** The id of the last task that was re-positioned */
114
+ /**
115
+ * The id of the last task that was re-positioned
116
+ * @format GUID
117
+ */
101
118
  taskId?: string | null;
102
119
  /** The position of the last task that was re-positioned */
103
120
  position?: string | null;
@@ -107,7 +124,10 @@ export interface TaskOverdue {
107
124
  task?: Task;
108
125
  }
109
126
  export interface TaskAssigned {
110
- /** The id of the assignee */
127
+ /**
128
+ * The id of the assignee
129
+ * @format GUID
130
+ */
111
131
  assigneeId?: string;
112
132
  /** The task that was assigned */
113
133
  task?: Task;
@@ -121,10 +141,14 @@ export interface CreateTaskResponse {
121
141
  task?: Task;
122
142
  }
123
143
  export interface ContactNotFoundError {
144
+ /** @format GUID */
124
145
  contactId?: string;
125
146
  }
126
147
  export interface GetTaskRequest {
127
- /** ID of the task to retrieve. */
148
+ /**
149
+ * ID of the task to retrieve.
150
+ * @format GUID
151
+ */
128
152
  taskId: string;
129
153
  }
130
154
  export interface GetTaskResponse {
@@ -140,7 +164,10 @@ export interface UpdateTaskResponse {
140
164
  task?: Task;
141
165
  }
142
166
  export interface DeleteTaskRequest {
143
- /** ID of the task to delete. */
167
+ /**
168
+ * ID of the task to delete.
169
+ * @format GUID
170
+ */
144
171
  taskId: string;
145
172
  }
146
173
  export interface DeleteTaskResponse {
@@ -185,7 +212,10 @@ export declare enum SortOrder {
185
212
  DESC = "DESC"
186
213
  }
187
214
  export interface CursorPaging {
188
- /** Number of items to load. */
215
+ /**
216
+ * Number of items to load.
217
+ * @max 1000
218
+ */
189
219
  limit?: number | null;
190
220
  /**
191
221
  * Pointer to the next or previous page in the list of results.
@@ -275,7 +305,10 @@ export interface QueryV2PagingMethodOneOf {
275
305
  cursorPaging?: CursorPaging;
276
306
  }
277
307
  export interface Paging {
278
- /** Number of items to load. */
308
+ /**
309
+ * Number of items to load.
310
+ * @max 1000
311
+ */
279
312
  limit?: number | null;
280
313
  /** Number of items to skip in the current sort order. */
281
314
  offset?: number | null;
@@ -299,18 +332,25 @@ export interface PagingMetadataV2 {
299
332
  cursors?: Cursors;
300
333
  }
301
334
  export interface MoveTaskAfterRequest {
302
- /** ID of the task to move. */
335
+ /**
336
+ * ID of the task to move.
337
+ * @format GUID
338
+ */
303
339
  taskId: string;
304
340
  /**
305
341
  * The ID of the task after which the moved task is positioned in the task display.
306
342
  * If `beforeTaskId` is not specified, the moved task is positioned first in the task display.
343
+ * @format GUID
307
344
  */
308
345
  beforeTaskId?: string | null;
309
346
  }
310
347
  export interface MoveTaskAfterResponse {
311
348
  }
312
349
  export interface TaskNotFoundError {
313
- /** The task id that was not found */
350
+ /**
351
+ * The task id that was not found
352
+ * @format GUID
353
+ */
314
354
  taskId?: string;
315
355
  }
316
356
  export interface Empty {
@@ -388,9 +428,15 @@ export interface ActionEvent {
388
428
  bodyAsJson?: string;
389
429
  }
390
430
  export interface MessageEnvelope {
391
- /** App instance ID. */
431
+ /**
432
+ * App instance ID.
433
+ * @format GUID
434
+ */
392
435
  instanceId?: string | null;
393
- /** Event type. */
436
+ /**
437
+ * Event type.
438
+ * @maxLength 150
439
+ */
394
440
  eventType?: string;
395
441
  /** The identification type and identity data. */
396
442
  identity?: IdentificationData;
@@ -398,26 +444,50 @@ export interface MessageEnvelope {
398
444
  data?: string;
399
445
  }
400
446
  export interface IdentificationData extends IdentificationDataIdOneOf {
401
- /** ID of a site visitor that has not logged in to the site. */
447
+ /**
448
+ * ID of a site visitor that has not logged in to the site.
449
+ * @format GUID
450
+ */
402
451
  anonymousVisitorId?: string;
403
- /** ID of a site visitor that has logged in to the site. */
452
+ /**
453
+ * ID of a site visitor that has logged in to the site.
454
+ * @format GUID
455
+ */
404
456
  memberId?: string;
405
- /** ID of a Wix user (site owner, contributor, etc.). */
457
+ /**
458
+ * ID of a Wix user (site owner, contributor, etc.).
459
+ * @format GUID
460
+ */
406
461
  wixUserId?: string;
407
- /** ID of an app. */
462
+ /**
463
+ * ID of an app.
464
+ * @format GUID
465
+ */
408
466
  appId?: string;
409
467
  /** @readonly */
410
468
  identityType?: WebhookIdentityType;
411
469
  }
412
470
  /** @oneof */
413
471
  export interface IdentificationDataIdOneOf {
414
- /** ID of a site visitor that has not logged in to the site. */
472
+ /**
473
+ * ID of a site visitor that has not logged in to the site.
474
+ * @format GUID
475
+ */
415
476
  anonymousVisitorId?: string;
416
- /** ID of a site visitor that has logged in to the site. */
477
+ /**
478
+ * ID of a site visitor that has logged in to the site.
479
+ * @format GUID
480
+ */
417
481
  memberId?: string;
418
- /** ID of a Wix user (site owner, contributor, etc.). */
482
+ /**
483
+ * ID of a Wix user (site owner, contributor, etc.).
484
+ * @format GUID
485
+ */
419
486
  wixUserId?: string;
420
- /** ID of an app. */
487
+ /**
488
+ * ID of an app.
489
+ * @format GUID
490
+ */
421
491
  appId?: string;
422
492
  }
423
493
  export declare enum WebhookIdentityType {
@@ -428,7 +498,11 @@ export declare enum WebhookIdentityType {
428
498
  APP = "APP"
429
499
  }
430
500
  export interface DeleteCompletedTasksRequest {
431
- /** Optional list of tasks ids of the tasks to delete. If the list is not provided the filter is used. */
501
+ /**
502
+ * Optional list of tasks ids of the tasks to delete. If the list is not provided the filter is used.
503
+ * @format GUID
504
+ * @maxSize 1000
505
+ */
432
506
  taskIds?: string[];
433
507
  /** An optional filter of tasks to count. See 'queryTasks' for supported filter options. */
434
508
  filter?: Record<string, any> | null;
@@ -436,7 +510,11 @@ export interface DeleteCompletedTasksRequest {
436
510
  export interface DeleteCompletedTasksResponse {
437
511
  }
438
512
  export interface SendTasksReminderRequest {
439
- /** Ids of the tasks to remind */
513
+ /**
514
+ * Ids of the tasks to remind
515
+ * @format GUID
516
+ * @maxSize 50
517
+ */
440
518
  taskIds?: string[];
441
519
  /** The reminder type */
442
520
  reminderType?: ReminderType;
@@ -1 +1 @@
1
- {"version":3,"file":"crm-tasks-v2-task-tasks.types.js","sourceRoot":"","sources":["../../../src/crm-tasks-v2-task-tasks.types.ts"],"names":[],"mappings":";;;AAuCA,kDAAkD;AAClD,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,qBAAqB;IACrB,6CAA+B,CAAA;IAC/B,sBAAsB;IACtB,qCAAuB,CAAA;AACzB,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AAoBD,8CAA8C;AAC9C,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,kCAAkC;IAClC,yBAAW,CAAA;IACX,sCAAsC;IACtC,2BAAa,CAAA;AACf,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AAiID,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,+BAA+B;IAC/B,wBAAW,CAAA;IACX,gCAAgC;IAChC,0BAAa,CAAA;AACf,CAAC,EALW,SAAS,yBAAT,SAAS,QAKpB;AAsQD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B;AAkBD,IAAY,YAIX;AAJD,WAAY,YAAY;IACtB,+DAA+C,CAAA;IAC/C,iDAAiC,CAAA;IACjC,+CAA+B,CAAA;AACjC,CAAC,EAJW,YAAY,4BAAZ,YAAY,QAIvB"}
1
+ {"version":3,"file":"crm-tasks-v2-task-tasks.types.js","sourceRoot":"","sources":["../../../src/crm-tasks-v2-task-tasks.types.ts"],"names":[],"mappings":";;;AAgDA,kDAAkD;AAClD,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,qBAAqB;IACrB,6CAA+B,CAAA;IAC/B,sBAAsB;IACtB,qCAAuB,CAAA;AACzB,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AAsBD,8CAA8C;AAC9C,IAAY,UAKX;AALD,WAAY,UAAU;IACpB,kCAAkC;IAClC,yBAAW,CAAA;IACX,sCAAsC;IACtC,2BAAa,CAAA;AACf,CAAC,EALW,UAAU,0BAAV,UAAU,QAKrB;AAiJD,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,+BAA+B;IAC/B,wBAAW,CAAA;IACX,gCAAgC;IAChC,0BAAa,CAAA;AACf,CAAC,EALW,SAAS,yBAAT,SAAS,QAKpB;AAiTD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B;AA0BD,IAAY,YAIX;AAJD,WAAY,YAAY;IACtB,+DAA+C,CAAA;IAC/C,iDAAiC,CAAA;IACjC,+CAA+B,CAAA;AACjC,CAAC,EAJW,YAAY,4BAAZ,YAAY,QAIvB"}
@@ -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
- /** Title of the task. */
13
+ /**
14
+ * Title of the task.
15
+ * @minLength 1
16
+ * @maxLength 250
17
+ */
13
18
  title?: string | null;
14
- /** Description of the task. */
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
- /** ID of the contact associated with the task. */
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.
@@ -97,7 +111,10 @@ export interface ContactInfo {
97
111
  phone?: string | null;
98
112
  }
99
113
  export interface RepositionTask {
100
- /** The id of the last task that was re-positioned */
114
+ /**
115
+ * The id of the last task that was re-positioned
116
+ * @format GUID
117
+ */
101
118
  taskId?: string | null;
102
119
  /** The position of the last task that was re-positioned */
103
120
  position?: string | null;
@@ -107,7 +124,10 @@ export interface TaskOverdue {
107
124
  task?: Task;
108
125
  }
109
126
  export interface TaskAssigned {
110
- /** The id of the assignee */
127
+ /**
128
+ * The id of the assignee
129
+ * @format GUID
130
+ */
111
131
  assigneeId?: string;
112
132
  /** The task that was assigned */
113
133
  task?: Task;
@@ -121,10 +141,14 @@ export interface CreateTaskResponse {
121
141
  task?: Task;
122
142
  }
123
143
  export interface ContactNotFoundError {
144
+ /** @format GUID */
124
145
  contactId?: string;
125
146
  }
126
147
  export interface GetTaskRequest {
127
- /** ID of the task to retrieve. */
148
+ /**
149
+ * ID of the task to retrieve.
150
+ * @format GUID
151
+ */
128
152
  taskId: string;
129
153
  }
130
154
  export interface GetTaskResponse {
@@ -140,7 +164,10 @@ export interface UpdateTaskResponse {
140
164
  task?: Task;
141
165
  }
142
166
  export interface DeleteTaskRequest {
143
- /** ID of the task to delete. */
167
+ /**
168
+ * ID of the task to delete.
169
+ * @format GUID
170
+ */
144
171
  taskId: string;
145
172
  }
146
173
  export interface DeleteTaskResponse {
@@ -185,7 +212,10 @@ export declare enum SortOrder {
185
212
  DESC = "DESC"
186
213
  }
187
214
  export interface CursorPaging {
188
- /** Number of items to load. */
215
+ /**
216
+ * Number of items to load.
217
+ * @max 1000
218
+ */
189
219
  limit?: number | null;
190
220
  /**
191
221
  * Pointer to the next or previous page in the list of results.
@@ -275,7 +305,10 @@ export interface QueryV2PagingMethodOneOf {
275
305
  cursorPaging?: CursorPaging;
276
306
  }
277
307
  export interface Paging {
278
- /** Number of items to load. */
308
+ /**
309
+ * Number of items to load.
310
+ * @max 1000
311
+ */
279
312
  limit?: number | null;
280
313
  /** Number of items to skip in the current sort order. */
281
314
  offset?: number | null;
@@ -299,18 +332,25 @@ export interface PagingMetadataV2 {
299
332
  cursors?: Cursors;
300
333
  }
301
334
  export interface MoveTaskAfterRequest {
302
- /** ID of the task to move. */
335
+ /**
336
+ * ID of the task to move.
337
+ * @format GUID
338
+ */
303
339
  taskId: string;
304
340
  /**
305
341
  * The ID of the task after which the moved task is positioned in the task display.
306
342
  * If `beforeTaskId` is not specified, the moved task is positioned first in the task display.
343
+ * @format GUID
307
344
  */
308
345
  beforeTaskId?: string | null;
309
346
  }
310
347
  export interface MoveTaskAfterResponse {
311
348
  }
312
349
  export interface TaskNotFoundError {
313
- /** The task id that was not found */
350
+ /**
351
+ * The task id that was not found
352
+ * @format GUID
353
+ */
314
354
  taskId?: string;
315
355
  }
316
356
  export interface Empty {
@@ -386,9 +426,15 @@ export interface ActionEvent {
386
426
  body?: string;
387
427
  }
388
428
  export interface MessageEnvelope {
389
- /** App instance ID. */
429
+ /**
430
+ * App instance ID.
431
+ * @format GUID
432
+ */
390
433
  instanceId?: string | null;
391
- /** Event type. */
434
+ /**
435
+ * Event type.
436
+ * @maxLength 150
437
+ */
392
438
  eventType?: string;
393
439
  /** The identification type and identity data. */
394
440
  identity?: IdentificationData;
@@ -396,26 +442,50 @@ export interface MessageEnvelope {
396
442
  data?: string;
397
443
  }
398
444
  export interface IdentificationData extends IdentificationDataIdOneOf {
399
- /** ID of a site visitor that has not logged in to the site. */
445
+ /**
446
+ * ID of a site visitor that has not logged in to the site.
447
+ * @format GUID
448
+ */
400
449
  anonymousVisitorId?: string;
401
- /** ID of a site visitor that has logged in to the site. */
450
+ /**
451
+ * ID of a site visitor that has logged in to the site.
452
+ * @format GUID
453
+ */
402
454
  memberId?: string;
403
- /** ID of a Wix user (site owner, contributor, etc.). */
455
+ /**
456
+ * ID of a Wix user (site owner, contributor, etc.).
457
+ * @format GUID
458
+ */
404
459
  wixUserId?: string;
405
- /** ID of an app. */
460
+ /**
461
+ * ID of an app.
462
+ * @format GUID
463
+ */
406
464
  appId?: string;
407
465
  /** @readonly */
408
466
  identityType?: WebhookIdentityType;
409
467
  }
410
468
  /** @oneof */
411
469
  export interface IdentificationDataIdOneOf {
412
- /** ID of a site visitor that has not logged in to the site. */
470
+ /**
471
+ * ID of a site visitor that has not logged in to the site.
472
+ * @format GUID
473
+ */
413
474
  anonymousVisitorId?: string;
414
- /** ID of a site visitor that has logged in to the site. */
475
+ /**
476
+ * ID of a site visitor that has logged in to the site.
477
+ * @format GUID
478
+ */
415
479
  memberId?: string;
416
- /** ID of a Wix user (site owner, contributor, etc.). */
480
+ /**
481
+ * ID of a Wix user (site owner, contributor, etc.).
482
+ * @format GUID
483
+ */
417
484
  wixUserId?: string;
418
- /** ID of an app. */
485
+ /**
486
+ * ID of an app.
487
+ * @format GUID
488
+ */
419
489
  appId?: string;
420
490
  }
421
491
  export declare enum WebhookIdentityType {
@@ -426,7 +496,11 @@ export declare enum WebhookIdentityType {
426
496
  APP = "APP"
427
497
  }
428
498
  export interface DeleteCompletedTasksRequest {
429
- /** Optional list of tasks ids of the tasks to delete. If the list is not provided the filter is used. */
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
+ */
430
504
  taskIds?: string[];
431
505
  /** An optional filter of tasks to count. See 'queryTasks' for supported filter options. */
432
506
  filter?: Record<string, any> | null;
@@ -434,7 +508,11 @@ export interface DeleteCompletedTasksRequest {
434
508
  export interface DeleteCompletedTasksResponse {
435
509
  }
436
510
  export interface SendTasksReminderRequest {
437
- /** Ids of the tasks to remind */
511
+ /**
512
+ * Ids of the tasks to remind
513
+ * @format GUID
514
+ * @maxSize 50
515
+ */
438
516
  taskIds?: string[];
439
517
  /** The reminder type */
440
518
  reminderType?: ReminderType;
@@ -469,9 +547,15 @@ export interface CountTasksResponseNonNullableFields {
469
547
  count: number;
470
548
  }
471
549
  export interface BaseEventMetadata {
472
- /** App instance ID. */
550
+ /**
551
+ * App instance ID.
552
+ * @format GUID
553
+ */
473
554
  instanceId?: string | null;
474
- /** Event type. */
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
- /** Title of the task. */
729
+ /**
730
+ * Title of the task.
731
+ * @minLength 1
732
+ * @maxLength 250
733
+ */
645
734
  title?: string | null;
646
- /** Description of the task. */
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
  }
@@ -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":"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"}
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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"}