@wildix/wda-history-client 1.2.17 → 1.2.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.
@@ -205,18 +205,9 @@ declare const GetCallCommand_base: {
205
205
  * // },
206
206
  * // },
207
207
  * // ],
208
- * // notificationDestinations: [
209
- * // {
210
- * // phone: "STRING_VALUE",
211
- * // name: "STRING_VALUE",
212
- * // email: "STRING_VALUE",
213
- * // userId: "STRING_VALUE",
214
- * // userExtension: "STRING_VALUE",
215
- * // userDepartment: "STRING_VALUE",
216
- * // groupId: "STRING_VALUE",
217
- * // groupName: "STRING_VALUE",
218
- * // },
219
- * // ],
208
+ * // notifications: { // CallFlowNotifications
209
+ * // destinations: "<CallFlowAttachmentDestinationList>",
210
+ * // },
220
211
  * // id: "STRING_VALUE", // required
221
212
  * // pbx: "STRING_VALUE", // required
222
213
  * // time: Number("long"), // required
@@ -222,18 +222,9 @@ declare const QueryConversationsCommand_base: {
222
222
  * // },
223
223
  * // },
224
224
  * // ],
225
- * // notificationDestinations: [
226
- * // {
227
- * // phone: "STRING_VALUE",
228
- * // name: "STRING_VALUE",
229
- * // email: "STRING_VALUE",
230
- * // userId: "STRING_VALUE",
231
- * // userExtension: "STRING_VALUE",
232
- * // userDepartment: "STRING_VALUE",
233
- * // groupId: "STRING_VALUE",
234
- * // groupName: "STRING_VALUE",
235
- * // },
236
- * // ],
225
+ * // notifications: { // CallFlowNotifications
226
+ * // destinations: "<CallFlowAttachmentDestinationList>",
227
+ * // },
237
228
  * // id: "STRING_VALUE", // required
238
229
  * // pbx: "STRING_VALUE", // required
239
230
  * // time: Number("long"), // required
@@ -222,18 +222,9 @@ declare const QueryUserCallsCommand_base: {
222
222
  * // },
223
223
  * // },
224
224
  * // ],
225
- * // notificationDestinations: [
226
- * // {
227
- * // phone: "STRING_VALUE",
228
- * // name: "STRING_VALUE",
229
- * // email: "STRING_VALUE",
230
- * // userId: "STRING_VALUE",
231
- * // userExtension: "STRING_VALUE",
232
- * // userDepartment: "STRING_VALUE",
233
- * // groupId: "STRING_VALUE",
234
- * // groupName: "STRING_VALUE",
235
- * // },
236
- * // ],
225
+ * // notifications: { // CallFlowNotifications
226
+ * // destinations: "<CallFlowAttachmentDestinationList>",
227
+ * // },
237
228
  * // id: "STRING_VALUE", // required
238
229
  * // pbx: "STRING_VALUE", // required
239
230
  * // time: Number("long"), // required
@@ -208,18 +208,9 @@ declare const UpdateCallCommand_base: {
208
208
  * // },
209
209
  * // },
210
210
  * // ],
211
- * // notificationDestinations: [
212
- * // {
213
- * // phone: "STRING_VALUE",
214
- * // name: "STRING_VALUE",
215
- * // email: "STRING_VALUE",
216
- * // userId: "STRING_VALUE",
217
- * // userExtension: "STRING_VALUE",
218
- * // userDepartment: "STRING_VALUE",
219
- * // groupId: "STRING_VALUE",
220
- * // groupName: "STRING_VALUE",
221
- * // },
222
- * // ],
211
+ * // notifications: { // CallFlowNotifications
212
+ * // destinations: "<CallFlowAttachmentDestinationList>",
213
+ * // },
223
214
  * // id: "STRING_VALUE", // required
224
215
  * // pbx: "STRING_VALUE", // required
225
216
  * // time: Number("long"), // required
@@ -318,6 +318,12 @@ export declare const License: {
318
318
  * @public
319
319
  */
320
320
  export type License = typeof License[keyof typeof License];
321
+ /**
322
+ * @public
323
+ */
324
+ export interface CallFlowNotifications {
325
+ destinations?: (CallFlowAttachmentDestination)[] | undefined;
326
+ }
321
327
  /**
322
328
  * @public
323
329
  * @enum
@@ -446,7 +452,7 @@ export interface CallRecord {
446
452
  */
447
453
  attachmentDestinations?: (CallFlowAttachmentDestination)[] | undefined;
448
454
  attachments?: (CallFlowAttachment)[] | undefined;
449
- notificationDestinations?: (CallFlowAttachmentDestination)[] | undefined;
455
+ notifications?: CallFlowNotifications | undefined;
450
456
  id: string;
451
457
  pbx: string;
452
458
  time: number;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wildix/wda-history-client",
3
3
  "description": "@wildix/wda-history-client client",
4
- "version": "1.2.17",
4
+ "version": "1.2.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",