@wildix/wms-api-client 1.1.30 → 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.
@@ -46,7 +46,7 @@ declare const NotificationsCommand_base: {
46
46
  * origin: "STRING_VALUE",
47
47
  * priority: Number("int"),
48
48
  * customRid: "STRING_VALUE",
49
- * skipTranscribe: "STRING_VALUE",
49
+ * skipTranscribe: true || false,
50
50
  * };
51
51
  * const command = new NotificationsCommand(input);
52
52
  * const response = await client.send(command);
@@ -988,7 +988,7 @@ export interface NotificationsInput {
988
988
  * @public
989
989
  */
990
990
  customRid?: string | undefined;
991
- skipTranscribe?: string | undefined;
991
+ skipTranscribe?: boolean | undefined;
992
992
  }
993
993
  /**
994
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.30",
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",