@d19n/youfibre-odin-sdk 2.0.213 → 2.0.214
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.
|
@@ -21,8 +21,58 @@ export interface ImportTwilioTaskQueueMessage extends OdinRecordCreatedEvent<Imp
|
|
|
21
21
|
/**
|
|
22
22
|
* Properties for ImportTwilioTaskQueue action
|
|
23
23
|
*
|
|
24
|
+
* @property Required fields: 6
|
|
25
|
+
* @property Optional fields: 0
|
|
24
26
|
*/
|
|
25
27
|
export interface ImportTwilioTaskQueueProperties {
|
|
28
|
+
/**
|
|
29
|
+
* TwilioSid
|
|
30
|
+
*
|
|
31
|
+
* Twilio task queue sid
|
|
32
|
+
* @type {TEXT}
|
|
33
|
+
* @required
|
|
34
|
+
*/
|
|
35
|
+
TwilioSid: string;
|
|
36
|
+
/**
|
|
37
|
+
* Name
|
|
38
|
+
*
|
|
39
|
+
* Task queue name
|
|
40
|
+
* @type {TEXT}
|
|
41
|
+
* @required
|
|
42
|
+
*/
|
|
43
|
+
Name: string;
|
|
44
|
+
/**
|
|
45
|
+
* TaskOrder
|
|
46
|
+
*
|
|
47
|
+
* Order in which tasks are assigned to workers
|
|
48
|
+
* @type {ENUM}
|
|
49
|
+
* @required
|
|
50
|
+
*/
|
|
51
|
+
TaskOrder: string;
|
|
52
|
+
/**
|
|
53
|
+
* MaxReservedWorkers
|
|
54
|
+
*
|
|
55
|
+
* Maximum number of workers that can be reserved simultaneously for tasks from this queue
|
|
56
|
+
* @type {NUMBER}
|
|
57
|
+
* @required
|
|
58
|
+
*/
|
|
59
|
+
MaxReservedWorkers: number;
|
|
60
|
+
/**
|
|
61
|
+
* AssignmentActivity
|
|
62
|
+
*
|
|
63
|
+
* Activity a worker is moved to when they accept the task
|
|
64
|
+
* @type {LOOKUP}
|
|
65
|
+
* @required
|
|
66
|
+
*/
|
|
67
|
+
AssignmentActivity: string;
|
|
68
|
+
/**
|
|
69
|
+
* ReservationActivity
|
|
70
|
+
*
|
|
71
|
+
* Activity a worker is moved to when a task is offered to them
|
|
72
|
+
* @type {LOOKUP}
|
|
73
|
+
* @required
|
|
74
|
+
*/
|
|
75
|
+
ReservationActivity: string;
|
|
26
76
|
}
|
|
27
77
|
/**
|
|
28
78
|
* ImportTwilioTaskQueue
|
|
@@ -245,7 +245,7 @@ export declare class TwilioTaskQueueRecord<TProps = TwilioTaskQueueProperties> {
|
|
|
245
245
|
* const payload = record.importTwilioTaskQueue({ ... }).dryRun();
|
|
246
246
|
* ```
|
|
247
247
|
*/
|
|
248
|
-
importTwilioTaskQueue(properties
|
|
248
|
+
importTwilioTaskQueue(properties: ImportTwilioTaskQueueProperties, options?: {
|
|
249
249
|
type?: string;
|
|
250
250
|
journeyId?: string;
|
|
251
251
|
stageKey?: string;
|