@wildix/wda-history-client 1.2.28 → 3.1.29
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/WdaHistory.js +3 -3
- package/dist-cjs/WdaHistoryClient.js +34 -26
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
- package/dist-cjs/commands/GetCallAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetCallCommand.js +10 -11
- package/dist-cjs/commands/GetCallTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetCallTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/GetChatAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetChatCommand.js +10 -11
- package/dist-cjs/commands/GetChatTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetChatTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceAnnotationsCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceTranscriptionCommand.js +10 -11
- package/dist-cjs/commands/GetConferenceTranscriptionTextCommand.js +10 -11
- package/dist-cjs/commands/QueryConversationsCommand.js +10 -11
- package/dist-cjs/commands/QueryUserCallsCommand.js +10 -11
- package/dist-cjs/commands/UpdateCallCommand.js +10 -11
- package/dist-cjs/commands/index.js +3 -3
- package/dist-cjs/endpoint/EndpointParameters.js +16 -0
- package/dist-cjs/endpoint/bdd.js +25 -0
- package/dist-cjs/endpoint/endpointResolver.js +16 -0
- package/dist-cjs/index.js +4 -1
- package/dist-cjs/models/WdaHistoryServiceException.js +3 -3
- package/dist-cjs/models/enums.js +204 -0
- package/dist-cjs/models/errors.js +147 -0
- package/dist-cjs/models/models_0.js +0 -406
- package/dist-cjs/runtimeConfig.browser.js +11 -11
- package/dist-cjs/runtimeConfig.js +22 -18
- package/dist-cjs/runtimeConfig.shared.js +30 -10
- package/dist-cjs/runtimeExtensions.js +6 -5
- package/dist-cjs/schemas/schemas_0.js +1047 -0
- package/dist-es/WdaHistory.js +4 -4
- package/dist-es/WdaHistoryClient.js +30 -22
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
- package/dist-es/commands/GetCallAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetCallCommand.js +9 -10
- package/dist-es/commands/GetCallTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetCallTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/GetChatAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetChatCommand.js +9 -10
- package/dist-es/commands/GetChatTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetChatTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/GetConferenceAnnotationsCommand.js +9 -10
- package/dist-es/commands/GetConferenceCommand.js +9 -10
- package/dist-es/commands/GetConferenceTranscriptionCommand.js +9 -10
- package/dist-es/commands/GetConferenceTranscriptionTextCommand.js +9 -10
- package/dist-es/commands/QueryConversationsCommand.js +9 -10
- package/dist-es/commands/QueryUserCallsCommand.js +9 -10
- package/dist-es/commands/UpdateCallCommand.js +9 -10
- package/dist-es/commands/index.js +3 -3
- package/dist-es/endpoint/EndpointParameters.js +12 -0
- package/dist-es/endpoint/bdd.js +22 -0
- package/dist-es/endpoint/endpointResolver.js +12 -0
- package/dist-es/index.js +4 -1
- package/dist-es/models/WdaHistoryServiceException.js +1 -1
- package/dist-es/models/enums.js +201 -0
- package/dist-es/models/errors.js +133 -0
- package/dist-es/models/models_0.js +1 -393
- package/dist-es/runtimeConfig.browser.js +7 -7
- package/dist-es/runtimeConfig.js +17 -13
- package/dist-es/runtimeConfig.shared.js +24 -4
- package/dist-es/runtimeExtensions.js +6 -5
- package/dist-es/schemas/schemas_0.js +1042 -0
- package/dist-types/WdaHistory.d.ts +16 -16
- package/dist-types/WdaHistoryClient.d.ts +45 -27
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
- package/dist-types/commands/GetCallAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetCallCommand.d.ts +13 -9
- package/dist-types/commands/GetCallTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetCallTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/GetChatAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetChatCommand.d.ts +11 -7
- package/dist-types/commands/GetChatTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetChatTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceAnnotationsCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceTranscriptionCommand.d.ts +11 -7
- package/dist-types/commands/GetConferenceTranscriptionTextCommand.d.ts +11 -7
- package/dist-types/commands/QueryConversationsCommand.d.ts +13 -9
- package/dist-types/commands/QueryUserCallsCommand.d.ts +13 -9
- package/dist-types/commands/UpdateCallCommand.d.ts +13 -9
- package/dist-types/commands/index.d.ts +3 -3
- package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +4 -3
- package/dist-types/index.d.ts +5 -1
- package/dist-types/models/WdaHistoryServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +505 -0
- package/dist-types/models/errors.d.ts +123 -0
- package/dist-types/models/models_0.d.ts +83 -685
- package/dist-types/runtimeConfig.browser.d.ts +35 -16
- package/dist-types/runtimeConfig.d.ts +34 -15
- package/dist-types/runtimeConfig.native.d.ts +36 -17
- package/dist-types/runtimeConfig.shared.d.ts +20 -3
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +127 -0
- package/package.json +14 -40
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/protocols/Aws_restJson1.js +0 -868
- package/dist-es/models/index.js +0 -1
- package/dist-es/protocols/Aws_restJson1.js +0 -835
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -137
|
@@ -0,0 +1,505 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const CallDirection: {
|
|
6
|
+
readonly INBOUND: "INBOUND";
|
|
7
|
+
readonly INTERNAL: "INTERNAL";
|
|
8
|
+
readonly OUTBOUND: "OUTBOUND";
|
|
9
|
+
readonly UNDEFINED: "UNDEFINED";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type CallDirection = (typeof CallDirection)[keyof typeof CallDirection];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const ConversationStatus: {
|
|
20
|
+
readonly COMPLETED: "COMPLETED";
|
|
21
|
+
readonly MISSED: "MISSED";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type ConversationStatus = (typeof ConversationStatus)[keyof typeof ConversationStatus];
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* @enum
|
|
30
|
+
*/
|
|
31
|
+
export declare const AnnotationSourceType: {
|
|
32
|
+
readonly CHATBOT: "chatbot";
|
|
33
|
+
readonly SYSTEM: "system";
|
|
34
|
+
readonly USER: "user";
|
|
35
|
+
readonly VOICEBOT: "voicebot";
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export type AnnotationSourceType = (typeof AnnotationSourceType)[keyof typeof AnnotationSourceType];
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
* @enum
|
|
44
|
+
*/
|
|
45
|
+
export declare const License: {
|
|
46
|
+
readonly UC: "uc";
|
|
47
|
+
readonly XBEES: "x-bees";
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
export type License = (typeof License)[keyof typeof License];
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
* @enum
|
|
56
|
+
*/
|
|
57
|
+
export declare const RecordType: {
|
|
58
|
+
readonly CALL: "call";
|
|
59
|
+
readonly CALL_ANNOTATIONS: "call_annotations";
|
|
60
|
+
readonly CALL_TRANSCRIPTION: "call_transcription";
|
|
61
|
+
readonly CHAT: "chat";
|
|
62
|
+
readonly CHAT_ANNOTATIONS: "chat_annotations";
|
|
63
|
+
readonly CHAT_TRANSCRIPTION: "chat_transcription";
|
|
64
|
+
readonly CONFERENCE: "conference";
|
|
65
|
+
readonly CONFERENCE_ANNOTATIONS: "conference_annotations";
|
|
66
|
+
readonly CONFERENCE_TRANSCRIPTION: "conference_transcription";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export type RecordType = (typeof RecordType)[keyof typeof RecordType];
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
* @enum
|
|
75
|
+
*/
|
|
76
|
+
export declare const AnnotationsStatus: {
|
|
77
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
78
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export type AnnotationsStatus = (typeof AnnotationsStatus)[keyof typeof AnnotationsStatus];
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
* @enum
|
|
87
|
+
*/
|
|
88
|
+
export declare const CallRecordOwner: {
|
|
89
|
+
readonly CALLEE: "callee";
|
|
90
|
+
readonly CALLER: "caller";
|
|
91
|
+
readonly SYSTEM: "system";
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export type CallRecordOwner = (typeof CallRecordOwner)[keyof typeof CallRecordOwner];
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
* @enum
|
|
100
|
+
*/
|
|
101
|
+
export declare const CallFlowAttachmentStatus: {
|
|
102
|
+
readonly ERROR: "error";
|
|
103
|
+
readonly OK: "ok";
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export type CallFlowAttachmentStatus = (typeof CallFlowAttachmentStatus)[keyof typeof CallFlowAttachmentStatus];
|
|
109
|
+
/**
|
|
110
|
+
* @public
|
|
111
|
+
* @enum
|
|
112
|
+
*/
|
|
113
|
+
export declare const CallRecordPauseReason: {
|
|
114
|
+
readonly HOLD: "hold";
|
|
115
|
+
readonly PAUSE: "pause";
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export type CallRecordPauseReason = (typeof CallRecordPauseReason)[keyof typeof CallRecordPauseReason];
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
* @enum
|
|
124
|
+
*/
|
|
125
|
+
export declare const CallFlowAttachmentType: {
|
|
126
|
+
readonly FAX: "FAX";
|
|
127
|
+
readonly VOICEMAIL: "VOICEMAIL";
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
export type CallFlowAttachmentType = (typeof CallFlowAttachmentType)[keyof typeof CallFlowAttachmentType];
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
* @enum
|
|
136
|
+
*/
|
|
137
|
+
export declare const CallParticipantRole: {
|
|
138
|
+
readonly AGENT: "AGENT";
|
|
139
|
+
readonly CLIENT: "CLIENT";
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export type CallParticipantRole = (typeof CallParticipantRole)[keyof typeof CallParticipantRole];
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
* @enum
|
|
148
|
+
*/
|
|
149
|
+
export declare const CallParticipantType: {
|
|
150
|
+
readonly LOCAL: "LOCAL";
|
|
151
|
+
readonly REMOTE: "REMOTE";
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export type CallParticipantType = (typeof CallParticipantType)[keyof typeof CallParticipantType];
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* @enum
|
|
160
|
+
*/
|
|
161
|
+
export declare const CallDevice: {
|
|
162
|
+
readonly COLLABORATION7_ANDROID: "COLLABORATION7_ANDROID";
|
|
163
|
+
readonly COLLABORATION7_IOS: "COLLABORATION7_IOS";
|
|
164
|
+
readonly COLLABORATION7_WEB: "COLLABORATION7_WEB";
|
|
165
|
+
readonly COLLABORATION_ANDROID: "COLLABORATION_ANDROID";
|
|
166
|
+
readonly COLLABORATION_IOS: "COLLABORATION_IOS";
|
|
167
|
+
readonly COLLABORATION_WEB: "COLLABORATION_WEB";
|
|
168
|
+
readonly TEAMS4WILDIX: "TEAMS4WILDIX";
|
|
169
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
170
|
+
readonly VOICEBOT: "VOICEBOT";
|
|
171
|
+
readonly WILDIX_DEVICE: "WILDIX_DEVICE";
|
|
172
|
+
readonly WILDIX_PHONE: "WILDIX_PHONE";
|
|
173
|
+
readonly XBEES_ANDROID: "XBEES_ANDROID";
|
|
174
|
+
readonly XBEES_IOS: "XBEES_IOS";
|
|
175
|
+
readonly XBEES_WEB: "XBEES_WEB";
|
|
176
|
+
readonly XHOPPERS_ANDROID: "XHOPPERS_ANDROID";
|
|
177
|
+
readonly XHOPPERS_IOS: "XHOPPERS_IOS";
|
|
178
|
+
readonly XHOPPERS_WEB: "XHOPPERS_WEB";
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
export type CallDevice = (typeof CallDevice)[keyof typeof CallDevice];
|
|
184
|
+
/**
|
|
185
|
+
* @public
|
|
186
|
+
* @enum
|
|
187
|
+
*/
|
|
188
|
+
export declare const CallFlowTranscriptionStatus: {
|
|
189
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
190
|
+
readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
|
|
191
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
export type CallFlowTranscriptionStatus = (typeof CallFlowTranscriptionStatus)[keyof typeof CallFlowTranscriptionStatus];
|
|
197
|
+
/**
|
|
198
|
+
* @public
|
|
199
|
+
* @enum
|
|
200
|
+
*/
|
|
201
|
+
export declare const CallTranscriptionSpeaker: {
|
|
202
|
+
readonly CALLEE: "callee";
|
|
203
|
+
readonly CALLER: "caller";
|
|
204
|
+
};
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
export type CallTranscriptionSpeaker = (typeof CallTranscriptionSpeaker)[keyof typeof CallTranscriptionSpeaker];
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
* @enum
|
|
212
|
+
*/
|
|
213
|
+
export declare const TranscriptionSentiment: {
|
|
214
|
+
readonly MIXED: "MIXED";
|
|
215
|
+
readonly NEGATIVE: "NEGATIVE";
|
|
216
|
+
readonly NEUTRAL: "NEUTRAL";
|
|
217
|
+
readonly POSITIVE: "POSITIVE";
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
export type TranscriptionSentiment = (typeof TranscriptionSentiment)[keyof typeof TranscriptionSentiment];
|
|
223
|
+
/**
|
|
224
|
+
* @public
|
|
225
|
+
* @enum
|
|
226
|
+
*/
|
|
227
|
+
export declare const ChannelAccess: {
|
|
228
|
+
readonly PRIVATE: "private";
|
|
229
|
+
readonly PUBLIC: "public";
|
|
230
|
+
};
|
|
231
|
+
/**
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
export type ChannelAccess = (typeof ChannelAccess)[keyof typeof ChannelAccess];
|
|
235
|
+
/**
|
|
236
|
+
* @public
|
|
237
|
+
* @enum
|
|
238
|
+
*/
|
|
239
|
+
export declare const ChannelType: {
|
|
240
|
+
readonly DIRECT: "direct";
|
|
241
|
+
readonly GROUP: "group";
|
|
242
|
+
};
|
|
243
|
+
/**
|
|
244
|
+
* @public
|
|
245
|
+
*/
|
|
246
|
+
export type ChannelType = (typeof ChannelType)[keyof typeof ChannelType];
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
* @enum
|
|
250
|
+
*/
|
|
251
|
+
export declare const ChannelContextEventAttendeeStatus: {
|
|
252
|
+
readonly ACCEPTED: "accepted";
|
|
253
|
+
readonly DECLINED: "declined";
|
|
254
|
+
readonly NONE: "none";
|
|
255
|
+
readonly TENTATIVE: "tentative";
|
|
256
|
+
};
|
|
257
|
+
/**
|
|
258
|
+
* @public
|
|
259
|
+
*/
|
|
260
|
+
export type ChannelContextEventAttendeeStatus = (typeof ChannelContextEventAttendeeStatus)[keyof typeof ChannelContextEventAttendeeStatus];
|
|
261
|
+
/**
|
|
262
|
+
* @public
|
|
263
|
+
* @enum
|
|
264
|
+
*/
|
|
265
|
+
export declare const ChannelContextSource: {
|
|
266
|
+
readonly KITE: "kite";
|
|
267
|
+
};
|
|
268
|
+
/**
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
export type ChannelContextSource = (typeof ChannelContextSource)[keyof typeof ChannelContextSource];
|
|
272
|
+
/**
|
|
273
|
+
* @public
|
|
274
|
+
* @enum
|
|
275
|
+
*/
|
|
276
|
+
export declare const ChannelWhatsAppStatus: {
|
|
277
|
+
readonly CHANNEL_CLOSED: "24h_channel_closed";
|
|
278
|
+
};
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
282
|
+
export type ChannelWhatsAppStatus = (typeof ChannelWhatsAppStatus)[keyof typeof ChannelWhatsAppStatus];
|
|
283
|
+
/**
|
|
284
|
+
* @public
|
|
285
|
+
* @enum
|
|
286
|
+
*/
|
|
287
|
+
export declare const ChatDirection: {
|
|
288
|
+
readonly INBOUND: "INBOUND";
|
|
289
|
+
readonly INTERNAL: "INTERNAL";
|
|
290
|
+
readonly OUTBOUND: "OUTBOUND";
|
|
291
|
+
};
|
|
292
|
+
/**
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
export type ChatDirection = (typeof ChatDirection)[keyof typeof ChatDirection];
|
|
296
|
+
/**
|
|
297
|
+
* @public
|
|
298
|
+
* @enum
|
|
299
|
+
*/
|
|
300
|
+
export declare const ChatParticipantRole: {
|
|
301
|
+
readonly AGENT: "AGENT";
|
|
302
|
+
readonly CLIENT: "CLIENT";
|
|
303
|
+
};
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
export type ChatParticipantRole = (typeof ChatParticipantRole)[keyof typeof ChatParticipantRole];
|
|
308
|
+
/**
|
|
309
|
+
* @public
|
|
310
|
+
* @enum
|
|
311
|
+
*/
|
|
312
|
+
export declare const ChatParticipantType: {
|
|
313
|
+
readonly LOCAL: "LOCAL";
|
|
314
|
+
readonly REMOTE: "REMOTE";
|
|
315
|
+
};
|
|
316
|
+
/**
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
319
|
+
export type ChatParticipantType = (typeof ChatParticipantType)[keyof typeof ChatParticipantType];
|
|
320
|
+
/**
|
|
321
|
+
* @public
|
|
322
|
+
* @enum
|
|
323
|
+
*/
|
|
324
|
+
export declare const ChatStatus: {
|
|
325
|
+
readonly COMPLETED: "COMPLETED";
|
|
326
|
+
readonly MISSED: "MISSED";
|
|
327
|
+
readonly WAITFIRSTREPLY: "WAITFIRSTREPLY";
|
|
328
|
+
readonly WAITREPLYFROMAGENT: "WAITREPLYFROMAGENT";
|
|
329
|
+
readonly WAITREPLYFROMGUEST: "WAITREPLYFROMGUEST";
|
|
330
|
+
};
|
|
331
|
+
/**
|
|
332
|
+
* @public
|
|
333
|
+
*/
|
|
334
|
+
export type ChatStatus = (typeof ChatStatus)[keyof typeof ChatStatus];
|
|
335
|
+
/**
|
|
336
|
+
* @public
|
|
337
|
+
* @enum
|
|
338
|
+
*/
|
|
339
|
+
export declare const ChatTag: {
|
|
340
|
+
readonly SMS: "sms";
|
|
341
|
+
readonly TELEPHONY: "telephony";
|
|
342
|
+
readonly WHATSAPP: "whatsapp";
|
|
343
|
+
};
|
|
344
|
+
/**
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
export type ChatTag = (typeof ChatTag)[keyof typeof ChatTag];
|
|
348
|
+
/**
|
|
349
|
+
* @public
|
|
350
|
+
* @enum
|
|
351
|
+
*/
|
|
352
|
+
export declare const ButtonVariant: {
|
|
353
|
+
readonly CONTAINED: "contained";
|
|
354
|
+
readonly OUTLINED: "outlined";
|
|
355
|
+
};
|
|
356
|
+
/**
|
|
357
|
+
* @public
|
|
358
|
+
*/
|
|
359
|
+
export type ButtonVariant = (typeof ButtonVariant)[keyof typeof ButtonVariant];
|
|
360
|
+
/**
|
|
361
|
+
* @public
|
|
362
|
+
* @enum
|
|
363
|
+
*/
|
|
364
|
+
export declare const MessageSmsStatus: {
|
|
365
|
+
readonly DELIVERED: "delivered";
|
|
366
|
+
readonly ERROR: "error";
|
|
367
|
+
readonly SENT: "sent";
|
|
368
|
+
readonly TRYING: "trying";
|
|
369
|
+
};
|
|
370
|
+
/**
|
|
371
|
+
* @public
|
|
372
|
+
*/
|
|
373
|
+
export type MessageSmsStatus = (typeof MessageSmsStatus)[keyof typeof MessageSmsStatus];
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
* @enum
|
|
377
|
+
*/
|
|
378
|
+
export declare const MessageType: {
|
|
379
|
+
readonly DELETED: "deleted";
|
|
380
|
+
readonly REGULAR: "regular";
|
|
381
|
+
readonly SYSTEM: "system";
|
|
382
|
+
};
|
|
383
|
+
/**
|
|
384
|
+
* @public
|
|
385
|
+
*/
|
|
386
|
+
export type MessageType = (typeof MessageType)[keyof typeof MessageType];
|
|
387
|
+
/**
|
|
388
|
+
* @public
|
|
389
|
+
* @enum
|
|
390
|
+
*/
|
|
391
|
+
export declare const MessageWhatsAppStatus: {
|
|
392
|
+
readonly DELIVERED: "delivered";
|
|
393
|
+
readonly ERROR: "error";
|
|
394
|
+
readonly SENT: "sent";
|
|
395
|
+
readonly TRYING: "trying";
|
|
396
|
+
};
|
|
397
|
+
/**
|
|
398
|
+
* @public
|
|
399
|
+
*/
|
|
400
|
+
export type MessageWhatsAppStatus = (typeof MessageWhatsAppStatus)[keyof typeof MessageWhatsAppStatus];
|
|
401
|
+
/**
|
|
402
|
+
* @public
|
|
403
|
+
* @enum
|
|
404
|
+
*/
|
|
405
|
+
export declare const ConferenceDirection: {
|
|
406
|
+
readonly INBOUND: "INBOUND";
|
|
407
|
+
readonly INTERNAL: "INTERNAL";
|
|
408
|
+
readonly OUTBOUND: "OUTBOUND";
|
|
409
|
+
};
|
|
410
|
+
/**
|
|
411
|
+
* @public
|
|
412
|
+
*/
|
|
413
|
+
export type ConferenceDirection = (typeof ConferenceDirection)[keyof typeof ConferenceDirection];
|
|
414
|
+
/**
|
|
415
|
+
* @public
|
|
416
|
+
* @enum
|
|
417
|
+
*/
|
|
418
|
+
export declare const PbxLicenseType: {
|
|
419
|
+
readonly BASIC: "basic";
|
|
420
|
+
readonly BUSINESS: "business";
|
|
421
|
+
readonly ESSENTIAL: "essential";
|
|
422
|
+
readonly PREMIUM: "premium";
|
|
423
|
+
readonly WIZYCONF: "wizyconf";
|
|
424
|
+
};
|
|
425
|
+
/**
|
|
426
|
+
* @public
|
|
427
|
+
*/
|
|
428
|
+
export type PbxLicenseType = (typeof PbxLicenseType)[keyof typeof PbxLicenseType];
|
|
429
|
+
/**
|
|
430
|
+
* @public
|
|
431
|
+
* @enum
|
|
432
|
+
*/
|
|
433
|
+
export declare const ConferenceParticipantRole: {
|
|
434
|
+
readonly AGENT: "AGENT";
|
|
435
|
+
readonly CLIENT: "CLIENT";
|
|
436
|
+
};
|
|
437
|
+
/**
|
|
438
|
+
* @public
|
|
439
|
+
*/
|
|
440
|
+
export type ConferenceParticipantRole = (typeof ConferenceParticipantRole)[keyof typeof ConferenceParticipantRole];
|
|
441
|
+
/**
|
|
442
|
+
* @public
|
|
443
|
+
* @enum
|
|
444
|
+
*/
|
|
445
|
+
export declare const ConferenceParticipantType: {
|
|
446
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
447
|
+
readonly EXTERNAL_DIAL_IN: "EXTERNAL_DIAL_IN";
|
|
448
|
+
readonly PBX: "PBX";
|
|
449
|
+
readonly PBX_SIP: "PBX_SIP";
|
|
450
|
+
readonly XBS: "XBS";
|
|
451
|
+
};
|
|
452
|
+
/**
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
export type ConferenceParticipantType = (typeof ConferenceParticipantType)[keyof typeof ConferenceParticipantType];
|
|
456
|
+
/**
|
|
457
|
+
* @public
|
|
458
|
+
* @enum
|
|
459
|
+
*/
|
|
460
|
+
export declare const ConferenceTranscriptionStatus: {
|
|
461
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
462
|
+
readonly POST_TRANSCRIPTION: "POST_TRANSCRIPTION";
|
|
463
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
464
|
+
};
|
|
465
|
+
/**
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
export type ConferenceTranscriptionStatus = (typeof ConferenceTranscriptionStatus)[keyof typeof ConferenceTranscriptionStatus];
|
|
469
|
+
/**
|
|
470
|
+
* @public
|
|
471
|
+
* @enum
|
|
472
|
+
*/
|
|
473
|
+
export declare const ConversationDirection: {
|
|
474
|
+
readonly INBOUND: "INBOUND";
|
|
475
|
+
readonly INTERNAL: "INTERNAL";
|
|
476
|
+
readonly OUTBOUND: "OUTBOUND";
|
|
477
|
+
};
|
|
478
|
+
/**
|
|
479
|
+
* @public
|
|
480
|
+
*/
|
|
481
|
+
export type ConversationDirection = (typeof ConversationDirection)[keyof typeof ConversationDirection];
|
|
482
|
+
/**
|
|
483
|
+
* @public
|
|
484
|
+
* @enum
|
|
485
|
+
*/
|
|
486
|
+
export declare const ConversationFlag: {
|
|
487
|
+
readonly FAX: "FAX";
|
|
488
|
+
readonly VOICEMAIL: "VOICEMAIL";
|
|
489
|
+
};
|
|
490
|
+
/**
|
|
491
|
+
* @public
|
|
492
|
+
*/
|
|
493
|
+
export type ConversationFlag = (typeof ConversationFlag)[keyof typeof ConversationFlag];
|
|
494
|
+
/**
|
|
495
|
+
* @public
|
|
496
|
+
* @enum
|
|
497
|
+
*/
|
|
498
|
+
export declare const ConversationUserDirection: {
|
|
499
|
+
readonly INCOMING: "INCOMING";
|
|
500
|
+
readonly OUTGOING: "OUTGOING";
|
|
501
|
+
};
|
|
502
|
+
/**
|
|
503
|
+
* @public
|
|
504
|
+
*/
|
|
505
|
+
export type ConversationUserDirection = (typeof ConversationUserDirection)[keyof typeof ConversationUserDirection];
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/client";
|
|
2
|
+
import { WdaHistoryServiceException as __BaseException } from "./WdaHistoryServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export declare class ForbiddenException extends __BaseException {
|
|
7
|
+
readonly name: "ForbiddenException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export declare class ValidationException extends __BaseException {
|
|
18
|
+
readonly name: "ValidationException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
/**
|
|
21
|
+
* @internal
|
|
22
|
+
*/
|
|
23
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export declare class CallAnnotationsNotFoundException extends __BaseException {
|
|
29
|
+
readonly name: "CallAnnotationsNotFoundException";
|
|
30
|
+
readonly $fault: "client";
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
constructor(opts: __ExceptionOptionType<CallAnnotationsNotFoundException, __BaseException>);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export declare class CallNotFoundException extends __BaseException {
|
|
40
|
+
readonly name: "CallNotFoundException";
|
|
41
|
+
readonly $fault: "client";
|
|
42
|
+
/**
|
|
43
|
+
* @internal
|
|
44
|
+
*/
|
|
45
|
+
constructor(opts: __ExceptionOptionType<CallNotFoundException, __BaseException>);
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export declare class CallTranscriptionNotFoundException extends __BaseException {
|
|
51
|
+
readonly name: "CallTranscriptionNotFoundException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
/**
|
|
54
|
+
* @internal
|
|
55
|
+
*/
|
|
56
|
+
constructor(opts: __ExceptionOptionType<CallTranscriptionNotFoundException, __BaseException>);
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class ChatAnnotationsNotFoundException extends __BaseException {
|
|
62
|
+
readonly name: "ChatAnnotationsNotFoundException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
constructor(opts: __ExceptionOptionType<ChatAnnotationsNotFoundException, __BaseException>);
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class ChatNotFoundException extends __BaseException {
|
|
73
|
+
readonly name: "ChatNotFoundException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
constructor(opts: __ExceptionOptionType<ChatNotFoundException, __BaseException>);
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class ChatTranscriptionNotFoundException extends __BaseException {
|
|
84
|
+
readonly name: "ChatTranscriptionNotFoundException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
constructor(opts: __ExceptionOptionType<ChatTranscriptionNotFoundException, __BaseException>);
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export declare class ConferenceAnnotationsNotFoundException extends __BaseException {
|
|
95
|
+
readonly name: "ConferenceAnnotationsNotFoundException";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
constructor(opts: __ExceptionOptionType<ConferenceAnnotationsNotFoundException, __BaseException>);
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export declare class ConferenceNotFoundException extends __BaseException {
|
|
106
|
+
readonly name: "ConferenceNotFoundException";
|
|
107
|
+
readonly $fault: "client";
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
constructor(opts: __ExceptionOptionType<ConferenceNotFoundException, __BaseException>);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
export declare class ConferenceTranscriptionNotFoundException extends __BaseException {
|
|
117
|
+
readonly name: "ConferenceTranscriptionNotFoundException";
|
|
118
|
+
readonly $fault: "client";
|
|
119
|
+
/**
|
|
120
|
+
* @internal
|
|
121
|
+
*/
|
|
122
|
+
constructor(opts: __ExceptionOptionType<ConferenceTranscriptionNotFoundException, __BaseException>);
|
|
123
|
+
}
|