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