@wildix/wda-insights-client 1.1.39 → 1.1.41
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 +4 -0
- package/dist-cjs/commands/GetAnalysisSettingsCommand.js +21 -0
- package/dist-cjs/commands/PutAnalysisSettingsCommand.js +21 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +2 -5
- package/dist-cjs/protocols/Aws_restJson1.js +118 -12
- package/dist-es/WdaInsights.js +4 -0
- package/dist-es/commands/GetAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/PutAnalysisSettingsCommand.js +17 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +0 -3
- package/dist-es/protocols/Aws_restJson1.js +111 -9
- package/dist-types/WdaInsights.d.ts +16 -0
- package/dist-types/WdaInsightsClient.d.ts +4 -2
- package/dist-types/commands/CreateProjectionCommand.d.ts +368 -10
- package/dist-types/commands/CreateProjectionsCategoryCommand.d.ts +3 -1
- package/dist-types/commands/DeleteProjectionsCategoryCommand.d.ts +3 -1
- package/dist-types/commands/DisableProjectionCommand.d.ts +184 -5
- package/dist-types/commands/EnableProjectionCommand.d.ts +184 -5
- package/dist-types/commands/GetAnalysisSettingsCommand.d.ts +256 -0
- package/dist-types/commands/GetProjectionCommand.d.ts +184 -5
- package/dist-types/commands/ListProjectionsCommand.d.ts +186 -7
- package/dist-types/commands/PauseProjectionCommand.d.ts +184 -5
- package/dist-types/commands/PutAnalysisSettingsCommand.d.ts +435 -0
- package/dist-types/commands/UpdateProjectionCommand.d.ts +368 -10
- package/dist-types/commands/UpdateProjectionsCategoryCommand.d.ts +3 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +176 -25
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/package.json +1 -1
|
@@ -42,7 +42,8 @@ declare const GetProjectionCommand_base: {
|
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // GetProjectionOutput
|
|
44
44
|
* // projection: { // Projection
|
|
45
|
-
* //
|
|
45
|
+
* // category: "STRING_VALUE",
|
|
46
|
+
* // categoryId: "STRING_VALUE",
|
|
46
47
|
* // name: "STRING_VALUE", // required
|
|
47
48
|
* // description: "STRING_VALUE",
|
|
48
49
|
* // instructions: "STRING_VALUE",
|
|
@@ -75,6 +76,185 @@ declare const GetProjectionCommand_base: {
|
|
|
75
76
|
* // },
|
|
76
77
|
* // },
|
|
77
78
|
* // ],
|
|
79
|
+
* // filter: { // ListConversationsFilter
|
|
80
|
+
* // id: [ // ListConversationsFilterIdList
|
|
81
|
+
* // { // ConversationTarget Union: only one key present
|
|
82
|
+
* // call: { // CallConversationTarget
|
|
83
|
+
* // callId: "STRING_VALUE", // required
|
|
84
|
+
* // flowIndex: Number("int"), // required
|
|
85
|
+
* // },
|
|
86
|
+
* // conference: { // ConferenceConversationTarget
|
|
87
|
+
* // conferenceId: "STRING_VALUE", // required
|
|
88
|
+
* // },
|
|
89
|
+
* // chat: { // ChatConversationTarget
|
|
90
|
+
* // chatId: "STRING_VALUE", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // entity: { // ListConversationsFilterEntity
|
|
95
|
+
* // call: true || false,
|
|
96
|
+
* // conference: true || false,
|
|
97
|
+
* // chat: true || false,
|
|
98
|
+
* // },
|
|
99
|
+
* // participants: [ // ListConversationsFilterParticipantList
|
|
100
|
+
* // { // ListConversationsFilterParticipant Union: only one key present
|
|
101
|
+
* // email: "STRING_VALUE",
|
|
102
|
+
* // phone: "STRING_VALUE",
|
|
103
|
+
* // extension: "STRING_VALUE",
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // participantsToInclude: [
|
|
107
|
+
* // {// Union: only one key present
|
|
108
|
+
* // email: "STRING_VALUE",
|
|
109
|
+
* // phone: "STRING_VALUE",
|
|
110
|
+
* // extension: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // ],
|
|
113
|
+
* // participantsToExclude: [
|
|
114
|
+
* // {// Union: only one key present
|
|
115
|
+
* // email: "STRING_VALUE",
|
|
116
|
+
* // phone: "STRING_VALUE",
|
|
117
|
+
* // extension: "STRING_VALUE",
|
|
118
|
+
* // },
|
|
119
|
+
* // ],
|
|
120
|
+
* // chatbots: [ // ListConversationsFilterKeyword
|
|
121
|
+
* // "STRING_VALUE",
|
|
122
|
+
* // ],
|
|
123
|
+
* // voicebots: [
|
|
124
|
+
* // "STRING_VALUE",
|
|
125
|
+
* // ],
|
|
126
|
+
* // service: [
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // group: [
|
|
130
|
+
* // "STRING_VALUE",
|
|
131
|
+
* // ],
|
|
132
|
+
* // department: [
|
|
133
|
+
* // "STRING_VALUE",
|
|
134
|
+
* // ],
|
|
135
|
+
* // tag: "<ListConversationsFilterKeyword>",
|
|
136
|
+
* // pbx: "<ListConversationsFilterKeyword>",
|
|
137
|
+
* // trunk: "<ListConversationsFilterKeyword>",
|
|
138
|
+
* // queue: "<ListConversationsFilterKeyword>",
|
|
139
|
+
* // country: "<ListConversationsFilterKeyword>",
|
|
140
|
+
* // location: "<ListConversationsFilterKeyword>",
|
|
141
|
+
* // phases: [ // ListConversationsFilterPhases
|
|
142
|
+
* // "STRING_VALUE",
|
|
143
|
+
* // ],
|
|
144
|
+
* // language: "<ListConversationsFilterKeyword>",
|
|
145
|
+
* // duration: { // ListConversationsFilterNumber
|
|
146
|
+
* // from: Number("int"),
|
|
147
|
+
* // to: Number("int"),
|
|
148
|
+
* // },
|
|
149
|
+
* // interaction: { // ListConversationsFilterInteraction
|
|
150
|
+
* // talkRatio: {
|
|
151
|
+
* // from: Number("int"),
|
|
152
|
+
* // to: Number("int"),
|
|
153
|
+
* // },
|
|
154
|
+
* // wordsPerMinute: {
|
|
155
|
+
* // from: Number("int"),
|
|
156
|
+
* // to: Number("int"),
|
|
157
|
+
* // },
|
|
158
|
+
* // interruptions: {
|
|
159
|
+
* // from: Number("int"),
|
|
160
|
+
* // to: Number("int"),
|
|
161
|
+
* // },
|
|
162
|
+
* // patience: { // ListConversationsFilterFloat
|
|
163
|
+
* // from: Number("float"),
|
|
164
|
+
* // to: Number("float"),
|
|
165
|
+
* // },
|
|
166
|
+
* // longestMonologue: {
|
|
167
|
+
* // from: Number("int"),
|
|
168
|
+
* // to: Number("int"),
|
|
169
|
+
* // },
|
|
170
|
+
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
171
|
+
* // },
|
|
172
|
+
* // recorded: true || false,
|
|
173
|
+
* // transcribed: true || false,
|
|
174
|
+
* // direction: { // ListConversationsFilterDirection
|
|
175
|
+
* // inbound: true || false,
|
|
176
|
+
* // outbound: true || false,
|
|
177
|
+
* // internal: true || false,
|
|
178
|
+
* // },
|
|
179
|
+
* // insights: [ // ListConversationsFilterInsightsList
|
|
180
|
+
* // { // ListConversationsFilterInsight
|
|
181
|
+
* // projectionId: "STRING_VALUE", // required
|
|
182
|
+
* // fieldId: "STRING_VALUE", // required
|
|
183
|
+
* // match: "STRING_VALUE",
|
|
184
|
+
* // matchAny: [ // StringList
|
|
185
|
+
* // "STRING_VALUE",
|
|
186
|
+
* // ],
|
|
187
|
+
* // },
|
|
188
|
+
* // ],
|
|
189
|
+
* // channel: { // ListConversationsFilterChannel
|
|
190
|
+
* // sms: true || false,
|
|
191
|
+
* // whatsapp: true || false,
|
|
192
|
+
* // kite: true || false,
|
|
193
|
+
* // },
|
|
194
|
+
* // date: { // ListConversationsFilterDate Union: only one key present
|
|
195
|
+
* // absolute: { // ListConversationsFilterAbsoluteDate
|
|
196
|
+
* // from: "STRING_VALUE",
|
|
197
|
+
* // to: "STRING_VALUE",
|
|
198
|
+
* // timeZone: "STRING_VALUE",
|
|
199
|
+
* // },
|
|
200
|
+
* // predefined: { // ListConversationsFilterPredefinedDate
|
|
201
|
+
* // type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
|
|
202
|
+
* // timeZone: "STRING_VALUE",
|
|
203
|
+
* // },
|
|
204
|
+
* // },
|
|
205
|
+
* // dayOfWeek: { // ListConversationsFilterDateIndex
|
|
206
|
+
* // index: Number("int"),
|
|
207
|
+
* // timeZone: "STRING_VALUE",
|
|
208
|
+
* // },
|
|
209
|
+
* // hourOfDay: {
|
|
210
|
+
* // index: Number("int"),
|
|
211
|
+
* // timeZone: "STRING_VALUE",
|
|
212
|
+
* // },
|
|
213
|
+
* // present: [ // ListConversationsFilterFieldsList
|
|
214
|
+
* // { // ListConversationsFilterField Union: only one key present
|
|
215
|
+
* // direction: true || false,
|
|
216
|
+
* // service: true || false,
|
|
217
|
+
* // group: true || false,
|
|
218
|
+
* // department: true || false,
|
|
219
|
+
* // chatbot: true || false,
|
|
220
|
+
* // voicebot: true || false,
|
|
221
|
+
* // tag: true || false,
|
|
222
|
+
* // pbx: true || false,
|
|
223
|
+
* // trunk: true || false,
|
|
224
|
+
* // queue: true || false,
|
|
225
|
+
* // country: true || false,
|
|
226
|
+
* // location: true || false,
|
|
227
|
+
* // language: true || false,
|
|
228
|
+
* // projection: { // ListConversationsFilterProjectionField
|
|
229
|
+
* // projectionId: "STRING_VALUE", // required
|
|
230
|
+
* // fieldId: "STRING_VALUE", // required
|
|
231
|
+
* // },
|
|
232
|
+
* // },
|
|
233
|
+
* // ],
|
|
234
|
+
* // absent: [
|
|
235
|
+
* // {// Union: only one key present
|
|
236
|
+
* // direction: true || false,
|
|
237
|
+
* // service: true || false,
|
|
238
|
+
* // group: true || false,
|
|
239
|
+
* // department: true || false,
|
|
240
|
+
* // chatbot: true || false,
|
|
241
|
+
* // voicebot: true || false,
|
|
242
|
+
* // tag: true || false,
|
|
243
|
+
* // pbx: true || false,
|
|
244
|
+
* // trunk: true || false,
|
|
245
|
+
* // queue: true || false,
|
|
246
|
+
* // country: true || false,
|
|
247
|
+
* // location: true || false,
|
|
248
|
+
* // language: true || false,
|
|
249
|
+
* // projection: {
|
|
250
|
+
* // projectionId: "STRING_VALUE", // required
|
|
251
|
+
* // fieldId: "STRING_VALUE", // required
|
|
252
|
+
* // },
|
|
253
|
+
* // },
|
|
254
|
+
* // ],
|
|
255
|
+
* // },
|
|
256
|
+
* // model: "STRING_VALUE",
|
|
257
|
+
* // group: "STRING_VALUE",
|
|
78
258
|
* // fields: [ // ProjectionFieldsList // required
|
|
79
259
|
* // { // ProjectionField
|
|
80
260
|
* // id: "STRING_VALUE", // required
|
|
@@ -90,14 +270,13 @@ declare const GetProjectionCommand_base: {
|
|
|
90
270
|
* // ],
|
|
91
271
|
* // multi: true || false,
|
|
92
272
|
* // adaptive: true || false,
|
|
273
|
+
* // adaptiveOptions: [
|
|
274
|
+
* // "STRING_VALUE",
|
|
275
|
+
* // ],
|
|
93
276
|
* // },
|
|
94
277
|
* // },
|
|
95
278
|
* // },
|
|
96
279
|
* // ],
|
|
97
|
-
* // model: { // ProjectionModel
|
|
98
|
-
* // provider: "OPENAI",
|
|
99
|
-
* // name: "STRING_VALUE",
|
|
100
|
-
* // },
|
|
101
280
|
* // id: "STRING_VALUE", // required
|
|
102
281
|
* // status: "ENABLED" || "PAUSED" || "DISABLED", // required
|
|
103
282
|
* // version: Number("int"), // required
|
|
@@ -27,7 +27,7 @@ declare const ListProjectionsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* Lists all projections and categories available for the tenant.
|
|
30
|
+
* Lists all projections and compatibility categories available for the tenant.
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -42,7 +42,8 @@ declare const ListProjectionsCommand_base: {
|
|
|
42
42
|
* // { // ListProjectionsOutput
|
|
43
43
|
* // projections: [ // ProjectionsList // required
|
|
44
44
|
* // { // Projection
|
|
45
|
-
* //
|
|
45
|
+
* // category: "STRING_VALUE",
|
|
46
|
+
* // categoryId: "STRING_VALUE",
|
|
46
47
|
* // name: "STRING_VALUE", // required
|
|
47
48
|
* // description: "STRING_VALUE",
|
|
48
49
|
* // instructions: "STRING_VALUE",
|
|
@@ -75,6 +76,185 @@ declare const ListProjectionsCommand_base: {
|
|
|
75
76
|
* // },
|
|
76
77
|
* // },
|
|
77
78
|
* // ],
|
|
79
|
+
* // filter: { // ListConversationsFilter
|
|
80
|
+
* // id: [ // ListConversationsFilterIdList
|
|
81
|
+
* // { // ConversationTarget Union: only one key present
|
|
82
|
+
* // call: { // CallConversationTarget
|
|
83
|
+
* // callId: "STRING_VALUE", // required
|
|
84
|
+
* // flowIndex: Number("int"), // required
|
|
85
|
+
* // },
|
|
86
|
+
* // conference: { // ConferenceConversationTarget
|
|
87
|
+
* // conferenceId: "STRING_VALUE", // required
|
|
88
|
+
* // },
|
|
89
|
+
* // chat: { // ChatConversationTarget
|
|
90
|
+
* // chatId: "STRING_VALUE", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // entity: { // ListConversationsFilterEntity
|
|
95
|
+
* // call: true || false,
|
|
96
|
+
* // conference: true || false,
|
|
97
|
+
* // chat: true || false,
|
|
98
|
+
* // },
|
|
99
|
+
* // participants: [ // ListConversationsFilterParticipantList
|
|
100
|
+
* // { // ListConversationsFilterParticipant Union: only one key present
|
|
101
|
+
* // email: "STRING_VALUE",
|
|
102
|
+
* // phone: "STRING_VALUE",
|
|
103
|
+
* // extension: "STRING_VALUE",
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // participantsToInclude: [
|
|
107
|
+
* // {// Union: only one key present
|
|
108
|
+
* // email: "STRING_VALUE",
|
|
109
|
+
* // phone: "STRING_VALUE",
|
|
110
|
+
* // extension: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // ],
|
|
113
|
+
* // participantsToExclude: [
|
|
114
|
+
* // {// Union: only one key present
|
|
115
|
+
* // email: "STRING_VALUE",
|
|
116
|
+
* // phone: "STRING_VALUE",
|
|
117
|
+
* // extension: "STRING_VALUE",
|
|
118
|
+
* // },
|
|
119
|
+
* // ],
|
|
120
|
+
* // chatbots: [ // ListConversationsFilterKeyword
|
|
121
|
+
* // "STRING_VALUE",
|
|
122
|
+
* // ],
|
|
123
|
+
* // voicebots: [
|
|
124
|
+
* // "STRING_VALUE",
|
|
125
|
+
* // ],
|
|
126
|
+
* // service: [
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // group: [
|
|
130
|
+
* // "STRING_VALUE",
|
|
131
|
+
* // ],
|
|
132
|
+
* // department: [
|
|
133
|
+
* // "STRING_VALUE",
|
|
134
|
+
* // ],
|
|
135
|
+
* // tag: "<ListConversationsFilterKeyword>",
|
|
136
|
+
* // pbx: "<ListConversationsFilterKeyword>",
|
|
137
|
+
* // trunk: "<ListConversationsFilterKeyword>",
|
|
138
|
+
* // queue: "<ListConversationsFilterKeyword>",
|
|
139
|
+
* // country: "<ListConversationsFilterKeyword>",
|
|
140
|
+
* // location: "<ListConversationsFilterKeyword>",
|
|
141
|
+
* // phases: [ // ListConversationsFilterPhases
|
|
142
|
+
* // "STRING_VALUE",
|
|
143
|
+
* // ],
|
|
144
|
+
* // language: "<ListConversationsFilterKeyword>",
|
|
145
|
+
* // duration: { // ListConversationsFilterNumber
|
|
146
|
+
* // from: Number("int"),
|
|
147
|
+
* // to: Number("int"),
|
|
148
|
+
* // },
|
|
149
|
+
* // interaction: { // ListConversationsFilterInteraction
|
|
150
|
+
* // talkRatio: {
|
|
151
|
+
* // from: Number("int"),
|
|
152
|
+
* // to: Number("int"),
|
|
153
|
+
* // },
|
|
154
|
+
* // wordsPerMinute: {
|
|
155
|
+
* // from: Number("int"),
|
|
156
|
+
* // to: Number("int"),
|
|
157
|
+
* // },
|
|
158
|
+
* // interruptions: {
|
|
159
|
+
* // from: Number("int"),
|
|
160
|
+
* // to: Number("int"),
|
|
161
|
+
* // },
|
|
162
|
+
* // patience: { // ListConversationsFilterFloat
|
|
163
|
+
* // from: Number("float"),
|
|
164
|
+
* // to: Number("float"),
|
|
165
|
+
* // },
|
|
166
|
+
* // longestMonologue: {
|
|
167
|
+
* // from: Number("int"),
|
|
168
|
+
* // to: Number("int"),
|
|
169
|
+
* // },
|
|
170
|
+
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
171
|
+
* // },
|
|
172
|
+
* // recorded: true || false,
|
|
173
|
+
* // transcribed: true || false,
|
|
174
|
+
* // direction: { // ListConversationsFilterDirection
|
|
175
|
+
* // inbound: true || false,
|
|
176
|
+
* // outbound: true || false,
|
|
177
|
+
* // internal: true || false,
|
|
178
|
+
* // },
|
|
179
|
+
* // insights: [ // ListConversationsFilterInsightsList
|
|
180
|
+
* // { // ListConversationsFilterInsight
|
|
181
|
+
* // projectionId: "STRING_VALUE", // required
|
|
182
|
+
* // fieldId: "STRING_VALUE", // required
|
|
183
|
+
* // match: "STRING_VALUE",
|
|
184
|
+
* // matchAny: [ // StringList
|
|
185
|
+
* // "STRING_VALUE",
|
|
186
|
+
* // ],
|
|
187
|
+
* // },
|
|
188
|
+
* // ],
|
|
189
|
+
* // channel: { // ListConversationsFilterChannel
|
|
190
|
+
* // sms: true || false,
|
|
191
|
+
* // whatsapp: true || false,
|
|
192
|
+
* // kite: true || false,
|
|
193
|
+
* // },
|
|
194
|
+
* // date: { // ListConversationsFilterDate Union: only one key present
|
|
195
|
+
* // absolute: { // ListConversationsFilterAbsoluteDate
|
|
196
|
+
* // from: "STRING_VALUE",
|
|
197
|
+
* // to: "STRING_VALUE",
|
|
198
|
+
* // timeZone: "STRING_VALUE",
|
|
199
|
+
* // },
|
|
200
|
+
* // predefined: { // ListConversationsFilterPredefinedDate
|
|
201
|
+
* // type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
|
|
202
|
+
* // timeZone: "STRING_VALUE",
|
|
203
|
+
* // },
|
|
204
|
+
* // },
|
|
205
|
+
* // dayOfWeek: { // ListConversationsFilterDateIndex
|
|
206
|
+
* // index: Number("int"),
|
|
207
|
+
* // timeZone: "STRING_VALUE",
|
|
208
|
+
* // },
|
|
209
|
+
* // hourOfDay: {
|
|
210
|
+
* // index: Number("int"),
|
|
211
|
+
* // timeZone: "STRING_VALUE",
|
|
212
|
+
* // },
|
|
213
|
+
* // present: [ // ListConversationsFilterFieldsList
|
|
214
|
+
* // { // ListConversationsFilterField Union: only one key present
|
|
215
|
+
* // direction: true || false,
|
|
216
|
+
* // service: true || false,
|
|
217
|
+
* // group: true || false,
|
|
218
|
+
* // department: true || false,
|
|
219
|
+
* // chatbot: true || false,
|
|
220
|
+
* // voicebot: true || false,
|
|
221
|
+
* // tag: true || false,
|
|
222
|
+
* // pbx: true || false,
|
|
223
|
+
* // trunk: true || false,
|
|
224
|
+
* // queue: true || false,
|
|
225
|
+
* // country: true || false,
|
|
226
|
+
* // location: true || false,
|
|
227
|
+
* // language: true || false,
|
|
228
|
+
* // projection: { // ListConversationsFilterProjectionField
|
|
229
|
+
* // projectionId: "STRING_VALUE", // required
|
|
230
|
+
* // fieldId: "STRING_VALUE", // required
|
|
231
|
+
* // },
|
|
232
|
+
* // },
|
|
233
|
+
* // ],
|
|
234
|
+
* // absent: [
|
|
235
|
+
* // {// Union: only one key present
|
|
236
|
+
* // direction: true || false,
|
|
237
|
+
* // service: true || false,
|
|
238
|
+
* // group: true || false,
|
|
239
|
+
* // department: true || false,
|
|
240
|
+
* // chatbot: true || false,
|
|
241
|
+
* // voicebot: true || false,
|
|
242
|
+
* // tag: true || false,
|
|
243
|
+
* // pbx: true || false,
|
|
244
|
+
* // trunk: true || false,
|
|
245
|
+
* // queue: true || false,
|
|
246
|
+
* // country: true || false,
|
|
247
|
+
* // location: true || false,
|
|
248
|
+
* // language: true || false,
|
|
249
|
+
* // projection: {
|
|
250
|
+
* // projectionId: "STRING_VALUE", // required
|
|
251
|
+
* // fieldId: "STRING_VALUE", // required
|
|
252
|
+
* // },
|
|
253
|
+
* // },
|
|
254
|
+
* // ],
|
|
255
|
+
* // },
|
|
256
|
+
* // model: "STRING_VALUE",
|
|
257
|
+
* // group: "STRING_VALUE",
|
|
78
258
|
* // fields: [ // ProjectionFieldsList // required
|
|
79
259
|
* // { // ProjectionField
|
|
80
260
|
* // id: "STRING_VALUE", // required
|
|
@@ -90,14 +270,13 @@ declare const ListProjectionsCommand_base: {
|
|
|
90
270
|
* // ],
|
|
91
271
|
* // multi: true || false,
|
|
92
272
|
* // adaptive: true || false,
|
|
273
|
+
* // adaptiveOptions: [
|
|
274
|
+
* // "STRING_VALUE",
|
|
275
|
+
* // ],
|
|
93
276
|
* // },
|
|
94
277
|
* // },
|
|
95
278
|
* // },
|
|
96
279
|
* // ],
|
|
97
|
-
* // model: { // ProjectionModel
|
|
98
|
-
* // provider: "OPENAI",
|
|
99
|
-
* // name: "STRING_VALUE",
|
|
100
|
-
* // },
|
|
101
280
|
* // id: "STRING_VALUE", // required
|
|
102
281
|
* // status: "ENABLED" || "PAUSED" || "DISABLED", // required
|
|
103
282
|
* // version: Number("int"), // required
|
|
@@ -108,7 +287,7 @@ declare const ListProjectionsCommand_base: {
|
|
|
108
287
|
* // },
|
|
109
288
|
* // },
|
|
110
289
|
* // ],
|
|
111
|
-
* // categories: [ // ProjectionsCategoriesList
|
|
290
|
+
* // categories: [ // ProjectionsCategoriesList
|
|
112
291
|
* // { // ProjectionsCategory
|
|
113
292
|
* // id: "STRING_VALUE", // required
|
|
114
293
|
* // name: "STRING_VALUE", // required
|
|
@@ -42,7 +42,8 @@ declare const PauseProjectionCommand_base: {
|
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // PauseProjectionOutput
|
|
44
44
|
* // projection: { // Projection
|
|
45
|
-
* //
|
|
45
|
+
* // category: "STRING_VALUE",
|
|
46
|
+
* // categoryId: "STRING_VALUE",
|
|
46
47
|
* // name: "STRING_VALUE", // required
|
|
47
48
|
* // description: "STRING_VALUE",
|
|
48
49
|
* // instructions: "STRING_VALUE",
|
|
@@ -75,6 +76,185 @@ declare const PauseProjectionCommand_base: {
|
|
|
75
76
|
* // },
|
|
76
77
|
* // },
|
|
77
78
|
* // ],
|
|
79
|
+
* // filter: { // ListConversationsFilter
|
|
80
|
+
* // id: [ // ListConversationsFilterIdList
|
|
81
|
+
* // { // ConversationTarget Union: only one key present
|
|
82
|
+
* // call: { // CallConversationTarget
|
|
83
|
+
* // callId: "STRING_VALUE", // required
|
|
84
|
+
* // flowIndex: Number("int"), // required
|
|
85
|
+
* // },
|
|
86
|
+
* // conference: { // ConferenceConversationTarget
|
|
87
|
+
* // conferenceId: "STRING_VALUE", // required
|
|
88
|
+
* // },
|
|
89
|
+
* // chat: { // ChatConversationTarget
|
|
90
|
+
* // chatId: "STRING_VALUE", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
94
|
+
* // entity: { // ListConversationsFilterEntity
|
|
95
|
+
* // call: true || false,
|
|
96
|
+
* // conference: true || false,
|
|
97
|
+
* // chat: true || false,
|
|
98
|
+
* // },
|
|
99
|
+
* // participants: [ // ListConversationsFilterParticipantList
|
|
100
|
+
* // { // ListConversationsFilterParticipant Union: only one key present
|
|
101
|
+
* // email: "STRING_VALUE",
|
|
102
|
+
* // phone: "STRING_VALUE",
|
|
103
|
+
* // extension: "STRING_VALUE",
|
|
104
|
+
* // },
|
|
105
|
+
* // ],
|
|
106
|
+
* // participantsToInclude: [
|
|
107
|
+
* // {// Union: only one key present
|
|
108
|
+
* // email: "STRING_VALUE",
|
|
109
|
+
* // phone: "STRING_VALUE",
|
|
110
|
+
* // extension: "STRING_VALUE",
|
|
111
|
+
* // },
|
|
112
|
+
* // ],
|
|
113
|
+
* // participantsToExclude: [
|
|
114
|
+
* // {// Union: only one key present
|
|
115
|
+
* // email: "STRING_VALUE",
|
|
116
|
+
* // phone: "STRING_VALUE",
|
|
117
|
+
* // extension: "STRING_VALUE",
|
|
118
|
+
* // },
|
|
119
|
+
* // ],
|
|
120
|
+
* // chatbots: [ // ListConversationsFilterKeyword
|
|
121
|
+
* // "STRING_VALUE",
|
|
122
|
+
* // ],
|
|
123
|
+
* // voicebots: [
|
|
124
|
+
* // "STRING_VALUE",
|
|
125
|
+
* // ],
|
|
126
|
+
* // service: [
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // group: [
|
|
130
|
+
* // "STRING_VALUE",
|
|
131
|
+
* // ],
|
|
132
|
+
* // department: [
|
|
133
|
+
* // "STRING_VALUE",
|
|
134
|
+
* // ],
|
|
135
|
+
* // tag: "<ListConversationsFilterKeyword>",
|
|
136
|
+
* // pbx: "<ListConversationsFilterKeyword>",
|
|
137
|
+
* // trunk: "<ListConversationsFilterKeyword>",
|
|
138
|
+
* // queue: "<ListConversationsFilterKeyword>",
|
|
139
|
+
* // country: "<ListConversationsFilterKeyword>",
|
|
140
|
+
* // location: "<ListConversationsFilterKeyword>",
|
|
141
|
+
* // phases: [ // ListConversationsFilterPhases
|
|
142
|
+
* // "STRING_VALUE",
|
|
143
|
+
* // ],
|
|
144
|
+
* // language: "<ListConversationsFilterKeyword>",
|
|
145
|
+
* // duration: { // ListConversationsFilterNumber
|
|
146
|
+
* // from: Number("int"),
|
|
147
|
+
* // to: Number("int"),
|
|
148
|
+
* // },
|
|
149
|
+
* // interaction: { // ListConversationsFilterInteraction
|
|
150
|
+
* // talkRatio: {
|
|
151
|
+
* // from: Number("int"),
|
|
152
|
+
* // to: Number("int"),
|
|
153
|
+
* // },
|
|
154
|
+
* // wordsPerMinute: {
|
|
155
|
+
* // from: Number("int"),
|
|
156
|
+
* // to: Number("int"),
|
|
157
|
+
* // },
|
|
158
|
+
* // interruptions: {
|
|
159
|
+
* // from: Number("int"),
|
|
160
|
+
* // to: Number("int"),
|
|
161
|
+
* // },
|
|
162
|
+
* // patience: { // ListConversationsFilterFloat
|
|
163
|
+
* // from: Number("float"),
|
|
164
|
+
* // to: Number("float"),
|
|
165
|
+
* // },
|
|
166
|
+
* // longestMonologue: {
|
|
167
|
+
* // from: Number("int"),
|
|
168
|
+
* // to: Number("int"),
|
|
169
|
+
* // },
|
|
170
|
+
* // longestCustomerStory: "<ListConversationsFilterNumber>",
|
|
171
|
+
* // },
|
|
172
|
+
* // recorded: true || false,
|
|
173
|
+
* // transcribed: true || false,
|
|
174
|
+
* // direction: { // ListConversationsFilterDirection
|
|
175
|
+
* // inbound: true || false,
|
|
176
|
+
* // outbound: true || false,
|
|
177
|
+
* // internal: true || false,
|
|
178
|
+
* // },
|
|
179
|
+
* // insights: [ // ListConversationsFilterInsightsList
|
|
180
|
+
* // { // ListConversationsFilterInsight
|
|
181
|
+
* // projectionId: "STRING_VALUE", // required
|
|
182
|
+
* // fieldId: "STRING_VALUE", // required
|
|
183
|
+
* // match: "STRING_VALUE",
|
|
184
|
+
* // matchAny: [ // StringList
|
|
185
|
+
* // "STRING_VALUE",
|
|
186
|
+
* // ],
|
|
187
|
+
* // },
|
|
188
|
+
* // ],
|
|
189
|
+
* // channel: { // ListConversationsFilterChannel
|
|
190
|
+
* // sms: true || false,
|
|
191
|
+
* // whatsapp: true || false,
|
|
192
|
+
* // kite: true || false,
|
|
193
|
+
* // },
|
|
194
|
+
* // date: { // ListConversationsFilterDate Union: only one key present
|
|
195
|
+
* // absolute: { // ListConversationsFilterAbsoluteDate
|
|
196
|
+
* // from: "STRING_VALUE",
|
|
197
|
+
* // to: "STRING_VALUE",
|
|
198
|
+
* // timeZone: "STRING_VALUE",
|
|
199
|
+
* // },
|
|
200
|
+
* // predefined: { // ListConversationsFilterPredefinedDate
|
|
201
|
+
* // type: "THIS_QUARTER" || "THIS_MONTH" || "THIS_WEEK" || "TODAY" || "YESTERDAY" || "PREVIOUS_WEEK" || "PREVIOUS_MONTH" || "LAST_30_DAYS", // required
|
|
202
|
+
* // timeZone: "STRING_VALUE",
|
|
203
|
+
* // },
|
|
204
|
+
* // },
|
|
205
|
+
* // dayOfWeek: { // ListConversationsFilterDateIndex
|
|
206
|
+
* // index: Number("int"),
|
|
207
|
+
* // timeZone: "STRING_VALUE",
|
|
208
|
+
* // },
|
|
209
|
+
* // hourOfDay: {
|
|
210
|
+
* // index: Number("int"),
|
|
211
|
+
* // timeZone: "STRING_VALUE",
|
|
212
|
+
* // },
|
|
213
|
+
* // present: [ // ListConversationsFilterFieldsList
|
|
214
|
+
* // { // ListConversationsFilterField Union: only one key present
|
|
215
|
+
* // direction: true || false,
|
|
216
|
+
* // service: true || false,
|
|
217
|
+
* // group: true || false,
|
|
218
|
+
* // department: true || false,
|
|
219
|
+
* // chatbot: true || false,
|
|
220
|
+
* // voicebot: true || false,
|
|
221
|
+
* // tag: true || false,
|
|
222
|
+
* // pbx: true || false,
|
|
223
|
+
* // trunk: true || false,
|
|
224
|
+
* // queue: true || false,
|
|
225
|
+
* // country: true || false,
|
|
226
|
+
* // location: true || false,
|
|
227
|
+
* // language: true || false,
|
|
228
|
+
* // projection: { // ListConversationsFilterProjectionField
|
|
229
|
+
* // projectionId: "STRING_VALUE", // required
|
|
230
|
+
* // fieldId: "STRING_VALUE", // required
|
|
231
|
+
* // },
|
|
232
|
+
* // },
|
|
233
|
+
* // ],
|
|
234
|
+
* // absent: [
|
|
235
|
+
* // {// Union: only one key present
|
|
236
|
+
* // direction: true || false,
|
|
237
|
+
* // service: true || false,
|
|
238
|
+
* // group: true || false,
|
|
239
|
+
* // department: true || false,
|
|
240
|
+
* // chatbot: true || false,
|
|
241
|
+
* // voicebot: true || false,
|
|
242
|
+
* // tag: true || false,
|
|
243
|
+
* // pbx: true || false,
|
|
244
|
+
* // trunk: true || false,
|
|
245
|
+
* // queue: true || false,
|
|
246
|
+
* // country: true || false,
|
|
247
|
+
* // location: true || false,
|
|
248
|
+
* // language: true || false,
|
|
249
|
+
* // projection: {
|
|
250
|
+
* // projectionId: "STRING_VALUE", // required
|
|
251
|
+
* // fieldId: "STRING_VALUE", // required
|
|
252
|
+
* // },
|
|
253
|
+
* // },
|
|
254
|
+
* // ],
|
|
255
|
+
* // },
|
|
256
|
+
* // model: "STRING_VALUE",
|
|
257
|
+
* // group: "STRING_VALUE",
|
|
78
258
|
* // fields: [ // ProjectionFieldsList // required
|
|
79
259
|
* // { // ProjectionField
|
|
80
260
|
* // id: "STRING_VALUE", // required
|
|
@@ -90,14 +270,13 @@ declare const PauseProjectionCommand_base: {
|
|
|
90
270
|
* // ],
|
|
91
271
|
* // multi: true || false,
|
|
92
272
|
* // adaptive: true || false,
|
|
273
|
+
* // adaptiveOptions: [
|
|
274
|
+
* // "STRING_VALUE",
|
|
275
|
+
* // ],
|
|
93
276
|
* // },
|
|
94
277
|
* // },
|
|
95
278
|
* // },
|
|
96
279
|
* // ],
|
|
97
|
-
* // model: { // ProjectionModel
|
|
98
|
-
* // provider: "OPENAI",
|
|
99
|
-
* // name: "STRING_VALUE",
|
|
100
|
-
* // },
|
|
101
280
|
* // id: "STRING_VALUE", // required
|
|
102
281
|
* // status: "ENABLED" || "PAUSED" || "DISABLED", // required
|
|
103
282
|
* // version: Number("int"), // required
|