@wildix/wms-api-client 1.2.0 → 1.2.2
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.
|
@@ -75,7 +75,7 @@ const se_CallControlDtmfCommand = async (input, context) => {
|
|
|
75
75
|
const headers = {
|
|
76
76
|
'content-type': 'application/json',
|
|
77
77
|
};
|
|
78
|
-
b.bp("/api/v2/call-control/
|
|
78
|
+
b.bp("/api/v2/call-control/dtmf");
|
|
79
79
|
const query = (0, smithy_client_1.map)({
|
|
80
80
|
[_u]: [, input[_u]],
|
|
81
81
|
});
|
|
@@ -68,7 +68,7 @@ export const se_CallControlDtmfCommand = async (input, context) => {
|
|
|
68
68
|
const headers = {
|
|
69
69
|
'content-type': 'application/json',
|
|
70
70
|
};
|
|
71
|
-
b.bp("/api/v2/call-control/
|
|
71
|
+
b.bp("/api/v2/call-control/dtmf");
|
|
72
72
|
const query = map({
|
|
73
73
|
[_u]: [, input[_u]],
|
|
74
74
|
});
|
|
@@ -38,7 +38,7 @@ declare const CallControlDtmfCommand_base: {
|
|
|
38
38
|
* const input = { // CallControlDtmfInput
|
|
39
39
|
* user: "STRING_VALUE",
|
|
40
40
|
* sipCallId: "STRING_VALUE", // required
|
|
41
|
-
* digits: "STRING_VALUE",
|
|
41
|
+
* digits: "STRING_VALUE", // required
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CallControlDtmfCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
@@ -246,10 +246,10 @@ export interface CallControlDtmfInput {
|
|
|
246
246
|
*/
|
|
247
247
|
sipCallId: string;
|
|
248
248
|
/**
|
|
249
|
-
* DTMF digits
|
|
249
|
+
* DTMF digits. Allowed characters: 0-9, *, #
|
|
250
250
|
* @public
|
|
251
251
|
*/
|
|
252
|
-
digits
|
|
252
|
+
digits: string;
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
* @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wms-api-client",
|
|
3
3
|
"description": "@wildix/wms-api-client client",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.2",
|
|
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",
|