@wildix/wda-insights-client 4.0.1 → 4.0.3
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/WdaInsightsClient.js +4 -0
- package/dist-cjs/runtimeConfig.shared.js +20 -0
- package/dist-cjs/schemas/schemas_0.js +4 -4
- package/dist-es/WdaInsightsClient.js +4 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/schemas/schemas_0.js +4 -4
- package/dist-types/commands/CreateDashboardCommand.d.ts +53 -35
- package/dist-types/commands/CreateFilterCommand.d.ts +1 -3
- package/dist-types/commands/CreatePlaylistCommand.d.ts +1 -3
- package/dist-types/commands/CreateProjectionCommand.d.ts +43 -35
- package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/DeleteDashboardCommand.d.ts +1 -3
- package/dist-types/commands/DeleteFilterCommand.d.ts +1 -3
- package/dist-types/commands/DeletePlaylistCommand.d.ts +1 -3
- package/dist-types/commands/DeletePlaylistItemCommand.d.ts +1 -3
- package/dist-types/commands/DeleteProjectionCommand.d.ts +1 -3
- package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/DisableProjectionCommand.d.ts +22 -19
- package/dist-types/commands/EnableProjectionCommand.d.ts +22 -19
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +22 -19
- package/dist-types/commands/GetCallCharacteristicsCommand.d.ts +1 -3
- package/dist-types/commands/GetCallInsightsCommand.d.ts +1 -3
- package/dist-types/commands/GetCallStateCommand.d.ts +1 -3
- package/dist-types/commands/GetCallSummaryCommand.d.ts +1 -3
- package/dist-types/commands/GetChatInsightsCommand.d.ts +1 -3
- package/dist-types/commands/GetChatStateCommand.d.ts +1 -3
- package/dist-types/commands/GetChatSummaryCommand.d.ts +1 -3
- package/dist-types/commands/GetConferenceInsightsCommand.d.ts +1 -3
- package/dist-types/commands/GetConferenceRecordingPresignedDownloadUrlCommand.d.ts +1 -3
- package/dist-types/commands/GetConferenceStateCommand.d.ts +1 -3
- package/dist-types/commands/GetConferenceSummaryCommand.d.ts +1 -3
- package/dist-types/commands/GetConferenceTimeFramesCommand.d.ts +1 -3
- package/dist-types/commands/GetDashboardCommand.d.ts +27 -19
- package/dist-types/commands/GetPlaylistCommand.d.ts +1 -3
- package/dist-types/commands/GetProjectionCommand.d.ts +22 -19
- package/dist-types/commands/ListConversationsAggregationsCommand.d.ts +117 -35
- package/dist-types/commands/ListConversationsCommand.d.ts +22 -19
- package/dist-types/commands/ListConversationsInsightsAggregationsCommand.d.ts +128 -44
- package/dist-types/commands/ListConversationsInsightsCommand.d.ts +117 -35
- package/dist-types/commands/ListConversationsNestedAggregationsCommand.d.ts +128 -44
- package/dist-types/commands/ListDashboardsCommand.d.ts +27 -19
- package/dist-types/commands/ListFiltersCommand.d.ts +1 -3
- package/dist-types/commands/ListPinnedDashboardsCommand.d.ts +27 -19
- package/dist-types/commands/ListPlaylistItemsCommand.d.ts +1 -3
- package/dist-types/commands/ListPlaylistsCommand.d.ts +1 -3
- package/dist-types/commands/ListProjectionsCommand.d.ts +22 -19
- package/dist-types/commands/ListWatchHistoryCommand.d.ts +1 -3
- package/dist-types/commands/PauseProjectionCommand.d.ts +22 -19
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +43 -35
- package/dist-types/commands/PutPlaylistItemCommand.d.ts +1 -3
- package/dist-types/commands/QueryConversationsCountCommand.d.ts +22 -19
- package/dist-types/commands/ScheduleCallSummaryGenerationCommand.d.ts +1 -3
- package/dist-types/commands/ScheduleConferenceSummaryGenerationCommand.d.ts +1 -3
- package/dist-types/commands/UpdateDashboardAccessCommand.d.ts +27 -19
- package/dist-types/commands/UpdateDashboardCommand.d.ts +53 -35
- package/dist-types/commands/UpdateFilterCommand.d.ts +1 -3
- package/dist-types/commands/UpdatePinnedDashboardsCommand.d.ts +1 -3
- package/dist-types/commands/UpdatePlaylistAccessCommand.d.ts +1 -3
- package/dist-types/commands/UpdatePlaylistCommand.d.ts +1 -3
- package/dist-types/commands/UpdateProjectionCommand.d.ts +43 -35
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +1 -3
- package/dist-types/commands/WatchCommand.d.ts +1 -3
- package/dist-types/models/models_0.d.ts +301 -26
- package/package.json +2 -2
|
@@ -24,9 +24,7 @@ export interface ListDashboardsCommandOutput extends ListDashboardsOutput, __Met
|
|
|
24
24
|
declare const ListDashboardsCommand_base: {
|
|
25
25
|
new (input: ListDashboardsCommandInput): import("@smithy/core/client").CommandImpl<ListDashboardsCommandInput, ListDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [ListDashboardsCommandInput]): import("@smithy/core/client").CommandImpl<ListDashboardsCommandInput, ListDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Lists all dashboard and pinned configurations available to the user.
|
|
@@ -156,27 +154,32 @@ declare const ListDashboardsCommand_base: {
|
|
|
156
154
|
* // from: Number("int"),
|
|
157
155
|
* // to: Number("int"),
|
|
158
156
|
* // },
|
|
157
|
+
* // connectTime: {
|
|
158
|
+
* // from: Number("int"),
|
|
159
|
+
* // to: Number("int"),
|
|
160
|
+
* // },
|
|
161
|
+
* // talkTime: {
|
|
162
|
+
* // from: Number("int"),
|
|
163
|
+
* // to: Number("int"),
|
|
164
|
+
* // },
|
|
165
|
+
* // waitTime: {
|
|
166
|
+
* // from: Number("int"),
|
|
167
|
+
* // to: Number("int"),
|
|
168
|
+
* // },
|
|
169
|
+
* // queueTime: {
|
|
170
|
+
* // from: Number("int"),
|
|
171
|
+
* // to: Number("int"),
|
|
172
|
+
* // },
|
|
173
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
159
174
|
* // interaction: { // ListConversationsFilterInteraction
|
|
160
|
-
* // talkRatio:
|
|
161
|
-
* //
|
|
162
|
-
* //
|
|
163
|
-
* // },
|
|
164
|
-
* // wordsPerMinute: {
|
|
165
|
-
* // from: Number("int"),
|
|
166
|
-
* // to: Number("int"),
|
|
167
|
-
* // },
|
|
168
|
-
* // interruptions: {
|
|
169
|
-
* // from: Number("int"),
|
|
170
|
-
* // to: Number("int"),
|
|
171
|
-
* // },
|
|
175
|
+
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
176
|
+
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
177
|
+
* // interruptions: "<ListConversationsFilterNumber>",
|
|
172
178
|
* // patience: { // ListConversationsFilterFloat
|
|
173
179
|
* // from: Number("float"),
|
|
174
180
|
* // to: Number("float"),
|
|
175
181
|
* // },
|
|
176
|
-
* // longestMonologue:
|
|
177
|
-
* // from: Number("int"),
|
|
178
|
-
* // to: Number("int"),
|
|
179
|
-
* // },
|
|
182
|
+
* // longestMonologue: "<ListConversationsFilterNumber>",
|
|
180
183
|
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
181
184
|
* // },
|
|
182
185
|
* // recorded: true || false,
|
|
@@ -316,6 +319,11 @@ declare const ListDashboardsCommand_base: {
|
|
|
316
319
|
* // ],
|
|
317
320
|
* // language: "<ListConversationsFilterKeyword>",
|
|
318
321
|
* // duration: "<ListConversationsFilterNumber>",
|
|
322
|
+
* // connectTime: "<ListConversationsFilterNumber>",
|
|
323
|
+
* // talkTime: "<ListConversationsFilterNumber>",
|
|
324
|
+
* // waitTime: "<ListConversationsFilterNumber>",
|
|
325
|
+
* // queueTime: "<ListConversationsFilterNumber>",
|
|
326
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
319
327
|
* // interaction: {
|
|
320
328
|
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
321
329
|
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
@@ -24,9 +24,7 @@ export interface ListFiltersCommandOutput extends ListFiltersOutput, __MetadataB
|
|
|
24
24
|
declare const ListFiltersCommand_base: {
|
|
25
25
|
new (input: ListFiltersCommandInput): import("@smithy/core/client").CommandImpl<ListFiltersCommandInput, ListFiltersCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [ListFiltersCommandInput]): import("@smithy/core/client").CommandImpl<ListFiltersCommandInput, ListFiltersCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Lists all filters available for the user.
|
|
@@ -24,9 +24,7 @@ export interface ListPinnedDashboardsCommandOutput extends ListPinnedDashboardsO
|
|
|
24
24
|
declare const ListPinnedDashboardsCommand_base: {
|
|
25
25
|
new (input: ListPinnedDashboardsCommandInput): import("@smithy/core/client").CommandImpl<ListPinnedDashboardsCommandInput, ListPinnedDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [ListPinnedDashboardsCommandInput]): import("@smithy/core/client").CommandImpl<ListPinnedDashboardsCommandInput, ListPinnedDashboardsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Lists all pinned dashboards configurations available to the user.
|
|
@@ -159,27 +157,32 @@ declare const ListPinnedDashboardsCommand_base: {
|
|
|
159
157
|
* // from: Number("int"),
|
|
160
158
|
* // to: Number("int"),
|
|
161
159
|
* // },
|
|
160
|
+
* // connectTime: {
|
|
161
|
+
* // from: Number("int"),
|
|
162
|
+
* // to: Number("int"),
|
|
163
|
+
* // },
|
|
164
|
+
* // talkTime: {
|
|
165
|
+
* // from: Number("int"),
|
|
166
|
+
* // to: Number("int"),
|
|
167
|
+
* // },
|
|
168
|
+
* // waitTime: {
|
|
169
|
+
* // from: Number("int"),
|
|
170
|
+
* // to: Number("int"),
|
|
171
|
+
* // },
|
|
172
|
+
* // queueTime: {
|
|
173
|
+
* // from: Number("int"),
|
|
174
|
+
* // to: Number("int"),
|
|
175
|
+
* // },
|
|
176
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
162
177
|
* // interaction: { // ListConversationsFilterInteraction
|
|
163
|
-
* // talkRatio:
|
|
164
|
-
* //
|
|
165
|
-
* //
|
|
166
|
-
* // },
|
|
167
|
-
* // wordsPerMinute: {
|
|
168
|
-
* // from: Number("int"),
|
|
169
|
-
* // to: Number("int"),
|
|
170
|
-
* // },
|
|
171
|
-
* // interruptions: {
|
|
172
|
-
* // from: Number("int"),
|
|
173
|
-
* // to: Number("int"),
|
|
174
|
-
* // },
|
|
178
|
+
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
179
|
+
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
180
|
+
* // interruptions: "<ListConversationsFilterNumber>",
|
|
175
181
|
* // patience: { // ListConversationsFilterFloat
|
|
176
182
|
* // from: Number("float"),
|
|
177
183
|
* // to: Number("float"),
|
|
178
184
|
* // },
|
|
179
|
-
* // longestMonologue:
|
|
180
|
-
* // from: Number("int"),
|
|
181
|
-
* // to: Number("int"),
|
|
182
|
-
* // },
|
|
185
|
+
* // longestMonologue: "<ListConversationsFilterNumber>",
|
|
183
186
|
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
184
187
|
* // },
|
|
185
188
|
* // recorded: true || false,
|
|
@@ -319,6 +322,11 @@ declare const ListPinnedDashboardsCommand_base: {
|
|
|
319
322
|
* // ],
|
|
320
323
|
* // language: "<ListConversationsFilterKeyword>",
|
|
321
324
|
* // duration: "<ListConversationsFilterNumber>",
|
|
325
|
+
* // connectTime: "<ListConversationsFilterNumber>",
|
|
326
|
+
* // talkTime: "<ListConversationsFilterNumber>",
|
|
327
|
+
* // waitTime: "<ListConversationsFilterNumber>",
|
|
328
|
+
* // queueTime: "<ListConversationsFilterNumber>",
|
|
329
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
322
330
|
* // interaction: {
|
|
323
331
|
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
324
332
|
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
@@ -24,9 +24,7 @@ export interface ListPlaylistItemsCommandOutput extends ListPlaylistItemsOutput,
|
|
|
24
24
|
declare const ListPlaylistItemsCommand_base: {
|
|
25
25
|
new (input: ListPlaylistItemsCommandInput): import("@smithy/core/client").CommandImpl<ListPlaylistItemsCommandInput, ListPlaylistItemsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: ListPlaylistItemsCommandInput): import("@smithy/core/client").CommandImpl<ListPlaylistItemsCommandInput, ListPlaylistItemsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Lists all playlist and pinned configurations available to the user.
|
|
@@ -24,9 +24,7 @@ export interface ListPlaylistsCommandOutput extends ListPlaylistsOutput, __Metad
|
|
|
24
24
|
declare const ListPlaylistsCommand_base: {
|
|
25
25
|
new (input: ListPlaylistsCommandInput): import("@smithy/core/client").CommandImpl<ListPlaylistsCommandInput, ListPlaylistsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [ListPlaylistsCommandInput]): import("@smithy/core/client").CommandImpl<ListPlaylistsCommandInput, ListPlaylistsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Lists all playlist and pinned configurations available to the user.
|
|
@@ -24,9 +24,7 @@ export interface ListProjectionsCommandOutput extends ListProjectionsOutput, __M
|
|
|
24
24
|
declare const ListProjectionsCommand_base: {
|
|
25
25
|
new (input: ListProjectionsCommandInput): import("@smithy/core/client").CommandImpl<ListProjectionsCommandInput, ListProjectionsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [ListProjectionsCommandInput]): import("@smithy/core/client").CommandImpl<ListProjectionsCommandInput, ListProjectionsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Lists all projections and compatibility categories available for the tenant.
|
|
@@ -150,27 +148,32 @@ declare const ListProjectionsCommand_base: {
|
|
|
150
148
|
* // from: Number("int"),
|
|
151
149
|
* // to: Number("int"),
|
|
152
150
|
* // },
|
|
151
|
+
* // connectTime: {
|
|
152
|
+
* // from: Number("int"),
|
|
153
|
+
* // to: Number("int"),
|
|
154
|
+
* // },
|
|
155
|
+
* // talkTime: {
|
|
156
|
+
* // from: Number("int"),
|
|
157
|
+
* // to: Number("int"),
|
|
158
|
+
* // },
|
|
159
|
+
* // waitTime: {
|
|
160
|
+
* // from: Number("int"),
|
|
161
|
+
* // to: Number("int"),
|
|
162
|
+
* // },
|
|
163
|
+
* // queueTime: {
|
|
164
|
+
* // from: Number("int"),
|
|
165
|
+
* // to: Number("int"),
|
|
166
|
+
* // },
|
|
167
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
153
168
|
* // interaction: { // ListConversationsFilterInteraction
|
|
154
|
-
* // talkRatio:
|
|
155
|
-
* //
|
|
156
|
-
* //
|
|
157
|
-
* // },
|
|
158
|
-
* // wordsPerMinute: {
|
|
159
|
-
* // from: Number("int"),
|
|
160
|
-
* // to: Number("int"),
|
|
161
|
-
* // },
|
|
162
|
-
* // interruptions: {
|
|
163
|
-
* // from: Number("int"),
|
|
164
|
-
* // to: Number("int"),
|
|
165
|
-
* // },
|
|
169
|
+
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
170
|
+
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
171
|
+
* // interruptions: "<ListConversationsFilterNumber>",
|
|
166
172
|
* // patience: { // ListConversationsFilterFloat
|
|
167
173
|
* // from: Number("float"),
|
|
168
174
|
* // to: Number("float"),
|
|
169
175
|
* // },
|
|
170
|
-
* // longestMonologue:
|
|
171
|
-
* // from: Number("int"),
|
|
172
|
-
* // to: Number("int"),
|
|
173
|
-
* // },
|
|
176
|
+
* // longestMonologue: "<ListConversationsFilterNumber>",
|
|
174
177
|
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
175
178
|
* // },
|
|
176
179
|
* // recorded: true || false,
|
|
@@ -24,9 +24,7 @@ export interface ListWatchHistoryCommandOutput extends ListWatchHistoryOutput, _
|
|
|
24
24
|
declare const ListWatchHistoryCommand_base: {
|
|
25
25
|
new (input: ListWatchHistoryCommandInput): import("@smithy/core/client").CommandImpl<ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [ListWatchHistoryCommandInput]): import("@smithy/core/client").CommandImpl<ListWatchHistoryCommandInput, ListWatchHistoryCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* .
|
|
@@ -24,9 +24,7 @@ export interface PauseProjectionCommandOutput extends PauseProjectionOutput, __M
|
|
|
24
24
|
declare const PauseProjectionCommand_base: {
|
|
25
25
|
new (input: PauseProjectionCommandInput): import("@smithy/core/client").CommandImpl<PauseProjectionCommandInput, PauseProjectionCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: PauseProjectionCommandInput): import("@smithy/core/client").CommandImpl<PauseProjectionCommandInput, PauseProjectionCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Pauses a projection by its ID.
|
|
@@ -150,27 +148,32 @@ declare const PauseProjectionCommand_base: {
|
|
|
150
148
|
* // from: Number("int"),
|
|
151
149
|
* // to: Number("int"),
|
|
152
150
|
* // },
|
|
151
|
+
* // connectTime: {
|
|
152
|
+
* // from: Number("int"),
|
|
153
|
+
* // to: Number("int"),
|
|
154
|
+
* // },
|
|
155
|
+
* // talkTime: {
|
|
156
|
+
* // from: Number("int"),
|
|
157
|
+
* // to: Number("int"),
|
|
158
|
+
* // },
|
|
159
|
+
* // waitTime: {
|
|
160
|
+
* // from: Number("int"),
|
|
161
|
+
* // to: Number("int"),
|
|
162
|
+
* // },
|
|
163
|
+
* // queueTime: {
|
|
164
|
+
* // from: Number("int"),
|
|
165
|
+
* // to: Number("int"),
|
|
166
|
+
* // },
|
|
167
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
153
168
|
* // interaction: { // ListConversationsFilterInteraction
|
|
154
|
-
* // talkRatio:
|
|
155
|
-
* //
|
|
156
|
-
* //
|
|
157
|
-
* // },
|
|
158
|
-
* // wordsPerMinute: {
|
|
159
|
-
* // from: Number("int"),
|
|
160
|
-
* // to: Number("int"),
|
|
161
|
-
* // },
|
|
162
|
-
* // interruptions: {
|
|
163
|
-
* // from: Number("int"),
|
|
164
|
-
* // to: Number("int"),
|
|
165
|
-
* // },
|
|
169
|
+
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
170
|
+
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
171
|
+
* // interruptions: "<ListConversationsFilterNumber>",
|
|
166
172
|
* // patience: { // ListConversationsFilterFloat
|
|
167
173
|
* // from: Number("float"),
|
|
168
174
|
* // to: Number("float"),
|
|
169
175
|
* // },
|
|
170
|
-
* // longestMonologue:
|
|
171
|
-
* // from: Number("int"),
|
|
172
|
-
* // to: Number("int"),
|
|
173
|
-
* // },
|
|
176
|
+
* // longestMonologue: "<ListConversationsFilterNumber>",
|
|
174
177
|
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
175
178
|
* // },
|
|
176
179
|
* // recorded: true || false,
|
|
@@ -24,9 +24,7 @@ export interface PutAnalysisSettingsCommandOutput extends PutAnalysisSettingsOut
|
|
|
24
24
|
declare const PutAnalysisSettingsCommand_base: {
|
|
25
25
|
new (input: PutAnalysisSettingsCommandInput): import("@smithy/core/client").CommandImpl<PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [PutAnalysisSettingsCommandInput]): import("@smithy/core/client").CommandImpl<PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Updates default analysis settings used for projections.
|
|
@@ -111,27 +109,32 @@ declare const PutAnalysisSettingsCommand_base: {
|
|
|
111
109
|
* from: Number("int"),
|
|
112
110
|
* to: Number("int"),
|
|
113
111
|
* },
|
|
112
|
+
* connectTime: {
|
|
113
|
+
* from: Number("int"),
|
|
114
|
+
* to: Number("int"),
|
|
115
|
+
* },
|
|
116
|
+
* talkTime: {
|
|
117
|
+
* from: Number("int"),
|
|
118
|
+
* to: Number("int"),
|
|
119
|
+
* },
|
|
120
|
+
* waitTime: {
|
|
121
|
+
* from: Number("int"),
|
|
122
|
+
* to: Number("int"),
|
|
123
|
+
* },
|
|
124
|
+
* queueTime: {
|
|
125
|
+
* from: Number("int"),
|
|
126
|
+
* to: Number("int"),
|
|
127
|
+
* },
|
|
128
|
+
* holdTime: "<ListConversationsFilterNumber>",
|
|
114
129
|
* interaction: { // ListConversationsFilterInteraction
|
|
115
|
-
* talkRatio:
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
* },
|
|
119
|
-
* wordsPerMinute: {
|
|
120
|
-
* from: Number("int"),
|
|
121
|
-
* to: Number("int"),
|
|
122
|
-
* },
|
|
123
|
-
* interruptions: {
|
|
124
|
-
* from: Number("int"),
|
|
125
|
-
* to: Number("int"),
|
|
126
|
-
* },
|
|
130
|
+
* talkRatio: "<ListConversationsFilterNumber>",
|
|
131
|
+
* wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
132
|
+
* interruptions: "<ListConversationsFilterNumber>",
|
|
127
133
|
* patience: { // ListConversationsFilterFloat
|
|
128
134
|
* from: Number("float"),
|
|
129
135
|
* to: Number("float"),
|
|
130
136
|
* },
|
|
131
|
-
* longestMonologue:
|
|
132
|
-
* from: Number("int"),
|
|
133
|
-
* to: Number("int"),
|
|
134
|
-
* },
|
|
137
|
+
* longestMonologue: "<ListConversationsFilterNumber>",
|
|
135
138
|
* longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
136
139
|
* },
|
|
137
140
|
* recorded: true || false,
|
|
@@ -296,27 +299,32 @@ declare const PutAnalysisSettingsCommand_base: {
|
|
|
296
299
|
* // from: Number("int"),
|
|
297
300
|
* // to: Number("int"),
|
|
298
301
|
* // },
|
|
302
|
+
* // connectTime: {
|
|
303
|
+
* // from: Number("int"),
|
|
304
|
+
* // to: Number("int"),
|
|
305
|
+
* // },
|
|
306
|
+
* // talkTime: {
|
|
307
|
+
* // from: Number("int"),
|
|
308
|
+
* // to: Number("int"),
|
|
309
|
+
* // },
|
|
310
|
+
* // waitTime: {
|
|
311
|
+
* // from: Number("int"),
|
|
312
|
+
* // to: Number("int"),
|
|
313
|
+
* // },
|
|
314
|
+
* // queueTime: {
|
|
315
|
+
* // from: Number("int"),
|
|
316
|
+
* // to: Number("int"),
|
|
317
|
+
* // },
|
|
318
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
299
319
|
* // interaction: { // ListConversationsFilterInteraction
|
|
300
|
-
* // talkRatio:
|
|
301
|
-
* //
|
|
302
|
-
* //
|
|
303
|
-
* // },
|
|
304
|
-
* // wordsPerMinute: {
|
|
305
|
-
* // from: Number("int"),
|
|
306
|
-
* // to: Number("int"),
|
|
307
|
-
* // },
|
|
308
|
-
* // interruptions: {
|
|
309
|
-
* // from: Number("int"),
|
|
310
|
-
* // to: Number("int"),
|
|
311
|
-
* // },
|
|
320
|
+
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
321
|
+
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
322
|
+
* // interruptions: "<ListConversationsFilterNumber>",
|
|
312
323
|
* // patience: { // ListConversationsFilterFloat
|
|
313
324
|
* // from: Number("float"),
|
|
314
325
|
* // to: Number("float"),
|
|
315
326
|
* // },
|
|
316
|
-
* // longestMonologue:
|
|
317
|
-
* // from: Number("int"),
|
|
318
|
-
* // to: Number("int"),
|
|
319
|
-
* // },
|
|
327
|
+
* // longestMonologue: "<ListConversationsFilterNumber>",
|
|
320
328
|
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
321
329
|
* // },
|
|
322
330
|
* // recorded: true || false,
|
|
@@ -24,9 +24,7 @@ export interface PutPlaylistItemCommandOutput extends PutPlaylistItemOutput, __M
|
|
|
24
24
|
declare const PutPlaylistItemCommand_base: {
|
|
25
25
|
new (input: PutPlaylistItemCommandInput): import("@smithy/core/client").CommandImpl<PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: PutPlaylistItemCommandInput): import("@smithy/core/client").CommandImpl<PutPlaylistItemCommandInput, PutPlaylistItemCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Adds an existing conversation to the specified playlist.
|
|
@@ -24,9 +24,7 @@ export interface QueryConversationsCountCommandOutput extends QueryConversations
|
|
|
24
24
|
declare const QueryConversationsCountCommand_base: {
|
|
25
25
|
new (input: QueryConversationsCountCommandInput): import("@smithy/core/client").CommandImpl<QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (...[input]: [] | [QueryConversationsCountCommandInput]): import("@smithy/core/client").CommandImpl<QueryConversationsCountCommandInput, QueryConversationsCountCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Insights API are currently in active development. All interfaces are subject to change.
|
|
@@ -110,27 +108,32 @@ declare const QueryConversationsCountCommand_base: {
|
|
|
110
108
|
* from: Number("int"),
|
|
111
109
|
* to: Number("int"),
|
|
112
110
|
* },
|
|
111
|
+
* connectTime: {
|
|
112
|
+
* from: Number("int"),
|
|
113
|
+
* to: Number("int"),
|
|
114
|
+
* },
|
|
115
|
+
* talkTime: {
|
|
116
|
+
* from: Number("int"),
|
|
117
|
+
* to: Number("int"),
|
|
118
|
+
* },
|
|
119
|
+
* waitTime: {
|
|
120
|
+
* from: Number("int"),
|
|
121
|
+
* to: Number("int"),
|
|
122
|
+
* },
|
|
123
|
+
* queueTime: {
|
|
124
|
+
* from: Number("int"),
|
|
125
|
+
* to: Number("int"),
|
|
126
|
+
* },
|
|
127
|
+
* holdTime: "<ListConversationsFilterNumber>",
|
|
113
128
|
* interaction: { // ListConversationsFilterInteraction
|
|
114
|
-
* talkRatio:
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* },
|
|
118
|
-
* wordsPerMinute: {
|
|
119
|
-
* from: Number("int"),
|
|
120
|
-
* to: Number("int"),
|
|
121
|
-
* },
|
|
122
|
-
* interruptions: {
|
|
123
|
-
* from: Number("int"),
|
|
124
|
-
* to: Number("int"),
|
|
125
|
-
* },
|
|
129
|
+
* talkRatio: "<ListConversationsFilterNumber>",
|
|
130
|
+
* wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
131
|
+
* interruptions: "<ListConversationsFilterNumber>",
|
|
126
132
|
* patience: { // ListConversationsFilterFloat
|
|
127
133
|
* from: Number("float"),
|
|
128
134
|
* to: Number("float"),
|
|
129
135
|
* },
|
|
130
|
-
* longestMonologue:
|
|
131
|
-
* from: Number("int"),
|
|
132
|
-
* to: Number("int"),
|
|
133
|
-
* },
|
|
136
|
+
* longestMonologue: "<ListConversationsFilterNumber>",
|
|
134
137
|
* longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
135
138
|
* },
|
|
136
139
|
* recorded: true || false,
|
|
@@ -24,9 +24,7 @@ export interface ScheduleCallSummaryGenerationCommandOutput extends ScheduleCall
|
|
|
24
24
|
declare const ScheduleCallSummaryGenerationCommand_base: {
|
|
25
25
|
new (input: ScheduleCallSummaryGenerationCommandInput): import("@smithy/core/client").CommandImpl<ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: ScheduleCallSummaryGenerationCommandInput): import("@smithy/core/client").CommandImpl<ScheduleCallSummaryGenerationCommandInput, ScheduleCallSummaryGenerationCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* @public
|
|
@@ -24,9 +24,7 @@ export interface ScheduleConferenceSummaryGenerationCommandOutput extends Schedu
|
|
|
24
24
|
declare const ScheduleConferenceSummaryGenerationCommand_base: {
|
|
25
25
|
new (input: ScheduleConferenceSummaryGenerationCommandInput): import("@smithy/core/client").CommandImpl<ScheduleConferenceSummaryGenerationCommandInput, ScheduleConferenceSummaryGenerationCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: ScheduleConferenceSummaryGenerationCommandInput): import("@smithy/core/client").CommandImpl<ScheduleConferenceSummaryGenerationCommandInput, ScheduleConferenceSummaryGenerationCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* @public
|
|
@@ -24,9 +24,7 @@ export interface UpdateDashboardAccessCommandOutput extends UpdateDashboardAcces
|
|
|
24
24
|
declare const UpdateDashboardAccessCommand_base: {
|
|
25
25
|
new (input: UpdateDashboardAccessCommandInput): import("@smithy/core/client").CommandImpl<UpdateDashboardAccessCommandInput, UpdateDashboardAccessCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (input: UpdateDashboardAccessCommandInput): import("@smithy/core/client").CommandImpl<UpdateDashboardAccessCommandInput, UpdateDashboardAccessCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
28
|
};
|
|
31
29
|
/**
|
|
32
30
|
* Enables a dashboard by its ID.
|
|
@@ -174,27 +172,32 @@ declare const UpdateDashboardAccessCommand_base: {
|
|
|
174
172
|
* // from: Number("int"),
|
|
175
173
|
* // to: Number("int"),
|
|
176
174
|
* // },
|
|
175
|
+
* // connectTime: {
|
|
176
|
+
* // from: Number("int"),
|
|
177
|
+
* // to: Number("int"),
|
|
178
|
+
* // },
|
|
179
|
+
* // talkTime: {
|
|
180
|
+
* // from: Number("int"),
|
|
181
|
+
* // to: Number("int"),
|
|
182
|
+
* // },
|
|
183
|
+
* // waitTime: {
|
|
184
|
+
* // from: Number("int"),
|
|
185
|
+
* // to: Number("int"),
|
|
186
|
+
* // },
|
|
187
|
+
* // queueTime: {
|
|
188
|
+
* // from: Number("int"),
|
|
189
|
+
* // to: Number("int"),
|
|
190
|
+
* // },
|
|
191
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
177
192
|
* // interaction: { // ListConversationsFilterInteraction
|
|
178
|
-
* // talkRatio:
|
|
179
|
-
* //
|
|
180
|
-
* //
|
|
181
|
-
* // },
|
|
182
|
-
* // wordsPerMinute: {
|
|
183
|
-
* // from: Number("int"),
|
|
184
|
-
* // to: Number("int"),
|
|
185
|
-
* // },
|
|
186
|
-
* // interruptions: {
|
|
187
|
-
* // from: Number("int"),
|
|
188
|
-
* // to: Number("int"),
|
|
189
|
-
* // },
|
|
193
|
+
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
194
|
+
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|
|
195
|
+
* // interruptions: "<ListConversationsFilterNumber>",
|
|
190
196
|
* // patience: { // ListConversationsFilterFloat
|
|
191
197
|
* // from: Number("float"),
|
|
192
198
|
* // to: Number("float"),
|
|
193
199
|
* // },
|
|
194
|
-
* // longestMonologue:
|
|
195
|
-
* // from: Number("int"),
|
|
196
|
-
* // to: Number("int"),
|
|
197
|
-
* // },
|
|
200
|
+
* // longestMonologue: "<ListConversationsFilterNumber>",
|
|
198
201
|
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
199
202
|
* // },
|
|
200
203
|
* // recorded: true || false,
|
|
@@ -334,6 +337,11 @@ declare const UpdateDashboardAccessCommand_base: {
|
|
|
334
337
|
* // ],
|
|
335
338
|
* // language: "<ListConversationsFilterKeyword>",
|
|
336
339
|
* // duration: "<ListConversationsFilterNumber>",
|
|
340
|
+
* // connectTime: "<ListConversationsFilterNumber>",
|
|
341
|
+
* // talkTime: "<ListConversationsFilterNumber>",
|
|
342
|
+
* // waitTime: "<ListConversationsFilterNumber>",
|
|
343
|
+
* // queueTime: "<ListConversationsFilterNumber>",
|
|
344
|
+
* // holdTime: "<ListConversationsFilterNumber>",
|
|
337
345
|
* // interaction: {
|
|
338
346
|
* // talkRatio: "<ListConversationsFilterNumber>",
|
|
339
347
|
* // wordsPerMinute: "<ListConversationsFilterNumber>",
|