@d19n/youfibre-odin-sdk 2.0.211-beta.2 → 2.0.211

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 AddressCreateMessage extends OdinRecordCreatedEvent<AddressCrea
22
22
  * Properties for AddressCreate action
23
23
  *
24
24
  * @property Required fields: 1
25
- * @property Optional fields: 20
25
+ * @property Optional fields: 18
26
26
  */
27
27
  export interface AddressCreateProperties {
28
28
  /**
@@ -33,13 +33,6 @@ export interface AddressCreateProperties {
33
33
  * @required
34
34
  */
35
35
  SPRN: number;
36
- /**
37
- * ExPolygonId
38
- *
39
- * the id of the exchange polygon (Sales - Address)
40
- * @type {NUMBER}
41
- */
42
- ExPolygonId?: number | null;
43
36
  /**
44
37
  * Sales Status
45
38
  *
@@ -75,6 +68,13 @@ export interface AddressCreateProperties {
75
68
  * @type {TEXT}
76
69
  */
77
70
  City?: string | null;
71
+ /**
72
+ * Ex Polygon Id
73
+ *
74
+ * the id of the exchange polygon (Sales - Address)
75
+ * @type {NUMBER}
76
+ */
77
+ ExPolygonId?: number | null;
78
78
  /**
79
79
  * Full Address
80
80
  *
@@ -36,7 +36,7 @@ export interface CreateTwilioTaskQueueProperties {
36
36
  /**
37
37
  * MaxReservedWorkers
38
38
  *
39
- * Maximum number of workers that can be reserved simultaneously for tasks from this queue.
39
+ * Maximum number of workers that can be reserved simultaneously for tasks from this queue
40
40
  * @type {NUMBER}
41
41
  * @required
42
42
  */
@@ -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: 6
25
+ * @property Optional fields: 4
26
26
  */
27
27
  export interface SyncTwilioTaskQueueProperties {
28
28
  /**
@@ -35,7 +35,7 @@ export interface SyncTwilioTaskQueueProperties {
35
35
  /**
36
36
  * MaxReservedWorkers
37
37
  *
38
- * Maximum number of workers that can be reserved simultaneously for tasks from this queue.
38
+ * Maximum number of workers that can be reserved simultaneously for tasks from this queue
39
39
  * @type {NUMBER}
40
40
  */
41
41
  MaxReservedWorkers?: number | null;
@@ -53,20 +53,6 @@ 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;
70
56
  }
71
57
  /**
72
58
  * SyncTwilioTaskQueue
@@ -28,7 +28,7 @@ export interface UpdateTwilioTaskQueueProperties {
28
28
  /**
29
29
  * MaxReservedWorkers
30
30
  *
31
- * Maximum number of workers that can be reserved simultaneously for tasks from this queue.
31
+ * Maximum number of workers that can be reserved simultaneously for tasks from this queue
32
32
  * @type {NUMBER}
33
33
  */
34
34
  MaxReservedWorkers?: number | null;
@@ -44,10 +44,10 @@ export declare enum TwilioTaskQueuePropertyKeys {
44
44
  TwilioSid = "TwilioSid",
45
45
  /** Activity a worker is moved to when they accept the task */
46
46
  AssignmentActivity = "AssignmentActivity",
47
- /** Maximum number of workers that can be reserved simultaneously for tasks from this queue. */
48
- MaxReservedWorkers = "MaxReservedWorkers",
49
47
  /** Activity a worker is moved to when a task is offered to them */
50
48
  ReservationActivity = "ReservationActivity",
49
+ /** Maximum number of workers that can be reserved simultaneously for tasks from this queue */
50
+ MaxReservedWorkers = "MaxReservedWorkers",
51
51
  /** Order in which tasks are assigned to workers */
52
52
  TaskOrder = "TaskOrder"
53
53
  }
@@ -72,16 +72,16 @@ export interface TwilioTaskQueueProperties {
72
72
  * @type {LOOKUP}
73
73
  */
74
74
  AssignmentActivity: string;
75
- /** Maximum number of workers that can be reserved simultaneously for tasks from this queue.
76
- *
77
- * @type {NUMBER}
78
- */
79
- MaxReservedWorkers: number;
80
75
  /** Activity a worker is moved to when a task is offered to them
81
76
  *
82
77
  * @type {LOOKUP}
83
78
  */
84
79
  ReservationActivity: string;
80
+ /** Maximum number of workers that can be reserved simultaneously for tasks from this queue
81
+ *
82
+ * @type {NUMBER}
83
+ */
84
+ MaxReservedWorkers: number;
85
85
  /** Order in which tasks are assigned to workers
86
86
  *
87
87
  * @type {ENUM}
@@ -48,10 +48,10 @@ var TwilioTaskQueuePropertyKeys;
48
48
  TwilioTaskQueuePropertyKeys["TwilioSid"] = "TwilioSid";
49
49
  /** Activity a worker is moved to when they accept the task */
50
50
  TwilioTaskQueuePropertyKeys["AssignmentActivity"] = "AssignmentActivity";
51
- /** Maximum number of workers that can be reserved simultaneously for tasks from this queue. */
52
- TwilioTaskQueuePropertyKeys["MaxReservedWorkers"] = "MaxReservedWorkers";
53
51
  /** Activity a worker is moved to when a task is offered to them */
54
52
  TwilioTaskQueuePropertyKeys["ReservationActivity"] = "ReservationActivity";
53
+ /** Maximum number of workers that can be reserved simultaneously for tasks from this queue */
54
+ TwilioTaskQueuePropertyKeys["MaxReservedWorkers"] = "MaxReservedWorkers";
55
55
  /** Order in which tasks are assigned to workers */
56
56
  TwilioTaskQueuePropertyKeys["TaskOrder"] = "TaskOrder";
57
57
  })(TwilioTaskQueuePropertyKeys = exports.TwilioTaskQueuePropertyKeys || (exports.TwilioTaskQueuePropertyKeys = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d19n/youfibre-odin-sdk",
3
- "version": "2.0.211-beta.2",
3
+ "version": "2.0.211",
4
4
  "description": "",
5
5
  "author": "@d19n",
6
6
  "license": "UNLICENSED",