@d19n/youfibre-odin-sdk 2.0.237-beta.1 → 2.0.237-beta.2
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 CreateInboundCallMessage extends OdinRecordCreatedEvent<CreateI
|
|
|
22
22
|
* Properties for CreateInboundCall action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 14
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 2
|
|
26
26
|
*/
|
|
27
27
|
export interface CreateInboundCallProperties {
|
|
28
28
|
/**
|
|
@@ -144,6 +144,13 @@ export interface CreateInboundCallProperties {
|
|
|
144
144
|
* @type {TEXT}
|
|
145
145
|
*/
|
|
146
146
|
QueueName?: string | null;
|
|
147
|
+
/**
|
|
148
|
+
* ContactId
|
|
149
|
+
*
|
|
150
|
+
* Reference identifier for Call relationships. Used for data integrity.
|
|
151
|
+
* @type {LOOKUP}
|
|
152
|
+
*/
|
|
153
|
+
ContactId?: string | null;
|
|
147
154
|
}
|
|
148
155
|
/**
|
|
149
156
|
* Builder for CreateInboundCall action
|
|
@@ -22,7 +22,7 @@ export interface CreateOutboundCallMessage extends OdinRecordCreatedEvent<Create
|
|
|
22
22
|
* Properties for CreateOutboundCall action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 13
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 4
|
|
26
26
|
*/
|
|
27
27
|
export interface CreateOutboundCallProperties {
|
|
28
28
|
/**
|
|
@@ -143,6 +143,13 @@ export interface CreateOutboundCallProperties {
|
|
|
143
143
|
* @type {LOOKUP}
|
|
144
144
|
*/
|
|
145
145
|
OutboundDialSessionId?: string | null;
|
|
146
|
+
/**
|
|
147
|
+
* ContactId
|
|
148
|
+
*
|
|
149
|
+
* Reference identifier for Call relationships. Used for data integrity.
|
|
150
|
+
* @type {LOOKUP}
|
|
151
|
+
*/
|
|
152
|
+
ContactId?: string | null;
|
|
146
153
|
/**
|
|
147
154
|
* DialOrigin
|
|
148
155
|
*
|
|
@@ -22,7 +22,7 @@ export interface UpdateCallInsightsMessage extends OdinRecordUpdatedEvent<Update
|
|
|
22
22
|
* Properties for UpdateCallInsights action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 2
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateCallInsightsProperties {
|
|
28
28
|
/**
|
|
@@ -32,6 +32,13 @@ export interface UpdateCallInsightsProperties {
|
|
|
32
32
|
* @type {ENUM}
|
|
33
33
|
*/
|
|
34
34
|
WhoHungUp?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* CustomerConnection
|
|
37
|
+
*
|
|
38
|
+
* CustomerConnection
|
|
39
|
+
* @type {TEXT}
|
|
40
|
+
*/
|
|
41
|
+
CustomerConnection?: string | null;
|
|
35
42
|
}
|
|
36
43
|
/**
|
|
37
44
|
* UpdateCallInsights
|