@wildix/wda-insights-client 1.1.34 → 1.1.36
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 +0 -2
- package/dist-cjs/commands/index.js +0 -1
- package/dist-cjs/models/models_0.js +9 -6
- package/dist-cjs/protocols/Aws_restJson1.js +52 -48
- package/dist-es/WdaInsights.js +0 -2
- package/dist-es/commands/index.js +0 -1
- package/dist-es/models/models_0.js +8 -5
- package/dist-es/protocols/Aws_restJson1.js +50 -44
- package/dist-types/WdaInsights.d.ts +0 -7
- package/dist-types/WdaInsightsClient.d.ts +2 -3
- package/dist-types/commands/CreateProjectionCommand.d.ts +362 -6
- 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 +181 -3
- package/dist-types/commands/EnableProjectionCommand.d.ts +181 -3
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +178 -0
- package/dist-types/commands/GetProjectionCommand.d.ts +181 -3
- package/dist-types/commands/ListConversationsCommand.d.ts +22 -30
- package/dist-types/commands/ListPlaylistItemsCommand.d.ts +22 -30
- package/dist-types/commands/ListProjectionsCommand.d.ts +183 -5
- package/dist-types/commands/ListWatchHistoryCommand.d.ts +22 -30
- package/dist-types/commands/PauseProjectionCommand.d.ts +181 -3
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +356 -0
- package/dist-types/commands/UpdateProjectionCommand.d.ts +362 -4
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +3 -1
- package/dist-types/commands/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +152 -43
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -9
- package/dist-types/runtimeConfig.browser.d.ts +1 -6
- package/dist-types/runtimeConfig.d.ts +1 -6
- package/dist-types/runtimeConfig.native.d.ts +1 -6
- package/package.json +1 -1
- package/dist-cjs/commands/UpdateProjectionAnalysisSettingsCommand.js +0 -21
- package/dist-es/commands/UpdateProjectionAnalysisSettingsCommand.js +0 -17
- package/dist-types/commands/UpdateProjectionAnalysisSettingsCommand.d.ts +0 -145
|
@@ -146,6 +146,31 @@ export interface CallFlowRecording {
|
|
|
146
146
|
owner: CallRecordOwner;
|
|
147
147
|
url: string;
|
|
148
148
|
pauses: (CallRecordPause)[];
|
|
149
|
+
destinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
* @enum
|
|
154
|
+
*/
|
|
155
|
+
export declare const CallFlowTranscriptionStatus: {
|
|
156
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
157
|
+
readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
|
|
158
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[keyof typeof CallFlowTranscriptionStatus];
|
|
164
|
+
/**
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
export interface CallFlowTranscription {
|
|
168
|
+
/**
|
|
169
|
+
* If present, indicates the explicit recipients from 'Send To Emails'
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
destinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
173
|
+
status: CallFlowTranscriptionStatus;
|
|
149
174
|
}
|
|
150
175
|
/**
|
|
151
176
|
* @public
|
|
@@ -158,7 +183,7 @@ export interface CallFlowVoicemail {
|
|
|
158
183
|
/**
|
|
159
184
|
* @public
|
|
160
185
|
*/
|
|
161
|
-
export type CallFlowAttachment = CallFlowAttachment.FaxMember | CallFlowAttachment.RecordingMember | CallFlowAttachment.VoicemailMember | CallFlowAttachment.$UnknownMember;
|
|
186
|
+
export type CallFlowAttachment = CallFlowAttachment.FaxMember | CallFlowAttachment.RecordingMember | CallFlowAttachment.TranscriptionMember | CallFlowAttachment.VoicemailMember | CallFlowAttachment.$UnknownMember;
|
|
162
187
|
/**
|
|
163
188
|
* @public
|
|
164
189
|
*/
|
|
@@ -167,18 +192,28 @@ export declare namespace CallFlowAttachment {
|
|
|
167
192
|
recording: CallFlowRecording;
|
|
168
193
|
fax?: never;
|
|
169
194
|
voicemail?: never;
|
|
195
|
+
transcription?: never;
|
|
170
196
|
$unknown?: never;
|
|
171
197
|
}
|
|
172
198
|
interface FaxMember {
|
|
173
199
|
recording?: never;
|
|
174
200
|
fax: CallFlowFax;
|
|
175
201
|
voicemail?: never;
|
|
202
|
+
transcription?: never;
|
|
176
203
|
$unknown?: never;
|
|
177
204
|
}
|
|
178
205
|
interface VoicemailMember {
|
|
179
206
|
recording?: never;
|
|
180
207
|
fax?: never;
|
|
181
208
|
voicemail: CallFlowVoicemail;
|
|
209
|
+
transcription?: never;
|
|
210
|
+
$unknown?: never;
|
|
211
|
+
}
|
|
212
|
+
interface TranscriptionMember {
|
|
213
|
+
recording?: never;
|
|
214
|
+
fax?: never;
|
|
215
|
+
voicemail?: never;
|
|
216
|
+
transcription: CallFlowTranscription;
|
|
182
217
|
$unknown?: never;
|
|
183
218
|
}
|
|
184
219
|
/**
|
|
@@ -188,12 +223,14 @@ export declare namespace CallFlowAttachment {
|
|
|
188
223
|
recording?: never;
|
|
189
224
|
fax?: never;
|
|
190
225
|
voicemail?: never;
|
|
226
|
+
transcription?: never;
|
|
191
227
|
$unknown: [string, any];
|
|
192
228
|
}
|
|
193
229
|
interface Visitor<T> {
|
|
194
230
|
recording: (value: CallFlowRecording) => T;
|
|
195
231
|
fax: (value: CallFlowFax) => T;
|
|
196
232
|
voicemail: (value: CallFlowVoicemail) => T;
|
|
233
|
+
transcription: (value: CallFlowTranscription) => T;
|
|
197
234
|
_: (name: string, value: any) => T;
|
|
198
235
|
}
|
|
199
236
|
const visit: <T>(value: CallFlowAttachment, visitor: Visitor<T>) => T;
|
|
@@ -204,6 +241,7 @@ export declare namespace CallFlowAttachment {
|
|
|
204
241
|
*/
|
|
205
242
|
export declare const CallFlowAttachmentType: {
|
|
206
243
|
readonly FAX: "FAX";
|
|
244
|
+
readonly TRANSCRIPTION: "TRANSCRIPTION";
|
|
207
245
|
readonly VOICEMAIL: "VOICEMAIL";
|
|
208
246
|
};
|
|
209
247
|
/**
|
|
@@ -305,25 +343,6 @@ export declare const License: {
|
|
|
305
343
|
* @public
|
|
306
344
|
*/
|
|
307
345
|
export type License = typeof License[keyof typeof License];
|
|
308
|
-
/**
|
|
309
|
-
* @public
|
|
310
|
-
*/
|
|
311
|
-
export interface CallFlowNotifications {
|
|
312
|
-
destinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
313
|
-
}
|
|
314
|
-
/**
|
|
315
|
-
* @public
|
|
316
|
-
* @enum
|
|
317
|
-
*/
|
|
318
|
-
export declare const CallFlowTranscriptionStatus: {
|
|
319
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
320
|
-
readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
|
|
321
|
-
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
322
|
-
};
|
|
323
|
-
/**
|
|
324
|
-
* @public
|
|
325
|
-
*/
|
|
326
|
-
export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[keyof typeof CallFlowTranscriptionStatus];
|
|
327
346
|
/**
|
|
328
347
|
* @public
|
|
329
348
|
* @enum
|
|
@@ -414,8 +433,26 @@ export interface CallRecord {
|
|
|
414
433
|
remotePhoneCountryCodeStr?: string | undefined;
|
|
415
434
|
remotePhoneLocation?: string | undefined;
|
|
416
435
|
callStatus?: ConversationStatus | undefined;
|
|
436
|
+
/**
|
|
437
|
+
* Please use `attachments.transcription.status` instead.
|
|
438
|
+
*
|
|
439
|
+
* @deprecated
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
417
442
|
transcriptionStatus?: CallFlowTranscriptionStatus | undefined;
|
|
443
|
+
/**
|
|
444
|
+
* Please use `attachments.transcription.language` instead.
|
|
445
|
+
*
|
|
446
|
+
* @deprecated
|
|
447
|
+
* @public
|
|
448
|
+
*/
|
|
418
449
|
transcriptionLanguage?: string | undefined;
|
|
450
|
+
/**
|
|
451
|
+
* Please use `attachments.transcription.seconds` instead.
|
|
452
|
+
*
|
|
453
|
+
* @deprecated
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
419
456
|
transcriptionSeconds?: number | undefined;
|
|
420
457
|
/**
|
|
421
458
|
* Consider to use `attachments` instead.
|
|
@@ -439,7 +476,6 @@ export interface CallRecord {
|
|
|
439
476
|
*/
|
|
440
477
|
attachmentDestinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
441
478
|
attachments?: (CallFlowAttachment)[] | undefined;
|
|
442
|
-
notifications?: CallFlowNotifications | undefined;
|
|
443
479
|
id: string;
|
|
444
480
|
pbx: string;
|
|
445
481
|
time: number;
|
|
@@ -2131,6 +2167,16 @@ export interface AnalysisSettings {
|
|
|
2131
2167
|
* @public
|
|
2132
2168
|
*/
|
|
2133
2169
|
defaultModel?: string | undefined;
|
|
2170
|
+
/**
|
|
2171
|
+
* True to disable analysis completely for the organization.
|
|
2172
|
+
* @public
|
|
2173
|
+
*/
|
|
2174
|
+
disabled?: boolean | undefined;
|
|
2175
|
+
/**
|
|
2176
|
+
* A Filter for conversations that SI would work for applied to the organization, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
2177
|
+
* @public
|
|
2178
|
+
*/
|
|
2179
|
+
filter?: ListConversationsFilter | undefined;
|
|
2134
2180
|
}
|
|
2135
2181
|
/**
|
|
2136
2182
|
* @public
|
|
@@ -2628,12 +2674,33 @@ export interface ProjectionField {
|
|
|
2628
2674
|
* @public
|
|
2629
2675
|
*/
|
|
2630
2676
|
export interface CreateProjectionInput {
|
|
2631
|
-
|
|
2677
|
+
/**
|
|
2678
|
+
* Free-form category label for projection grouping.
|
|
2679
|
+
* @public
|
|
2680
|
+
*/
|
|
2681
|
+
category?: string | undefined;
|
|
2682
|
+
/**
|
|
2683
|
+
* Compatibility field for legacy clients. Use `category` instead.
|
|
2684
|
+
*
|
|
2685
|
+
* @deprecated
|
|
2686
|
+
* @public
|
|
2687
|
+
*/
|
|
2688
|
+
categoryId?: string | undefined;
|
|
2632
2689
|
name: string;
|
|
2633
2690
|
description?: string | undefined;
|
|
2634
2691
|
instructions?: string | undefined;
|
|
2692
|
+
/**
|
|
2693
|
+
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
2694
|
+
*
|
|
2695
|
+
* @deprecated
|
|
2696
|
+
* @public
|
|
2697
|
+
*/
|
|
2635
2698
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
2636
|
-
|
|
2699
|
+
/**
|
|
2700
|
+
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
2701
|
+
* @public
|
|
2702
|
+
*/
|
|
2703
|
+
filter?: ListConversationsFilter | undefined;
|
|
2637
2704
|
/**
|
|
2638
2705
|
* Provider and model identifier to be used for the projection. Examples: 'openai://gpt-5' or 'google://gemini-3-pro'. This allows a specific projection to use the specified model.
|
|
2639
2706
|
* @public
|
|
@@ -2644,6 +2711,7 @@ export interface CreateProjectionInput {
|
|
|
2644
2711
|
* @public
|
|
2645
2712
|
*/
|
|
2646
2713
|
group?: string | undefined;
|
|
2714
|
+
fields: (ProjectionField)[];
|
|
2647
2715
|
/**
|
|
2648
2716
|
* The unique identifier of the tenant when a service token is used.
|
|
2649
2717
|
* @public
|
|
@@ -2674,12 +2742,33 @@ export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionSt
|
|
|
2674
2742
|
* @public
|
|
2675
2743
|
*/
|
|
2676
2744
|
export interface Projection {
|
|
2677
|
-
|
|
2745
|
+
/**
|
|
2746
|
+
* Free-form category label for projection grouping.
|
|
2747
|
+
* @public
|
|
2748
|
+
*/
|
|
2749
|
+
category?: string | undefined;
|
|
2750
|
+
/**
|
|
2751
|
+
* Compatibility field for legacy clients. Use `category` instead.
|
|
2752
|
+
*
|
|
2753
|
+
* @deprecated
|
|
2754
|
+
* @public
|
|
2755
|
+
*/
|
|
2756
|
+
categoryId?: string | undefined;
|
|
2678
2757
|
name: string;
|
|
2679
2758
|
description?: string | undefined;
|
|
2680
2759
|
instructions?: string | undefined;
|
|
2760
|
+
/**
|
|
2761
|
+
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
2762
|
+
*
|
|
2763
|
+
* @deprecated
|
|
2764
|
+
* @public
|
|
2765
|
+
*/
|
|
2681
2766
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
2682
|
-
|
|
2767
|
+
/**
|
|
2768
|
+
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
2769
|
+
* @public
|
|
2770
|
+
*/
|
|
2771
|
+
filter?: ListConversationsFilter | undefined;
|
|
2683
2772
|
/**
|
|
2684
2773
|
* Provider and model identifier to be used for the projection. Examples: 'openai://gpt-5' or 'google://gemini-3-pro'. This allows a specific projection to use the specified model.
|
|
2685
2774
|
* @public
|
|
@@ -2690,6 +2779,7 @@ export interface Projection {
|
|
|
2690
2779
|
* @public
|
|
2691
2780
|
*/
|
|
2692
2781
|
group?: string | undefined;
|
|
2782
|
+
fields: (ProjectionField)[];
|
|
2693
2783
|
id: string;
|
|
2694
2784
|
status: ProjectionStatus;
|
|
2695
2785
|
version: number;
|
|
@@ -3840,7 +3930,11 @@ export interface ListProjectionsInput {
|
|
|
3840
3930
|
*/
|
|
3841
3931
|
export interface ListProjectionsOutput {
|
|
3842
3932
|
projections: (Projection)[];
|
|
3843
|
-
|
|
3933
|
+
/**
|
|
3934
|
+
* Compatibility field for legacy clients. Categories are simulated from projection `category`/`categoryId` values.
|
|
3935
|
+
* @public
|
|
3936
|
+
*/
|
|
3937
|
+
categories?: (ProjectionsCategory)[] | undefined;
|
|
3844
3938
|
}
|
|
3845
3939
|
/**
|
|
3846
3940
|
* @public
|
|
@@ -3908,6 +4002,16 @@ export interface PutAnalysisSettingsInput {
|
|
|
3908
4002
|
* @public
|
|
3909
4003
|
*/
|
|
3910
4004
|
defaultModel?: string | undefined;
|
|
4005
|
+
/**
|
|
4006
|
+
* True to disable analysis completely for the organization.
|
|
4007
|
+
* @public
|
|
4008
|
+
*/
|
|
4009
|
+
disabled?: boolean | undefined;
|
|
4010
|
+
/**
|
|
4011
|
+
* A Filter for conversations that SI would work for applied to the organization, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
4012
|
+
* @public
|
|
4013
|
+
*/
|
|
4014
|
+
filter?: ListConversationsFilter | undefined;
|
|
3911
4015
|
/**
|
|
3912
4016
|
* The unique identifier of the tenant when a service token is used.
|
|
3913
4017
|
* @public
|
|
@@ -4133,29 +4237,33 @@ export interface UpdatePlaylistAccessOutput {
|
|
|
4133
4237
|
* @public
|
|
4134
4238
|
*/
|
|
4135
4239
|
export interface UpdateProjectionInput {
|
|
4136
|
-
|
|
4240
|
+
/**
|
|
4241
|
+
* Free-form category label for projection grouping.
|
|
4242
|
+
* @public
|
|
4243
|
+
*/
|
|
4244
|
+
category?: string | undefined;
|
|
4245
|
+
/**
|
|
4246
|
+
* Compatibility field for legacy clients. Use `category` instead.
|
|
4247
|
+
*
|
|
4248
|
+
* @deprecated
|
|
4249
|
+
* @public
|
|
4250
|
+
*/
|
|
4251
|
+
categoryId?: string | undefined;
|
|
4137
4252
|
name: string;
|
|
4138
4253
|
description?: string | undefined;
|
|
4139
4254
|
instructions?: string | undefined;
|
|
4255
|
+
/**
|
|
4256
|
+
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
4257
|
+
*
|
|
4258
|
+
* @deprecated
|
|
4259
|
+
* @public
|
|
4260
|
+
*/
|
|
4140
4261
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
4141
|
-
fields: (ProjectionField)[];
|
|
4142
4262
|
/**
|
|
4143
|
-
*
|
|
4263
|
+
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
4144
4264
|
* @public
|
|
4145
4265
|
*/
|
|
4146
|
-
|
|
4147
|
-
id: string;
|
|
4148
|
-
}
|
|
4149
|
-
/**
|
|
4150
|
-
* @public
|
|
4151
|
-
*/
|
|
4152
|
-
export interface UpdateProjectionOutput {
|
|
4153
|
-
projection: Projection;
|
|
4154
|
-
}
|
|
4155
|
-
/**
|
|
4156
|
-
* @public
|
|
4157
|
-
*/
|
|
4158
|
-
export interface UpdateProjectionAnalysisSettingsInput {
|
|
4266
|
+
filter?: ListConversationsFilter | undefined;
|
|
4159
4267
|
/**
|
|
4160
4268
|
* Provider and model identifier to be used for the projection. Examples: 'openai://gpt-5' or 'google://gemini-3-pro'. This allows a specific projection to use the specified model.
|
|
4161
4269
|
* @public
|
|
@@ -4166,6 +4274,7 @@ export interface UpdateProjectionAnalysisSettingsInput {
|
|
|
4166
4274
|
* @public
|
|
4167
4275
|
*/
|
|
4168
4276
|
group?: string | undefined;
|
|
4277
|
+
fields: (ProjectionField)[];
|
|
4169
4278
|
/**
|
|
4170
4279
|
* The unique identifier of the tenant when a service token is used.
|
|
4171
4280
|
* @public
|
|
@@ -4176,7 +4285,7 @@ export interface UpdateProjectionAnalysisSettingsInput {
|
|
|
4176
4285
|
/**
|
|
4177
4286
|
* @public
|
|
4178
4287
|
*/
|
|
4179
|
-
export interface
|
|
4288
|
+
export interface UpdateProjectionOutput {
|
|
4180
4289
|
projection: Projection;
|
|
4181
4290
|
}
|
|
4182
4291
|
/**
|
|
@@ -51,7 +51,6 @@ import { UpdateFilterCommandInput, UpdateFilterCommandOutput } from "../commands
|
|
|
51
51
|
import { UpdatePinnedDashboardsCommandInput, UpdatePinnedDashboardsCommandOutput } from "../commands/UpdatePinnedDashboardsCommand";
|
|
52
52
|
import { UpdatePlaylistAccessCommandInput, UpdatePlaylistAccessCommandOutput } from "../commands/UpdatePlaylistAccessCommand";
|
|
53
53
|
import { UpdatePlaylistCommandInput, UpdatePlaylistCommandOutput } from "../commands/UpdatePlaylistCommand";
|
|
54
|
-
import { UpdateProjectionAnalysisSettingsCommandInput, UpdateProjectionAnalysisSettingsCommandOutput } from "../commands/UpdateProjectionAnalysisSettingsCommand";
|
|
55
54
|
import { UpdateProjectionCommandInput, UpdateProjectionCommandOutput } from "../commands/UpdateProjectionCommand";
|
|
56
55
|
import { UpdateProjectionsCategoryCommandInput, UpdateProjectionsCategoryCommandOutput } from "../commands/UpdateProjectionsCategoryCommand";
|
|
57
56
|
import { WatchCommandInput, WatchCommandOutput } from "../commands/WatchCommand";
|
|
@@ -273,10 +272,6 @@ export declare const se_UpdatePlaylistAccessCommand: (input: UpdatePlaylistAcces
|
|
|
273
272
|
* serializeAws_restJson1UpdateProjectionCommand
|
|
274
273
|
*/
|
|
275
274
|
export declare const se_UpdateProjectionCommand: (input: UpdateProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
276
|
-
/**
|
|
277
|
-
* serializeAws_restJson1UpdateProjectionAnalysisSettingsCommand
|
|
278
|
-
*/
|
|
279
|
-
export declare const se_UpdateProjectionAnalysisSettingsCommand: (input: UpdateProjectionAnalysisSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
280
275
|
/**
|
|
281
276
|
* serializeAws_restJson1UpdateProjectionsCategoryCommand
|
|
282
277
|
*/
|
|
@@ -501,10 +496,6 @@ export declare const de_UpdatePlaylistAccessCommand: (output: __HttpResponse, co
|
|
|
501
496
|
* deserializeAws_restJson1UpdateProjectionCommand
|
|
502
497
|
*/
|
|
503
498
|
export declare const de_UpdateProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionCommandOutput>;
|
|
504
|
-
/**
|
|
505
|
-
* deserializeAws_restJson1UpdateProjectionAnalysisSettingsCommand
|
|
506
|
-
*/
|
|
507
|
-
export declare const de_UpdateProjectionAnalysisSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectionAnalysisSettingsCommandOutput>;
|
|
508
499
|
/**
|
|
509
500
|
* deserializeAws_restJson1UpdateProjectionsCategoryCommand
|
|
510
501
|
*/
|
|
@@ -15,13 +15,8 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
15
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
16
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
17
17
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
18
|
-
cacheMiddleware?: boolean | undefined;
|
|
19
|
-
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
20
|
-
protocolSettings?: {
|
|
21
|
-
[setting: string]: unknown;
|
|
22
|
-
defaultNamespace?: string | undefined;
|
|
23
|
-
} | undefined;
|
|
24
18
|
apiVersion: string;
|
|
19
|
+
cacheMiddleware?: boolean | undefined;
|
|
25
20
|
urlParser: import("@smithy/types").UrlParser;
|
|
26
21
|
base64Decoder: import("@smithy/types").Decoder;
|
|
27
22
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -16,13 +16,8 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
16
16
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
17
17
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
18
18
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
19
|
-
cacheMiddleware?: boolean | undefined;
|
|
20
|
-
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
21
|
-
protocolSettings?: {
|
|
22
|
-
[setting: string]: unknown;
|
|
23
|
-
defaultNamespace?: string | undefined;
|
|
24
|
-
} | undefined;
|
|
25
19
|
apiVersion: string;
|
|
20
|
+
cacheMiddleware?: boolean | undefined;
|
|
26
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
23
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -8,13 +8,8 @@ export declare const getRuntimeConfig: (config: WdaInsightsClientConfig) => {
|
|
|
8
8
|
env?: "stage" | "stable" | "prod" | undefined;
|
|
9
9
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
10
10
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
-
cacheMiddleware?: boolean | undefined;
|
|
12
|
-
protocol?: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | undefined;
|
|
13
|
-
protocolSettings?: {
|
|
14
|
-
[setting: string]: unknown;
|
|
15
|
-
defaultNamespace?: string | undefined;
|
|
16
|
-
} | undefined;
|
|
17
11
|
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
18
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
20
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-insights-client",
|
|
3
3
|
"description": "@wildix/wda-insights-client client",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.36",
|
|
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",
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateProjectionAnalysisSettingsCommand = exports.$Command = void 0;
|
|
4
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
class UpdateProjectionAnalysisSettingsCommand extends smithy_client_1.Command.classBuilder()
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [
|
|
11
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12
|
-
];
|
|
13
|
-
})
|
|
14
|
-
.s("WdaInsights", "UpdateProjectionAnalysisSettings", {})
|
|
15
|
-
.n("WdaInsightsClient", "UpdateProjectionAnalysisSettingsCommand")
|
|
16
|
-
.f(void 0, void 0)
|
|
17
|
-
.ser(Aws_restJson1_1.se_UpdateProjectionAnalysisSettingsCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_UpdateProjectionAnalysisSettingsCommand)
|
|
19
|
-
.build() {
|
|
20
|
-
}
|
|
21
|
-
exports.UpdateProjectionAnalysisSettingsCommand = UpdateProjectionAnalysisSettingsCommand;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { de_UpdateProjectionAnalysisSettingsCommand, se_UpdateProjectionAnalysisSettingsCommand, } from "../protocols/Aws_restJson1";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
export { $Command };
|
|
5
|
-
export class UpdateProjectionAnalysisSettingsCommand extends $Command.classBuilder()
|
|
6
|
-
.m(function (Command, cs, config, o) {
|
|
7
|
-
return [
|
|
8
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
-
];
|
|
10
|
-
})
|
|
11
|
-
.s("WdaInsights", "UpdateProjectionAnalysisSettings", {})
|
|
12
|
-
.n("WdaInsightsClient", "UpdateProjectionAnalysisSettingsCommand")
|
|
13
|
-
.f(void 0, void 0)
|
|
14
|
-
.ser(se_UpdateProjectionAnalysisSettingsCommand)
|
|
15
|
-
.de(de_UpdateProjectionAnalysisSettingsCommand)
|
|
16
|
-
.build() {
|
|
17
|
-
}
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
|
|
2
|
-
import { UpdateProjectionAnalysisSettingsInput, UpdateProjectionAnalysisSettingsOutput } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
|
-
/**
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
|
-
/**
|
|
11
|
-
* @public
|
|
12
|
-
*
|
|
13
|
-
* The input for {@link UpdateProjectionAnalysisSettingsCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface UpdateProjectionAnalysisSettingsCommandInput extends UpdateProjectionAnalysisSettingsInput {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link UpdateProjectionAnalysisSettingsCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface UpdateProjectionAnalysisSettingsCommandOutput extends UpdateProjectionAnalysisSettingsOutput, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const UpdateProjectionAnalysisSettingsCommand_base: {
|
|
25
|
-
new (input: UpdateProjectionAnalysisSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProjectionAnalysisSettingsCommandInput, UpdateProjectionAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (__0_0: UpdateProjectionAnalysisSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProjectionAnalysisSettingsCommandInput, UpdateProjectionAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Updates model and group analysis settings for the projection, including predefined projections.
|
|
31
|
-
* @example
|
|
32
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
-
* ```javascript
|
|
34
|
-
* import { WdaInsightsClient, UpdateProjectionAnalysisSettingsCommand } from "@wildix/wda-insights-client"; // ES Modules import
|
|
35
|
-
* // const { WdaInsightsClient, UpdateProjectionAnalysisSettingsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
|
|
36
|
-
* const client = new WdaInsightsClient(config);
|
|
37
|
-
* const input = { // UpdateProjectionAnalysisSettingsInput
|
|
38
|
-
* model: "STRING_VALUE",
|
|
39
|
-
* group: "STRING_VALUE",
|
|
40
|
-
* company: "STRING_VALUE",
|
|
41
|
-
* id: "STRING_VALUE", // required
|
|
42
|
-
* };
|
|
43
|
-
* const command = new UpdateProjectionAnalysisSettingsCommand(input);
|
|
44
|
-
* const response = await client.send(command);
|
|
45
|
-
* // { // UpdateProjectionAnalysisSettingsOutput
|
|
46
|
-
* // projection: { // Projection
|
|
47
|
-
* // categoryId: "STRING_VALUE", // required
|
|
48
|
-
* // name: "STRING_VALUE", // required
|
|
49
|
-
* // description: "STRING_VALUE",
|
|
50
|
-
* // instructions: "STRING_VALUE",
|
|
51
|
-
* // conditions: [ // ProjectionConditionsList
|
|
52
|
-
* // { // ProjectionCondition Union: only one key present
|
|
53
|
-
* // entity: { // ProjectionEntityCondition
|
|
54
|
-
* // equals: [ // ProjectionEntityConditionValuesList // required
|
|
55
|
-
* // "call" || "conference" || "chat",
|
|
56
|
-
* // ],
|
|
57
|
-
* // },
|
|
58
|
-
* // direction: { // ProjectionDirectionCondition
|
|
59
|
-
* // equals: [ // ProjectionDirectionConditionValuesList // required
|
|
60
|
-
* // "INTERNAL" || "INBOUND" || "OUTBOUND" || "UNDEFINED",
|
|
61
|
-
* // ],
|
|
62
|
-
* // },
|
|
63
|
-
* // participants: { // ProjectionParticipantsCondition
|
|
64
|
-
* // emails: [ // ProjectionParticipantsEmailsList
|
|
65
|
-
* // "STRING_VALUE",
|
|
66
|
-
* // ],
|
|
67
|
-
* // extensions: [ // ProjectionParticipantsExtensionsList
|
|
68
|
-
* // "STRING_VALUE",
|
|
69
|
-
* // ],
|
|
70
|
-
* // groups: [ // ProjectionParticipantsGroupsList
|
|
71
|
-
* // "STRING_VALUE",
|
|
72
|
-
* // ],
|
|
73
|
-
* // },
|
|
74
|
-
* // duration: { // ProjectionDurationCondition
|
|
75
|
-
* // minimum: Number("int"), // required
|
|
76
|
-
* // maximum: Number("int"), // required
|
|
77
|
-
* // },
|
|
78
|
-
* // },
|
|
79
|
-
* // ],
|
|
80
|
-
* // fields: [ // ProjectionFieldsList // required
|
|
81
|
-
* // { // ProjectionField
|
|
82
|
-
* // id: "STRING_VALUE", // required
|
|
83
|
-
* // name: "STRING_VALUE", // required
|
|
84
|
-
* // description: "STRING_VALUE",
|
|
85
|
-
* // optional: true || false,
|
|
86
|
-
* // parameter: { // ProjectionParameter Union: only one key present
|
|
87
|
-
* // text: {},
|
|
88
|
-
* // multiline: {},
|
|
89
|
-
* // selection: { // ProjectionSelectionParameter
|
|
90
|
-
* // options: [ // ProjectionSelectionOptionsList // required
|
|
91
|
-
* // "STRING_VALUE",
|
|
92
|
-
* // ],
|
|
93
|
-
* // multi: true || false,
|
|
94
|
-
* // adaptive: true || false,
|
|
95
|
-
* // adaptiveOptions: [
|
|
96
|
-
* // "STRING_VALUE",
|
|
97
|
-
* // ],
|
|
98
|
-
* // },
|
|
99
|
-
* // },
|
|
100
|
-
* // },
|
|
101
|
-
* // ],
|
|
102
|
-
* // model: "STRING_VALUE",
|
|
103
|
-
* // group: "STRING_VALUE",
|
|
104
|
-
* // id: "STRING_VALUE", // required
|
|
105
|
-
* // status: "ENABLED" || "PAUSED" || "DISABLED", // required
|
|
106
|
-
* // version: Number("int"), // required
|
|
107
|
-
* // createdAt: "STRING_VALUE", // required
|
|
108
|
-
* // updatedAt: "STRING_VALUE",
|
|
109
|
-
* // metadata: { // ProjectionMetadata
|
|
110
|
-
* // predefined: true || false,
|
|
111
|
-
* // },
|
|
112
|
-
* // },
|
|
113
|
-
* // };
|
|
114
|
-
*
|
|
115
|
-
* ```
|
|
116
|
-
*
|
|
117
|
-
* @param UpdateProjectionAnalysisSettingsCommandInput - {@link UpdateProjectionAnalysisSettingsCommandInput}
|
|
118
|
-
* @returns {@link UpdateProjectionAnalysisSettingsCommandOutput}
|
|
119
|
-
* @see {@link UpdateProjectionAnalysisSettingsCommandInput} for command's `input` shape.
|
|
120
|
-
* @see {@link UpdateProjectionAnalysisSettingsCommandOutput} for command's `response` shape.
|
|
121
|
-
* @see {@link WdaInsightsClientResolvedConfig | config} for WdaInsightsClient's `config` shape.
|
|
122
|
-
*
|
|
123
|
-
* @throws {@link ValidationException} (client fault)
|
|
124
|
-
*
|
|
125
|
-
* @throws {@link ForbiddenException} (client fault)
|
|
126
|
-
*
|
|
127
|
-
* @throws {@link WdaInsightsServiceException}
|
|
128
|
-
* <p>Base exception class for all service exceptions from WdaInsights service.</p>
|
|
129
|
-
*
|
|
130
|
-
*
|
|
131
|
-
* @public
|
|
132
|
-
*/
|
|
133
|
-
export declare class UpdateProjectionAnalysisSettingsCommand extends UpdateProjectionAnalysisSettingsCommand_base {
|
|
134
|
-
/** @internal type navigation helper, not in runtime. */
|
|
135
|
-
protected static __types: {
|
|
136
|
-
api: {
|
|
137
|
-
input: UpdateProjectionAnalysisSettingsInput;
|
|
138
|
-
output: UpdateProjectionAnalysisSettingsOutput;
|
|
139
|
-
};
|
|
140
|
-
sdk: {
|
|
141
|
-
input: UpdateProjectionAnalysisSettingsCommandInput;
|
|
142
|
-
output: UpdateProjectionAnalysisSettingsCommandOutput;
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
|
-
}
|