@wildix/wms-api-client 1.1.29 → 1.1.31

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.
@@ -472,6 +472,7 @@ const se_NotificationsCommand = async (input, context) => {
472
472
  'playFrequency': [],
473
473
  'priority': [],
474
474
  'queueTimeout': [],
475
+ 'skipTranscribe': [],
475
476
  }));
476
477
  b.m("POST")
477
478
  .h(headers)
@@ -444,6 +444,7 @@ export const se_NotificationsCommand = async (input, context) => {
444
444
  'playFrequency': [],
445
445
  'priority': [],
446
446
  'queueTimeout': [],
447
+ 'skipTranscribe': [],
447
448
  }));
448
449
  b.m("POST")
449
450
  .h(headers)
@@ -46,6 +46,7 @@ declare const NotificationsCommand_base: {
46
46
  * origin: "STRING_VALUE",
47
47
  * priority: Number("int"),
48
48
  * customRid: "STRING_VALUE",
49
+ * skipTranscribe: true || false,
49
50
  * };
50
51
  * const command = new NotificationsCommand(input);
51
52
  * const response = await client.send(command);
@@ -988,6 +988,7 @@ export interface NotificationsInput {
988
988
  * @public
989
989
  */
990
990
  customRid?: string | undefined;
991
+ skipTranscribe?: boolean | undefined;
991
992
  }
992
993
  /**
993
994
  * @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.1.29",
4
+ "version": "1.1.31",
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",
@@ -80,4 +80,4 @@
80
80
  "react-native": {
81
81
  "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
82
82
  }
83
- }
83
+ }