@wildix/wda-insights-client 1.1.30 → 1.1.32

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.
Files changed (37) hide show
  1. package/dist-cjs/WdaInsights.js +4 -6
  2. package/dist-cjs/commands/{CreateProjectionsCategoryCommand.js → GetAnalysisSettingsCommand.js} +7 -7
  3. package/dist-cjs/commands/{DeleteProjectionsCategoryCommand.js → PutAnalysisSettingsCommand.js} +7 -7
  4. package/dist-cjs/commands/index.js +2 -3
  5. package/dist-cjs/models/models_0.js +2 -5
  6. package/dist-cjs/protocols/Aws_restJson1.js +109 -106
  7. package/dist-es/WdaInsights.js +4 -6
  8. package/dist-es/commands/GetAnalysisSettingsCommand.js +17 -0
  9. package/dist-es/commands/PutAnalysisSettingsCommand.js +17 -0
  10. package/dist-es/commands/index.js +2 -3
  11. package/dist-es/models/models_0.js +0 -3
  12. package/dist-es/protocols/Aws_restJson1.js +98 -93
  13. package/dist-types/WdaInsights.d.ts +16 -21
  14. package/dist-types/WdaInsightsClient.d.ts +4 -5
  15. package/dist-types/commands/CreateProjectionCommand.d.ts +366 -10
  16. package/dist-types/commands/DisableProjectionCommand.d.ts +183 -5
  17. package/dist-types/commands/EnableProjectionCommand.d.ts +183 -5
  18. package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +256 -0
  19. package/dist-types/commands/GetProjectionCommand.d.ts +183 -5
  20. package/dist-types/commands/ListProjectionsCommand.d.ts +184 -12
  21. package/dist-types/commands/PauseProjectionCommand.d.ts +183 -5
  22. package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +435 -0
  23. package/dist-types/commands/UpdateProjectionCommand.d.ts +366 -10
  24. package/dist-types/commands/index.d.ts +2 -3
  25. package/dist-types/models/models_0.d.ts +150 -84
  26. package/dist-types/protocols/Aws_restJson1.d.ts +18 -27
  27. package/dist-types/runtimeConfig.browser.d.ts +1 -6
  28. package/dist-types/runtimeConfig.d.ts +1 -6
  29. package/dist-types/runtimeConfig.native.d.ts +1 -6
  30. package/package.json +1 -1
  31. package/dist-cjs/commands/UpdateProjectionsCategoryCommand.js +0 -21
  32. package/dist-es/commands/CreateProjectionsCategoryCommand.js +0 -17
  33. package/dist-es/commands/DeleteProjectionsCategoryCommand.js +0 -17
  34. package/dist-es/commands/UpdateProjectionsCategoryCommand.js +0 -17
  35. package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +0 -81
  36. package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +0 -75
  37. package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +0 -83
@@ -35,7 +35,7 @@ declare const UpdateProjectionCommand_base: {
35
35
  * // const { WdaInsightsClient, UpdateProjectionCommand } = require("@wildix/wda-insights-client"); // CommonJS import
36
36
  * const client = new WdaInsightsClient(config);
37
37
  * const input = { // UpdateProjectionInput
38
- * categoryId: "STRING_VALUE", // required
38
+ * category: "STRING_VALUE", // required
39
39
  * name: "STRING_VALUE", // required
40
40
  * description: "STRING_VALUE",
41
41
  * instructions: "STRING_VALUE",
@@ -68,6 +68,185 @@ declare const UpdateProjectionCommand_base: {
68
68
  * },
69
69
  * },
70
70
  * ],
