@wildix/wda-insights-client 1.1.36 → 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 +33 -22
- package/dist-types/commands/ListPlaylistItemsCommand.d.ts +33 -22
- package/dist-types/commands/ListProjectionsCommand.d.ts +7 -186
- package/dist-types/commands/ListWatchHistoryCommand.d.ts +33 -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 +47 -233
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -18
- package/dist-types/runtimeConfig.browser.d.ts +6 -1
- package/dist-types/runtimeConfig.d.ts +6 -1
- package/dist-types/runtimeConfig.native.d.ts +6 -1
- 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
|
/**
|
|
@@ -343,6 +305,26 @@ export declare const License: {
|
|
|
343
305
|
* @public
|
|
344
306
|
*/
|
|
345
307
|
export type License = typeof License[keyof typeof License];
|
|
308
|
+
/**
|
|
309
|
+
* @public
|
|
310
|
+
*/
|
|
311
|
+
export interface CallFlowNotifications {
|
|
312
|
+
destinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
313
|
+
type?: (string)[] | undefined;
|
|
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];
|
|
346
328
|
/**
|
|
347
329
|
* @public
|
|
348
330
|
* @enum
|
|
@@ -433,26 +415,8 @@ export interface CallRecord {
|
|
|
433
415
|
remotePhoneCountryCodeStr?: string | undefined;
|
|
434
416
|
remotePhoneLocation?: string | undefined;
|
|
435
417
|
callStatus?: ConversationStatus | undefined;
|
|
436
|
-
/**
|
|
437
|
-
* Please use `attachments.transcription.status` instead.
|
|
438
|
-
*
|
|
439
|
-
* @deprecated
|
|
440
|
-
* @public
|
|
441
|
-
*/
|
|
442
418
|
transcriptionStatus?: CallFlowTranscriptionStatus | undefined;
|
|
443
|
-
/**
|
|
444
|
-
* Please use `attachments.transcription.language` instead.
|
|
445
|
-
*
|
|
446
|
-
* @deprecated
|
|
447
|
-
* @public
|
|
448
|
-
*/
|
|
449
419
|
transcriptionLanguage?: string | undefined;
|
|
450
|
-
/**
|
|
451
|
-
* Please use `attachments.transcription.seconds` instead.
|
|
452
|
-
*
|
|
453
|
-
* @deprecated
|
|
454
|
-
* @public
|
|
455
|
-
*/
|
|
456
420
|
transcriptionSeconds?: number | undefined;
|
|
457
421
|
/**
|
|
458
422
|
* Consider to use `attachments` instead.
|
|
@@ -476,6 +440,7 @@ export interface CallRecord {
|
|
|
476
440
|
*/
|
|
477
441
|
attachmentDestinations?: (CallFlowAttachmentDestination)[] | undefined;
|
|
478
442
|
attachments?: (CallFlowAttachment)[] | undefined;
|
|
443
|
+
notifications?: CallFlowNotifications | undefined;
|
|
479
444
|
id: string;
|
|
480
445
|
pbx: string;
|
|
481
446
|
time: number;
|
|
@@ -2158,26 +2123,6 @@ export declare const AggregationDateInterval: {
|
|
|
2158
2123
|
* @public
|
|
2159
2124
|
*/
|
|
2160
2125
|
export type AggregationDateInterval = typeof AggregationDateInterval[keyof typeof AggregationDateInterval];
|
|
2161
|
-
/**
|
|
2162
|
-
* @public
|
|
2163
|
-
*/
|
|
2164
|
-
export interface AnalysisSettings {
|
|
2165
|
-
/**
|
|
2166
|
-
* Default provider and model identifier for projections that do not define a custom model. Example: 'openai://gpt-5'.
|
|
2167
|
-
* @public
|
|
2168
|
-
*/
|
|
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;
|
|
2180
|
-
}
|
|
2181
2126
|
/**
|
|
2182
2127
|
* @public
|
|
2183
2128
|
*/
|
|
@@ -2606,11 +2551,6 @@ export interface ProjectionSelectionParameter {
|
|
|
2606
2551
|
options: (string)[];
|
|
2607
2552
|
multi?: boolean | undefined;
|
|
2608
2553
|
adaptive?: boolean | undefined;
|
|
2609
|
-
/**
|
|
2610
|
-
* Options generated by AI when adaptive mode was enabled.
|
|
2611
|
-
* @public
|
|
2612
|
-
*/
|
|
2613
|
-
adaptiveOptions?: (string)[] | undefined;
|
|
2614
2554
|
}
|
|
2615
2555
|
/**
|
|
2616
2556
|
* @public
|
|
@@ -2670,48 +2610,35 @@ export interface ProjectionField {
|
|
|
2670
2610
|
optional?: boolean | undefined;
|
|
2671
2611
|
parameter: ProjectionParameter;
|
|
2672
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
|
+
}
|
|
2673
2631
|
/**
|
|
2674
2632
|
* @public
|
|
2675
2633
|
*/
|
|
2676
2634
|
export interface CreateProjectionInput {
|
|
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;
|
|
2635
|
+
categoryId: string;
|
|
2689
2636
|
name: string;
|
|
2690
2637
|
description?: string | undefined;
|
|
2691
2638
|
instructions?: string | undefined;
|
|
2692
|
-
/**
|
|
2693
|
-
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
2694
|
-
*
|
|
2695
|
-
* @deprecated
|
|
2696
|
-
* @public
|
|
2697
|
-
*/
|
|
2698
2639
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
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;
|
|
2704
|
-
/**
|
|
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.
|
|
2706
|
-
* @public
|
|
2707
|
-
*/
|
|
2708
|
-
model?: string | undefined;
|
|
2709
|
-
/**
|
|
2710
|
-
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
2711
|
-
* @public
|
|
2712
|
-
*/
|
|
2713
|
-
group?: string | undefined;
|
|
2714
2640
|
fields: (ProjectionField)[];
|
|
2641
|
+
model?: ProjectionModel | undefined;
|
|
2715
2642
|
/**
|
|
2716
2643
|
* The unique identifier of the tenant when a service token is used.
|
|
2717
2644
|
* @public
|
|
@@ -2742,44 +2669,13 @@ export type ProjectionStatus = typeof ProjectionStatus[keyof typeof ProjectionSt
|
|
|
2742
2669
|
* @public
|
|
2743
2670
|
*/
|
|
2744
2671
|
export interface Projection {
|
|
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;
|
|
2672
|
+
categoryId: string;
|
|
2757
2673
|
name: string;
|
|
2758
2674
|
description?: string | undefined;
|
|
2759
2675
|
instructions?: string | undefined;
|
|
2760
|
-
/**
|
|
2761
|
-
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
2762
|
-
*
|
|
2763
|
-
* @deprecated
|
|
2764
|
-
* @public
|
|
2765
|
-
*/
|
|
2766
2676
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
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;
|
|
2772
|
-
/**
|
|
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.
|
|
2774
|
-
* @public
|
|
2775
|
-
*/
|
|
2776
|
-
model?: string | undefined;
|
|
2777
|
-
/**
|
|
2778
|
-
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
2779
|
-
* @public
|
|
2780
|
-
*/
|
|
2781
|
-
group?: string | undefined;
|
|
2782
2677
|
fields: (ProjectionField)[];
|
|
2678
|
+
model?: ProjectionModel | undefined;
|
|
2783
2679
|
id: string;
|
|
2784
2680
|
status: ProjectionStatus;
|
|
2785
2681
|
version: number;
|
|
@@ -3017,22 +2913,6 @@ export interface FlatAggregationResult {
|
|
|
3017
2913
|
*/
|
|
3018
2914
|
buckets: (FlatAggregationBucket)[];
|
|
3019
2915
|
}
|
|
3020
|
-
/**
|
|
3021
|
-
* @public
|
|
3022
|
-
*/
|
|
3023
|
-
export interface GetAnalysisSettingsInput {
|
|
3024
|
-
/**
|
|
3025
|
-
* The unique identifier of the tenant when a service token is used.
|
|
3026
|
-
* @public
|
|
3027
|
-
*/
|
|
3028
|
-
company?: string | undefined;
|
|
3029
|
-
}
|
|
3030
|
-
/**
|
|
3031
|
-
* @public
|
|
3032
|
-
*/
|
|
3033
|
-
export interface GetAnalysisSettingsOutput {
|
|
3034
|
-
settings: AnalysisSettings;
|
|
3035
|
-
}
|
|
3036
2916
|
/**
|
|
3037
2917
|
* @public
|
|
3038
2918
|
*/
|
|
@@ -3930,11 +3810,7 @@ export interface ListProjectionsInput {
|
|
|
3930
3810
|
*/
|
|
3931
3811
|
export interface ListProjectionsOutput {
|
|
3932
3812
|
projections: (Projection)[];
|
|
3933
|
-
|
|
3934
|
-
* Compatibility field for legacy clients. Categories are simulated from projection `category`/`categoryId` values.
|
|
3935
|
-
* @public
|
|
3936
|
-
*/
|
|
3937
|
-
categories?: (ProjectionsCategory)[] | undefined;
|
|
3813
|
+
categories: (ProjectionsCategory)[];
|
|
3938
3814
|
}
|
|
3939
3815
|
/**
|
|
3940
3816
|
* @public
|
|
@@ -3993,37 +3869,6 @@ export interface PlaylistAccessNotify {
|
|
|
3993
3869
|
emails: (string)[];
|
|
3994
3870
|
message?: string | undefined;
|
|
3995
3871
|
}
|
|
3996
|
-
/**
|
|
3997
|
-
* @public
|
|
3998
|
-
*/
|
|
3999
|
-
export interface PutAnalysisSettingsInput {
|
|
4000
|
-
/**
|
|
4001
|
-
* Default provider and model identifier for projections that do not define a custom model. Example: 'openai://gpt-5'.
|
|
4002
|
-
* @public
|
|
4003
|
-
*/
|
|
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;
|
|
4015
|
-
/**
|
|
4016
|
-
* The unique identifier of the tenant when a service token is used.
|
|
4017
|
-
* @public
|
|
4018
|
-
*/
|
|
4019
|
-
company?: string | undefined;
|
|
4020
|
-
}
|
|
4021
|
-
/**
|
|
4022
|
-
* @public
|
|
4023
|
-
*/
|
|
4024
|
-
export interface PutAnalysisSettingsOutput {
|
|
4025
|
-
settings: AnalysisSettings;
|
|
4026
|
-
}
|
|
4027
3872
|
/**
|
|
4028
3873
|
* @public
|
|
4029
3874
|
*/
|
|
@@ -4237,44 +4082,13 @@ export interface UpdatePlaylistAccessOutput {
|
|
|
4237
4082
|
* @public
|
|
4238
4083
|
*/
|
|
4239
4084
|
export interface UpdateProjectionInput {
|
|
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;
|
|
4085
|
+
categoryId: string;
|
|
4252
4086
|
name: string;
|
|
4253
4087
|
description?: string | undefined;
|
|
4254
4088
|
instructions?: string | undefined;
|
|
4255
|
-
/**
|
|
4256
|
-
* Deprecated in favor to filter options. Conditions is automatically converted to the filter.
|
|
4257
|
-
*
|
|
4258
|
-
* @deprecated
|
|
4259
|
-
* @public
|
|
4260
|
-
*/
|
|
4261
4089
|
conditions?: (ProjectionCondition)[] | undefined;
|
|
4262
|
-
/**
|
|
4263
|
-
* A Filter for conversations for the projection, if filter is defined and does not match specific conversation it would not be analyzed.
|
|
4264
|
-
* @public
|
|
4265
|
-
*/
|
|
4266
|
-
filter?: ListConversationsFilter | undefined;
|
|
4267
|
-
/**
|
|
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.
|
|
4269
|
-
* @public
|
|
4270
|
-
*/
|
|
4271
|
-
model?: string | undefined;
|
|
4272
|
-
/**
|
|
4273
|
-
* An execution group for the projection. If specified, only projections from the same group will be combined into a single LLM request.
|
|
4274
|
-
* @public
|
|
4275
|
-
*/
|
|
4276
|
-
group?: string | undefined;
|
|
4277
4090
|
fields: (ProjectionField)[];
|
|
4091
|
+
model?: ProjectionModel | undefined;
|
|
4278
4092
|
/**
|
|
4279
4093
|
* The unique identifier of the tenant when a service token is used.
|
|
4280
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
|
*/
|
|
@@ -15,8 +15,13 @@ 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
|
-
apiVersion: string;
|
|
19
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
|
+
apiVersion: string;
|
|
20
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
22
27
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -16,8 +16,13 @@ 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
|
-
apiVersion: string;
|
|
20
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
|
+
apiVersion: string;
|
|
21
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
28
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -8,8 +8,13 @@ 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
|
-
apiVersion: string;
|
|
12
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
|
+
apiVersion: string;
|
|
13
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
19
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
20
|
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.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
|
-
}
|