@wildix/wda-insights-client 1.1.38 → 1.1.39
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 -4
- package/dist-cjs/commands/index.js +0 -2
- package/dist-cjs/models/models_0.js +10 -10
- package/dist-cjs/protocols/Aws_restJson1.js +12 -118
- package/dist-es/WdaInsights.js +0 -4
- package/dist-es/commands/index.js +0 -2
- package/dist-es/models/models_0.js +8 -8
- package/dist-es/protocols/Aws_restJson1.js +9 -111
- package/dist-types/WdaInsights.d.ts +0 -16
- package/dist-types/WdaInsightsClient.d.ts +2 -4
- package/dist-types/commands/CreateProjectionCommand.d.ts +10 -368
- package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/DisableProjectionCommand.d.ts +5 -184
- package/dist-types/commands/EnableProjectionCommand.d.ts +5 -184
- package/dist-types/commands/GetProjectionCommand.d.ts +5 -184
- package/dist-types/commands/ListConversationsCommand.d.ts +27 -22
- package/dist-types/commands/ListPlaylistItemsCommand.d.ts +27 -22
- package/dist-types/commands/ListProjectionsCommand.d.ts +7 -186
- package/dist-types/commands/ListWatchHistoryCommand.d.ts +27 -22
- package/dist-types/commands/PauseProjectionCommand.d.ts +5 -184
- package/dist-types/commands/UpdateProjectionCommand.d.ts +10 -368
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/index.d.ts +0 -2
- package/dist-types/models/models_0.d.ts +39 -233
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -18
- package/package.json +1 -1
- package/dist-cjs/commands/GetAnalysisSettingsCommand.js +0 -21
- package/dist-cjs/commands/PutAnalysisSettingsCommand.js +0 -21
- package/dist-es/commands/GetAnalysisSettingsCommand.js +0 -17
- package/dist-es/commands/PutAnalysisSettingsCommand.js +0 -17
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +0 -256
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +0 -435
|
@@ -146,31 +146,6 @@ 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;
|
|
174
149
|
}
|
|
175
150
|
/**
|
|
176
151
|
* @public
|
|
@@ -183,7 +158,7 @@ export interface CallFlowVoicemail {
|
|
|
183
158
|
/**
|
|
184
159
|
* @public
|
|
185
160
|
*/
|
|
186
|
-
export type CallFlowAttachment = CallFlowAttachment.FaxMember | CallFlowAttachment.RecordingMember | CallFlowAttachment.
|
|
161
|
+
export type CallFlowAttachment = CallFlowAttachment.FaxMember | CallFlowAttachment.RecordingMember | CallFlowAttachment.VoicemailMember | CallFlowAttachment.$UnknownMember;
|
|
187
162
|
/**
|
|
188
163
|
* @public
|
|
189
164
|
*/
|
|
@@ -192,28 +167,18 @@ export declare namespace CallFlowAttachment {
|
|
|
192
167
|
recording: CallFlowRecording;
|
|
193
168
|
fax?: never;
|
|
194
169
|
voicemail?: never;
|
|
195
|
-
transcription?: never;
|
|
196
170
|
$unknown?: never;
|
|
197
171
|
}
|
|
198
172
|
interface FaxMember {
|
|
199
173
|
recording?: never;
|
|
200
174
|
fax: CallFlowFax;
|
|
201
175
|
voicemail?: never;
|
|
202
|
-
transcription?: never;
|
|
203
176
|
$unknown?: never;
|
|
204
177
|
}
|
|
205
178
|
interface VoicemailMember {
|
|
206
179
|
recording?: never;
|
|
207
180
|
fax?: never;
|
|
208
181
|
voicemail: CallFlowVoicemail;
|
|
209
|
-
transcription?: never;
|
|
210
|
-
$unknown?: never;
|
|
211
|
-
}
|
|
212
|
-
interface TranscriptionMember {
|
|
213
|
-
recording?: never;
|
|
214
|
-
fax?: never;
|
|
215
|
-
voicemail?: never;
|
|
216
|
-
transcription: CallFlowTranscription;
|
|
217
182
|
$unknown?: never;
|
|
218
183
|
}
|
|
219
184
|
/**
|
|
@@ -223,14 +188,12 @@ export declare namespace CallFlowAttachment {
|
|
|
223
188
|
recording?: never;
|
|
224
189
|
fax?: never;
|
|
225
190
|
voicemail?: never;
|
|
226
|
-
transcription?: never;
|
|
227
191
|
$unknown: [string, any];
|
|
228
192
|
}
|
|
229
193
|
interface Visitor<T> {
|
|
230
194
|
recording: (value: CallFlowRecording) => T;
|
|
231
195
|
fax: (value: CallFlowFax) => T;
|
|
232
196
|
voicemail: (value: CallFlowVoicemail) => T;
|
|
233
|
-
transcription: (value: CallFlowTranscription) => T;
|
|
234
197
|
_: (name: string, value: any) => T;
|
|
235
198
|
}
|
|
236
199
|
const visit: <T>(value: CallFlowAttachment, visitor: Visitor<T>) => T;
|
|
@@ -241,7 +204,6 @@ export declare namespace CallFlowAttachment {
|
|
|
241
204
|
*/
|
|
242
205
|
export declare const CallFlowAttachmentType: {
|
|
243
206
|
readonly FAX: "FAX";
|
|
244
|
-
readonly TRANSCRIPTION: "TRANSCRIPTION";
|
|
245
207
|
readonly VOICEMAIL: "VOICEMAIL";
|
|
246
208
|
};
|
|
247
209
|
/**
|
|
@@ -350,6 +312,19 @@ export interface CallFlowNotifications {
|
|
|
350
312
|
destinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
351
313
|
type?: (string)[] | undefined;
|
|
352
314
|
}
|
|
315
|
+
/**
|
|
316
|
+
* @public
|
|
317
|
+
* @enum
|
|
318
|
+
*/
|
|
319
|
+
export declare const CallFlowTranscriptionStatus: {
|
|
320
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
321
|
+
readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
|
|
322
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
export type CallFlowTranscriptionStatus = typeof CallFlowTranscriptionStatus[keyof typeof CallFlowTranscriptionStatus];
|
|
353
328
|
/**
|
|
354
329
|
* @public
|
|
355
330
|
* @enum
|
|
@@ -440,26 +415,8 @@ export interface CallRecord {
|
|
|
440
415
|
remotePhoneCountryCodeStr?: string | undefined;
|
|
441
416
|
remotePhoneLocation?: string | undefined;
|
|
442
417
|
callStatus?: ConversationStatus | undefined;
|
|
443
|
-
/**
|
|
444
|
-
* Please use `attachments.transcription.status` instead.
|
|
445
|
-
*
|
|
446
|
-
* @deprecated
|
|
447
|
-
* @public
|
|
448
|
-
*/
|
|
449
418
|
transcriptionStatus?: CallFlowTranscriptionStatus | undefined;
|
|
450
|
-
/**
|
|
451
|
-
* Please use `attachments.transcription.language` instead.
|
|
452
|
-
*
|
|
453
|
-
* @deprecated
|
|
454
|
-
* @public
|
|
455
|
-
*/
|
|
456
419
|
transcriptionLanguage?: string | undefined;
|
|
457
|
-
/**
|
|
458
|
-
* Please use `attachments.transcription.seconds` instead.
|
|
459
|
-
*
|
|
460
|
-
* @deprecated
|
|
461
|
-
* @public
|
|
462
|
-
*/
|
|
463
420
|
transcriptionSeconds?: number | undefined;
|
|
464
421
|
/**
|
|
465
422
|
* Consider to use `attachments` instead.
|
|
@@ -2166,26 +2123,6 @@ export declare const AggregationDateInterval: {
|
|
|
2166
2123
|
* @public
|
|
2167
2124
|
*/
|
|
2168
2125
|
export type AggregationDateInterval = typeof AggregationDateInterval[keyof typeof AggregationDateInterval];
|
|
2169
|
-
/**
|
|
2170
|
-
* @public
|
|
2171
|
-
*/
|
|
2172
|
-
export interface AnalysisSettings {
|
|
2173
|
-
/**
|
|
2174
|
-
* Default provider and model identifier for projections that do not define a custom model. Example: 'openai://gpt-5'.
|
|
2175
|
-
* @public
|
|
2176
|
-
*/
|
|
2177
|
-
defaultModel?: string | undefined;
|
|
2178
|
-
/**
|
|
2179
|
-
* True to disable analysis completely for the organization.
|
|
2180
|
-
* @public
|
|
2181
|
-
*/
|
|
2182
|
-
disabled?: boolean | undefined;
|
|
2183
|
-
/**
|
|
2184
|
-
* 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.
|
|
2185
|
-
* @public
|
|
2186
|
-
*/
|
|
2187
|
-
filter?: ListConversationsFilter | undefined;
|
|
2188
|
-
}
|
|
2189
2126
|
/**
|
|
2190
2127
|
* @public
|
|
2191
2128
|
*/
|
|
@@ -2614,11 +2551,6 @@ export interface ProjectionSelectionParameter {
|
|
|
2614
2551
|
options: (string)[];
|
|
2615
2552
|
multi?: boolean | undefined;
|
|
2616
2553
|
adaptive?: boolean | undefined;
|
|
2617
|
-
/**
|
|
2618
|
-
* Options generated by AI when adaptive mode was enabled.
|
|
2619
|
-
* @public
|
|
2620
|
-
*/
|
|
2621
|
-
adaptiveOptions?: (string)[] | undefined;
|
|
2622
2554
|
}
|
|
2623
2555
|
/**
|
|
2624
2556
|
* @public
|
|
@@ -2678,48 +2610,35 @@ export interface ProjectionField {
|
|
|
2678
2610
|
optional?: boolean | undefined;
|
|
2679
2611
|
parameter: ProjectionParameter;
|
|
2680
2612
|
}
|
|
2613
|
+
/**
|
|
2614
|
+
* @public
|
|
2615
|
+
* @enum
|
|
2616
|
+
*/
|
|
2617
|
+
export declare const ProjectionProvider: {
|
|
2618
|
+
readonly OPENAI: "OPENAI";
|
|
2619
|
+
};
|
|
2620
|
+
/**
|
|
2621
|
+
* @public
|
|
2622
|
+
*/
|
|
2623
|
+
export type ProjectionProvider = typeof ProjectionProvider[keyof typeof ProjectionProvider];
|
|
2624
|
+
/**
|
|
2625
|
+
* @public
|
|
2626
|
+
*/
|
|
2627
|
+
export interface ProjectionModel {
|
|
2628
|
+
provider?: ProjectionProvider | undefined;
|
|
2629
|
+
name?: string | undefined;
|
|
2630
|
+
}
|
|
2681
2631
|
/**
|
|
2682
2632
|
* @public
|
|
2683
2633
|
*/
|
|
2684
2634
|
export interface CreateProjectionInput {
|
|
2685
|
-
|
|
2686
|
-
* Free-form category label for projection grouping.
|
|
2687
|
-
* @public
|
|
2688
|
-
*/
|
|
2689
|
-
category?: string | undefined;
|
|
2690
|
-
/**
|
|
2691
|
-
* Compatibility field for legacy clients. Use `category` instead.
|
|
2692
|
-
*
|
|
2693
|
-
* @deprecated
|
|
2694
|
-
* @public
|
|
2695
|
-
*/
|
|
2696
|
-
categoryId?: string | undefined;
|
|
2635
|
+
categoryId: string;
|
|
2697
2636
|
name: string;
|
|
2698
2637
|
description?: string | undefined;
|
|
2699
2638
|
instructions?: string | undefined;
|
|
2700
|
-
/**
|
|
2701
|
-
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
2702
|
-
*
|
|
2703
|
-
* @deprecated
|
|
2704
|
-
* @public
|
|
2705
|
-
*/
|
|
2706
2639
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
2707
|
-
/**
|
|
2708
|
-
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
2709
|
-
* @public
|
|
2710
|
-
*/
|
|
2711
|
-
filter?: ListConversationsFilter | undefined;
|
|
2712
|
-
/**
|
|
2713
|
-
* 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.
|
|
2714
|
-
* @public
|
|
2715
|
-
*/
|
|
2716
|
-
model?: string | undefined;
|
|
2717
|
-
/**
|
|
2718
|
-
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
2719
|
-
* @public
|
|
2720
|
-
*/
|
|
2721
|
-
group?: string | undefined;
|
|
2722
2640
|
fields: (ProjectionField)[];
|
|
2641
|
+
model?: ProjectionModel | undefined;
|
|
2723
2642
|
/**
|
|
2724
2643
|
* The unique identifier of the tenant when a service token is used.
|
|
2725
2644
|
* @public
|
|
@@ -2750,44 +2669,13 @@ export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionSt
|
|
|
2750
2669
|
* @public
|
|
2751
2670
|
*/
|
|
2752
2671
|
export interface Projection {
|
|
2753
|
-
|
|
2754
|
-
* Free-form category label for projection grouping.
|
|
2755
|
-
* @public
|
|
2756
|
-
*/
|
|
2757
|
-
category?: string | undefined;
|
|
2758
|
-
/**
|
|
2759
|
-
* Compatibility field for legacy clients. Use `category` instead.
|
|
2760
|
-
*
|
|
2761
|
-
* @deprecated
|
|
2762
|
-
* @public
|
|
2763
|
-
*/
|
|
2764
|
-
categoryId?: string | undefined;
|
|
2672
|
+
categoryId: string;
|
|
2765
2673
|
name: string;
|
|
2766
2674
|
description?: string | undefined;
|
|
2767
2675
|
instructions?: string | undefined;
|
|
2768
|
-
/**
|
|
2769
|
-
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
2770
|
-
*
|
|
2771
|
-
* @deprecated
|
|
2772
|
-
* @public
|
|
2773
|
-
*/
|
|
2774
2676
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
2775
|
-
/**
|
|
2776
|
-
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
2777
|
-
* @public
|
|
2778
|
-
*/
|
|
2779
|
-
filter?: ListConversationsFilter | undefined;
|
|
2780
|
-
/**
|
|
2781
|
-
* 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.
|
|
2782
|
-
* @public
|
|
2783
|
-
*/
|
|
2784
|
-
model?: string | undefined;
|
|
2785
|
-
/**
|
|
2786
|
-
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
2787
|
-
* @public
|
|
2788
|
-
*/
|
|
2789
|
-
group?: string | undefined;
|
|
2790
2677
|
fields: (ProjectionField)[];
|
|
2678
|
+
model?: ProjectionModel | undefined;
|
|
2791
2679
|
id: string;
|
|
2792
2680
|
status: ProjectionStatus;
|
|
2793
2681
|
version: number;
|
|
@@ -3025,22 +2913,6 @@ export interface FlatAggregationResult {
|
|
|
3025
2913
|
*/
|
|
3026
2914
|
buckets: (FlatAggregationBucket)[];
|
|
3027
2915
|
}
|
|
3028
|
-
/**
|
|
3029
|
-
* @public
|
|
3030
|
-
*/
|
|
3031
|
-
export interface GetAnalysisSettingsInput {
|
|
3032
|
-
/**
|
|
3033
|
-
* The unique identifier of the tenant when a service token is used.
|
|
3034
|
-
* @public
|
|
3035
|
-
*/
|
|
3036
|
-
company?: string | undefined;
|
|
3037
|
-
}
|
|
3038
|
-
/**
|
|
3039
|
-
* @public
|
|
3040
|
-
*/
|
|
3041
|
-
export interface GetAnalysisSettingsOutput {
|
|
3042
|
-
settings: AnalysisSettings;
|
|
3043
|
-
}
|
|
3044
2916
|
/**
|
|
3045
2917
|
* @public
|
|
3046
2918
|
*/
|
|
@@ -3938,11 +3810,7 @@ export interface ListProjectionsInput {
|
|
|
3938
3810
|
*/
|
|
3939
3811
|
export interface ListProjectionsOutput {
|
|
3940
3812
|
projections: (Projection)[];
|
|
3941
|
-
|
|
3942
|
-
* Compatibility field for legacy clients. Categories are simulated from projection `category`/`categoryId` values.
|
|
3943
|
-
* @public
|
|
3944
|
-
*/
|
|
3945
|
-
categories?: (ProjectionsCategory)[] | undefined;
|
|
3813
|
+
categories: (ProjectionsCategory)[];
|
|
3946
3814
|
}
|
|
3947
3815
|
/**
|
|
3948
3816
|
* @public
|
|
@@ -4001,37 +3869,6 @@ export interface PlaylistAccessNotify {
|
|
|
4001
3869
|
emails: (string)[];
|
|
4002
3870
|
message?: string | undefined;
|
|
4003
3871
|
}
|
|
4004
|
-
/**
|
|
4005
|
-
* @public
|
|
4006
|
-
*/
|
|
4007
|
-
export interface PutAnalysisSettingsInput {
|
|
4008
|
-
/**
|
|
4009
|
-
* Default provider and model identifier for projections that do not define a custom model. Example: 'openai://gpt-5'.
|
|
4010
|
-
* @public
|
|
4011
|
-
*/
|
|
4012
|
-
defaultModel?: string | undefined;
|
|
4013
|
-
/**
|
|
4014
|
-
* True to disable analysis completely for the organization.
|
|
4015
|
-
* @public
|
|
4016
|
-
*/
|
|
4017
|
-
disabled?: boolean | undefined;
|
|
4018
|
-
/**
|
|
4019
|
-
* 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.
|
|
4020
|
-
* @public
|
|
4021
|
-
*/
|
|
4022
|
-
filter?: ListConversationsFilter | undefined;
|
|
4023
|
-
/**
|
|
4024
|
-
* The unique identifier of the tenant when a service token is used.
|
|
4025
|
-
* @public
|
|
4026
|
-
*/
|
|
4027
|
-
company?: string | undefined;
|
|
4028
|
-
}
|
|
4029
|
-
/**
|
|
4030
|
-
* @public
|
|
4031
|
-
*/
|
|
4032
|
-
export interface PutAnalysisSettingsOutput {
|
|
4033
|
-
settings: AnalysisSettings;
|
|
4034
|
-
}
|
|
4035
3872
|
/**
|
|
4036
3873
|
* @public
|
|
4037
3874
|
*/
|
|
@@ -4245,44 +4082,13 @@ export interface UpdatePlaylistAccessOutput {
|
|
|
4245
4082
|
* @public
|
|
4246
4083
|
*/
|
|
4247
4084
|
export interface UpdateProjectionInput {
|
|
4248
|
-
|
|
4249
|
-
* Free-form category label for projection grouping.
|
|
4250
|
-
* @public
|
|
4251
|
-
*/
|
|
4252
|
-
category?: string | undefined;
|
|
4253
|
-
/**
|
|
4254
|
-
* Compatibility field for legacy clients. Use `category` instead.
|
|
4255
|
-
*
|
|
4256
|
-
* @deprecated
|
|
4257
|
-
* @public
|
|
4258
|
-
*/
|
|
4259
|
-
categoryId?: string | undefined;
|
|
4085
|
+
categoryId: string;
|
|
4260
4086
|
name: string;
|
|
4261
4087
|
description?: string | undefined;
|
|
4262
4088
|
instructions?: string | undefined;
|
|
4263
|
-
/**
|
|
4264
|
-
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
4265
|
-
*
|
|
4266
|
-
* @deprecated
|
|
4267
|
-
* @public
|
|
4268
|
-
*/
|
|
4269
4089
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
4270
|
-
/**
|
|
4271
|
-
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
4272
|
-
* @public
|
|
4273
|
-
*/
|
|
4274
|
-
filter?: ListConversationsFilter | undefined;
|
|
4275
|
-
/**
|
|
4276
|
-
* 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.
|
|
4277
|
-
* @public
|
|
4278
|
-
*/
|
|
4279
|
-
model?: string | undefined;
|
|
4280
|
-
/**
|
|
4281
|
-
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
4282
|
-
* @public
|
|
4283
|
-
*/
|
|
4284
|
-
group?: string | undefined;
|
|
4285
4090
|
fields: (ProjectionField)[];
|
|
4091
|
+
model?: ProjectionModel | undefined;
|
|
4286
4092
|
/**
|
|
4287
4093
|
* The unique identifier of the tenant when a service token is used.
|
|
4288
4094
|
* @public
|
|
@@ -11,7 +11,6 @@ import { DeleteProjectionCommandInput, DeleteProjectionCommandOutput } from "../
|
|
|
11
11
|
import { DeleteProjectionsCategoryCommandInput, DeleteProjectionsCategoryCommandOutput } from "../commands/DeleteProjectionsCategoryCommand";
|
|
12
12
|
import { DisableProjectionCommandInput, DisableProjectionCommandOutput } from "../commands/DisableProjectionCommand";
|
|
13
13
|
import { EnableProjectionCommandInput, EnableProjectionCommandOutput } from "../commands/EnableProjectionCommand";
|
|
14
|
-
import { GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput } from "../commands/GetAnalysisSettingsCommand";
|
|
15
14
|
import { GetCallCharacteristicsCommandInput, GetCallCharacteristicsCommandOutput } from "../commands/GetCallCharacteristicsCommand";
|
|
16
15
|
import { GetCallInsightsCommandInput, GetCallInsightsCommandOutput } from "../commands/GetCallInsightsCommand";
|
|
17
16
|
import { GetCallStateCommandInput, GetCallStateCommandOutput } from "../commands/GetCallStateCommand";
|
|
@@ -40,7 +39,6 @@ import { ListPlaylistsCommandInput, ListPlaylistsCommandOutput } from "../comman
|
|
|
40
39
|
import { ListProjectionsCommandInput, ListProjectionsCommandOutput } from "../commands/ListProjectionsCommand";
|
|
41
40
|
import { ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput } from "../commands/ListWatchHistoryCommand";
|
|
42
41
|
import { PauseProjectionCommandInput, PauseProjectionCommandOutput } from "../commands/PauseProjectionCommand";
|
|
43
|
-
import { PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput } from "../commands/PutAnalysisSettingsCommand";
|
|
44
42
|
import { PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput } from "../commands/PutPlaylistItemCommand";
|
|
45
43
|
import { QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput } from "../commands/QueryConversationsCountCommand";
|
|
46
44
|
import { ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput } from "../commands/ScheduleCallSummaryGenerationCommand";
|
|
@@ -108,10 +106,6 @@ export declare const se_DisableProjectionCommand: (input: DisableProjectionComma
|
|
|
108
106
|
* serializeAws_restJson1EnableProjectionCommand
|
|
109
107
|
*/
|
|
110
108
|
export declare const se_EnableProjectionCommand: (input: EnableProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
|
-
/**
|
|
112
|
-
* serializeAws_restJson1GetAnalysisSettingsCommand
|
|
113
|
-
*/
|
|
114
|
-
export declare const se_GetAnalysisSettingsCommand: (input: GetAnalysisSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
109
|
/**
|
|
116
110
|
* serializeAws_restJson1GetCallCharacteristicsCommand
|
|
117
111
|
*/
|
|
@@ -224,10 +218,6 @@ export declare const se_ListWatchHistoryCommand: (input: ListWatchHistoryCommand
|
|
|
224
218
|
* serializeAws_restJson1PauseProjectionCommand
|
|
225
219
|
*/
|
|
226
220
|
export declare const se_PauseProjectionCommand: (input: PauseProjectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
227
|
-
/**
|
|
228
|
-
* serializeAws_restJson1PutAnalysisSettingsCommand
|
|
229
|
-
*/
|
|
230
|
-
export declare const se_PutAnalysisSettingsCommand: (input: PutAnalysisSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
231
221
|
/**
|
|
232
222
|
* serializeAws_restJson1PutPlaylistItemCommand
|
|
233
223
|
*/
|
|
@@ -332,10 +322,6 @@ export declare const de_DisableProjectionCommand: (output: __HttpResponse, conte
|
|
|
332
322
|
* deserializeAws_restJson1EnableProjectionCommand
|
|
333
323
|
*/
|
|
334
324
|
export declare const de_EnableProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableProjectionCommandOutput>;
|
|
335
|
-
/**
|
|
336
|
-
* deserializeAws_restJson1GetAnalysisSettingsCommand
|
|
337
|
-
*/
|
|
338
|
-
export declare const de_GetAnalysisSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAnalysisSettingsCommandOutput>;
|
|
339
325
|
/**
|
|
340
326
|
* deserializeAws_restJson1GetCallCharacteristicsCommand
|
|
341
327
|
*/
|
|
@@ -448,10 +434,6 @@ export declare const de_ListWatchHistoryCommand: (output: __HttpResponse, contex
|
|
|
448
434
|
* deserializeAws_restJson1PauseProjectionCommand
|
|
449
435
|
*/
|
|
450
436
|
export declare const de_PauseProjectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PauseProjectionCommandOutput>;
|
|
451
|
-
/**
|
|
452
|
-
* deserializeAws_restJson1PutAnalysisSettingsCommand
|
|
453
|
-
*/
|
|
454
|
-
export declare const de_PutAnalysisSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAnalysisSettingsCommandOutput>;
|
|
455
437
|
/**
|
|
456
438
|
* deserializeAws_restJson1PutPlaylistItemCommand
|
|
457
439
|
*/
|
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.39",
|
|
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.GetAnalysisSettingsCommand = 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 GetAnalysisSettingsCommand 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", "GetAnalysisSettings", {})
|
|
15
|
-
.n("WdaInsightsClient", "GetAnalysisSettingsCommand")
|
|
16
|
-
.f(void 0, void 0)
|
|
17
|
-
.ser(Aws_restJson1_1.se_GetAnalysisSettingsCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_GetAnalysisSettingsCommand)
|
|
19
|
-
.build() {
|
|
20
|
-
}
|
|
21
|
-
exports.GetAnalysisSettingsCommand = GetAnalysisSettingsCommand;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PutAnalysisSettingsCommand = 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 PutAnalysisSettingsCommand 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", "PutAnalysisSettings", {})
|
|
15
|
-
.n("WdaInsightsClient", "PutAnalysisSettingsCommand")
|
|
16
|
-
.f(void 0, void 0)
|
|
17
|
-
.ser(Aws_restJson1_1.se_PutAnalysisSettingsCommand)
|
|
18
|
-
.de(Aws_restJson1_1.de_PutAnalysisSettingsCommand)
|
|
19
|
-
.build() {
|
|
20
|
-
}
|
|
21
|
-
exports.PutAnalysisSettingsCommand = PutAnalysisSettingsCommand;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { de_GetAnalysisSettingsCommand, se_GetAnalysisSettingsCommand, } 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 GetAnalysisSettingsCommand extends $Command.classBuilder()
|
|
6
|
-
.m(function (Command, cs, config, o) {
|
|
7
|
-
return [
|
|
8
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
-
];
|
|
10
|
-
})
|
|
11
|
-
.s("WdaInsights", "GetAnalysisSettings", {})
|
|
12
|
-
.n("WdaInsightsClient", "GetAnalysisSettingsCommand")
|
|
13
|
-
.f(void 0, void 0)
|
|
14
|
-
.ser(se_GetAnalysisSettingsCommand)
|
|
15
|
-
.de(de_GetAnalysisSettingsCommand)
|
|
16
|
-
.build() {
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { de_PutAnalysisSettingsCommand, se_PutAnalysisSettingsCommand, } 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 PutAnalysisSettingsCommand extends $Command.classBuilder()
|
|
6
|
-
.m(function (Command, cs, config, o) {
|
|
7
|
-
return [
|
|
8
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
9
|
-
];
|
|
10
|
-
})
|
|
11
|
-
.s("WdaInsights", "PutAnalysisSettings", {})
|
|
12
|
-
.n("WdaInsightsClient", "PutAnalysisSettingsCommand")
|
|
13
|
-
.f(void 0, void 0)
|
|
14
|
-
.ser(se_PutAnalysisSettingsCommand)
|
|
15
|
-
.de(de_PutAnalysisSettingsCommand)
|
|
16
|
-
.build() {
|
|
17
|
-
}
|