71
+ * filter: { // ListConversationsFilter
72
+ * id: [ // ListConversationsFilterIdList
73
+ * { // ConversationTarget Union: only one key present
74
+ * call: { // CallConversationTarget
75
+ * callId: "STRING_VALUE", // required
76
+ * flowIndex: Number("int"), // required
77
+ * },
78
+ * conference: { // ConferenceConversationTarget
79
+ * conferenceId: "STRING_VALUE", // required
80
+ * },
81
+ * chat: { // ChatConversationTarget
82
+ * chatId: "STRING_VALUE", // required
83
+ * },
84
+ * },
85
+ * ],
86
+ * entity: { // ListConversationsFilterEntity
87
+ * call: true || false,
88
+ * conference: true || false,
89
+ * chat: true || false,
90
+ * },
91
+ * participants: [ // ListConversationsFilterParticipantList
92
+ * { // ListConversationsFilterParticipant Union: only one key present
93
+ * email: "STRING_VALUE",
94
+ * phone: "STRING_VALUE",
95
+ * extension: "STRING_VALUE",
96
+ * },
97
+ * ],
98
+ * participantsToInclude: [
99
+ * {// Union: only one key present
100
+ * email: "STRING_VALUE",
101
+ * phone: "STRING_VALUE",
102
+ * extension: "STRING_VALUE",
103
+ * },
104
+ * ],
105
+ * participantsToExclude: [
106
+ * {// Union: only one key present
107
+ * email: "STRING_VALUE",
108
+ * phone: "STRING_VALUE",
109
+ * extension: "STRING_VALUE",
110
+ * },
111
+ * ],
112
+ * chatbots: [ // ListConversationsFilterKeyword
113
+ * "STRING_VALUE",
114
+ * ],
115
+ * voicebots: [
116
+ * "STRING_VALUE",
117
+ * ],
118
+ * service: [
119
+ * "STRING_VALUE",
120
+ * ],
121
+ * group: [
122
+ * "STRING_VALUE",
123
+ * ],
124
+ * department: [
125
+ * "STRING_VALUE",
126
+ * ],
127
+ * tag: "<ListConversationsFilterKeyword>",
128
+ * pbx: "<ListConversationsFilterKeyword>",
129
+ * trunk: "<ListConversationsFilterKeyword>",
130
+ * queue: "<ListConversationsFilterKeyword>",
131
+ * country: "<ListConversationsFilterKeyword>",
132
+ * location: "<ListConversationsFilterKeyword>",
133
+ * phases: [ // ListConversationsFilterPhases
134
+ * "STRING_VALUE",
135
+ * ],
136
+ * language: "<ListConversationsFilterKeyword>",
137
+ * duration: { // ListConversationsFilterNumber
138
+ * from: Number("int"),
139
+ * to: Number("int"),
140
+ * },
141
+ * interaction: { // ListConversationsFilterInteraction
142
+ * talkRatio: {
143
+ * from: Number("int"),
144
+ * to: Number("int"),
145
+ * },
146
+ * wordsPerMinute: {
147
+ * from: Number("int"),
148
+ * to: Number("int"),
149
+ * },
150
+ * interruptions: {
151
+ * from: Number("int"),
152
+ * to: Number("int"),
153
+ * },
154
+ * patience: { // ListConversationsFilterFloat
155
+ * from: Number("float"),
156
+ * to: Number("float"),
157
+ * },
158
+ * longestMonologue: {
159
+ * from: Number("int"),
160
+ * to: Number("int"),
161
+ * },
162
+ * longestCustomerStory: "<ListConversationsFilterNumber>",
163
+ * },
164
+ * recorded: true || false,
165
+ * transcribed: true || false,
166
+ * direction: { // ListConversationsFilterDirection
167
+ * inbound: true || false,
168
+ * outbound: true || false,
169
+ * internal: true || false,
170
+ * },
171
+ * insights: [ // ListConversationsFilterInsightsList
172
+ * { // ListConversationsFilterInsight
173
+ * projectionId: "STRING_VALUE", // required
174
+ * fieldId: "STRING_VALUE", // required
175
+ * match: "STRING_VALUE",
176
+ * matchAny: [ // StringList
177
+ * "STRING_VALUE",
178
+ * ],
179
+ * },
180
+ * ],
181
+ * channel: { // ListConversationsFilterChannel
182
+ * sms: true || false,
183
+ * whatsapp: true || false,
184
+ * kite: true || false,
185
+ * },
186
+ * date: { // ListConversationsFilterDate Union: only one key present
187
+ * absolute: { // ListConversationsFilterAbsoluteDate
188
+ * from: "STRING_VALUE",
189
+ * to: "STRING_VALUE",
190
+ * timeZone: "STRING_VALUE",
191
+ * },
192
+ * predefined: { // ListConversationsFilterPredefinedDate
193
+ * type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
194
+ * timeZone: "STRING_VALUE",
195
+ * },
196
+ * },
197
+ * dayOfWeek: { // ListConversationsFilterDateIndex
198
+ * index: Number("int"),
199
+ * timeZone: "STRING_VALUE",
200
+ * },
201
+ * hourOfDay: {
202
+ * index: Number("int"),
203
+ * timeZone: "STRING_VALUE",
204
+ * },
205
+ * present: [ // ListConversationsFilterFieldsList
206
+ * { // ListConversationsFilterField Union: only one key present
207
+ * direction: true || false,
208
+ * service: true || false,
209
+ * group: true || false,
210
+ * department: true || false,
211
+ * chatbot: true || false,
212
+ * voicebot: true || false,
213
+ * tag: true || false,
214
+ * pbx: true || false,
215
+ * trunk: true || false,
216
+ * queue: true || false,
217
+ * country: true || false,
218
+ * location: true || false,
219
+ * language: true || false,
220
+ * projection: { // ListConversationsFilterProjectionField
221
+ * projectionId: "STRING_VALUE", // required
222
+ * fieldId: "STRING_VALUE", // required
223
+ * },
224
+ * },
225
+ * ],
226
+ * absent: [
227
+ * {// Union: only one key present
228
+ * direction: true || false,
229
+ * service: true || false,
230
+ * group: true || false,
231
+ * department: true || false,
232
+ * chatbot: true || false,
233
+ * voicebot: true || false,
234
+ * tag: true || false,
235
+ * pbx: true || false,
236
+ * trunk: true || false,
237
+ * queue: true || false,
238
+ * country: true || false,
239
+ * location: true || false,
240
+ * language: true || false,
241
+ * projection: {
242
+ * projectionId: "STRING_VALUE", // required
243
+ * fieldId: "STRING_VALUE", // required
244
+ * },
245
+ * },
246
+ * ],
247
+ * },
248
+ * model: "STRING_VALUE",
249
+ * group: "STRING_VALUE",
71
250
  * fields: [ // ProjectionFieldsList // required
72
251
  * { // ProjectionField
73
252
  * id: "STRING_VALUE", // required
@@ -83,14 +262,13 @@ declare const UpdateProjectionCommand_base: {
83
262
  * ],
84
263
  * multi: true || false,
85
264
  * adaptive: true || false,
265
+ * adaptiveOptions: [
266
+ * "STRING_VALUE",
267
+ * ],
86
268
  * },
87
269
  * },
