@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
@@ -27,7 +27,7 @@ declare const ListProjectionsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * Lists all projections and categories available for the tenant.
30
+ * Lists all projections available for the tenant.
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -42,7 +42,7 @@ declare const ListProjectionsCommand_base: {
42
42
  * // { // ListProjectionsOutput
43
43
  * // projections: [ // ProjectionsList // required
44
44
  * // { // Projection
45
- * // categoryId: "STRING_VALUE", // required
45
+ * // category: "STRING_VALUE", // required
46
46
  * // name: "STRING_VALUE", // required
47
47
  * // description: "STRING_VALUE",
48
48
  * // instructions: "STRING_VALUE",
@@ -75,6 +75,185 @@ declare const ListProjectionsCommand_base: {
75
75
  * // },
76
76
  * // },
77
77
  * // ],
78
+ * // filter: { // ListConversationsFilter
79
+ * // id: [ // ListConversationsFilterIdList
80
+ * // { // ConversationTarget Union: only one key present
81
+ * // call: { // CallConversationTarget
82
+ * // callId: "STRING_VALUE", // required
83
+ * // flowIndex: Number("int"), // required
84
+ * // },
85
+ * // conference: { // ConferenceConversationTarget
86
+ * // conferenceId: "STRING_VALUE", // required
87
+ * // },
88
+ * // chat: { // ChatConversationTarget
89
+ * // chatId: "STRING_VALUE", // required
90
+ * // },
91
+ * // },
92
+ * // ],
93
+ * // entity: { // ListConversationsFilterEntity
94
+ * // call: true || false,
95
+ * // conference: true || false,
96
+ * // chat: true || false,
97
+ * // },
98
+ * // participants: [ // ListConversationsFilterParticipantList
99
+ * // { // ListConversationsFilterParticipant Union: only one key present
100
+ * // email: "STRING_VALUE",
101
+ * // phone: "STRING_VALUE",
102
+ * // extension: "STRING_VALUE",
103
+ * // },
104
+ * // ],
105
+ * // participantsToInclude: [
106
+ * // {// Union: only one key present
107
+ * // email: "STRING_VALUE",
108
+ * // phone: "STRING_VALUE",
109
+ * // extension: "STRING_VALUE",
110
+ * // },
111
+ * // ],
112
+ * // participantsToExclude: [
113
+ * // {// Union: only one key present
114
+ * // email: "STRING_VALUE",
115
+ * // phone: "STRING_VALUE",
116
+ * // extension: "STRING_VALUE",
117
+ * // },
118
+ * // ],
119
+ * // chatbots: [ // ListConversationsFilterKeyword
120
+ * // "STRING_VALUE",
121
+ * // ],
122
+ * // voicebots: [
123
+ * // "STRING_VALUE",
124
+ * // ],
125
+ * // service: [
126
+ * // "STRING_VALUE",
127
+ * // ],
128
+ * // group: [
129
+ * // "STRING_VALUE",
130
+ * // ],
131
+ * // department: [
132
+ * // "STRING_VALUE",
133
+ * // ],
134
+ * // tag: "<ListConversationsFilterKeyword>",
135
+ * // pbx: "<ListConversationsFilterKeyword>",
136
+ * // trunk: "<ListConversationsFilterKeyword>",
137
+ * // queue: "<ListConversationsFilterKeyword>",
138
+ * // country: "<ListConversationsFilterKeyword>",
139
+ * // location: "<ListConversationsFilterKeyword>",
140
+ * // phases: [ // ListConversationsFilterPhases
141
+ * // "STRING_VALUE",
142
+ * // ],
143
+ * // language: "<ListConversationsFilterKeyword>",
144
+ * // duration: { // ListConversationsFilterNumber
145
+ * // from: Number("int"),
146
+ * // to: Number("int"),
147
+ * // },
148
+ * // interaction: { // ListConversationsFilterInteraction
149
+ * // talkRatio: {
150
+ * // from: Number("int"),
151
+ * // to: Number("int"),
152
+ * // },
153
+ * // wordsPerMinute: {
154
+ * // from: Number("int"),
155
+ * // to: Number("int"),
156
+ * // },
157
+ * // interruptions: {
158
+ * // from: Number("int"),
159
+ * // to: Number("int"),
160
+ * // },
161
+ * // patience: { // ListConversationsFilterFloat
162
+ * // from: Number("float"),
163
+ * // to: Number("float"),
164
+ * // },
165
+ * // longestMonologue: {
166
+ * // from: Number("int"),
167
+ * // to: Number("int"),
168
+ * // },
169
+ * // longestCustomerStory: "<ListConversationsFilterNumber>",
170
+ * // },
171
+ * // recorded: true || false,
172
+ * // transcribed: true || false,
173
+ * // direction: { // ListConversationsFilterDirection
174
+ * // inbound: true || false,
175
+ * // outbound: true || false,
176
+ * // internal: true || false,
177
+ * // },
178
+ * // insights: [ // ListConversationsFilterInsightsList
179
+ * // { // ListConversationsFilterInsight
180
+ * // projectionId: "STRING_VALUE", // required
181
+ * // fieldId: "STRING_VALUE", // required
182
+ * // match: "STRING_VALUE",
183
+ * // matchAny: [ // StringList
184
+ * // "STRING_VALUE",
185
+ * // ],
186
+ * // },
187
+ * // ],
188
+ * // channel: { // ListConversationsFilterChannel
189
+ * // sms: true || false,
190
+ * // whatsapp: true || false,
191
+ * // kite: true || false,
192
+ * // },
193
+ * // date: { // ListConversationsFilterDate Union: only one key present
194
+ * // absolute: { // ListConversationsFilterAbsoluteDate
195
+ * // from: "STRING_VALUE",
196
+ * // to: "STRING_VALUE",
197
+ * // timeZone: "STRING_VALUE",
198
+ * // },
199
+ * // predefined: { // ListConversationsFilterPredefinedDate
200
+ * // type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
201
+ * // timeZone: "STRING_VALUE",
202
+ * // },
203
+ * // },
204
+ * // dayOfWeek: { // ListConversationsFilterDateIndex
205
+ * // index: Number("int"),
206
+ * // timeZone: "STRING_VALUE",
207
+ * // },
208
+ * // hourOfDay: {
209
+ * // index: Number("int"),
210
+ * // timeZone: "STRING_VALUE",
211
+ * // },
212
+ * // present: [ // ListConversationsFilterFieldsList
213
+ * // { // ListConversationsFilterField Union: only one key present
214
+ * // direction: true || false,
215
+ * // service: true || false,
216
+ * // group: true || false,
217
+ * // department: true || false,
218
+ * // chatbot: true || false,
219
+ * // voicebot: true || false,
220
+ * // tag: true || false,
221
+ * // pbx: true || false,
222
+ * // trunk: true || false,
223
+ * // queue: true || false,
224
+ * // country: true || false,
225
+ * // location: true || false,
226
+ * // language: true || false,
227
+ * // projection: { // ListConversationsFilterProjectionField
228
+ * // projectionId: "STRING_VALUE", // required
229
+ * // fieldId: "STRING_VALUE", // required
230
+ * // },
231
+ * // },
232
+ * // ],
233
+ * // absent: [
234
+ * // {// Union: only one key present
235
+ * // direction: true || false,
236
+ * // service: true || false,
237
+ * // group: true || false,
238
+ * // department: true || false,
239
+ * // chatbot: true || false,
240
+ * // voicebot: true || false,
241
+ * // tag: true || false,
242
+ * // pbx: true || false,
243
+ * // trunk: true || false,
244
+ * // queue: true || false,
245
+ * // country: true || false,
246
+ * // location: true || false,
247
+ * // language: true || false,
248
+ * // projection: {
249
+ * // projectionId: "STRING_VALUE", // required
250
+ * // fieldId: "STRING_VALUE", // required
251
+ * // },
252
+ * // },
253
+ * // ],
254
+ * // },
255
+ * // model: "STRING_VALUE",
256
+ * // group: "STRING_VALUE",
78
257
  * // fields: [ // ProjectionFieldsList // required
79
258
  * // { // ProjectionField
80
259
  * // id: "STRING_VALUE", // required
@@ -90,14 +269,13 @@ declare const ListProjectionsCommand_base: {
90
269
  * // ],
91
270
  * // multi: true || false,
92
271
  * // adaptive: true || false,
272
+ * // adaptiveOptions: [
273
+ * // "STRING_VALUE",
274
+ * // ],
93
275
  * // },
94
276
  * // },
95
277
  * // },
96
278
  * // ],
97
- * // model: { // ProjectionModel
98
- * // provider: "OPENAI",
99
- * // name: "STRING_VALUE",
100
- * // },
101
279
  * // id: "STRING_VALUE", // required
102
280
  * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
103
281
  * // version: Number("int"), // required
@@ -108,12 +286,6 @@ declare const ListProjectionsCommand_base: {
108
286
  * // },
109
287
  * // },
110
288
  * // ],
111
- * // categories: [ // ProjectionsCategoriesList // required
112
- * // { // ProjectionsCategory
113
- * // id: "STRING_VALUE", // required
114
- * // name: "STRING_VALUE", // required
115
- * // },
116
- * // ],
117
289
  * // };
118
290
  *
119
291
  * ```
@@ -42,7 +42,7 @@ declare const PauseProjectionCommand_base: {
42
42
  * const response = await client.send(command);
43
43
  * // { // PauseProjectionOutput
44
44
  * // projection: { // Projection
45
- * // categoryId: "STRING_VALUE", // required
45
+ * // category: "STRING_VALUE", // required
46
46
  * // name: "STRING_VALUE", // required
47
47
  * // description: "STRING_VALUE",
48
48
  * // instructions: "STRING_VALUE",
@@ -75,6 +75,185 @@ declare const PauseProjectionCommand_base: {
75
75
  * // },
76
76
  * // },
77
77
  * // ],
78
+ * // filter: { // ListConversationsFilter
79
+ * // id: [ // ListConversationsFilterIdList
80
+ * // { // ConversationTarget Union: only one key present
81
+ * // call: { // CallConversationTarget
82
+ * // callId: "STRING_VALUE", // required
83
+ * // flowIndex: Number("int"), // required
84
+ * // },
85
+ * // conference: { // ConferenceConversationTarget
86
+ * // conferenceId: "STRING_VALUE", // required
87
+ * // },
88
+ * // chat: { // ChatConversationTarget
89
+ * // chatId: "STRING_VALUE", // required
90
+ * // },
91
+ * // },
92
+ * // ],
93
+ * // entity: { // ListConversationsFilterEntity
94
+ * // call: true || false,
95
+ * // conference: true || false,
96
+ * // chat: true || false,
97
+ * // },
98
+ * // participants: [ // ListConversationsFilterParticipantList
99
+ * // { // ListConversationsFilterParticipant Union: only one key present
100
+ * // email: "STRING_VALUE",
101
+ * // phone: "STRING_VALUE",
102
+ * // extension: "STRING_VALUE",
103
+ * // },
104
+ * // ],
105
+ * // participantsToInclude: [
106
+ * // {// Union: only one key present
107
+ * // email: "STRING_VALUE",
108
+ * // phone: "STRING_VALUE",
109
+ * // extension: "STRING_VALUE",
110
+ * // },
111
+ * // ],
112
+ * // participantsToExclude: [
113
+ * // {// Union: only one key present
114
+ * // email: "STRING_VALUE",
115
+ * // phone: "STRING_VALUE",
116
+ * // extension: "STRING_VALUE",
117
+ * // },
118
+ * // ],
119
+ * // chatbots: [ // ListConversationsFilterKeyword
120
+ * // "STRING_VALUE",
121
+ * // ],
122
+ * // voicebots: [
123
+ * // "STRING_VALUE",
124
+ * // ],
125
+ * // service: [
126
+ * // "STRING_VALUE",
127
+ * // ],
128
+ * // group: [
129
+ * // "STRING_VALUE",
130
+ * // ],
131
+ * // department: [
132
+ * // "STRING_VALUE",
133
+ * // ],
134
+ * // tag: "<ListConversationsFilterKeyword>",
135
+ * // pbx: "<ListConversationsFilterKeyword>",
136
+ * // trunk: "<ListConversationsFilterKeyword>",
137
+ * // queue: "<ListConversationsFilterKeyword>",
138
+ * // country: "<ListConversationsFilterKeyword>",
139
+ * // location: "<ListConversationsFilterKeyword>",
140
+ * // phases: [ // ListConversationsFilterPhases
141
+ * // "STRING_VALUE",
142
+ * // ],
143
+ * // language: "<ListConversationsFilterKeyword>",
144
+ * // duration: { // ListConversationsFilterNumber
145
+ * // from: Number("int"),
146
+ * // to: Number("int"),
147
+ * // },
148
+ * // interaction: { // ListConversationsFilterInteraction
149
+ * // talkRatio: {
150
+ * // from: Number("int"),
151
+ * // to: Number("int"),
152
+ * // },
153
+ * // wordsPerMinute: {
154
+ * // from: Number("int"),
155
+ * // to: Number("int"),
156
+ * // },
157
+ * // interruptions: {
158
+ * // from: Number("int"),
159
+ * // to: Number("int"),
160
+ * // },
161
+ * // patience: { // ListConversationsFilterFloat
162
+ * // from: Number("float"),
163
+ * // to: Number("float"),
164
+ * // },
165
+ * // longestMonologue: {
166
+ * // from: Number("int"),
167
+ * // to: Number("int"),
168
+ * // },
169
+ * // longestCustomerStory: "<ListConversationsFilterNumber>",
170
+ * // },
171
+ * // recorded: true || false,
172
+ * // transcribed: true || false,
173
+ * // direction: { // ListConversationsFilterDirection
174
+ * // inbound: true || false,
175
+ * // outbound: true || false,
176
+ * // internal: true || false,
177
+ * // },
178
+ * // insights: [ // ListConversationsFilterInsightsList
179
+ * // { // ListConversationsFilterInsight
180
+ * // projectionId: "STRING_VALUE", // required
181
+ * // fieldId: "STRING_VALUE", // required
182
+ * // match: "STRING_VALUE",
183
+ * // matchAny: [ // StringList
184
+ * // "STRING_VALUE",
185
+ * // ],
186
+ * // },
187
+ * // ],
188
+ * // channel: { // ListConversationsFilterChannel
189
+ * // sms: true || false,
190
+ * // whatsapp: true || false,
191
+ * // kite: true || false,
192
+ * // },
193
+ * // date: { // ListConversationsFilterDate Union: only one key present
194
+ * // absolute: { // ListConversationsFilterAbsoluteDate
195
+ * // from: "STRING_VALUE",
196
+ * // to: "STRING_VALUE",
197
+ * // timeZone: "STRING_VALUE",
198
+ * // },
199
+ * // predefined: { // ListConversationsFilterPredefinedDate
200
+ * // type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
201
+ * // timeZone: "STRING_VALUE",
202
+ * // },
203
+ * // },
204
+ * // dayOfWeek: { // ListConversationsFilterDateIndex
205
+ * // index: Number("int"),
206
+ * // timeZone: "STRING_VALUE",
207
+ * // },
208
+ * // hourOfDay: {
209
+ * // index: Number("int"),
210
+ * // timeZone: "STRING_VALUE",
211
+ * // },
212
+ * // present: [ // ListConversationsFilterFieldsList
213
+ * // { // ListConversationsFilterField Union: only one key present
214
+ * // direction: true || false,
215
+ * // service: true || false,
216
+ * // group: true || false,
217
+ * // department: true || false,
218
+ * // chatbot: true || false,
219
+ * // voicebot: true || false,
220
+ * // tag: true || false,
221
+ * // pbx: true || false,
222
+ * // trunk: true || false,
223
+ * // queue: true || false,
224
+ * // country: true || false,
225
+ * // location: true || false,
226
+ * // language: true || false,
227
+ * // projection: { // ListConversationsFilterProjectionField
228
+ * // projectionId: "STRING_VALUE", // required
229
+ * // fieldId: "STRING_VALUE", // required
230
+ * // },
231
+ * // },
232
+ * // ],
233
+ * // absent: [
234
+ * // {// Union: only one key present
235
+ * // direction: true || false,
236
+ * // service: true || false,
237
+ * // group: true || false,
238
+ * // department: true || false,
239
+ * // chatbot: true || false,
240
+ * // voicebot: true || false,
241
+ * // tag: true || false,
242
+ * // pbx: true || false,
243
+ * // trunk: true || false,
244
+ * // queue: true || false,
245
+ * // country: true || false,
246
+ * // location: true || false,
247
+ * // language: true || false,
248
+ * // projection: {
249
+ * // projectionId: "STRING_VALUE", // required
250
+ * // fieldId: "STRING_VALUE", // required
251
+ * // },
252
+ * // },
253
+ * // ],
254
+ * // },
255
+ * // model: "STRING_VALUE",
256
+ * // group: "STRING_VALUE",
78
257
  * // fields: [ // ProjectionFieldsList // required
79
258
  * // { // ProjectionField
80
259
  * // id: "STRING_VALUE", // required
@@ -90,14 +269,13 @@ declare const PauseProjectionCommand_base: {
90
269
  * // ],
91
270
  * // multi: true || false,
92
271
  * // adaptive: true || false,
272
+ * // adaptiveOptions: [
273
+ * // "STRING_VALUE",
274
+ * // ],
93
275
  * // },
94
276
  * // },
95
277
  * // },
96
278
  * // ],
97
- * // model: { // ProjectionModel
98
- * // provider: "OPENAI",
99
- * // name: "STRING_VALUE",
100
- * // },
101
279
  * // id: "STRING_VALUE", // required
102
280
  * // status: "ENABLED" || "PAUSED" || "DISABLED", // required
103
281
  * // version: Number("int"), // required