@wildix/wda-stream-client 1.1.29 → 1.1.30

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.
@@ -298,6 +298,9 @@ declare const DescribeEventCommand_base: {
298
298
  * // ],
299
299
  * // notifications: { // CallFlowNotifications
300
300
  * // destinations: "<CallFlowAttachmentDestinationList>",
301
+ * // type: [ // NotificationsType
302
+ * // "STRING_VALUE",
303
+ * // ],
301
304
  * // },
302
305
  * // status: "CONNECTING" || "TALKING" || "HOLD", // required
303
306
  * // statusChangeDate: "STRING_VALUE", // required
@@ -514,6 +517,9 @@ declare const DescribeEventCommand_base: {
514
517
  * // ],
515
518
  * // notifications: {
516
519
  * // destinations: "<CallFlowAttachmentDestinationList>",
520
+ * // type: [
521
+ * // "STRING_VALUE",
522
+ * // ],
517
523
  * // },
518
524
  * // },
519
525
  * // ],
@@ -1523,6 +1529,9 @@ declare const DescribeEventCommand_base: {
1523
1529
  * // ],
1524
1530
  * // notifications: {
1525
1531
  * // destinations: "<CallFlowAttachmentDestinationList>",
1532
+ * // type: [
1533
+ * // "STRING_VALUE",
1534
+ * // ],
1526
1535
  * // },
1527
1536
  * // status: "CONNECTING" || "TALKING" || "HOLD", // required
1528
1537
  * // statusChangeDate: "STRING_VALUE", // required
@@ -1670,6 +1679,9 @@ declare const DescribeEventCommand_base: {
1670
1679
  * // ],
1671
1680
  * // notifications: {
1672
1681
  * // destinations: "<CallFlowAttachmentDestinationList>",
1682
+ * // type: [
1683
+ * // "STRING_VALUE",
1684
+ * // ],
1673
1685
  * // },
1674
1686
  * // },
1675
1687
  * // ],
@@ -1761,6 +1773,9 @@ declare const DescribeEventCommand_base: {
1761
1773
  * // ],
1762
1774
  * // notifications: {
1763
1775
  * // destinations: "<CallFlowAttachmentDestinationList>",
1776
+ * // type: [
1777
+ * // "STRING_VALUE",
1778
+ * // ],
1764
1779
  * // },
1765
1780
  * // id: "STRING_VALUE", // required
1766
1781
  * // pbx: "STRING_VALUE", // required
@@ -225,6 +225,9 @@ declare const QueryConversationsCommand_base: {
225
225
  * // ],
226
226
  * // notifications: { // CallFlowNotifications
227
227
  * // destinations: "<CallFlowAttachmentDestinationList>",
228
+ * // type: [ // NotificationsType
229
+ * // "STRING_VALUE",
230
+ * // ],
228
231
  * // },
229
232
  * // status: "CONNECTING" || "TALKING" || "HOLD", // required
230
233
  * // statusChangeDate: "STRING_VALUE", // required
@@ -368,6 +368,7 @@ export type License = typeof License[keyof typeof License];
368
368
  */
369
369
  export interface CallFlowNotifications {
370
370
  destinations?: (CallFlowAttachmentDestination)[] | undefined;
371
+ type?: (string)[] | undefined;
371
372
  }
372
373
  /**
373
374
  * @public
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-stream-client",
3
3
  "description": "@wildix/wda-stream-client client",
4
- "version": "1.1.29",
4
+ "version": "1.1.30",
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",