88
270
  * },
89
271
  * ],
90
- * model: { // ProjectionModel
91
- * provider: "OPENAI",
92
- * name: "STRING_VALUE",
93
- * },
94
272
  * company: "STRING_VALUE",
95
273
  * id: "STRING_VALUE", // required
96
274
  * };
@@ -98,7 +276,7 @@ declare const UpdateProjectionCommand_base: {
98
276
  * const response = await client.send(command);
99
277
  * // { // UpdateProjectionOutput
100
278
  * // projection: { // Projection
101
- * // categoryId: "STRING_VALUE", // required
279
+ * // category: "STRING_VALUE", // required
102
280
  * // name: "STRING_VALUE", // required
103
281
  * // description: "STRING_VALUE",
104
282
  * // instructions: "STRING_VALUE",
@@ -131,6 +309,185 @@ declare const UpdateProjectionCommand_base: {
131
309
  * // },
132
310
  * // },
133
311
  * // ],
312
+ * // filter: { // ListConversationsFilter
313
+ * // id: [ // ListConversationsFilterIdList
314
+ * // { // ConversationTarget Union: only one key present
315
+ * // call: { // CallConversationTarget
316
+ * // callId: "STRING_VALUE", // required
317
+ * // flowIndex: Number("int"), // required
318
+ * // },
319
+ * // conference: { // ConferenceConversationTarget
320
+ * // conferenceId: "STRING_VALUE", // required
321
+ * // },
322
+ * // chat: { // ChatConversationTarget
323
+ * // chatId: "STRING_VALUE", // required
324
+ * // },
325
+ * // },
326
+ * // ],
327
+ * // entity: { // ListConversationsFilterEntity
328
+ * // call: true || false,
329
+ * // conference: true || false,
330
+ * // chat: true || false,
331
+ * // },
332
+ * // participants: [ // ListConversationsFilterParticipantList
333
+ * // { // ListConversationsFilterParticipant Union: only one key present
334
+ * // email: "STRING_VALUE",
335
+ * // phone: "STRING_VALUE",
336
+ * // extension: "STRING_VALUE",
337
+ * // },
338
+ * // ],
339
+ * // participantsToInclude: [
340
+ * // {// Union: only one key present
341
+ * // email: "STRING_VALUE",
342
+ * // phone: "STRING_VALUE",
343
+ * // extension: "STRING_VALUE",
344
+ * // },
345
+ * // ],
346
+ * // participantsToExclude: [
347
+ * // {// Union: only one key present
348
+ * // email: "STRING_VALUE",
349
+ * // phone: "STRING_VALUE",
350
+ * // extension: "STRING_VALUE",
351
+ * // },
352
+ * // ],
353
+ * // chatbots: [ // ListConversationsFilterKeyword
354
+ * // "STRING_VALUE",
355
+ * // ],
356
+ * // voicebots: [
357
+ * // "STRING_VALUE",
358
+ * // ],
359
+ * // service: [
360
+ * // "STRING_VALUE",
361
+ * // ],
362
+ * // group: [
363
+ * // "STRING_VALUE",
364
+ * // ],
365
+ * // department: [
366
+ * // "STRING_VALUE",
367
+ * // ],
368
+ * // tag: "<ListConversationsFilterKeyword>",
369
+ * // pbx: "<ListConversationsFilterKeyword>",
370
+ * // trunk: "<ListConversationsFilterKeyword>",
371
+ * // queue: "<ListConversationsFilterKeyword>",
372
+ * // country: "<ListConversationsFilterKeyword>",
373
+ * // location: "<ListConversationsFilterKeyword>",
374
+ * // phases: [ // ListConversationsFilterPhases
375
+ * // "STRING_VALUE",
376
+ * // ],
377
+ * // language: "<ListConversationsFilterKeyword>",
378
+ * // duration: { // ListConversationsFilterNumber
379
+ * // from: Number("int"),
380
+ * // to: Number("int"),
381
+ * // },
382
+ * // interaction: { // ListConversationsFilterInteraction
383
+ * // talkRatio: {
384
+ * // from: Number("int"),
385
+ * // to: Number("int"),
386
+ * // },
387
+ * // wordsPerMinute: {
388
+ * // from: Number("int"),
389
+ * // to: Number("int"),
390
+ * // },
391
+ * // interruptions: {
392
+ * // from: Number("int"),
393
+ * // to: Number("int"),
394
+ * // },
395
+ * // patience: { // ListConversationsFilterFloat
396
+ * // from: Number("float"),
397
+ * // to: Number("float"),
398
+ * // },
399
+ * // longestMonologue: {
400
+ * // from: Number("int"),
401
+ * // to: Number("int"),
402
+ * // },
403
+ * // longestCustomerStory: "<ListConversationsFilterNumber>",
404
+ * // },
405
+ * // recorded: true || false,
406
+ * // transcribed: true || false,
407
+ * // direction: { // ListConversationsFilterDirection
408
+ * // inbound: true || false,
409
+ * // outbound: true || false,
410
+ * // internal: true || false,
411
+ * // },
412
+ * // insights: [ // ListConversationsFilterInsightsList
413
+ * // { // ListConversationsFilterInsight
414
+ * // projectionId: "STRING_VALUE", // required
415
+ * // fieldId: "STRING_VALUE", // required
416
+ * // match: "STRING_VALUE",
417
+ * // matchAny: [ // StringList
418
+ * // "STRING_VALUE",
419
+ * // ],
420
+ * // },
421
+ * // ],
422
+ * // channel: { // ListConversationsFilterChannel
423
+ * // sms: true || false,
424
+ * // whatsapp: true || false,
425
+ * // kite: true || false,
426
+ * // },
427
+ * // date: { // ListConversationsFilterDate Union: only one key present
428
+ * // absolute: { // ListConversationsFilterAbsoluteDate
429
+ * // from: "STRING_VALUE",
430
+ * // to: "STRING_VALUE",
431
+ * // timeZone: "STRING_VALUE",
432
+ * // },
433
+ * // predefined: { // ListConversationsFilterPredefinedDate
434
+ * // type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
435
+ * // timeZone: "STRING_VALUE",
436
+ * // },
437
+ * // },
438
+ * // dayOfWeek: { // ListConversationsFilterDateIndex
439
+ * // index: Number("int"),
440
+ * // timeZone: "STRING_VALUE",
441
+ * // },
442
+ * // hourOfDay: {
443
+ * // index: Number("int"),
444
+ * // timeZone: "STRING_VALUE",
445
+ * // },
446
+ * // present: [ // ListConversationsFilterFieldsList
447
+ * // { // ListConversationsFilterField Union: only one key present
448
+ * // direction: true || false,
449
+ * // service: true || false,
450
+ * // group: true || false,
451
+ * // department: true || false,
452
+ * // chatbot: true || false,
453
+ * // voicebot: true || false,
454
+ * // tag: true || false,
455
+ * // pbx: true || false,
456
+ * // trunk: true || false,
457
+ * // queue: true || false,
458
+ * // country: true || false,
459
+ * // location: true || false,
460
+ * // language: true || false,
461
+ * // projection: { // ListConversationsFilterProjectionField
462
+ * // projectionId: "STRING_VALUE", // required
463
+ * // fieldId: "STRING_VALUE", // required
464
+ * // },
465
+ * // },
466
+ * // ],
467
+ * // absent: [
468
+ * // {// Union: only one key present
469
+ * // direction: true || false,
470
+ * // service: true || false,
471
+ * // group: true || false,
472
+ * // department: true || false,
473
+ * // chatbot: true || false,
474
+ * // voicebot: true || false,
475
+ * // tag: true || false,
476
+ * // pbx: true || false,
477
+ * // trunk: true || false,
478
+ * // queue: true || false,
479
+ * // country: true || false,
480
+ * // location: true || false,
481
+ * // language: true || false,
482
+ * // projection: {
483
+ * // projectionId: "STRING_VALUE", // required
484
+ * // fieldId: "STRING_VALUE", // required
485
+ * // },
486
+ * // },
487
+ * // ],
488
+ * // },
489
+ * // model: "STRING_VALUE",
490
+ * // group: "STRING_VALUE",
134
491
  * // fields: [ // ProjectionFieldsList // required
135
492
  * // { // ProjectionField
136
493
  * // id: "STRING_VALUE", // required
@@ -146,14 +503,13 @@ declare const UpdateProjectionCommand_base: {
146
503
  * // ],
147
504
  * // multi: true || false,
148
505
  * // adaptive: true || false,
506
+ * // adaptiveOptions: [
507
+ * // "STRING_VALUE",
508
+ * // ],
149
509
  * // },
150
510
  * // },
151
511
  * // },
152
512
  * // ],
153
- * // model: { // ProjectionModel
154
- * // provider: "OPENAI",
155
- * // name: "STRING_VALUE",
156
- * // },
157
513
  * // id: "STRING_VALUE", // required
158
514
  * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
159
515
  * // version: Number("int"), // required
@@ -2,15 +2,14 @@ export * from "./CreateDashboardCommand";
2
2
  export * from "./CreateFilterCommand";
3
3
  export * from "./CreatePlaylistCommand";
4
4
  export * from "./CreateProjectionCommand";
5
- export * from "./CreateProjectionsCategoryCommand";
6
5
  export * from "./DeleteDashboardCommand";
7
6
  export * from "./DeleteFilterCommand";
8
7
  export * from "./DeletePlaylistCommand";
9
8
  export * from "./DeletePlaylistItemCommand";
10
9
  export * from "./DeleteProjectionCommand";
11
- export * from "./DeleteProjectionsCategoryCommand";
12
10
  export * from "./DisableProjectionCommand";
13
11
  export * from "./EnableProjectionCommand";
12
+ export * from "./GetAnalysisSettingsCommand";
14
13
  export * from "./GetCallCharacteristicsCommand";
15
14
  export * from "./GetCallInsightsCommand";
16
15
  export * from "./GetCallStateCommand";
@@ -39,6 +38,7 @@ export * from "./ListPlaylistsCommand";
39
38
  export * from "./ListProjectionsCommand";
40
39
  export * from "./ListWatchHistoryCommand";
41
40
  export * from "./PauseProjectionCommand";
41
+ export * from "./PutAnalysisSettingsCommand";
42
42
  export * from "./PutPlaylistItemCommand";
43
43
  export * from "./QueryConversationsCountCommand";
44
44
  export * from "./ScheduleCallSummaryGenerationCommand";
@@ -50,5 +50,4 @@ export * from "./UpdatePinnedDashboardsCommand";
50
50
  export * from "./UpdatePlaylistCommand";
51
51
  export * from "./UpdatePlaylistAccessCommand";
52
52
  export * from "./UpdateProjectionCommand";
53
- export * from "./UpdateProjectionsCategoryCommand";
54
53
  export * from "./WatchCommand";