@wildix/wda-insights-client 1.0.30 → 1.0.32
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.
|
@@ -78,9 +78,9 @@ exports.License = {
|
|
|
78
78
|
XBEES: "x-bees",
|
|
79
79
|
};
|
|
80
80
|
exports.CallRecordOwner = {
|
|
81
|
-
CALLEE: "
|
|
82
|
-
CALLER: "
|
|
83
|
-
SYSTEM: "
|
|
81
|
+
CALLEE: "CALLEE",
|
|
82
|
+
CALLER: "CALLER",
|
|
83
|
+
SYSTEM: "SYSTEM",
|
|
84
84
|
};
|
|
85
85
|
exports.CallRecordPauseReason = {
|
|
86
86
|
HOLD: "hold",
|
|
@@ -72,9 +72,9 @@ export const License = {
|
|
|
72
72
|
XBEES: "x-bees",
|
|
73
73
|
};
|
|
74
74
|
export const CallRecordOwner = {
|
|
75
|
-
CALLEE: "
|
|
76
|
-
CALLER: "
|
|
77
|
-
SYSTEM: "
|
|
75
|
+
CALLEE: "CALLEE",
|
|
76
|
+
CALLER: "CALLER",
|
|
77
|
+
SYSTEM: "SYSTEM",
|
|
78
78
|
};
|
|
79
79
|
export const CallRecordPauseReason = {
|
|
80
80
|
HOLD: "hold",
|
|
@@ -105,6 +105,8 @@ declare const ListConversationsCommand_base: {
|
|
|
105
105
|
* // connectTime: Number("long"),
|
|
106
106
|
* // talkTime: Number("long"),
|
|
107
107
|
* // waitTime: Number("long"),
|
|
108
|
+
* // queueTime: Number("long"),
|
|
109
|
+
* // holdTime: Number("long"),
|
|
108
110
|
* // duration: Number("long"), // required
|
|
109
111
|
* // caller: { // CallParticipant
|
|
110
112
|
* // type: "REMOTE" || "LOCAL", // required
|
|
@@ -163,7 +165,7 @@ declare const ListConversationsCommand_base: {
|
|
|
163
165
|
* // fileName: "STRING_VALUE", // required
|
|
164
166
|
* // start: Number("long"), // required
|
|
165
167
|
* // end: Number("long"), // required
|
|
166
|
-
* // owner: "
|
|
168
|
+
* // owner: "CALLEE" || "CALLER" || "SYSTEM", // required
|
|
167
169
|
* // url: "STRING_VALUE", // required
|
|
168
170
|
* // pauses: [ // CallRecordPausesList // required
|
|
169
171
|
* // { // CallRecordPause
|
|
@@ -162,9 +162,9 @@ export type License = typeof License[keyof typeof License];
|
|
|
162
162
|
* @enum
|
|
163
163
|
*/
|
|
164
164
|
export declare const CallRecordOwner: {
|
|
165
|
-
readonly CALLEE: "
|
|
166
|
-
readonly CALLER: "
|
|
167
|
-
readonly SYSTEM: "
|
|
165
|
+
readonly CALLEE: "CALLEE";
|
|
166
|
+
readonly CALLER: "CALLER";
|
|
167
|
+
readonly SYSTEM: "SYSTEM";
|
|
168
168
|
};
|
|
169
169
|
/**
|
|
170
170
|
* @public
|
|
@@ -237,6 +237,8 @@ export interface CallRecord {
|
|
|
237
237
|
connectTime?: number;
|
|
238
238
|
talkTime?: number;
|
|
239
239
|
waitTime?: number;
|
|
240
|
+
queueTime?: number;
|
|
241
|
+
holdTime?: number;
|
|
240
242
|
duration: number;
|
|
241
243
|
caller?: CallParticipant;
|
|
242
244
|
callee?: CallParticipant;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-insights-client",
|
|
3
3
|
"description": "@wildix/wda-insights-client client",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.32",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -76,4 +76,4 @@
|
|
|
76
76
|
"react-native": {
|
|
77
77
|
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
78
78
|
}
|
|
79
|
-
}
|
|
79
|
+
}
|