@d19n/youfibre-odin-sdk 2.0.167 → 2.0.168
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,8 +22,8 @@ export interface CreateInboundCallEventMessage extends OdinRecordCreatedEvent<Cr
|
|
|
22
22
|
/**
|
|
23
23
|
* Properties for CreateInboundCallEvent action
|
|
24
24
|
*
|
|
25
|
-
* @property Required fields:
|
|
26
|
-
* @property Optional fields:
|
|
25
|
+
* @property Required fields: 6
|
|
26
|
+
* @property Optional fields: 2
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateInboundCallEventProperties {
|
|
29
29
|
/**
|
|
@@ -66,6 +66,14 @@ export interface CreateInboundCallEventProperties {
|
|
|
66
66
|
* @required
|
|
67
67
|
*/
|
|
68
68
|
ProcessingStatus: string;
|
|
69
|
+
/**
|
|
70
|
+
* Title
|
|
71
|
+
*
|
|
72
|
+
* Title of twilio call event record
|
|
73
|
+
* @type {TEXT}
|
|
74
|
+
* @required
|
|
75
|
+
*/
|
|
76
|
+
Title: string;
|
|
69
77
|
/**
|
|
70
78
|
* CallId
|
|
71
79
|
*
|
|
@@ -80,13 +88,6 @@ export interface CreateInboundCallEventProperties {
|
|
|
80
88
|
* @type {TEXT}
|
|
81
89
|
*/
|
|
82
90
|
CallSid?: string | null;
|
|
83
|
-
/**
|
|
84
|
-
* Title
|
|
85
|
-
*
|
|
86
|
-
* Title of twilio call event record
|
|
87
|
-
* @type {TEXT}
|
|
88
|
-
*/
|
|
89
|
-
Title?: string | null;
|
|
90
91
|
}
|
|
91
92
|
/**
|
|
92
93
|
* CreateInboundCallEvent
|
|
@@ -22,8 +22,8 @@ export interface CreateOutboundCallEventMessage extends OdinRecordCreatedEvent<C
|
|
|
22
22
|
/**
|
|
23
23
|
* Properties for CreateOutboundCallEvent action
|
|
24
24
|
*
|
|
25
|
-
* @property Required fields:
|
|
26
|
-
* @property Optional fields:
|
|
25
|
+
* @property Required fields: 6
|
|
26
|
+
* @property Optional fields: 2
|
|
27
27
|
*/
|
|
28
28
|
export interface CreateOutboundCallEventProperties {
|
|
29
29
|
/**
|
|
@@ -66,6 +66,14 @@ export interface CreateOutboundCallEventProperties {
|
|
|
66
66
|
* @required
|
|
67
67
|
*/
|
|
68
68
|
ProcessingStatus: string;
|
|
69
|
+
/**
|
|
70
|
+
* Title
|
|
71
|
+
*
|
|
72
|
+
* Title of twilio call event record
|
|
73
|
+
* @type {TEXT}
|
|
74
|
+
* @required
|
|
75
|
+
*/
|
|
76
|
+
Title: string;
|
|
69
77
|
/**
|
|
70
78
|
* CallId
|
|
71
79
|
*
|
|
@@ -80,13 +88,6 @@ export interface CreateOutboundCallEventProperties {
|
|
|
80
88
|
* @type {TEXT}
|
|
81
89
|
*/
|
|
82
90
|
CallSid?: string | null;
|
|
83
|
-
/**
|
|
84
|
-
* Title
|
|
85
|
-
*
|
|
86
|
-
* Title of twilio call event record
|
|
87
|
-
* @type {TEXT}
|
|
88
|
-
*/
|
|
89
|
-
Title?: string | null;
|
|
90
91
|
}
|
|
91
92
|
/**
|
|
92
93
|
* CreateOutboundCallEvent
|
|
@@ -22,7 +22,7 @@ export interface UpdateCallEventAfterProcessingMessage extends OdinRecordUpdated
|
|
|
22
22
|
* Properties for UpdateCallEventAfterProcessing action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 2
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 0
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateCallEventAfterProcessingProperties {
|
|
28
28
|
/**
|
|
@@ -41,27 +41,6 @@ export interface UpdateCallEventAfterProcessingProperties {
|
|
|
41
41
|
* @required
|
|
42
42
|
*/
|
|
43
43
|
ProcessingStatus: string;
|
|
44
|
-
/**
|
|
45
|
-
* Title
|
|
46
|
-
*
|
|
47
|
-
* Title of twilio call event record
|
|
48
|
-
* @type {TEXT}
|
|
49
|
-
*/
|
|
50
|
-
Title?: string | null;
|
|
51
|
-
/**
|
|
52
|
-
* CallId
|
|
53
|
-
*
|
|
54
|
-
* Reference of the call record
|
|
55
|
-
* @type {LOOKUP}
|
|
56
|
-
*/
|
|
57
|
-
CallId?: string | null;
|
|
58
|
-
/**
|
|
59
|
-
* CallSid
|
|
60
|
-
*
|
|
61
|
-
* Twilio id of the call
|
|
62
|
-
* @type {TEXT}
|
|
63
|
-
*/
|
|
64
|
-
CallSid?: string | null;
|
|
65
44
|
}
|
|
66
45
|
/**
|
|
67
46
|
* UpdateCallEventAfterProcessing
|