@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
|
@@ -1,256 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
|
|
2
|
-
import { GetAnalysisSettingsInput, GetAnalysisSettingsOutput } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
|
-
/**
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
|
-
/**
|
|
11
|
-
* @public
|
|
12
|
-
*
|
|
13
|
-
* The input for {@link GetAnalysisSettingsCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface GetAnalysisSettingsCommandInput extends GetAnalysisSettingsInput {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link GetAnalysisSettingsCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface GetAnalysisSettingsCommandOutput extends GetAnalysisSettingsOutput, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const GetAnalysisSettingsCommand_base: {
|
|
25
|
-
new (input: GetAnalysisSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [GetAnalysisSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<GetAnalysisSettingsCommandInput, GetAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Gets default analysis settings used for projections.
|
|
31
|
-
* @example
|
|
32
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
-
* ```javascript
|
|
34
|
-
* import { WdaInsightsClient, GetAnalysisSettingsCommand } from "@wildix/wda-insights-client"; // ES Modules import
|
|
35
|
-
* // const { WdaInsightsClient, GetAnalysisSettingsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
|
|
36
|
-
* const client = new WdaInsightsClient(config);
|
|
37
|
-
* const input = { // GetAnalysisSettingsInput
|
|
38
|
-
* company: "STRING_VALUE",
|
|
39
|
-
* };
|
|
40
|
-
* const command = new GetAnalysisSettingsCommand(input);
|
|
41
|
-
* const response = await client.send(command);
|
|
42
|
-
* // { // GetAnalysisSettingsOutput
|
|
43
|
-
* // settings: { // AnalysisSettings
|
|
44
|
-
* // defaultModel: "STRING_VALUE",
|
|
45
|
-
* // disabled: true || false,
|
|
46
|
-
* // filter: { // ListConversationsFilter
|
|
47
|
-
* // id: [ // ListConversationsFilterIdList
|
|
48
|
-
* // { // ConversationTarget Union: only one key present
|
|
49
|
-
* // call: { // CallConversationTarget
|
|
50
|
-
* // callId: "STRING_VALUE", // required
|
|
51
|
-
* // flowIndex: Number("int"), // required
|
|
52
|
-
* // },
|
|
53
|
-
* // conference: { // ConferenceConversationTarget
|
|
54
|
-
* // conferenceId: "STRING_VALUE", // required
|
|
55
|
-
* // },
|
|
56
|
-
* // chat: { // ChatConversationTarget
|
|
57
|
-
* // chatId: "STRING_VALUE", // required
|
|
58
|
-
* // },
|
|
59
|
-
* // },
|
|
60
|
-
* // ],
|
|
61
|
-
* // entity: { // ListConversationsFilterEntity
|
|
62
|
-
* // call: true || false,
|
|
63
|
-
* // conference: true || false,
|
|
64
|
-
* // chat: true || false,
|
|
65
|
-
* // },
|
|
66
|
-
* // participants: [ // ListConversationsFilterParticipantList
|
|
67
|
-
* // { // ListConversationsFilterParticipant Union: only one key present
|
|
68
|
-
* // email: "STRING_VALUE",
|
|
69
|
-
* // phone: "STRING_VALUE",
|
|
70
|
-
* // extension: "STRING_VALUE",
|
|
71
|
-
* // },
|
|
72
|
-
* // ],
|
|
73
|
-
* // participantsToInclude: [
|
|
74
|
-
* // {// Union: only one key present
|
|
75
|
-
* // email: "STRING_VALUE",
|
|
76
|
-
* // phone: "STRING_VALUE",
|
|
77
|
-
* // extension: "STRING_VALUE",
|
|
78
|
-
* // },
|
|
79
|
-
* // ],
|
|
80
|
-
* // participantsToExclude: [
|
|
81
|
-
* // {// Union: only one key present
|
|
82
|
-
* // email: "STRING_VALUE",
|
|
83
|
-
* // phone: "STRING_VALUE",
|
|
84
|
-
* // extension: "STRING_VALUE",
|
|
85
|
-
* // },
|
|
86
|
-
* // ],
|
|
87
|
-
* // chatbots: [ // ListConversationsFilterKeyword
|
|
88
|
-
* // "STRING_VALUE",
|
|
89
|
-
* // ],
|
|
90
|
-
* // voicebots: [
|
|
91
|
-
* // "STRING_VALUE",
|
|
92
|
-
* // ],
|
|
93
|
-
* // service: [
|
|
94
|
-
* // "STRING_VALUE",
|
|
95
|
-
* // ],
|
|
96
|
-
* // group: [
|
|
97
|
-
* // "STRING_VALUE",
|
|
98
|
-
* // ],
|
|
99
|
-
* // department: [
|
|
100
|
-
* // "STRING_VALUE",
|
|
101
|
-
* // ],
|
|
102
|
-
* // tag: "<ListConversationsFilterKeyword>",
|
|
103
|
-
* // pbx: "<ListConversationsFilterKeyword>",
|
|
104
|
-
* // trunk: "<ListConversationsFilterKeyword>",
|
|
105
|
-
* // queue: "<ListConversationsFilterKeyword>",
|
|
106
|
-
* // country: "<ListConversationsFilterKeyword>",
|
|
107
|
-
* // location: "<ListConversationsFilterKeyword>",
|
|
108
|
-
* // phases: [ // ListConversationsFilterPhases
|
|
109
|
-
* // "STRING_VALUE",
|
|
110
|
-
* // ],
|
|
111
|
-
* // language: "<ListConversationsFilterKeyword>",
|
|
112
|
-
* // duration: { // ListConversationsFilterNumber
|
|
113
|
-
* // from: Number("int"),
|
|
114
|
-
* // to: Number("int"),
|
|
115
|
-
* // },
|
|
116
|
-
* // interaction: { // ListConversationsFilterInteraction
|
|
117
|
-
* // talkRatio: {
|
|
118
|
-
* // from: Number("int"),
|
|
119
|
-
* // to: Number("int"),
|
|
120
|
-
* // },
|
|
121
|
-
* // wordsPerMinute: {
|
|
122
|
-
* // from: Number("int"),
|
|
123
|
-
* // to: Number("int"),
|
|
124
|
-
* // },
|
|
125
|
-
* // interruptions: {
|
|
126
|
-
* // from: Number("int"),
|
|
127
|
-
* // to: Number("int"),
|
|
128
|
-
* // },
|
|
129
|
-
* // patience: { // ListConversationsFilterFloat
|
|
130
|
-
* // from: Number("float"),
|
|
131
|
-
* // to: Number("float"),
|
|
132
|
-
* // },
|
|
133
|
-
* // longestMonologue: {
|
|
134
|
-
* // from: Number("int"),
|
|
135
|
-
* // to: Number("int"),
|
|
136
|
-
* // },
|
|
137
|
-
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
138
|
-
* // },
|
|
139
|
-
* // recorded: true || false,
|
|
140
|
-
* // transcribed: true || false,
|
|
141
|
-
* // direction: { // ListConversationsFilterDirection
|
|
142
|
-
* // inbound: true || false,
|
|
143
|
-
* // outbound: true || false,
|
|
144
|
-
* // internal: true || false,
|
|
145
|
-
* // },
|
|
146
|
-
* // insights: [ // ListConversationsFilterInsightsList
|
|
147
|
-
* // { // ListConversationsFilterInsight
|
|
148
|
-
* // projectionId: "STRING_VALUE", // required
|
|
149
|
-
* // fieldId: "STRING_VALUE", // required
|
|
150
|
-
* // match: "STRING_VALUE",
|
|
151
|
-
* // matchAny: [ // StringList
|
|
152
|
-
* // "STRING_VALUE",
|
|
153
|
-
* // ],
|
|
154
|
-
* // },
|
|
155
|
-
* // ],
|
|
156
|
-
* // channel: { // ListConversationsFilterChannel
|
|
157
|
-
* // sms: true || false,
|
|
158
|
-
* // whatsapp: true || false,
|
|
159
|
-
* // kite: true || false,
|
|
160
|
-
* // },
|
|
161
|
-
* // date: { // ListConversationsFilterDate Union: only one key present
|
|
162
|
-
* // absolute: { // ListConversationsFilterAbsoluteDate
|
|
163
|
-
* // from: "STRING_VALUE",
|
|
164
|
-
* // to: "STRING_VALUE",
|
|
165
|
-
* // timeZone: "STRING_VALUE",
|
|
166
|
-
* // },
|
|
167
|
-
* // predefined: { // ListConversationsFilterPredefinedDate
|
|
168
|
-
* // type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
|
|
169
|
-
* // timeZone: "STRING_VALUE",
|
|
170
|
-
* // },
|
|
171
|
-
* // },
|
|
172
|
-
* // dayOfWeek: { // ListConversationsFilterDateIndex
|
|
173
|
-
* // index: Number("int"),
|
|
174
|
-
* // timeZone: "STRING_VALUE",
|
|
175
|
-
* // },
|
|
176
|
-
* // hourOfDay: {
|
|
177
|
-
* // index: Number("int"),
|
|
178
|
-
* // timeZone: "STRING_VALUE",
|
|
179
|
-
* // },
|
|
180
|
-
* // present: [ // ListConversationsFilterFieldsList
|
|
181
|
-
* // { // ListConversationsFilterField Union: only one key present
|
|
182
|
-
* // direction: true || false,
|
|
183
|
-
* // service: true || false,
|
|
184
|
-
* // group: true || false,
|
|
185
|
-
* // department: true || false,
|
|
186
|
-
* // chatbot: true || false,
|
|
187
|
-
* // voicebot: true || false,
|
|
188
|
-
* // tag: true || false,
|
|
189
|
-
* // pbx: true || false,
|
|
190
|
-
* // trunk: true || false,
|
|
191
|
-
* // queue: true || false,
|
|
192
|
-
* // country: true || false,
|
|
193
|
-
* // location: true || false,
|
|
194
|
-
* // language: true || false,
|
|
195
|
-
* // projection: { // ListConversationsFilterProjectionField
|
|
196
|
-
* // projectionId: "STRING_VALUE", // required
|
|
197
|
-
* // fieldId: "STRING_VALUE", // required
|
|
198
|
-
* // },
|
|
199
|
-
* // },
|
|
200
|
-
* // ],
|
|
201
|
-
* // absent: [
|
|
202
|
-
* // {// Union: only one key present
|
|
203
|
-
* // direction: true || false,
|
|
204
|
-
* // service: true || false,
|
|
205
|
-
* // group: true || false,
|
|
206
|
-
* // department: true || false,
|
|
207
|
-
* // chatbot: true || false,
|
|
208
|
-
* // voicebot: true || false,
|
|
209
|
-
* // tag: true || false,
|
|
210
|
-
* // pbx: true || false,
|
|
211
|
-
* // trunk: true || false,
|
|
212
|
-
* // queue: true || false,
|
|
213
|
-
* // country: true || false,
|
|
214
|
-
* // location: true || false,
|
|
215
|
-
* // language: true || false,
|
|
216
|
-
* // projection: {
|
|
217
|
-
* // projectionId: "STRING_VALUE", // required
|
|
218
|
-
* // fieldId: "STRING_VALUE", // required
|
|
219
|
-
* // },
|
|
220
|
-
* // },
|
|
221
|
-
* // ],
|
|
222
|
-
* // },
|
|
223
|
-
* // },
|
|
224
|
-
* // };
|
|
225
|
-
*
|
|
226
|
-
* ```
|
|
227
|
-
*
|
|
228
|
-
* @param GetAnalysisSettingsCommandInput - {@link GetAnalysisSettingsCommandInput}
|
|
229
|
-
* @returns {@link GetAnalysisSettingsCommandOutput}
|
|
230
|
-
* @see {@link GetAnalysisSettingsCommandInput} for command's `input` shape.
|
|
231
|
-
* @see {@link GetAnalysisSettingsCommandOutput} for command's `response` shape.
|
|
232
|
-
* @see {@link WdaInsightsClientResolvedConfig | config} for WdaInsightsClient's `config` shape.
|
|
233
|
-
*
|
|
234
|
-
* @throws {@link ValidationException} (client fault)
|
|
235
|
-
*
|
|
236
|
-
* @throws {@link ForbiddenException} (client fault)
|
|
237
|
-
*
|
|
238
|
-
* @throws {@link WdaInsightsServiceException}
|
|
239
|
-
* <p>Base exception class for all service exceptions from WdaInsights service.</p>
|
|
240
|
-
*
|
|
241
|
-
*
|
|
242
|
-
* @public
|
|
243
|
-
*/
|
|
244
|
-
export declare class GetAnalysisSettingsCommand extends GetAnalysisSettingsCommand_base {
|
|
245
|
-
/** @internal type navigation helper, not in runtime. */
|
|
246
|
-
protected static __types: {
|
|
247
|
-
api: {
|
|
248
|
-
input: GetAnalysisSettingsInput;
|
|
249
|
-
output: GetAnalysisSettingsOutput;
|
|
250
|
-
};
|
|
251
|
-
sdk: {
|
|
252
|
-
input: GetAnalysisSettingsCommandInput;
|
|
253
|
-
output: GetAnalysisSettingsCommandOutput;
|
|
254
|
-
};
|
|
255
|
-
};
|
|
256
|
-
}
|
|
@@ -1,435 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WdaInsightsClientResolvedConfig } from "../WdaInsightsClient";
|
|
2
|
-
import { PutAnalysisSettingsInput, PutAnalysisSettingsOutput } from "../models/models_0";
|
|
3
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
|
-
/**
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
|
-
/**
|
|
11
|
-
* @public
|
|
12
|
-
*
|
|
13
|
-
* The input for {@link PutAnalysisSettingsCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface PutAnalysisSettingsCommandInput extends PutAnalysisSettingsInput {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link PutAnalysisSettingsCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface PutAnalysisSettingsCommandOutput extends PutAnalysisSettingsOutput, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const PutAnalysisSettingsCommand_base: {
|
|
25
|
-
new (input: PutAnalysisSettingsCommandInput): import("@smithy/smithy-client").CommandImpl<PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [PutAnalysisSettingsCommandInput]): import("@smithy/smithy-client").CommandImpl<PutAnalysisSettingsCommandInput, PutAnalysisSettingsCommandOutput, WdaInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Updates default analysis settings used for projections.
|
|
31
|
-
* @example
|
|
32
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
-
* ```javascript
|
|
34
|
-
* import { WdaInsightsClient, PutAnalysisSettingsCommand } from "@wildix/wda-insights-client"; // ES Modules import
|
|
35
|
-
* // const { WdaInsightsClient, PutAnalysisSettingsCommand } = require("@wildix/wda-insights-client"); // CommonJS import
|
|
36
|
-
* const client = new WdaInsightsClient(config);
|
|
37
|
-
* const input = { // PutAnalysisSettingsInput
|
|
38
|
-
* defaultModel: "STRING_VALUE",
|
|
39
|
-
* disabled: true || false,
|
|
40
|
-
* filter: { // ListConversationsFilter
|
|
41
|
-
* id: [ // ListConversationsFilterIdList
|
|
42
|
-
* { // ConversationTarget Union: only one key present
|
|
43
|
-
* call: { // CallConversationTarget
|
|
44
|
-
* callId: "STRING_VALUE", // required
|
|
45
|
-
* flowIndex: Number("int"), // required
|
|
46
|
-
* },
|
|
47
|
-
* conference: { // ConferenceConversationTarget
|
|
48
|
-
* conferenceId: "STRING_VALUE", // required
|
|
49
|
-
* },
|
|
50
|
-
* chat: { // ChatConversationTarget
|
|
51
|
-
* chatId: "STRING_VALUE", // required
|
|
52
|
-
* },
|
|
53
|
-
* },
|
|
54
|
-
* ],
|
|
55
|
-
* entity: { // ListConversationsFilterEntity
|
|
56
|
-
* call: true || false,
|
|
57
|
-
* conference: true || false,
|
|
58
|
-
* chat: true || false,
|
|
59
|
-
* },
|
|
60
|
-
* participants: [ // ListConversationsFilterParticipantList
|
|
61
|
-
* { // ListConversationsFilterParticipant Union: only one key present
|
|
62
|
-
* email: "STRING_VALUE",
|
|
63
|
-
* phone: "STRING_VALUE",
|
|
64
|
-
* extension: "STRING_VALUE",
|
|
65
|
-
* },
|
|
66
|
-
* ],
|
|
67
|
-
* participantsToInclude: [
|
|
68
|
-
* {// Union: only one key present
|
|
69
|
-
* email: "STRING_VALUE",
|
|
70
|
-
* phone: "STRING_VALUE",
|
|
71
|
-
* extension: "STRING_VALUE",
|
|
72
|
-
* },
|
|
73
|
-
* ],
|
|
74
|
-
* participantsToExclude: [
|
|
75
|
-
* {// Union: only one key present
|
|
76
|
-
* email: "STRING_VALUE",
|
|
77
|
-
* phone: "STRING_VALUE",
|
|
78
|
-
* extension: "STRING_VALUE",
|
|
79
|
-
* },
|
|
80
|
-
* ],
|
|
81
|
-
* chatbots: [ // ListConversationsFilterKeyword
|
|
82
|
-
* "STRING_VALUE",
|
|
83
|
-
* ],
|
|
84
|
-
* voicebots: [
|
|
85
|
-
* "STRING_VALUE",
|
|
86
|
-
* ],
|
|
87
|
-
* service: [
|
|
88
|
-
* "STRING_VALUE",
|
|
89
|
-
* ],
|
|
90
|
-
* group: [
|
|
91
|
-
* "STRING_VALUE",
|
|
92
|
-
* ],
|
|
93
|
-
* department: [
|
|
94
|
-
* "STRING_VALUE",
|
|
95
|
-
* ],
|
|
96
|
-
* tag: "<ListConversationsFilterKeyword>",
|
|
97
|
-
* pbx: "<ListConversationsFilterKeyword>",
|
|
98
|
-
* trunk: "<ListConversationsFilterKeyword>",
|
|
99
|
-
* queue: "<ListConversationsFilterKeyword>",
|
|
100
|
-
* country: "<ListConversationsFilterKeyword>",
|
|
101
|
-
* location: "<ListConversationsFilterKeyword>",
|
|
102
|
-
* phases: [ // ListConversationsFilterPhases
|
|
103
|
-
* "STRING_VALUE",
|
|
104
|
-
* ],
|
|
105
|
-
* language: "<ListConversationsFilterKeyword>",
|
|
106
|
-
* duration: { // ListConversationsFilterNumber
|
|
107
|
-
* from: Number("int"),
|
|
108
|
-
* to: Number("int"),
|
|
109
|
-
* },
|
|
110
|
-
* interaction: { // ListConversationsFilterInteraction
|
|
111
|
-
* talkRatio: {
|
|
112
|
-
* from: Number("int"),
|
|
113
|
-
* to: Number("int"),
|
|
114
|
-
* },
|
|
115
|
-
* wordsPerMinute: {
|
|
116
|
-
* from: Number("int"),
|
|
117
|
-
* to: Number("int"),
|
|
118
|
-
* },
|
|
119
|
-
* interruptions: {
|
|
120
|
-
* from: Number("int"),
|
|
121
|
-
* to: Number("int"),
|
|
122
|
-
* },
|
|
123
|
-
* patience: { // ListConversationsFilterFloat
|
|
124
|
-
* from: Number("float"),
|
|
125
|
-
* to: Number("float"),
|
|
126
|
-
* },
|
|
127
|
-
* longestMonologue: {
|
|
128
|
-
* from: Number("int"),
|
|
129
|
-
* to: Number("int"),
|
|
130
|
-
* },
|
|
131
|
-
* longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
132
|
-
* },
|
|
133
|
-
* recorded: true || false,
|
|
134
|
-
* transcribed: true || false,
|
|
135
|
-
* direction: { // ListConversationsFilterDirection
|
|
136
|
-
* inbound: true || false,
|
|
137
|
-
* outbound: true || false,
|
|
138
|
-
* internal: true || false,
|
|
139
|
-
* },
|
|
140
|
-
* insights: [ // ListConversationsFilterInsightsList
|
|
141
|
-
* { // ListConversationsFilterInsight
|
|
142
|
-
* projectionId: "STRING_VALUE", // required
|
|
143
|
-
* fieldId: "STRING_VALUE", // required
|
|
144
|
-
* match: "STRING_VALUE",
|
|
145
|
-
* matchAny: [ // StringList
|
|
146
|
-
* "STRING_VALUE",
|
|
147
|
-
* ],
|
|
148
|
-
* },
|
|
149
|
-
* ],
|
|
150
|
-
* channel: { // ListConversationsFilterChannel
|
|
151
|
-
* sms: true || false,
|
|
152
|
-
* whatsapp: true || false,
|
|
153
|
-
* kite: true || false,
|
|
154
|
-
* },
|
|
155
|
-
* date: { // ListConversationsFilterDate Union: only one key present
|
|
156
|
-
* absolute: { // ListConversationsFilterAbsoluteDate
|
|
157
|
-
* from: "STRING_VALUE",
|
|
158
|
-
* to: "STRING_VALUE",
|
|
159
|
-
* timeZone: "STRING_VALUE",
|
|
160
|
-
* },
|
|
161
|
-
* predefined: { // ListConversationsFilterPredefinedDate
|
|
162
|
-
* type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
|
|
163
|
-
* timeZone: "STRING_VALUE",
|
|
164
|
-
* },
|
|
165
|
-
* },
|
|
166
|
-
* dayOfWeek: { // ListConversationsFilterDateIndex
|
|
167
|
-
* index: Number("int"),
|
|
168
|
-
* timeZone: "STRING_VALUE",
|
|
169
|
-
* },
|
|
170
|
-
* hourOfDay: {
|
|
171
|
-
* index: Number("int"),
|
|
172
|
-
* timeZone: "STRING_VALUE",
|
|
173
|
-
* },
|
|
174
|
-
* present: [ // ListConversationsFilterFieldsList
|
|
175
|
-
* { // ListConversationsFilterField Union: only one key present
|
|
176
|
-
* direction: true || false,
|
|
177
|
-
* service: true || false,
|
|
178
|
-
* group: true || false,
|
|
179
|
-
* department: true || false,
|
|
180
|
-
* chatbot: true || false,
|
|
181
|
-
* voicebot: true || false,
|
|
182
|
-
* tag: true || false,
|
|
183
|
-
* pbx: true || false,
|
|
184
|
-
* trunk: true || false,
|
|
185
|
-
* queue: true || false,
|
|
186
|
-
* country: true || false,
|
|
187
|
-
* location: true || false,
|
|
188
|
-
* language: true || false,
|
|
189
|
-
* projection: { // ListConversationsFilterProjectionField
|
|
190
|
-
* projectionId: "STRING_VALUE", // required
|
|
191
|
-
* fieldId: "STRING_VALUE", // required
|
|
192
|
-
* },
|
|
193
|
-
* },
|
|
194
|
-
* ],
|
|
195
|
-
* absent: [
|
|
196
|
-
* {// Union: only one key present
|
|
197
|
-
* direction: true || false,
|
|
198
|
-
* service: true || false,
|
|
199
|
-
* group: true || false,
|
|
200
|
-
* department: true || false,
|
|
201
|
-
* chatbot: true || false,
|
|
202
|
-
* voicebot: true || false,
|
|
203
|
-
* tag: true || false,
|
|
204
|
-
* pbx: true || false,
|
|
205
|
-
* trunk: true || false,
|
|
206
|
-
* queue: true || false,
|
|
207
|
-
* country: true || false,
|
|
208
|
-
* location: true || false,
|
|
209
|
-
* language: true || false,
|
|
210
|
-
* projection: {
|
|
211
|
-
* projectionId: "STRING_VALUE", // required
|
|
212
|
-
* fieldId: "STRING_VALUE", // required
|
|
213
|
-
* },
|
|
214
|
-
* },
|
|
215
|
-
* ],
|
|
216
|
-
* },
|
|
217
|
-
* company: "STRING_VALUE",
|
|
218
|
-
* };
|
|
219
|
-
* const command = new PutAnalysisSettingsCommand(input);
|
|
220
|
-
* const response = await client.send(command);
|
|
221
|
-
* // { // PutAnalysisSettingsOutput
|
|
222
|
-
* // settings: { // AnalysisSettings
|
|
223
|
-
* // defaultModel: "STRING_VALUE",
|
|
224
|
-
* // disabled: true || false,
|
|
225
|
-
* // filter: { // ListConversationsFilter
|
|
226
|
-
* // id: [ // ListConversationsFilterIdList
|
|
227
|
-
* // { // ConversationTarget Union: only one key present
|
|
228
|
-
* // call: { // CallConversationTarget
|
|
229
|
-
* // callId: "STRING_VALUE", // required
|
|
230
|
-
* // flowIndex: Number("int"), // required
|
|
231
|
-
* // },
|
|
232
|
-
* // conference: { // ConferenceConversationTarget
|
|
233
|
-
* // conferenceId: "STRING_VALUE", // required
|
|
234
|
-
* // },
|
|
235
|
-
* // chat: { // ChatConversationTarget
|
|
236
|
-
* // chatId: "STRING_VALUE", // required
|
|
237
|
-
* // },
|
|
238
|
-
* // },
|
|
239
|
-
* // ],
|
|
240
|
-
* // entity: { // ListConversationsFilterEntity
|
|
241
|
-
* // call: true || false,
|
|
242
|
-
* // conference: true || false,
|
|
243
|
-
* // chat: true || false,
|
|
244
|
-
* // },
|
|
245
|
-
* // participants: [ // ListConversationsFilterParticipantList
|
|
246
|
-
* // { // ListConversationsFilterParticipant Union: only one key present
|
|
247
|
-
* // email: "STRING_VALUE",
|
|
248
|
-
* // phone: "STRING_VALUE",
|
|
249
|
-
* // extension: "STRING_VALUE",
|
|
250
|
-
* // },
|
|
251
|
-
* // ],
|
|
252
|
-
* // participantsToInclude: [
|
|
253
|
-
* // {// Union: only one key present
|
|
254
|
-
* // email: "STRING_VALUE",
|
|
255
|
-
* // phone: "STRING_VALUE",
|
|
256
|
-
* // extension: "STRING_VALUE",
|
|
257
|
-
* // },
|
|
258
|
-
* // ],
|
|
259
|
-
* // participantsToExclude: [
|
|
260
|
-
* // {// Union: only one key present
|
|
261
|
-
* // email: "STRING_VALUE",
|
|
262
|
-
* // phone: "STRING_VALUE",
|
|
263
|
-
* // extension: "STRING_VALUE",
|
|
264
|
-
* // },
|
|
265
|
-
* // ],
|
|
266
|
-
* // chatbots: [ // ListConversationsFilterKeyword
|
|
267
|
-
* // "STRING_VALUE",
|
|
268
|
-
* // ],
|
|
269
|
-
* // voicebots: [
|
|
270
|
-
* // "STRING_VALUE",
|
|
271
|
-
* // ],
|
|
272
|
-
* // service: [
|
|
273
|
-
* // "STRING_VALUE",
|
|
274
|
-
* // ],
|
|
275
|
-
* // group: [
|
|
276
|
-
* // "STRING_VALUE",
|
|
277
|
-
* // ],
|
|
278
|
-
* // department: [
|
|
279
|
-
* // "STRING_VALUE",
|
|
280
|
-
* // ],
|
|
281
|
-
* // tag: "<ListConversationsFilterKeyword>",
|
|
282
|
-
* // pbx: "<ListConversationsFilterKeyword>",
|
|
283
|
-
* // trunk: "<ListConversationsFilterKeyword>",
|
|
284
|
-
* // queue: "<ListConversationsFilterKeyword>",
|
|
285
|
-
* // country: "<ListConversationsFilterKeyword>",
|
|
286
|
-
* // location: "<ListConversationsFilterKeyword>",
|
|
287
|
-
* // phases: [ // ListConversationsFilterPhases
|
|
288
|
-
* // "STRING_VALUE",
|
|
289
|
-
* // ],
|
|
290
|
-
* // language: "<ListConversationsFilterKeyword>",
|
|
291
|
-
* // duration: { // ListConversationsFilterNumber
|
|
292
|
-
* // from: Number("int"),
|
|
293
|
-
* // to: Number("int"),
|
|
294
|
-
* // },
|
|
295
|
-
* // interaction: { // ListConversationsFilterInteraction
|
|
296
|
-
* // talkRatio: {
|
|
297
|
-
* // from: Number("int"),
|
|
298
|
-
* // to: Number("int"),
|
|
299
|
-
* // },
|
|
300
|
-
* // wordsPerMinute: {
|
|
301
|
-
* // from: Number("int"),
|
|
302
|
-
* // to: Number("int"),
|
|
303
|
-
* // },
|
|
304
|
-
* // interruptions: {
|
|
305
|
-
* // from: Number("int"),
|
|
306
|
-
* // to: Number("int"),
|
|
307
|
-
* // },
|
|
308
|
-
* // patience: { // ListConversationsFilterFloat
|
|
309
|
-
* // from: Number("float"),
|
|
310
|
-
* // to: Number("float"),
|
|
311
|
-
* // },
|
|
312
|
-
* // longestMonologue: {
|
|
313
|
-
* // from: Number("int"),
|
|
314
|
-
* // to: Number("int"),
|
|
315
|
-
* // },
|
|
316
|
-
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
317
|
-
* // },
|
|
318
|
-
* // recorded: true || false,
|
|
319
|
-
* // transcribed: true || false,
|
|
320
|
-
* // direction: { // ListConversationsFilterDirection
|
|
321
|
-
* // inbound: true || false,
|
|
322
|
-
* // outbound: true || false,
|
|
323
|
-
* // internal: true || false,
|
|
324
|
-
* // },
|
|
325
|
-
* // insights: [ // ListConversationsFilterInsightsList
|
|
326
|
-
* // { // ListConversationsFilterInsight
|
|
327
|
-
* // projectionId: "STRING_VALUE", // required
|
|
328
|
-
* // fieldId: "STRING_VALUE", // required
|
|
329
|
-
* // match: "STRING_VALUE",
|
|
330
|
-
* // matchAny: [ // StringList
|
|
331
|
-
* // "STRING_VALUE",
|
|
332
|
-
* // ],
|
|
333
|
-
* // },
|
|
334
|
-
* // ],
|
|
335
|
-
* // channel: { // ListConversationsFilterChannel
|
|
336
|
-
* // sms: true || false,
|
|
337
|
-
* // whatsapp: true || false,
|
|
338
|
-
* // kite: true || false,
|
|
339
|
-
* // },
|
|
340
|
-
* // date: { // ListConversationsFilterDate Union: only one key present
|
|
341
|
-
* // absolute: { // ListConversationsFilterAbsoluteDate
|
|
342
|
-
* // from: "STRING_VALUE",
|
|
343
|
-
* // to: "STRING_VALUE",
|
|
344
|
-
* // timeZone: "STRING_VALUE",
|
|
345
|
-
* // },
|
|
346
|
-
* // predefined: { // ListConversationsFilterPredefinedDate
|
|
347
|
-
* // type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
|
|
348
|
-
* // timeZone: "STRING_VALUE",
|
|
349
|
-
* // },
|
|
350
|
-
* // },
|
|
351
|
-
* // dayOfWeek: { // ListConversationsFilterDateIndex
|
|
352
|
-
* // index: Number("int"),
|
|
353
|
-
* // timeZone: "STRING_VALUE",
|
|
354
|
-
* // },
|
|
355
|
-
* // hourOfDay: {
|
|
356
|
-
* // index: Number("int"),
|
|
357
|
-
* // timeZone: "STRING_VALUE",
|
|
358
|
-
* // },
|
|
359
|
-
* // present: [ // ListConversationsFilterFieldsList
|
|
360
|
-
* // { // ListConversationsFilterField Union: only one key present
|
|
361
|
-
* // direction: true || false,
|
|
362
|
-
* // service: true || false,
|
|
363
|
-
* // group: true || false,
|
|
364
|
-
* // department: true || false,
|
|
365
|
-
* // chatbot: true || false,
|
|
366
|
-
* // voicebot: true || false,
|
|
367
|
-
* // tag: true || false,
|
|
368
|
-
* // pbx: true || false,
|
|
369
|
-
* // trunk: true || false,
|
|
370
|
-
* // queue: true || false,
|
|
371
|
-
* // country: true || false,
|
|
372
|
-
* // location: true || false,
|
|
373
|
-
* // language: true || false,
|
|
374
|
-
* // projection: { // ListConversationsFilterProjectionField
|
|
375
|
-
* // projectionId: "STRING_VALUE", // required
|
|
376
|
-
* // fieldId: "STRING_VALUE", // required
|
|
377
|
-
* // },
|
|
378
|
-
* // },
|
|
379
|
-
* // ],
|
|
380
|
-
* // absent: [
|
|
381
|
-
* // {// Union: only one key present
|
|
382
|
-
* // direction: true || false,
|
|
383
|
-
* // service: true || false,
|
|
384
|
-
* // group: true || false,
|
|
385
|
-
* // department: true || false,
|
|
386
|
-
* // chatbot: true || false,
|
|
387
|
-
* // voicebot: true || false,
|
|
388
|
-
* // tag: true || false,
|
|
389
|
-
* // pbx: true || false,
|
|
390
|
-
* // trunk: true || false,
|
|
391
|
-
* // queue: true || false,
|
|
392
|
-
* // country: true || false,
|
|
393
|
-
* // location: true || false,
|
|
394
|
-
* // language: true || false,
|
|
395
|
-
* // projection: {
|
|
396
|
-
* // projectionId: "STRING_VALUE", // required
|
|
397
|
-
* // fieldId: "STRING_VALUE", // required
|
|
398
|
-
* // },
|
|
399
|
-
* // },
|
|
400
|
-
* // ],
|
|
401
|
-
* // },
|
|
402
|
-
* // },
|
|
403
|
-
* // };
|
|
404
|
-
*
|
|
405
|
-
* ```
|
|
406
|
-
*
|
|
407
|
-
* @param PutAnalysisSettingsCommandInput - {@link PutAnalysisSettingsCommandInput}
|
|
408
|
-
* @returns {@link PutAnalysisSettingsCommandOutput}
|
|
409
|
-
* @see {@link PutAnalysisSettingsCommandInput} for command's `input` shape.
|
|
410
|
-
* @see {@link PutAnalysisSettingsCommandOutput} for command's `response` shape.
|
|
411
|
-
* @see {@link WdaInsightsClientResolvedConfig | config} for WdaInsightsClient's `config` shape.
|
|
412
|
-
*
|
|
413
|
-
* @throws {@link ValidationException} (client fault)
|
|
414
|
-
*
|
|
415
|
-
* @throws {@link ForbiddenException} (client fault)
|
|
416
|
-
*
|
|
417
|
-
* @throws {@link WdaInsightsServiceException}
|
|
418
|
-
* <p>Base exception class for all service exceptions from WdaInsights service.</p>
|
|
419
|
-
*
|
|
420
|
-
*
|
|
421
|
-
* @public
|
|
422
|
-
*/
|
|
423
|
-
export declare class PutAnalysisSettingsCommand extends PutAnalysisSettingsCommand_base {
|
|
424
|
-
/** @internal type navigation helper, not in runtime. */
|
|
425
|
-
protected static __types: {
|
|
426
|
-
api: {
|
|
427
|
-
input: PutAnalysisSettingsInput;
|
|
428
|
-
output: PutAnalysisSettingsOutput;
|
|
429
|
-
};
|
|
430
|
-
sdk: {
|
|
431
|
-
input: PutAnalysisSettingsCommandInput;
|
|
432
|
-
output: PutAnalysisSettingsCommandOutput;
|
|
433
|
-
};
|
|
434
|
-
};
|
|
435
|
-
}
|