@d19n/youfibre-odin-sdk 2.0.253 → 2.0.254
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.
- package/dist/actions-v2/UpdateCallAnalyticsDto.d.ts +9 -2
- package/dist/actions-v2/UpdateCallOnInboundCallAnsweredDto.d.ts +9 -2
- package/dist/actions-v2/UpdateCallOnNumberCallStatusDto.d.ts +10 -3
- package/dist/actions-v2/UpdateCallOnOutboundCallAnsweredDto.d.ts +9 -2
- package/dist/actions-v2/UpdateCallOnOutboundDialActionDto.d.ts +10 -3
- package/dist/entities-v2/Call.d.ts +27 -6
- package/dist/entities-v2/Call.js +6 -0
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ export interface UpdateCallAnalyticsMessage extends OdinRecordUpdatedEvent<Updat
|
|
|
22
22
|
* Properties for UpdateCallAnalytics action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 3
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 3
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateCallAnalyticsProperties {
|
|
28
28
|
/**
|
|
@@ -60,9 +60,16 @@ export interface UpdateCallAnalyticsProperties {
|
|
|
60
60
|
* Time in IVR
|
|
61
61
|
*
|
|
62
62
|
* IVRDuration
|
|
63
|
+
* @type {NUMBER}
|
|
64
|
+
*/
|
|
65
|
+
IVRDuration?: number | null;
|
|
66
|
+
/**
|
|
67
|
+
* IVRDurationFormatted
|
|
68
|
+
*
|
|
69
|
+
* IVRDurationFormatted
|
|
63
70
|
* @type {TEXT}
|
|
64
71
|
*/
|
|
65
|
-
|
|
72
|
+
IVRDurationFormatted?: string | null;
|
|
66
73
|
}
|
|
67
74
|
/**
|
|
68
75
|
* UpdateCallAnalytics
|
|
@@ -22,7 +22,7 @@ export interface UpdateCallOnInboundCallAnsweredMessage extends OdinRecordUpdate
|
|
|
22
22
|
* Properties for UpdateCallOnInboundCallAnswered action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 4
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 6
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateCallOnInboundCallAnsweredProperties {
|
|
28
28
|
/**
|
|
@@ -68,9 +68,16 @@ export interface UpdateCallOnInboundCallAnsweredProperties {
|
|
|
68
68
|
* RingingDuration
|
|
69
69
|
*
|
|
70
70
|
* RingingDuration
|
|
71
|
+
* @type {NUMBER}
|
|
72
|
+
*/
|
|
73
|
+
RingingDuration?: number | null;
|
|
74
|
+
/**
|
|
75
|
+
* RingingDurationFormatted
|
|
76
|
+
*
|
|
77
|
+
* RingingDurationFormatted
|
|
71
78
|
* @type {TEXT}
|
|
72
79
|
*/
|
|
73
|
-
|
|
80
|
+
RingingDurationFormatted?: string | null;
|
|
74
81
|
/**
|
|
75
82
|
* Parent Call Record ID
|
|
76
83
|
*
|
|
@@ -22,7 +22,7 @@ export interface UpdateCallOnNumberCallStatusMessage extends OdinRecordUpdatedEv
|
|
|
22
22
|
* Properties for UpdateCallOnNumberCallStatus action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 5
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 2
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateCallOnNumberCallStatusProperties {
|
|
28
28
|
/**
|
|
@@ -53,10 +53,10 @@ export interface UpdateCallOnNumberCallStatusProperties {
|
|
|
53
53
|
* TotalDuration
|
|
54
54
|
*
|
|
55
55
|
* Total call duration in seconds from customer perspective (Communications - Call)
|
|
56
|
-
* @type {
|
|
56
|
+
* @type {NUMBER}
|
|
57
57
|
* @required
|
|
58
58
|
*/
|
|
59
|
-
TotalDuration:
|
|
59
|
+
TotalDuration: number;
|
|
60
60
|
/**
|
|
61
61
|
* QueueTime
|
|
62
62
|
*
|
|
@@ -65,6 +65,13 @@ export interface UpdateCallOnNumberCallStatusProperties {
|
|
|
65
65
|
* @required
|
|
66
66
|
*/
|
|
67
67
|
QueueTime: number;
|
|
68
|
+
/**
|
|
69
|
+
* TotalDurationFormatted
|
|
70
|
+
*
|
|
71
|
+
* TotalDurationFormatted
|
|
72
|
+
* @type {TEXT}
|
|
73
|
+
*/
|
|
74
|
+
TotalDurationFormatted?: string | null;
|
|
68
75
|
/**
|
|
69
76
|
* QueueTimeFormatted
|
|
70
77
|
*
|
|
@@ -22,7 +22,7 @@ export interface UpdateCallOnOutboundCallAnsweredMessage extends OdinRecordUpdat
|
|
|
22
22
|
* Properties for UpdateCallOnOutboundCallAnswered action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 0
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 6
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateCallOnOutboundCallAnsweredProperties {
|
|
28
28
|
/**
|
|
@@ -43,9 +43,16 @@ export interface UpdateCallOnOutboundCallAnsweredProperties {
|
|
|
43
43
|
* RingingDuration
|
|
44
44
|
*
|
|
45
45
|
* RingingDuration
|
|
46
|
+
* @type {NUMBER}
|
|
47
|
+
*/
|
|
48
|
+
RingingDuration?: number | null;
|
|
49
|
+
/**
|
|
50
|
+
* RingingDurationFormatted
|
|
51
|
+
*
|
|
52
|
+
* RingingDurationFormatted
|
|
46
53
|
* @type {TEXT}
|
|
47
54
|
*/
|
|
48
|
-
|
|
55
|
+
RingingDurationFormatted?: string | null;
|
|
49
56
|
/**
|
|
50
57
|
* Parent Call Record ID
|
|
51
58
|
*
|
|
@@ -22,7 +22,7 @@ export interface UpdateCallOnOutboundDialActionMessage extends OdinRecordUpdated
|
|
|
22
22
|
* Properties for UpdateCallOnOutboundDialAction action
|
|
23
23
|
*
|
|
24
24
|
* @property Required fields: 4
|
|
25
|
-
* @property Optional fields:
|
|
25
|
+
* @property Optional fields: 1
|
|
26
26
|
*/
|
|
27
27
|
export interface UpdateCallOnOutboundDialActionProperties {
|
|
28
28
|
/**
|
|
@@ -53,10 +53,17 @@ export interface UpdateCallOnOutboundDialActionProperties {
|
|
|
53
53
|
* TotalDuration
|
|
54
54
|
*
|
|
55
55
|
* Total call duration in seconds from customer perspective (Communications - Call)
|
|
56
|
-
* @type {
|
|
56
|
+
* @type {NUMBER}
|
|
57
57
|
* @required
|
|
58
58
|
*/
|
|
59
|
-
TotalDuration:
|
|
59
|
+
TotalDuration: number;
|
|
60
|
+
/**
|
|
61
|
+
* TotalDurationFormatted
|
|
62
|
+
*
|
|
63
|
+
* TotalDurationFormatted
|
|
64
|
+
* @type {TEXT}
|
|
65
|
+
*/
|
|
66
|
+
TotalDurationFormatted?: string | null;
|
|
60
67
|
}
|
|
61
68
|
/**
|
|
62
69
|
* UpdateCallOnOutboundDialAction
|
|
@@ -228,6 +228,12 @@ export declare enum CallPropertyKeys {
|
|
|
228
228
|
TimeInProgressFormatted = "TimeInProgressFormatted",
|
|
229
229
|
/** QueueTimeFormatted */
|
|
230
230
|
QueueTimeFormatted = "QueueTimeFormatted",
|
|
231
|
+
/** RingingDurationFormatted */
|
|
232
|
+
RingingDurationFormatted = "RingingDurationFormatted",
|
|
233
|
+
/** TotalDurationFormatted */
|
|
234
|
+
TotalDurationFormatted = "TotalDurationFormatted",
|
|
235
|
+
/** IVRDurationFormatted */
|
|
236
|
+
IvrDurationFormatted = "IVRDurationFormatted",
|
|
231
237
|
/** Data field for Call records. Used by Communications team. */
|
|
232
238
|
EndTime = "EndTime",
|
|
233
239
|
/** RecordingDuration (Communications - Call) */
|
|
@@ -418,9 +424,9 @@ export interface CallProperties {
|
|
|
418
424
|
TaskQueueSid: string;
|
|
419
425
|
/** RingingDuration
|
|
420
426
|
*
|
|
421
|
-
* @type {
|
|
427
|
+
* @type {NUMBER}
|
|
422
428
|
*/
|
|
423
|
-
RingingDuration:
|
|
429
|
+
RingingDuration: number;
|
|
424
430
|
/** WhoHungUp
|
|
425
431
|
*
|
|
426
432
|
* @type {ENUM}
|
|
@@ -440,9 +446,9 @@ export interface CallProperties {
|
|
|
440
446
|
CustomerConnection: string;
|
|
441
447
|
/** Total call duration in seconds from customer perspective (Communications - Call)
|
|
442
448
|
*
|
|
443
|
-
* @type {
|
|
449
|
+
* @type {NUMBER}
|
|
444
450
|
*/
|
|
445
|
-
TotalDuration:
|
|
451
|
+
TotalDuration: number;
|
|
446
452
|
/** Tracks the customer side call status. Used by Communications team.
|
|
447
453
|
*
|
|
448
454
|
* @type {TEXT}
|
|
@@ -474,6 +480,21 @@ export interface CallProperties {
|
|
|
474
480
|
* @type {TEXT}
|
|
475
481
|
*/
|
|
476
482
|
QueueTimeFormatted: string;
|
|
483
|
+
/** RingingDurationFormatted
|
|
484
|
+
*
|
|
485
|
+
* @type {TEXT}
|
|
486
|
+
*/
|
|
487
|
+
RingingDurationFormatted: string;
|
|
488
|
+
/** TotalDurationFormatted
|
|
489
|
+
*
|
|
490
|
+
* @type {TEXT}
|
|
491
|
+
*/
|
|
492
|
+
TotalDurationFormatted: string;
|
|
493
|
+
/** IVRDurationFormatted
|
|
494
|
+
*
|
|
495
|
+
* @type {TEXT}
|
|
496
|
+
*/
|
|
497
|
+
IvrDurationFormatted: string;
|
|
477
498
|
/** Data field for Call records. Used by Communications team.
|
|
478
499
|
*
|
|
479
500
|
* @type {DATE_TIME}
|
|
@@ -511,9 +532,9 @@ export interface CallProperties {
|
|
|
511
532
|
QueueEntryTime: string;
|
|
512
533
|
/** IVRDuration
|
|
513
534
|
*
|
|
514
|
-
* @type {
|
|
535
|
+
* @type {NUMBER}
|
|
515
536
|
*/
|
|
516
|
-
IvrDuration:
|
|
537
|
+
IvrDuration: number;
|
|
517
538
|
/** CallEndReason
|
|
518
539
|
*
|
|
519
540
|
* @type {ENUM}
|
package/dist/entities-v2/Call.js
CHANGED
|
@@ -228,6 +228,12 @@ var CallPropertyKeys;
|
|
|
228
228
|
CallPropertyKeys["TimeInProgressFormatted"] = "TimeInProgressFormatted";
|
|
229
229
|
/** QueueTimeFormatted */
|
|
230
230
|
CallPropertyKeys["QueueTimeFormatted"] = "QueueTimeFormatted";
|
|
231
|
+
/** RingingDurationFormatted */
|
|
232
|
+
CallPropertyKeys["RingingDurationFormatted"] = "RingingDurationFormatted";
|
|
233
|
+
/** TotalDurationFormatted */
|
|
234
|
+
CallPropertyKeys["TotalDurationFormatted"] = "TotalDurationFormatted";
|
|
235
|
+
/** IVRDurationFormatted */
|
|
236
|
+
CallPropertyKeys["IvrDurationFormatted"] = "IVRDurationFormatted";
|
|
231
237
|
/** Data field for Call records. Used by Communications team. */
|
|
232
238
|
CallPropertyKeys["EndTime"] = "EndTime";
|
|
233
239
|
/** RecordingDuration (Communications - Call) */
|