@d19n/youfibre-odin-sdk 2.0.217 → 2.0.220

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.
@@ -37,10 +37,10 @@ export interface UpdateCallOnInboundCallCompletedProperties {
37
37
  * RecordingDuration
38
38
  *
39
39
  * RecordingDuration (Communications - Call)
40
- * @type {NUMBER}
40
+ * @type {TEXT}
41
41
  * @required
42
42
  */
43
- RecordingDuration: number;
43
+ RecordingDuration: string;
44
44
  /**
45
45
  * RecordingUrl
46
46
  *
@@ -37,10 +37,10 @@ export interface UpdateCallOnOutboundCallCompletedProperties {
37
37
  * RecordingDuration
38
38
  *
39
39
  * RecordingDuration (Communications - Call)
40
- * @type {NUMBER}
40
+ * @type {TEXT}
41
41
  * @required
42
42
  */
43
- RecordingDuration: number;
43
+ RecordingDuration: string;
44
44
  /**
45
45
  * RecordingUrl
46
46
  *
@@ -37,10 +37,10 @@ export interface UpdateCallRecordingDetailsProperties {
37
37
  * RecordingDuration
38
38
  *
39
39
  * RecordingDuration (Communications - Call)
40
- * @type {NUMBER}
40
+ * @type {TEXT}
41
41
  * @required
42
42
  */
43
- RecordingDuration: number;
43
+ RecordingDuration: string;
44
44
  /**
45
45
  * RecordingUrl
46
46
  *
@@ -22,7 +22,7 @@ export interface UpdateTwilioActivityMessage extends OdinRecordUpdatedEvent<Upda
22
22
  * Properties for UpdateTwilioActivity action
23
23
  *
24
24
  * @property Required fields: 0
25
- * @property Optional fields: 1
25
+ * @property Optional fields: 2
26
26
  */
27
27
  export interface UpdateTwilioActivityProperties {
28
28
  /**
@@ -32,6 +32,13 @@ export interface UpdateTwilioActivityProperties {
32
32
  * @type {TEXT}
33
33
  */
34
34
  Name?: string | null;
35
+ /**
36
+ * Colour
37
+ *
38
+ * Hex Colour for Dashboards.
39
+ * @type {TEXT}
40
+ */
41
+ Colour?: string | null;
35
42
  }
36
43
  /**
37
44
  * UpdateTwilioActivity
@@ -146,8 +146,6 @@ export declare enum CallPropertyKeys {
146
146
  RecordingSid = "RecordingSid",
147
147
  /** Classification type for Call records. Used by Communications team for categorization. */
148
148
  CallType = "CallType",
149
- /** RecordingDuration (Communications - Call) */
150
- RecordingDuration = "RecordingDuration",
151
149
  /** Display name/title for Call records. Primary identifier for Communications team. */
152
150
  QueueName = "QueueName",
153
151
  /** AgentHoldTotalSec */
@@ -223,7 +221,7 @@ export declare enum CallPropertyKeys {
223
221
  /** WhoHungUp */
224
222
  WhoHungUp = "WhoHungUp",
225
223
  /** RecordingDuration (Communications - Call) */
226
- RecordingDurationText = "RecordingDurationText",
224
+ RecordingDuration = "RecordingDuration",
227
225
  /** ActiveTransferId */
228
226
  ActiveTransferId = "ActiveTransferId",
229
227
  /** Data field for Call records. Used by Communications team. */
@@ -292,11 +290,6 @@ export interface CallProperties {
292
290
  * @enum {CallCallType}
293
291
  */
294
292
  CallType: CallCallType;
295
- /** RecordingDuration (Communications - Call)
296
- *
297
- * @type {NUMBER}
298
- */
299
- RecordingDuration: number;
300
293
  /** Display name/title for Call records. Primary identifier for Communications team.
301
294
  *
302
295
  * @type {TEXT}
@@ -497,7 +490,7 @@ export interface CallProperties {
497
490
  *
498
491
  * @type {TEXT}
499
492
  */
500
- RecordingDurationText: string;
493
+ RecordingDuration: string;
501
494
  /** ActiveTransferId
502
495
  *
503
496
  * @type {TEXT}
@@ -146,8 +146,6 @@ var CallPropertyKeys;
146
146
  CallPropertyKeys["RecordingSid"] = "RecordingSid";
147
147
  /** Classification type for Call records. Used by Communications team for categorization. */
148
148
  CallPropertyKeys["CallType"] = "CallType";
149
- /** RecordingDuration (Communications - Call) */
150
- CallPropertyKeys["RecordingDuration"] = "RecordingDuration";
151
149
  /** Display name/title for Call records. Primary identifier for Communications team. */
152
150
  CallPropertyKeys["QueueName"] = "QueueName";
153
151
  /** AgentHoldTotalSec */
@@ -223,7 +221,7 @@ var CallPropertyKeys;
223
221
  /** WhoHungUp */
224
222
  CallPropertyKeys["WhoHungUp"] = "WhoHungUp";
225
223
  /** RecordingDuration (Communications - Call) */
226
- CallPropertyKeys["RecordingDurationText"] = "RecordingDurationText";
224
+ CallPropertyKeys["RecordingDuration"] = "RecordingDuration";
227
225
  /** ActiveTransferId */
228
226
  CallPropertyKeys["ActiveTransferId"] = "ActiveTransferId";
229
227
  /** Data field for Call records. Used by Communications team. */
@@ -29,7 +29,9 @@ export declare enum TwilioActivityPropertyKeys {
29
29
  /** Twilio Activity Sid */
30
30
  TwilioSid = "TwilioSid",
31
31
  /** Availability status of the activity */
32
- Available = "Available"
32
+ Available = "Available",
33
+ /** Hex Colour for Dashboards. */
34
+ Colour = "Colour"
33
35
  }
34
36
  /**
35
37
  * Properties for TwilioActivity records
@@ -52,6 +54,12 @@ export interface TwilioActivityProperties {
52
54
  * @type {BOOLEAN}
53
55
  */
54
56
  Available: boolean;
57
+ /** Hex Colour for Dashboards.
58
+ *
59
+ * @type {TEXT}
60
+ * @default #FF6B9D
61
+ */
62
+ Colour: string;
55
63
  }
56
64
  /**
57
65
  * TwilioActivity entity from SupportModule
@@ -34,6 +34,8 @@ var TwilioActivityPropertyKeys;
34
34
  TwilioActivityPropertyKeys["TwilioSid"] = "TwilioSid";
35
35
  /** Availability status of the activity */
36
36
  TwilioActivityPropertyKeys["Available"] = "Available";
37
+ /** Hex Colour for Dashboards. */
38
+ TwilioActivityPropertyKeys["Colour"] = "Colour";
37
39
  })(TwilioActivityPropertyKeys = exports.TwilioActivityPropertyKeys || (exports.TwilioActivityPropertyKeys = {}));
38
40
  /**
39
41
  * TwilioActivity entity from SupportModule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d19n/youfibre-odin-sdk",
3
- "version": "2.0.217",
3
+ "version": "2.0.220",
4
4
  "description": "",
5
5
  "author": "@d19n",
6
6
  "license": "UNLICENSED",