@d19n/youfibre-odin-sdk 2.0.87 → 2.0.89
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.
|
@@ -215,7 +215,13 @@ export declare enum CallPropertyKeys {
|
|
|
215
215
|
/** IVRDuration */
|
|
216
216
|
IvrDuration = "IVRDuration",
|
|
217
217
|
/** CallEndReason */
|
|
218
|
-
CallEndReason = "CallEndReason"
|
|
218
|
+
CallEndReason = "CallEndReason",
|
|
219
|
+
/** AgentRingTime */
|
|
220
|
+
AgentRingTime = "AgentRingTime",
|
|
221
|
+
/** RoutingAttempts */
|
|
222
|
+
RoutingAttempts = "RoutingAttempts",
|
|
223
|
+
/** RingingTimeTotalSec */
|
|
224
|
+
RingingTimeTotalSec = "RingingTimeTotalSec"
|
|
219
225
|
}
|
|
220
226
|
/**
|
|
221
227
|
* Properties for Call records
|
|
@@ -492,6 +498,21 @@ export interface CallProperties {
|
|
|
492
498
|
* @enum {CallCallEndReason}
|
|
493
499
|
*/
|
|
494
500
|
CallEndReason: CallCallEndReason;
|
|
501
|
+
/** AgentRingTime
|
|
502
|
+
*
|
|
503
|
+
* @type {DATE_TIME}
|
|
504
|
+
*/
|
|
505
|
+
AgentRingTime: string;
|
|
506
|
+
/** RoutingAttempts
|
|
507
|
+
*
|
|
508
|
+
* @type {TEXT}
|
|
509
|
+
*/
|
|
510
|
+
RoutingAttempts: string;
|
|
511
|
+
/** RingingTimeTotalSec
|
|
512
|
+
*
|
|
513
|
+
* @type {TEXT}
|
|
514
|
+
*/
|
|
515
|
+
RingingTimeTotalSec: string;
|
|
495
516
|
}
|
|
496
517
|
/**
|
|
497
518
|
* Call entity from NotificationModule
|
package/dist/entities-v2/Call.js
CHANGED
|
@@ -216,6 +216,12 @@ var CallPropertyKeys;
|
|
|
216
216
|
CallPropertyKeys["IvrDuration"] = "IVRDuration";
|
|
217
217
|
/** CallEndReason */
|
|
218
218
|
CallPropertyKeys["CallEndReason"] = "CallEndReason";
|
|
219
|
+
/** AgentRingTime */
|
|
220
|
+
CallPropertyKeys["AgentRingTime"] = "AgentRingTime";
|
|
221
|
+
/** RoutingAttempts */
|
|
222
|
+
CallPropertyKeys["RoutingAttempts"] = "RoutingAttempts";
|
|
223
|
+
/** RingingTimeTotalSec */
|
|
224
|
+
CallPropertyKeys["RingingTimeTotalSec"] = "RingingTimeTotalSec";
|
|
219
225
|
})(CallPropertyKeys = exports.CallPropertyKeys || (exports.CallPropertyKeys = {}));
|
|
220
226
|
/**
|
|
221
227
|
* Call entity from NotificationModule
|