@d19n/youfibre-odin-sdk 2.0.132 → 2.0.133

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,7 +21,7 @@ export interface CreateCallEventMessage extends OdinRecordCreatedEvent<CreateCal
21
21
  /**
22
22
  * Properties for CreateCallEvent action
23
23
  *
24
- * @property Required fields: 6
24
+ * @property Required fields: 7
25
25
  * @property Optional fields: 0
26
26
  */
27
27
  export interface CreateCallEventProperties {
@@ -73,6 +73,14 @@ export interface CreateCallEventProperties {
73
73
  * @required
74
74
  */
75
75
  Timestamp: string;
76
+ /**
77
+ * Title
78
+ *
79
+ * Title of the call event record
80
+ * @type {TEXT}
81
+ * @required
82
+ */
83
+ Title: string;
76
84
  }
77
85
  /**
78
86
  * CreateCallEvent
@@ -64,7 +64,9 @@ export declare enum CallEventPropertyKeys {
64
64
  /** Data field for CallEvent records. Used by Communications team. */
65
65
  EventData = "EventData",
66
66
  /** UUID of specific call leg if event is leg-specific (Communications - CallEvent) */
67
- CallLegId = "CallLegId"
67
+ CallLegId = "CallLegId",
68
+ /** Title of the call event record */
69
+ Title = "Title"
68
70
  }
69
71
  /**
70
72
  * Properties for CallEvent records
@@ -118,6 +120,11 @@ export interface CallEventProperties {
118
120
  * @type {LOOKUP}
119
121
  */
120
122
  CallLegId: string;
123
+ /** Title of the call event record
124
+ *
125
+ * @type {TEXT}
126
+ */
127
+ Title: string;
121
128
  }
122
129
  /**
123
130
  * CallEvent entity from NotificationModule
@@ -68,6 +68,8 @@ var CallEventPropertyKeys;
68
68
  CallEventPropertyKeys["EventData"] = "EventData";
69
69
  /** UUID of specific call leg if event is leg-specific (Communications - CallEvent) */
70
70
  CallEventPropertyKeys["CallLegId"] = "CallLegId";
71
+ /** Title of the call event record */
72
+ CallEventPropertyKeys["Title"] = "Title";
71
73
  })(CallEventPropertyKeys = exports.CallEventPropertyKeys || (exports.CallEventPropertyKeys = {}));
72
74
  /**
73
75
  * CallEvent entity from NotificationModule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d19n/youfibre-odin-sdk",
3
- "version": "2.0.132",
3
+ "version": "2.0.133",
4
4
  "description": "",
5
5
  "author": "@d19n",
6
6
  "license": "UNLICENSED",