@wildix/wms-api-client 1.2.1 → 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.
@@ -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?: string | undefined;
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.1",
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",