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