@wildix/wda-history-client 1.0.17 → 1.0.18
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",
|
|
@@ -108,7 +108,7 @@ declare const GetCallCommand_base: {
|
|
|
108
108
|
* // fileName: "STRING_VALUE", // required
|
|
109
109
|
* // start: Number("long"), // required
|
|
110
110
|
* // end: Number("long"), // required
|
|
111
|
-
* // owner: "
|
|
111
|
+
* // owner: "CALLEE" || "CALLER" || "SYSTEM", // required
|
|
112
112
|
* // url: "STRING_VALUE", // required
|
|
113
113
|
* // pauses: [ // CallRecordPausesList // required
|
|
114
114
|
* // { // 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
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-history-client",
|
|
3
3
|
"description": "@wildix/wda-history-client client",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.18",
|
|
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",
|