@wildix/wms-api-client 1.1.16 → 1.1.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.
@@ -258,8 +258,8 @@ const se_NotificationsCommand = async (input, context) => {
258
258
  b.bp("/api/v1/notifications");
259
259
  let body;
260
260
  body = JSON.stringify((0, smithy_client_1.take)(input, {
261
+ 'broadcastId': [],
261
262
  'broadcastMessage': [],
262
- 'conferenceId': [],
263
263
  'confirmationTimeout': [],
264
264
  'customRid': [],
265
265
  'event': [],
@@ -242,8 +242,8 @@ export const se_NotificationsCommand = async (input, context) => {
242
242
  b.bp("/api/v1/notifications");
243
243
  let body;
244
244
  body = JSON.stringify(take(input, {
245
+ 'broadcastId': [],
245
246
  'broadcastMessage': [],
246
- 'conferenceId': [],
247
247
  'confirmationTimeout': [],
248
248
  'customRid': [],
249
249
  'event': [],
@@ -39,7 +39,7 @@ declare const NotificationsCommand_base: {
39
39
  * notificationType: "STRING_VALUE", // required
40
40
  * event: "STRING_VALUE", // required
41
41
  * broadcastMessage: "STRING_VALUE", // required
42
- * conferenceId: "STRING_VALUE", // required
42
+ * broadcastId: "STRING_VALUE", // required
43
43
  * playFrequency: Number("int"),
44
44
  * confirmationTimeout: Number("int"),
45
45
  * queueTimeout: Number("int"),
@@ -598,10 +598,10 @@ export interface NotificationsInput {
598
598
  */
599
599
  broadcastMessage: string;
600
600
  /**
601
- * The conference ID to which the message will be sent.
601
+ * The broadcast ID to which the message will be sent.
602
602
  * @public
603
603
  */
604
- conferenceId: string;
604
+ broadcastId: string;
605
605
  /**
606
606
  * How often (each N seconds) a request has to be repeated.
607
607
  * @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.16",
4
+ "version": "1.1.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",