@d19n/youfibre-odin-sdk 2.0.214 → 2.0.215
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.
|
@@ -22,7 +22,7 @@ export interface SyncTwilioTaskQueueMessage extends OdinRecordUpdatedEvent<SyncT
|
|
|
22
22
|
* Properties for SyncTwilioTaskQueue action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 6
|
|
26
26
|
*/
|
|
27
27
|
export interface SyncTwilioTaskQueueProperties {
|
|
28
28
|
/**
|
|
@@ -53,6 +53,20 @@ export interface SyncTwilioTaskQueueProperties {
|
|
|
53
53
|
* @type {TEXT}
|
|
54
54
|
*/
|
|
55
55
|
Name?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* AssignmentActivity
|
|
58
|
+
*
|
|
59
|
+
* Activity a worker is moved to when they accept the task
|
|
60
|
+
* @type {LOOKUP}
|
|
61
|
+
*/
|
|
62
|
+
AssignmentActivity?: string | null;
|
|
63
|
+
/**
|
|
64
|
+
* ReservationActivity
|
|
65
|
+
*
|
|
66
|
+
* Activity a worker is moved to when a task is offered to them
|
|
67
|
+
* @type {LOOKUP}
|
|
68
|
+
*/
|
|
69
|
+
ReservationActivity?: string | null;
|
|
56
70
|
}
|
|
57
71
|
/**
|
|
58
72
|
* SyncTwilioTaskQueue
|