@wildix/wda-history-client 1.2.29 → 4.0.1
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 -413
- 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 -400
- 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 +11 -7
- 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 +11 -7
- package/dist-types/commands/QueryUserCallsCommand.d.ts +11 -7
- package/dist-types/commands/UpdateCallCommand.d.ts +11 -7
- 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 -692
- 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,1042 @@
|
|
|
1
|
+
const _A = "Annotation";
|
|
2
|
+
const _AE = "ActionElement";
|
|
3
|
+
const _AEL = "ActionsElementsList";
|
|
4
|
+
const _AP = "AnnotationPayload";
|
|
5
|
+
const _ARV = "AnnotationResultValue";
|
|
6
|
+
const _AS = "AnnotationSource";
|
|
7
|
+
const _AVV = "AnnotationVariablesValue";
|
|
8
|
+
const _An = "Annotations";
|
|
9
|
+
const _BAH = "ButtonActionHandler";
|
|
10
|
+
const _BE = "ButtonElement";
|
|
11
|
+
const _BH = "ButtonHandler";
|
|
12
|
+
const _BLH = "ButtonLinkHandler";
|
|
13
|
+
const _BRH = "ButtonReplyHandler";
|
|
14
|
+
const _C = "Channel";
|
|
15
|
+
const _CANFE = "CallAnnotationsNotFoundException";
|
|
16
|
+
const _CANFEh = "ChatAnnotationsNotFoundException";
|
|
17
|
+
const _CANFEo = "ConferenceAnnotationsNotFoundException";
|
|
18
|
+
const _CAR = "CallAnnotationsRecord";
|
|
19
|
+
const _CARP = "ConferenceAnalyticsRecordParticipant";
|
|
20
|
+
const _CARPL = "ConferenceAnalyticsRecordParticipantList";
|
|
21
|
+
const _CARh = "ChatAnnotationsRecord";
|
|
22
|
+
const _CARo = "ConferenceAnnotationsRecord";
|
|
23
|
+
const _CC = "ChannelContext";
|
|
24
|
+
const _CCE = "ChannelContextEvent";
|
|
25
|
+
const _CCEA = "ChannelContextEventAttendee";
|
|
26
|
+
const _CCEAL = "ChannelContextEventAttendeeList";
|
|
27
|
+
const _CCEL = "ChannelContextEventList";
|
|
28
|
+
const _CCPTT = "ChannelContextPushToTalk";
|
|
29
|
+
const _CFA = "CallFlowAttachments";
|
|
30
|
+
const _CFAD = "CallFlowAttachmentDestination";
|
|
31
|
+
const _CFADL = "CallFlowAttachmentDestinationList";
|
|
32
|
+
const _CFAa = "CallFlowAttachment";
|
|
33
|
+
const _CFF = "CallFlowFax";
|
|
34
|
+
const _CFN = "CallFlowNotifications";
|
|
35
|
+
const _CFR = "CallFlowRecording";
|
|
36
|
+
const _CFRD = "CallFlowRecordingsData";
|
|
37
|
+
const _CFV = "CallFlowVoicemail";
|
|
38
|
+
const _CL = "CallsList";
|
|
39
|
+
const _CLo = "ConversationsList";
|
|
40
|
+
const _CNFE = "CallNotFoundException";
|
|
41
|
+
const _CNFEh = "ChatNotFoundException";
|
|
42
|
+
const _CNFEo = "ConferenceNotFoundException";
|
|
43
|
+
const _CP = "CallParticipant";
|
|
44
|
+
const _CPI = "ChatParticipantInfo";
|
|
45
|
+
const _CPL = "ChatParticipantsList";
|
|
46
|
+
const _CPh = "ChatParticipant";
|
|
47
|
+
const _CPo = "ConferenceParticipant";
|
|
48
|
+
const _CR = "CallRecord";
|
|
49
|
+
const _CRL = "ConferenceRecordingList";
|
|
50
|
+
const _CRP = "CallRecordPause";
|
|
51
|
+
const _CRPL = "CallRecordPausesList";
|
|
52
|
+
const _CRh = "ChatRecord";
|
|
53
|
+
const _CRo = "ConferenceRecord";
|
|
54
|
+
const _CRon = "ConferenceRecording";
|
|
55
|
+
const _CT = "ConferenceTranscription";
|
|
56
|
+
const _CTC = "CallTranscriptionChunk";
|
|
57
|
+
const _CTCL = "CallTranscriptionChunksList";
|
|
58
|
+
const _CTCLo = "ConferenceTranscriptionChunksList";
|
|
59
|
+
const _CTCo = "ConferenceTranscriptionChunk";
|
|
60
|
+
const _CTI = "CallTranscriptionInterruption";
|
|
61
|
+
const _CTIL = "CallTranscriptionInterruptionsList";
|
|
62
|
+
const _CTILo = "ConferenceTranscriptionInterruptionsList";
|
|
63
|
+
const _CTIPR = "CallTranscriptionInteractionParticipantRecord";
|
|
64
|
+
const _CTIPRL = "CallTranscriptionInteractionParticipantsRecordsList";
|
|
65
|
+
const _CTIPRLo = "ConferenceTranscriptionInteractionParticipantsRecordsList";
|
|
66
|
+
const _CTIPRo = "ConferenceTranscriptionInteractionParticipantRecord";
|
|
67
|
+
const _CTIR = "CallTranscriptionInteractionRecord";
|
|
68
|
+
const _CTIRo = "ConferenceTranscriptionInteractionRecord";
|
|
69
|
+
const _CTIo = "ConferenceTranscriptionInterruption";
|
|
70
|
+
const _CTL = "ConferenceTranscriptionsList";
|
|
71
|
+
const _CTML = "ChatTranscriptionMessagesList";
|
|
72
|
+
const _CTNFE = "CallTranscriptionNotFoundException";
|
|
73
|
+
const _CTNFEh = "ChatTranscriptionNotFoundException";
|
|
74
|
+
const _CTNFEo = "ConferenceTranscriptionNotFoundException";
|
|
75
|
+
const _CTR = "CallTranscriptionRecord";
|
|
76
|
+
const _CTRh = "ChatTranscriptionRecord";
|
|
77
|
+
const _CTRo = "ConferenceTranscriptionRecord";
|
|
78
|
+
const _Co = "Conversation";
|
|
79
|
+
const _E = "Element";
|
|
80
|
+
const _EL = "ElementsList";
|
|
81
|
+
const _FE = "ForbiddenException";
|
|
82
|
+
const _GC = "GetCall";
|
|
83
|
+
const _GCA = "GetCallAnnotations";
|
|
84
|
+
const _GCAI = "GetCallAnnotationsInput";
|
|
85
|
+
const _GCAIe = "GetChatAnnotationsInput";
|
|
86
|
+
const _GCAIet = "GetConferenceAnnotationsInput";
|
|
87
|
+
const _GCAO = "GetCallAnnotationsOutput";
|
|
88
|
+
const _GCAOe = "GetChatAnnotationsOutput";
|
|
89
|
+
const _GCAOet = "GetConferenceAnnotationsOutput";
|
|
90
|
+
const _GCAe = "GetChatAnnotations";
|
|
91
|
+
const _GCAet = "GetConferenceAnnotations";
|
|
92
|
+
const _GCI = "GetCallInput";
|
|
93
|
+
const _GCIe = "GetChatInput";
|
|
94
|
+
const _GCIet = "GetConferenceInput";
|
|
95
|
+
const _GCO = "GetCallOutput";
|
|
96
|
+
const _GCOe = "GetChatOutput";
|
|
97
|
+
const _GCOet = "GetConferenceOutput";
|
|
98
|
+
const _GCT = "GetCallTranscription";
|
|
99
|
+
const _GCTI = "GetCallTranscriptionInput";
|
|
100
|
+
const _GCTIe = "GetChatTranscriptionInput";
|
|
101
|
+
const _GCTIet = "GetConferenceTranscriptionInput";
|
|
102
|
+
const _GCTO = "GetCallTranscriptionOutput";
|
|
103
|
+
const _GCTOe = "GetChatTranscriptionOutput";
|
|
104
|
+
const _GCTOet = "GetConferenceTranscriptionOutput";
|
|
105
|
+
const _GCTT = "GetCallTranscriptionText";
|
|
106
|
+
const _GCTTI = "GetCallTranscriptionTextInput";
|
|
107
|
+
const _GCTTIe = "GetChatTranscriptionTextInput";
|
|
108
|
+
const _GCTTIet = "GetConferenceTranscriptionTextInput";
|
|
109
|
+
const _GCTTO = "GetCallTranscriptionTextOutput";
|
|
110
|
+
const _GCTTOe = "GetChatTranscriptionTextOutput";
|
|
111
|
+
const _GCTTOet = "GetConferenceTranscriptionTextOutput";
|
|
112
|
+
const _GCTTe = "GetChatTranscriptionText";
|
|
113
|
+
const _GCTTet = "GetConferenceTranscriptionText";
|
|
114
|
+
const _GCTe = "GetChatTranscription";
|
|
115
|
+
const _GCTet = "GetConferenceTranscription";
|
|
116
|
+
const _GCe = "GetChat";
|
|
117
|
+
const _GCet = "GetConference";
|
|
118
|
+
const _LTP = "ListTemplateParameter";
|
|
119
|
+
const _M = "Message";
|
|
120
|
+
const _MA = "MessageAttachment";
|
|
121
|
+
const _MAL = "MessageAttachmentList";
|
|
122
|
+
const _MF = "MessageForward";
|
|
123
|
+
const _MG = "MessageGiphy";
|
|
124
|
+
const _MQ = "MessageQuote";
|
|
125
|
+
const _MTC = "MessageTemplateConfig";
|
|
126
|
+
const _QC = "QueryConversations";
|
|
127
|
+
const _QCF = "QueryConversationsFilter";
|
|
128
|
+
const _QCI = "QueryConversationsInput";
|
|
129
|
+
const _QCO = "QueryConversationsOutput";
|
|
130
|
+
const _QUC = "QueryUserCalls";
|
|
131
|
+
const _QUCF = "QueryUserCallsFilter";
|
|
132
|
+
const _QUCI = "QueryUserCallsInput";
|
|
133
|
+
const _QUCO = "QueryUserCallsOutput";
|
|
134
|
+
const _R = "Reaction";
|
|
135
|
+
const _RL = "ReactionList";
|
|
136
|
+
const _TP = "TemplateParameter";
|
|
137
|
+
const _TTC = "TranscriptionTextChunk";
|
|
138
|
+
const _TTCL = "TranscriptionTextChunkList";
|
|
139
|
+
const _TWP = "TemplateWithParameters";
|
|
140
|
+
const _U = "User";
|
|
141
|
+
const _UC = "UpdateCall";
|
|
142
|
+
const _UCI = "UpdateCallInput";
|
|
143
|
+
const _UCO = "UpdateCallOutput";
|
|
144
|
+
const _UL = "UsersList";
|
|
145
|
+
const _VE = "ValidationException";
|
|
146
|
+
const _a = "annotations";
|
|
147
|
+
const _aD = "attachmentDestinations";
|
|
148
|
+
const _aR = "autoRecord";
|
|
149
|
+
const _aS = "annotationsStatus";
|
|
150
|
+
const _aT = "attachmentType";
|
|
151
|
+
const _ac = "access";
|
|
152
|
+
const _act = "action";
|
|
153
|
+
const _acti = "actions";
|
|
154
|
+
const _as = "assignee";
|
|
155
|
+
const _at = "attachment";
|
|
156
|
+
const _att = "attachments";
|
|
157
|
+
const _atte = "attendees";
|
|
158
|
+
const _b = "bot";
|
|
159
|
+
const _bI = "broadcastId";
|
|
160
|
+
const _br = "broadcast";
|
|
161
|
+
const _bu = "button";
|
|
162
|
+
const _c = "client";
|
|
163
|
+
const _cA = "createdAt";
|
|
164
|
+
const _cB = "createdBy";
|
|
165
|
+
const _cI = "chatId";
|
|
166
|
+
const _cIa = "callId";
|
|
167
|
+
const _cIh = "channelId";
|
|
168
|
+
const _cIo = "conferenceId";
|
|
169
|
+
const _cIom = "companyId";
|
|
170
|
+
const _cM = "callerMos";
|
|
171
|
+
const _cMa = "calleeMos";
|
|
172
|
+
const _cS = "callStatus";
|
|
173
|
+
const _cST = "callStartTime";
|
|
174
|
+
const _cT = "connectTime";
|
|
175
|
+
const _cTh = "channelType";
|
|
176
|
+
const _ca = "caller";
|
|
177
|
+
const _cal = "callee";
|
|
178
|
+
const _call = "call";
|
|
179
|
+
const _calls = "calls";
|
|
180
|
+
const _ch = "chunks";
|
|
181
|
+
const _cha = "channel";
|
|
182
|
+
const _chat = "chat";
|
|
183
|
+
const _co = "company";
|
|
184
|
+
const _con = "conference";
|
|
185
|
+
const _conf = "confidence";
|
|
186
|
+
const _cont = "context";
|
|
187
|
+
const _conv = "conversations";
|
|
188
|
+
const _d = "duration";
|
|
189
|
+
const _de = "destination";
|
|
190
|
+
const _dep = "department";
|
|
191
|
+
const _des = "destinations";
|
|
192
|
+
const _desc = "description";
|
|
193
|
+
const _di = "direction";
|
|
194
|
+
const _dis = "disabled";
|
|
195
|
+
const _e = "error";
|
|
196
|
+
const _eT = "endTime";
|
|
197
|
+
const _ed = "edit";
|
|
198
|
+
const _el = "elements";
|
|
199
|
+
const _em = "email";
|
|
200
|
+
const _en = "end";
|
|
201
|
+
const _ev = "events";
|
|
202
|
+
const _eve = "event";
|
|
203
|
+
const _ex = "external";
|
|
204
|
+
const _f = "flags";
|
|
205
|
+
const _fC = "forwardCompany";
|
|
206
|
+
const _fD = "forwardDate";
|
|
207
|
+
const _fE = "forwardEmail";
|
|
208
|
+
const _fI = "flowIndex";
|
|
209
|
+
const _fIs = "fsId";
|
|
210
|
+
const _fN = "fileName";
|
|
211
|
+
const _fNo = "forwardName";
|
|
212
|
+
const _fST = "flowStartTime";
|
|
213
|
+
const _fa = "fax";
|
|
214
|
+
const _fi = "filename";
|
|
215
|
+
const _fil = "filter";
|
|
216
|
+
const _fo = "forward";
|
|
217
|
+
const _fr = "from";
|
|
218
|
+
const _g = "giphy";
|
|
219
|
+
const _gI = "groupId";
|
|
220
|
+
const _gN = "groupName";
|
|
221
|
+
const _h = "handler";
|
|
222
|
+
const _hA = "hasAttachment";
|
|
223
|
+
const _hE = "httpError";
|
|
224
|
+
const _hQ = "httpQuery";
|
|
225
|
+
const _hT = "holdTime";
|
|
226
|
+
const _he = "height";
|
|
227
|
+
const _ht = "http";
|
|
228
|
+
const _i = "id";
|
|
229
|
+
const _iF = "isFinal";
|
|
230
|
+
const _in = "interruptions";
|
|
231
|
+
const _inf = "info";
|
|
232
|
+
const _int = "interaction";
|
|
233
|
+
const _j = "jid";
|
|
234
|
+
const _jT = "joinTime";
|
|
235
|
+
const _k = "kite";
|
|
236
|
+
const _kA = "kiteAssign";
|
|
237
|
+
const _kDS = "kiteDefaultSubject";
|
|
238
|
+
const _kSN = "kiteServiceName";
|
|
239
|
+
const _kT = "kiteTarget";
|
|
240
|
+
const _kV = "kiteVariant";
|
|
241
|
+
const _l = "licenses";
|
|
242
|
+
const _lCS = "longestCustomerStory";
|
|
243
|
+
const _lM = "longestMonologue";
|
|
244
|
+
const _lR = "latestReactions";
|
|
245
|
+
const _la = "language";
|
|
246
|
+
const _li = "limit";
|
|
247
|
+
const _lic = "license";
|
|
248
|
+
const _lin = "link";
|
|
249
|
+
const _lo = "location";
|
|
250
|
+
const _loc = "locale";
|
|
251
|
+
const _m = "message";
|
|
252
|
+
const _mC = "memberCount";
|
|
253
|
+
const _mI = "messageId";
|
|
254
|
+
const _mW = "mergeWith";
|
|
255
|
+
const _ma = "markdown";
|
|
256
|
+
const _me = "messages";
|
|
257
|
+
const _men = "mentions";
|
|
258
|
+
const _mi = "mime";
|
|
259
|
+
const _mm = "mms";
|
|
260
|
+
const _n = "name";
|
|
261
|
+
const _no = "notifications";
|
|
262
|
+
const _o = "offset";
|
|
263
|
+
const _ow = "owner";
|
|
264
|
+
const _p = "parameters";
|
|
265
|
+
const _pA = "publicAddress";
|
|
266
|
+
const _pAr = "privateAddress";
|
|
267
|
+
const _pC = "pictureColor";
|
|
268
|
+
const _pD = "pbxDomain";
|
|
269
|
+
const _pE = "pbxExtension";
|
|
270
|
+
const _pGI = "pbxGroupId";
|
|
271
|
+
const _pP = "pbxPort";
|
|
272
|
+
const _pS = "pbxSerial";
|
|
273
|
+
const _pUI = "pbxUserId";
|
|
274
|
+
const _pa = "patience";
|
|
275
|
+
const _par = "participants";
|
|
276
|
+
const _pau = "pauses";
|
|
277
|
+
const _pay = "payload";
|
|
278
|
+
const _pb = "pbx";
|
|
279
|
+
const _ph = "phone";
|
|
280
|
+
const _pi = "picture";
|
|
281
|
+
const _pt = "ptt";
|
|
282
|
+
const _q = "quote";
|
|
283
|
+
const _qI = "queueId";
|
|
284
|
+
const _qN = "queueName";
|
|
285
|
+
const _qP = "queuePosition";
|
|
286
|
+
const _qT = "queueTime";
|
|
287
|
+
const _r = "recordings";
|
|
288
|
+
const _rC = "reactionCounts";
|
|
289
|
+
const _rD = "recordingsData";
|
|
290
|
+
const _rP = "remotePhone";
|
|
291
|
+
const _rPCC = "remotePhoneCountryCode";
|
|
292
|
+
const _rPCCS = "remotePhoneCountryCodeStr";
|
|
293
|
+
const _rPL = "remotePhoneLocation";
|
|
294
|
+
const _re = "reason";
|
|
295
|
+
const _rec = "recording";
|
|
296
|
+
const _rep = "reply";
|
|
297
|
+
const _res = "result";
|
|
298
|
+
const _ro = "role";
|
|
299
|
+
const _s = "smithy.ts.sdk.synthetic.wildix.wda.history";
|
|
300
|
+
const _sCI = "sipCallId";
|
|
301
|
+
const _sN = "serviceNumber";
|
|
302
|
+
const _sR = "splitReason";
|
|
303
|
+
const _sRe = "serviceRecipient";
|
|
304
|
+
const _sS = "smsStatus";
|
|
305
|
+
const _sT = "startTime";
|
|
306
|
+
const _sTT = "splitTransferType";
|
|
307
|
+
const _sTe = "serviceTitle";
|
|
308
|
+
const _se = "service";
|
|
309
|
+
const _sea = "search";
|
|
310
|
+
const _sen = "sentiment";
|
|
311
|
+
const _si = "silent";
|
|
312
|
+
const _siz = "size";
|
|
313
|
+
const _sm = "sms";
|
|
314
|
+
const _so = "source";
|
|
315
|
+
const _sp = "speaker";
|
|
316
|
+
const _st = "status";
|
|
317
|
+
const _sta = "start";
|
|
318
|
+
const _su = "subject";
|
|
319
|
+
const _sum = "summary";
|
|
320
|
+
const _t = "time";
|
|
321
|
+
const _tD = "trunkDirection";
|
|
322
|
+
const _tDo = "totalDuration";
|
|
323
|
+
const _tL = "transcriptionLanguage";
|
|
324
|
+
const _tN = "trunkName";
|
|
325
|
+
const _tR = "talkRatio";
|
|
326
|
+
const _tS = "transcriptionStatus";
|
|
327
|
+
const _tSD = "totalSpeakDuration";
|
|
328
|
+
const _tSr = "transcriptionSeconds";
|
|
329
|
+
const _tT = "talkTime";
|
|
330
|
+
const _tZ = "timeZone";
|
|
331
|
+
const _ta = "tags";
|
|
332
|
+
const _tag = "tag";
|
|
333
|
+
const _tar = "target";
|
|
334
|
+
const _te = "text";
|
|
335
|
+
const _tel = "telephony";
|
|
336
|
+
const _tem = "template";
|
|
337
|
+
const _th = "thumbnail";
|
|
338
|
+
const _to = "to";
|
|
339
|
+
const _tr = "transcriptions";
|
|
340
|
+
const _tra = "transcription";
|
|
341
|
+
const _ty = "type";
|
|
342
|
+
const _u = "user";
|
|
343
|
+
const _uA = "userAgent";
|
|
344
|
+
const _uAp = "updatedAt";
|
|
345
|
+
const _uD = "userDirection";
|
|
346
|
+
const _uDs = "userDepartment";
|
|
347
|
+
const _uDse = "userDevice";
|
|
348
|
+
const _uE = "userExtension";
|
|
349
|
+
const _uI = "userId";
|
|
350
|
+
const _ur = "url";
|
|
351
|
+
const _v = "value";
|
|
352
|
+
const _va = "variant";
|
|
353
|
+
const _var = "variables";
|
|
354
|
+
const _vo = "voicemail";
|
|
355
|
+
const _w = "whatsapp";
|
|
356
|
+
const _wGVO = "wizyGuestViewOnly";
|
|
357
|
+
const _wPM = "wordsPerMinute";
|
|
358
|
+
const _wS = "whatsappStatus";
|
|
359
|
+
const _wT = "waitTime";
|
|
360
|
+
const _wi = "width";
|
|
361
|
+
const _xCI = "xhoppersConfId";
|
|
362
|
+
const _xI = "xbsId";
|
|
363
|
+
const n0 = "smithy.framework";
|
|
364
|
+
const n1 = "wildix.wda.history";
|
|
365
|
+
const n2 = "wildix.classound";
|
|
366
|
+
const n3 = "wildix.wda.stream";
|
|
367
|
+
const n4 = "wildix.xbees.conversations";
|
|
368
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
369
|
+
import { CallAnnotationsNotFoundException, CallNotFoundException, CallTranscriptionNotFoundException, ChatAnnotationsNotFoundException, ChatNotFoundException, ChatTranscriptionNotFoundException, ConferenceAnnotationsNotFoundException, ConferenceNotFoundException, ConferenceTranscriptionNotFoundException, ForbiddenException, ValidationException, } from "../models/errors";
|
|
370
|
+
import { WdaHistoryServiceException } from "../models/WdaHistoryServiceException";
|
|
371
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
372
|
+
export var WdaHistoryServiceException$ = [-3, _s, "WdaHistoryServiceException", 0, [], []];
|
|
373
|
+
_s_registry.registerError(WdaHistoryServiceException$, WdaHistoryServiceException);
|
|
374
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
375
|
+
const n1_registry = TypeRegistry.for(n1);
|
|
376
|
+
export var ForbiddenException$ = [-3, n0, _FE,
|
|
377
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
378
|
+
[_m],
|
|
379
|
+
[0], 1
|
|
380
|
+
];
|
|
381
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
382
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
383
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
384
|
+
[_m],
|
|
385
|
+
[0], 1
|
|
386
|
+
];
|
|
387
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
388
|
+
export var CallAnnotationsNotFoundException$ = [-3, n1, _CANFE,
|
|
389
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
390
|
+
[_m],
|
|
391
|
+
[0]
|
|
392
|
+
];
|
|
393
|
+
n1_registry.registerError(CallAnnotationsNotFoundException$, CallAnnotationsNotFoundException);
|
|
394
|
+
export var CallNotFoundException$ = [-3, n1, _CNFE,
|
|
395
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
396
|
+
[_m],
|
|
397
|
+
[0]
|
|
398
|
+
];
|
|
399
|
+
n1_registry.registerError(CallNotFoundException$, CallNotFoundException);
|
|
400
|
+
export var CallTranscriptionNotFoundException$ = [-3, n1, _CTNFE,
|
|
401
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
402
|
+
[_m],
|
|
403
|
+
[0]
|
|
404
|
+
];
|
|
405
|
+
n1_registry.registerError(CallTranscriptionNotFoundException$, CallTranscriptionNotFoundException);
|
|
406
|
+
export var ChatAnnotationsNotFoundException$ = [-3, n1, _CANFEh,
|
|
407
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
408
|
+
[_m],
|
|
409
|
+
[0]
|
|
410
|
+
];
|
|
411
|
+
n1_registry.registerError(ChatAnnotationsNotFoundException$, ChatAnnotationsNotFoundException);
|
|
412
|
+
export var ChatNotFoundException$ = [-3, n1, _CNFEh,
|
|
413
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
414
|
+
[_m],
|
|
415
|
+
[0]
|
|
416
|
+
];
|
|
417
|
+
n1_registry.registerError(ChatNotFoundException$, ChatNotFoundException);
|
|
418
|
+
export var ChatTranscriptionNotFoundException$ = [-3, n1, _CTNFEh,
|
|
419
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
420
|
+
[_m],
|
|
421
|
+
[0]
|
|
422
|
+
];
|
|
423
|
+
n1_registry.registerError(ChatTranscriptionNotFoundException$, ChatTranscriptionNotFoundException);
|
|
424
|
+
export var ConferenceAnnotationsNotFoundException$ = [-3, n1, _CANFEo,
|
|
425
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
426
|
+
[_m],
|
|
427
|
+
[0]
|
|
428
|
+
];
|
|
429
|
+
n1_registry.registerError(ConferenceAnnotationsNotFoundException$, ConferenceAnnotationsNotFoundException);
|
|
430
|
+
export var ConferenceNotFoundException$ = [-3, n1, _CNFEo,
|
|
431
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
432
|
+
[_m],
|
|
433
|
+
[0]
|
|
434
|
+
];
|
|
435
|
+
n1_registry.registerError(ConferenceNotFoundException$, ConferenceNotFoundException);
|
|
436
|
+
export var ConferenceTranscriptionNotFoundException$ = [-3, n1, _CTNFEo,
|
|
437
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
438
|
+
[_m],
|
|
439
|
+
[0]
|
|
440
|
+
];
|
|
441
|
+
n1_registry.registerError(ConferenceTranscriptionNotFoundException$, ConferenceTranscriptionNotFoundException);
|
|
442
|
+
export const errorTypeRegistries = [
|
|
443
|
+
_s_registry,
|
|
444
|
+
n0_registry,
|
|
445
|
+
n1_registry,
|
|
446
|
+
];
|
|
447
|
+
export var TemplateParameter$ = [3, n2, _TP,
|
|
448
|
+
0,
|
|
449
|
+
[_n, _v],
|
|
450
|
+
[0, 0], 2
|
|
451
|
+
];
|
|
452
|
+
export var TemplateWithParameters$ = [3, n2, _TWP,
|
|
453
|
+
0,
|
|
454
|
+
[_n, _p],
|
|
455
|
+
[0, () => ListTemplateParameter], 1
|
|
456
|
+
];
|
|
457
|
+
export var CallAnnotationsRecord$ = [3, n1, _CAR,
|
|
458
|
+
0,
|
|
459
|
+
[_i, _pb, _t, _co, _l, _ty, _fI, _fST, _cST, _a],
|
|
460
|
+
[0, 0, 1, 0, 64 | 0, 0, 1, 1, 1, () => Annotations], 10
|
|
461
|
+
];
|
|
462
|
+
export var CallRecord$ = [3, n1, _CR,
|
|
463
|
+
0,
|
|
464
|
+
[_fI, _sT, _eT, _d, _i, _pb, _t, _co, _l, _ty, _cT, _tT, _wT, _qT, _hT, _ca, _cal, _se, _sN, _de, _di, _tN, _tD, _qN, _qI, _qP, _ta, _f, _cM, _cMa, _xCI, _r, _rD, _mW, _sR, _sTT, _rP, _rPCC, _rPCCS, _rPL, _cS, _tS, _tL, _tSr, _aS, _at, _aT, _aD, _att, _no],
|
|
465
|
+
[1, 1, 1, 1, 0, 0, 1, 0, 64 | 0, 0, 1, 1, 1, 1, 1, () => CallParticipant$, () => CallParticipant$, 0, 0, 0, 0, 0, 0, 0, 0, 1, 64 | 0, 64 | 0, 0, 0, 0, 64 | 0, () => CallFlowRecordingsData, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, () => CallFlowAttachmentDestinationList, () => CallFlowAttachments, () => CallFlowNotifications$], 10
|
|
466
|
+
];
|
|
467
|
+
export var CallTranscriptionInteractionParticipantRecord$ = [3, n1, _CTIPR,
|
|
468
|
+
0,
|
|
469
|
+
[_sp, _wPM, _tR, _in],
|
|
470
|
+
[0, 1, 1, () => CallTranscriptionInterruptionsList], 1
|
|
471
|
+
];
|
|
472
|
+
export var CallTranscriptionInteractionRecord$ = [3, n1, _CTIR,
|
|
473
|
+
0,
|
|
474
|
+
[_tR, _wPM, _in, _pa, _lM, _lCS, _par],
|
|
475
|
+
[1, 1, 1, 1, 1, 1, () => CallTranscriptionInteractionParticipantsRecordsList]
|
|
476
|
+
];
|
|
477
|
+
export var CallTranscriptionInterruption$ = [3, n1, _CTI,
|
|
478
|
+
0,
|
|
479
|
+
[_t, _ch],
|
|
480
|
+
[1, 64 | 0], 2
|
|
481
|
+
];
|
|
482
|
+
export var CallTranscriptionRecord$ = [3, n1, _CTR,
|
|
483
|
+
0,
|
|
484
|
+
[_i, _pb, _t, _co, _l, _ty, _fI, _fST, _cST, _ch],
|
|
485
|
+
[0, 0, 1, 0, 64 | 0, 0, 1, 1, 1, () => CallTranscriptionChunksList], 10
|
|
486
|
+
];
|
|
487
|
+
export var ChatAnnotationsRecord$ = [3, n1, _CARh,
|
|
488
|
+
0,
|
|
489
|
+
[_t, _co, _ty, _a, _i, _cI],
|
|
490
|
+
[1, 0, 0, () => Annotations, 0, 0], 4
|
|
491
|
+
];
|
|
492
|
+
export var ChatRecord$ = [3, n1, _CRh,
|
|
493
|
+
0,
|
|
494
|
+
[_t, _co, _sT, _eT, _d, _di, _cha, _par, _ty, _i, _cI, _pb, _wT, _su, _se, _sTe, _ta, _st, _aS],
|
|
495
|
+
[1, 0, 1, 1, 1, 0, () => Channel$, () => ChatParticipantsList, 0, 0, 0, 0, 1, 0, 0, 0, 64 | 0, 0, 0], 9
|
|
496
|
+
];
|
|
497
|
+
export var ChatTranscriptionRecord$ = [3, n1, _CTRh,
|
|
498
|
+
0,
|
|
499
|
+
[_t, _co, _ty, _me, _i, _cI],
|
|
500
|
+
[1, 0, 0, () => ChatTranscriptionMessagesList, 0, 0], 4
|
|
501
|
+
];
|
|
502
|
+
export var ConferenceAnnotationsRecord$ = [3, n1, _CARo,
|
|
503
|
+
0,
|
|
504
|
+
[_i, _t, _co, _ty, _a],
|
|
505
|
+
[0, 1, 0, 0, () => Annotations], 5
|
|
506
|
+
];
|
|
507
|
+
export var ConferenceRecord$ = [3, n1, _CRo,
|
|
508
|
+
0,
|
|
509
|
+
[_i, _t, _co, _sT, _eT, _d, _di, _par, _tS, _ty, _pb, _wT, _su, _se, _st, _r, _tL, _tSr, _aS],
|
|
510
|
+
[0, 1, 0, 1, 1, 1, 0, () => ConferenceAnalyticsRecordParticipantList, 0, 0, 0, 1, 0, 0, 0, () => ConferenceRecordingList, 0, 1, 0], 10
|
|
511
|
+
];
|
|
512
|
+
export var ConferenceTranscription$ = [3, n1, _CT,
|
|
513
|
+
0,
|
|
514
|
+
[_sta, _en, _ch],
|
|
515
|
+
[1, 1, () => ConferenceTranscriptionChunksList], 3
|
|
516
|
+
];
|
|
517
|
+
export var ConferenceTranscriptionInteractionParticipantRecord$ = [3, n1, _CTIPRo,
|
|
518
|
+
0,
|
|
519
|
+
[_j, _wPM, _tR, _in],
|
|
520
|
+
[0, 1, 1, () => ConferenceTranscriptionInterruptionsList], 1
|
|
521
|
+
];
|
|
522
|
+
export var ConferenceTranscriptionInteractionRecord$ = [3, n1, _CTIRo,
|
|
523
|
+
0,
|
|
524
|
+
[_tR, _wPM, _in, _pa, _lM, _lCS, _par],
|
|
525
|
+
[1, 1, 1, 1, 1, 1, () => ConferenceTranscriptionInteractionParticipantsRecordsList]
|
|
526
|
+
];
|
|
527
|
+
export var ConferenceTranscriptionInterruption$ = [3, n1, _CTIo,
|
|
528
|
+
0,
|
|
529
|
+
[_t, _ch],
|
|
530
|
+
[1, 64 | 0], 2
|
|
531
|
+
];
|
|
532
|
+
export var ConferenceTranscriptionRecord$ = [3, n1, _CTRo,
|
|
533
|
+
0,
|
|
534
|
+
[_i, _t, _co, _ty, _tr],
|
|
535
|
+
[0, 1, 0, 0, () => ConferenceTranscriptionsList], 5
|
|
536
|
+
];
|
|
537
|
+
export var GetCallAnnotationsInput$ = [3, n1, _GCAI,
|
|
538
|
+
0,
|
|
539
|
+
[_cIa, _fI, _co],
|
|
540
|
+
[[0, 1], [1, 1], [0, { [_hQ]: _co }]], 2
|
|
541
|
+
];
|
|
542
|
+
export var GetCallAnnotationsOutput$ = [3, n1, _GCAO,
|
|
543
|
+
0,
|
|
544
|
+
[_a],
|
|
545
|
+
[() => CallAnnotationsRecord$], 1
|
|
546
|
+
];
|
|
547
|
+
export var GetCallInput$ = [3, n1, _GCI,
|
|
548
|
+
0,
|
|
549
|
+
[_cIa, _fI, _co],
|
|
550
|
+
[[0, 1], [1, 1], [0, { [_hQ]: _co }]], 2
|
|
551
|
+
];
|
|
552
|
+
export var GetCallOutput$ = [3, n1, _GCO,
|
|
553
|
+
0,
|
|
554
|
+
[_call],
|
|
555
|
+
[() => CallRecord$], 1
|
|
556
|
+
];
|
|
557
|
+
export var GetCallTranscriptionInput$ = [3, n1, _GCTI,
|
|
558
|
+
0,
|
|
559
|
+
[_cIa, _fI, _co],
|
|
560
|
+
[[0, 1], [1, 1], [0, { [_hQ]: _co }]], 2
|
|
561
|
+
];
|
|
562
|
+
export var GetCallTranscriptionOutput$ = [3, n1, _GCTO,
|
|
563
|
+
0,
|
|
564
|
+
[_tra, _int],
|
|
565
|
+
[() => CallTranscriptionRecord$, () => CallTranscriptionInteractionRecord$], 1
|
|
566
|
+
];
|
|
567
|
+
export var GetCallTranscriptionTextInput$ = [3, n1, _GCTTI,
|
|
568
|
+
0,
|
|
569
|
+
[_cIa, _fI, _co],
|
|
570
|
+
[[0, 1], [1, 1], [0, { [_hQ]: _co }]], 2
|
|
571
|
+
];
|
|
572
|
+
export var GetCallTranscriptionTextOutput$ = [3, n1, _GCTTO,
|
|
573
|
+
0,
|
|
574
|
+
[_fi, _te, _ch],
|
|
575
|
+
[0, 0, () => TranscriptionTextChunkList], 3
|
|
576
|
+
];
|
|
577
|
+
export var GetChatAnnotationsInput$ = [3, n1, _GCAIe,
|
|
578
|
+
0,
|
|
579
|
+
[_cI, _co],
|
|
580
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
581
|
+
];
|
|
582
|
+
export var GetChatAnnotationsOutput$ = [3, n1, _GCAOe,
|
|
583
|
+
0,
|
|
584
|
+
[_a],
|
|
585
|
+
[() => ChatAnnotationsRecord$], 1
|
|
586
|
+
];
|
|
587
|
+
export var GetChatInput$ = [3, n1, _GCIe,
|
|
588
|
+
0,
|
|
589
|
+
[_cI, _co],
|
|
590
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
591
|
+
];
|
|
592
|
+
export var GetChatOutput$ = [3, n1, _GCOe,
|
|
593
|
+
0,
|
|
594
|
+
[_chat],
|
|
595
|
+
[() => ChatRecord$], 1
|
|
596
|
+
];
|
|
597
|
+
export var GetChatTranscriptionInput$ = [3, n1, _GCTIe,
|
|
598
|
+
0,
|
|
599
|
+
[_cI, _co],
|
|
600
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
601
|
+
];
|
|
602
|
+
export var GetChatTranscriptionOutput$ = [3, n1, _GCTOe,
|
|
603
|
+
0,
|
|
604
|
+
[_tra],
|
|
605
|
+
[() => ChatTranscriptionRecord$], 1
|
|
606
|
+
];
|
|
607
|
+
export var GetChatTranscriptionTextInput$ = [3, n1, _GCTTIe,
|
|
608
|
+
0,
|
|
609
|
+
[_cI, _co],
|
|
610
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
611
|
+
];
|
|
612
|
+
export var GetChatTranscriptionTextOutput$ = [3, n1, _GCTTOe,
|
|
613
|
+
0,
|
|
614
|
+
[_fi, _te, _me],
|
|
615
|
+
[0, 0, () => ChatTranscriptionMessagesList], 3
|
|
616
|
+
];
|
|
617
|
+
export var GetConferenceAnnotationsInput$ = [3, n1, _GCAIet,
|
|
618
|
+
0,
|
|
619
|
+
[_cIo, _co],
|
|
620
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
621
|
+
];
|
|
622
|
+
export var GetConferenceAnnotationsOutput$ = [3, n1, _GCAOet,
|
|
623
|
+
0,
|
|
624
|
+
[_a],
|
|
625
|
+
[() => ConferenceAnnotationsRecord$], 1
|
|
626
|
+
];
|
|
627
|
+
export var GetConferenceInput$ = [3, n1, _GCIet,
|
|
628
|
+
0,
|
|
629
|
+
[_cIo, _co],
|
|
630
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
631
|
+
];
|
|
632
|
+
export var GetConferenceOutput$ = [3, n1, _GCOet,
|
|
633
|
+
0,
|
|
634
|
+
[_con],
|
|
635
|
+
[() => ConferenceRecord$], 1
|
|
636
|
+
];
|
|
637
|
+
export var GetConferenceTranscriptionInput$ = [3, n1, _GCTIet,
|
|
638
|
+
0,
|
|
639
|
+
[_cIo, _co],
|
|
640
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
641
|
+
];
|
|
642
|
+
export var GetConferenceTranscriptionOutput$ = [3, n1, _GCTOet,
|
|
643
|
+
0,
|
|
644
|
+
[_tra, _int],
|
|
645
|
+
[() => ConferenceTranscriptionRecord$, () => ConferenceTranscriptionInteractionRecord$], 1
|
|
646
|
+
];
|
|
647
|
+
export var GetConferenceTranscriptionTextInput$ = [3, n1, _GCTTIet,
|
|
648
|
+
0,
|
|
649
|
+
[_cIo, _co],
|
|
650
|
+
[[0, 1], [0, { [_hQ]: _co }]], 1
|
|
651
|
+
];
|
|
652
|
+
export var GetConferenceTranscriptionTextOutput$ = [3, n1, _GCTTOet,
|
|
653
|
+
0,
|
|
654
|
+
[_fi, _te, _ch],
|
|
655
|
+
[0, 0, () => TranscriptionTextChunkList], 3
|
|
656
|
+
];
|
|
657
|
+
export var QueryConversationsFilter$ = [3, n1, _QCF,
|
|
658
|
+
0,
|
|
659
|
+
[_di, _f, _st, _fr, _to, _ta, _sea, _hA],
|
|
660
|
+
[0, 64 | 0, 0, 5, 5, 64 | 0, 0, 2]
|
|
661
|
+
];
|
|
662
|
+
export var QueryConversationsInput$ = [3, n1, _QCI,
|
|
663
|
+
0,
|
|
664
|
+
[_co, _u, _li, _o, _fil],
|
|
665
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }], 1, 1, () => QueryConversationsFilter$]
|
|
666
|
+
];
|
|
667
|
+
export var QueryConversationsOutput$ = [3, n1, _QCO,
|
|
668
|
+
0,
|
|
669
|
+
[_conv],
|
|
670
|
+
[() => ConversationsList], 1
|
|
671
|
+
];
|
|
672
|
+
export var QueryUserCallsFilter$ = [3, n1, _QUCF,
|
|
673
|
+
0,
|
|
674
|
+
[_di, _f, _st, _fr, _to, _ta, _sea, _hA, _uD],
|
|
675
|
+
[0, 64 | 0, 0, 5, 5, 64 | 0, 0, 2, 0]
|
|
676
|
+
];
|
|
677
|
+
export var QueryUserCallsInput$ = [3, n1, _QUCI,
|
|
678
|
+
0,
|
|
679
|
+
[_co, _u, _li, _o, _fil],
|
|
680
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _u }], 1, 1, () => QueryUserCallsFilter$]
|
|
681
|
+
];
|
|
682
|
+
export var QueryUserCallsOutput$ = [3, n1, _QUCO,
|
|
683
|
+
0,
|
|
684
|
+
[_calls],
|
|
685
|
+
[() => CallsList], 1
|
|
686
|
+
];
|
|
687
|
+
export var TranscriptionTextChunk$ = [3, n1, _TTC,
|
|
688
|
+
0,
|
|
689
|
+
[_i, _n, _te, _t, _o],
|
|
690
|
+
[0, 0, 0, 0, 1], 5
|
|
691
|
+
];
|
|
692
|
+
export var UpdateCallInput$ = [3, n1, _UCI,
|
|
693
|
+
0,
|
|
694
|
+
[_cIa, _fI, _cIom, _ta],
|
|
695
|
+
[[0, 1], [1, 1], [0, { [_hQ]: _co }], 64 | 0], 2
|
|
696
|
+
];
|
|
697
|
+
export var UpdateCallOutput$ = [3, n1, _UCO,
|
|
698
|
+
0,
|
|
699
|
+
[_call],
|
|
700
|
+
[() => CallRecord$], 1
|
|
701
|
+
];
|
|
702
|
+
export var Annotation$ = [3, n3, _A,
|
|
703
|
+
0,
|
|
704
|
+
[_i, _t, _pay, _so],
|
|
705
|
+
[0, 1, () => AnnotationPayload$, () => AnnotationSource$], 4
|
|
706
|
+
];
|
|
707
|
+
export var AnnotationResultValue$ = [3, n3, _ARV,
|
|
708
|
+
0,
|
|
709
|
+
[_v],
|
|
710
|
+
[15], 1
|
|
711
|
+
];
|
|
712
|
+
export var AnnotationSource$ = [3, n3, _AS,
|
|
713
|
+
0,
|
|
714
|
+
[_ty, _i, _n],
|
|
715
|
+
[0, 0, 0], 1
|
|
716
|
+
];
|
|
717
|
+
export var AnnotationVariablesValue$ = [3, n3, _AVV,
|
|
718
|
+
0,
|
|
719
|
+
[_v],
|
|
720
|
+
[15], 1
|
|
721
|
+
];
|
|
722
|
+
export var CallFlowAttachmentDestination$ = [3, n3, _CFAD,
|
|
723
|
+
0,
|
|
724
|
+
[_ph, _n, _em, _uI, _uE, _uDs, _gI, _gN],
|
|
725
|
+
[0, 0, 0, 0, 0, 0, 0, 0]
|
|
726
|
+
];
|
|
727
|
+
export var CallFlowFax$ = [3, n3, _CFF,
|
|
728
|
+
0,
|
|
729
|
+
[_ur, _st, _des, _ow, _e],
|
|
730
|
+
[0, 0, () => CallFlowAttachmentDestinationList, 0, 0], 1
|
|
731
|
+
];
|
|
732
|
+
export var CallFlowNotifications$ = [3, n3, _CFN,
|
|
733
|
+
0,
|
|
734
|
+
[_des, _ty],
|
|
735
|
+
[() => CallFlowAttachmentDestinationList, 64 | 0]
|
|
736
|
+
];
|
|
737
|
+
export var CallFlowRecording$ = [3, n3, _CFR,
|
|
738
|
+
0,
|
|
739
|
+
[_fN, _sta, _en, _ow, _ur, _pau],
|
|
740
|
+
[0, 1, 1, 0, 0, () => CallRecordPausesList], 6
|
|
741
|
+
];
|
|
742
|
+
export var CallFlowVoicemail$ = [3, n3, _CFV,
|
|
743
|
+
0,
|
|
744
|
+
[_ur, _des, _ow],
|
|
745
|
+
[0, () => CallFlowAttachmentDestinationList, 0], 1
|
|
746
|
+
];
|
|
747
|
+
export var CallParticipant$ = [3, n3, _CP,
|
|
748
|
+
0,
|
|
749
|
+
[_ty, _ro, _ph, _n, _co, _em, _uI, _uE, _uDs, _gI, _gN, _uA, _uDse, _lic, _sCI, _pA, _pAr, _lo],
|
|
750
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 2
|
|
751
|
+
];
|
|
752
|
+
export var CallRecordPause$ = [3, n3, _CRP,
|
|
753
|
+
0,
|
|
754
|
+
[_sta, _en, _re],
|
|
755
|
+
[1, 1, 0]
|
|
756
|
+
];
|
|
757
|
+
export var CallTranscriptionChunk$ = [3, n3, _CTC,
|
|
758
|
+
0,
|
|
759
|
+
[_i, _t, _sp, _te, _iF, _sta, _en, _la, _conf, _sen],
|
|
760
|
+
[0, 1, 0, 0, 2, 1, 1, 0, 1, 0], 7
|
|
761
|
+
];
|
|
762
|
+
export var ChatParticipant$ = [3, n3, _CPh,
|
|
763
|
+
0,
|
|
764
|
+
[_i, _inf],
|
|
765
|
+
[0, () => ChatParticipantInfo$], 2
|
|
766
|
+
];
|
|
767
|
+
export var ChatParticipantInfo$ = [3, n3, _CPI,
|
|
768
|
+
0,
|
|
769
|
+
[_i, _ty, _ro, _n, _em, _ph, _pi, _loc, _tZ, _co, _b, _pD, _pP, _pE, _pS, _pUI, _pGI, _cA, _uAp],
|
|
770
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], 3
|
|
771
|
+
];
|
|
772
|
+
export var ConferenceAnalyticsRecordParticipant$ = [3, n3, _CARP,
|
|
773
|
+
0,
|
|
774
|
+
[_j, _inf, _tDo, _tSD, _jT],
|
|
775
|
+
[0, () => ConferenceParticipant$, 1, 1, 1], 5
|
|
776
|
+
];
|
|
777
|
+
export var ConferenceParticipant$ = [3, n3, _CPo,
|
|
778
|
+
0,
|
|
779
|
+
[_ty, _ro, _j, _n, _em, _ph, _dep, _co, _pS, _pE, _pGI, _xI, _lic],
|
|
780
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 1
|
|
781
|
+
];
|
|
782
|
+
export var ConferenceRecording$ = [3, n3, _CRon,
|
|
783
|
+
0,
|
|
784
|
+
[_ur, _sta, _en],
|
|
785
|
+
[0, 1, 1], 3
|
|
786
|
+
];
|
|
787
|
+
export var ConferenceTranscriptionChunk$ = [3, n3, _CTCo,
|
|
788
|
+
0,
|
|
789
|
+
[_i, _t, _j, _te, _iF, _sta, _en, _la, _sen],
|
|
790
|
+
[0, 1, 0, 0, 2, 1, 1, 0, 0], 7
|
|
791
|
+
];
|
|
792
|
+
export var ButtonActionHandler$ = [3, n4, _BAH,
|
|
793
|
+
0,
|
|
794
|
+
[_i],
|
|
795
|
+
[0], 1
|
|
796
|
+
];
|
|
797
|
+
export var ButtonElement$ = [3, n4, _BE,
|
|
798
|
+
0,
|
|
799
|
+
[_te, _h, _va, _dis],
|
|
800
|
+
[0, () => ButtonHandler$, 0, 2], 2
|
|
801
|
+
];
|
|
802
|
+
export var ButtonLinkHandler$ = [3, n4, _BLH,
|
|
803
|
+
0,
|
|
804
|
+
[_ur],
|
|
805
|
+
[0], 1
|
|
806
|
+
];
|
|
807
|
+
export var ButtonReplyHandler$ = [3, n4, _BRH,
|
|
808
|
+
0,
|
|
809
|
+
[_te],
|
|
810
|
+
[0]
|
|
811
|
+
];
|
|
812
|
+
export var Channel$ = [3, n4, _C,
|
|
813
|
+
0,
|
|
814
|
+
[_cIh, _cTh, _mC, _cA, _cB, _su, _desc, _pi, _pC, _ac, _co, _cont, _k, _kT, _kV, _kA, _kSN, _kDS, _se, _sTe, _sRe, _as, _tel, _sm, _mm, _w, _wS, _br, _ex, _aR, _tL, _wGVO, _uAp],
|
|
815
|
+
[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, () => ChannelContext$, 2, 0, 0, 0, 0, 0, 0, 0, 0, () => User$, 2, 2, 2, 2, 0, 2, 2, 2, 0, 2, 0], 5
|
|
816
|
+
];
|
|
817
|
+
export var ChannelContext$ = [3, n4, _CC,
|
|
818
|
+
0,
|
|
819
|
+
[_so, _tar, _ev, _pt],
|
|
820
|
+
[0, 0, () => ChannelContextEventList, () => ChannelContextPushToTalk$]
|
|
821
|
+
];
|
|
822
|
+
export var ChannelContextEvent$ = [3, n4, _CCE,
|
|
823
|
+
0,
|
|
824
|
+
[_i, _ow, _sta, _en, _sum, _atte],
|
|
825
|
+
[0, 0, 0, 0, 0, () => ChannelContextEventAttendeeList]
|
|
826
|
+
];
|
|
827
|
+
export var ChannelContextEventAttendee$ = [3, n4, _CCEA,
|
|
828
|
+
0,
|
|
829
|
+
[_em, _st, _n],
|
|
830
|
+
[0, 0, 0], 2
|
|
831
|
+
];
|
|
832
|
+
export var ChannelContextPushToTalk$ = [3, n4, _CCPTT,
|
|
833
|
+
0,
|
|
834
|
+
[_bI],
|
|
835
|
+
[0]
|
|
836
|
+
];
|
|
837
|
+
export var Message$ = [3, n4, _M,
|
|
838
|
+
0,
|
|
839
|
+
[_ty, _mI, _cIh, _u, _cA, _te, _el, _att, _q, _fo, _w, _wS, _sm, _sS, _ma, _g, _si, _eve, _ed, _men, _lR, _rC, _uAp],
|
|
840
|
+
[0, 0, 0, () => User$, 0, 0, () => ElementsList, () => MessageAttachmentList, () => MessageQuote$, () => MessageForward$, 2, 0, 2, 0, 2, () => MessageGiphy$, 2, 0, 2, () => UsersList, () => ReactionList, 128 | 1, 0], 5
|
|
841
|
+
];
|
|
842
|
+
export var MessageAttachment$ = [3, n4, _MA,
|
|
843
|
+
0,
|
|
844
|
+
[_i, _fIs, _n, _siz, _mi, _wi, _he, _th],
|
|
845
|
+
[0, 0, 0, 1, 0, 1, 1, 0], 4
|
|
846
|
+
];
|
|
847
|
+
export var MessageForward$ = [3, n4, _MF,
|
|
848
|
+
0,
|
|
849
|
+
[_fD, _mI, _cIh, _fC, _fE, _fNo],
|
|
850
|
+
[0, 0, 0, 0, 0, 0], 3
|
|
851
|
+
];
|
|
852
|
+
export var MessageGiphy$ = [3, n4, _MG,
|
|
853
|
+
0,
|
|
854
|
+
[_i, _siz, _ur, _he, _wi],
|
|
855
|
+
[0, 0, 0, 0, 0], 5
|
|
856
|
+
];
|
|
857
|
+
export var MessageQuote$ = [3, n4, _MQ,
|
|
858
|
+
0,
|
|
859
|
+
[_mI, _cIh, _u, _cA, _te, _att, _fo, _men, _g, _uAp],
|
|
860
|
+
[0, 0, () => User$, 0, 0, () => MessageAttachmentList, () => MessageForward$, () => UsersList, () => MessageGiphy$, 0], 4
|
|
861
|
+
];
|
|
862
|
+
export var MessageTemplateConfig$ = [3, n4, _MTC,
|
|
863
|
+
0,
|
|
864
|
+
[_w],
|
|
865
|
+
[() => TemplateWithParameters$]
|
|
866
|
+
];
|
|
867
|
+
export var Reaction$ = [3, n4, _R,
|
|
868
|
+
0,
|
|
869
|
+
[_ty, _uI, _mI, _u],
|
|
870
|
+
[0, 0, 0, () => User$]
|
|
871
|
+
];
|
|
872
|
+
export var User$ = [3, n4, _U,
|
|
873
|
+
0,
|
|
874
|
+
[_i, _n, _em, _ph, _pi, _loc, _tZ, _co, _b, _pD, _pP, _pE, _pS, _pUI, _pGI, _cA, _uAp],
|
|
875
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], 1
|
|
876
|
+
];
|
|
877
|
+
var ListTemplateParameter = [1, n2, _LTP,
|
|
878
|
+
0, () => TemplateParameter$
|
|
879
|
+
];
|
|
880
|
+
var StringList = 64 | 0;
|
|
881
|
+
var CallsList = [1, n1, _CL,
|
|
882
|
+
0, () => CallRecord$
|
|
883
|
+
];
|
|
884
|
+
var CallTranscriptionInteractionParticipantsRecordsList = [1, n1, _CTIPRL,
|
|
885
|
+
0, () => CallTranscriptionInteractionParticipantRecord$
|
|
886
|
+
];
|
|
887
|
+
var CallTranscriptionInterruptionsList = [1, n1, _CTIL,
|
|
888
|
+
0, () => CallTranscriptionInterruption$
|
|
889
|
+
];
|
|
890
|
+
var ConferenceTranscriptionInteractionParticipantsRecordsList = [1, n1, _CTIPRLo,
|
|
891
|
+
0, () => ConferenceTranscriptionInteractionParticipantRecord$
|
|
892
|
+
];
|
|
893
|
+
var ConferenceTranscriptionInterruptionsList = [1, n1, _CTILo,
|
|
894
|
+
0, () => ConferenceTranscriptionInterruption$
|
|
895
|
+
];
|
|
896
|
+
var ConferenceTranscriptionsList = [1, n1, _CTL,
|
|
897
|
+
0, () => ConferenceTranscription$
|
|
898
|
+
];
|
|
899
|
+
var ConversationsList = [1, n1, _CLo,
|
|
900
|
+
0, () => Conversation$
|
|
901
|
+
];
|
|
902
|
+
var TagList = 64 | 0;
|
|
903
|
+
var TranscriptionTextChunkList = [1, n1, _TTCL,
|
|
904
|
+
0, () => TranscriptionTextChunk$
|
|
905
|
+
];
|
|
906
|
+
var Annotations = [1, n3, _An,
|
|
907
|
+
0, () => Annotation$
|
|
908
|
+
];
|
|
909
|
+
var CallFlowAttachmentDestinationList = [1, n3, _CFADL,
|
|
910
|
+
0, () => CallFlowAttachmentDestination$
|
|
911
|
+
];
|
|
912
|
+
var CallFlowAttachments = [1, n3, _CFA,
|
|
913
|
+
0, () => CallFlowAttachment$
|
|
914
|
+
];
|
|
915
|
+
var CallFlowFlags = 64 | 0;
|
|
916
|
+
var CallFlowRecordings = 64 | 0;
|
|
917
|
+
var CallFlowRecordingsData = [1, n3, _CFRD,
|
|
918
|
+
0, () => CallFlowRecording$
|
|
919
|
+
];
|
|
920
|
+
var CallFlowTags = 64 | 0;
|
|
921
|
+
var CallRecordPausesList = [1, n3, _CRPL,
|
|
922
|
+
0, () => CallRecordPause$
|
|
923
|
+
];
|
|
924
|
+
var CallTranscriptionChunksList = [1, n3, _CTCL,
|
|
925
|
+
0, () => CallTranscriptionChunk$
|
|
926
|
+
];
|
|
927
|
+
var ChatParticipantsList = [1, n3, _CPL,
|
|
928
|
+
0, () => ChatParticipant$
|
|
929
|
+
];
|
|
930
|
+
var ChatTags = 64 | 0;
|
|
931
|
+
var ChatTranscriptionMessagesList = [1, n3, _CTML,
|
|
932
|
+
0, () => Message$
|
|
933
|
+
];
|
|
934
|
+
var ConferenceAnalyticsRecordParticipantList = [1, n3, _CARPL,
|
|
935
|
+
0, () => ConferenceAnalyticsRecordParticipant$
|
|
936
|
+
];
|
|
937
|
+
var ConferenceRecordingList = [1, n3, _CRL,
|
|
938
|
+
0, () => ConferenceRecording$
|
|
939
|
+
];
|
|
940
|
+
var ConferenceTranscriptionChunksList = [1, n3, _CTCLo,
|
|
941
|
+
0, () => ConferenceTranscriptionChunk$
|
|
942
|
+
];
|
|
943
|
+
var ConversationFlags = 64 | 0;
|
|
944
|
+
var LicensesList = 64 | 0;
|
|
945
|
+
var NotificationsType = 64 | 0;
|
|
946
|
+
var ActionsElementsList = [1, n4, _AEL,
|
|
947
|
+
0, () => ActionElement$
|
|
948
|
+
];
|
|
949
|
+
var ChannelContextEventAttendeeList = [1, n4, _CCEAL,
|
|
950
|
+
0, () => ChannelContextEventAttendee$
|
|
951
|
+
];
|
|
952
|
+
var ChannelContextEventList = [1, n4, _CCEL,
|
|
953
|
+
0, () => ChannelContextEvent$
|
|
954
|
+
];
|
|
955
|
+
var ElementsList = [1, n4, _EL,
|
|
956
|
+
0, () => Element$
|
|
957
|
+
];
|
|
958
|
+
var MessageAttachmentList = [1, n4, _MAL,
|
|
959
|
+
0, () => MessageAttachment$
|
|
960
|
+
];
|
|
961
|
+
var ReactionList = [1, n4, _RL,
|
|
962
|
+
0, () => Reaction$
|
|
963
|
+
];
|
|
964
|
+
var UsersList = [1, n4, _UL,
|
|
965
|
+
0, () => User$
|
|
966
|
+
];
|
|
967
|
+
var ReactionCounts = 128 | 1;
|
|
968
|
+
export var Conversation$ = [4, n1, _Co,
|
|
969
|
+
0,
|
|
970
|
+
[_call, _con],
|
|
971
|
+
[() => CallRecord$, () => ConferenceRecord$]
|
|
972
|
+
];
|
|
973
|
+
export var AnnotationPayload$ = [4, n3, _AP,
|
|
974
|
+
0,
|
|
975
|
+
[_tag, _te, _var, _res],
|
|
976
|
+
[0, 0, () => AnnotationVariablesValue$, () => AnnotationResultValue$]
|
|
977
|
+
];
|
|
978
|
+
export var CallFlowAttachment$ = [4, n3, _CFAa,
|
|
979
|
+
0,
|
|
980
|
+
[_rec, _fa, _vo],
|
|
981
|
+
[() => CallFlowRecording$, () => CallFlowFax$, () => CallFlowVoicemail$]
|
|
982
|
+
];
|
|
983
|
+
export var ActionElement$ = [4, n4, _AE,
|
|
984
|
+
0,
|
|
985
|
+
[_bu],
|
|
986
|
+
[() => ButtonElement$]
|
|
987
|
+
];
|
|
988
|
+
export var ButtonHandler$ = [4, n4, _BH,
|
|
989
|
+
0,
|
|
990
|
+
[_lin, _rep, _act],
|
|
991
|
+
[() => ButtonLinkHandler$, () => ButtonReplyHandler$, () => ButtonActionHandler$]
|
|
992
|
+
];
|
|
993
|
+
export var Element$ = [4, n4, _E,
|
|
994
|
+
0,
|
|
995
|
+
[_tem, _acti],
|
|
996
|
+
[() => MessageTemplateConfig$, () => ActionsElementsList]
|
|
997
|
+
];
|
|
998
|
+
export var GetCall$ = [9, n1, _GC,
|
|
999
|
+
{ [_ht]: ["GET", "/v2/history/calls/{callId}/flows/{flowIndex}", 200] }, () => GetCallInput$, () => GetCallOutput$
|
|
1000
|
+
];
|
|
1001
|
+
export var GetCallAnnotations$ = [9, n1, _GCA,
|
|
1002
|
+
{ [_ht]: ["GET", "/v2/history/calls/{callId}/flows/{flowIndex}/annotations", 200] }, () => GetCallAnnotationsInput$, () => GetCallAnnotationsOutput$
|
|
1003
|
+
];
|
|
1004
|
+
export var GetCallTranscription$ = [9, n1, _GCT,
|
|
1005
|
+
{ [_ht]: ["GET", "/v2/history/calls/{callId}/flows/{flowIndex}/transcription", 200] }, () => GetCallTranscriptionInput$, () => GetCallTranscriptionOutput$
|
|
1006
|
+
];
|
|
1007
|
+
export var GetCallTranscriptionText$ = [9, n1, _GCTT,
|
|
1008
|
+
{ [_ht]: ["GET", "/v2/history/calls/{callId}/flows/{flowIndex}/transcription/text", 200] }, () => GetCallTranscriptionTextInput$, () => GetCallTranscriptionTextOutput$
|
|
1009
|
+
];
|
|
1010
|
+
export var GetChat$ = [9, n1, _GCe,
|
|
1011
|
+
{ [_ht]: ["GET", "/v2/history/chats/{chatId}", 200] }, () => GetChatInput$, () => GetChatOutput$
|
|
1012
|
+
];
|
|
1013
|
+
export var GetChatAnnotations$ = [9, n1, _GCAe,
|
|
1014
|
+
{ [_ht]: ["GET", "/v2/history/chats/{chatId}/annotations", 200] }, () => GetChatAnnotationsInput$, () => GetChatAnnotationsOutput$
|
|
1015
|
+
];
|
|
1016
|
+
export var GetChatTranscription$ = [9, n1, _GCTe,
|
|
1017
|
+
{ [_ht]: ["GET", "/v2/history/chats/{chatId}/transcription", 200] }, () => GetChatTranscriptionInput$, () => GetChatTranscriptionOutput$
|
|
1018
|
+
];
|
|
1019
|
+
export var GetChatTranscriptionText$ = [9, n1, _GCTTe,
|
|
1020
|
+
{ [_ht]: ["GET", "/v2/history/chats/{chatId}/transcription/text", 200] }, () => GetChatTranscriptionTextInput$, () => GetChatTranscriptionTextOutput$
|
|
1021
|
+
];
|
|
1022
|
+
export var GetConference$ = [9, n1, _GCet,
|
|
1023
|
+
{ [_ht]: ["GET", "/v2/history/conferences/{conferenceId}", 200] }, () => GetConferenceInput$, () => GetConferenceOutput$
|
|
1024
|
+
];
|
|
1025
|
+
export var GetConferenceAnnotations$ = [9, n1, _GCAet,
|
|
1026
|
+
{ [_ht]: ["GET", "/v2/history/conferences/{conferenceId}/annotations", 200] }, () => GetConferenceAnnotationsInput$, () => GetConferenceAnnotationsOutput$
|
|
1027
|
+
];
|
|
1028
|
+
export var GetConferenceTranscription$ = [9, n1, _GCTet,
|
|
1029
|
+
{ [_ht]: ["GET", "/v2/history/conferences/{conferenceId}/transcription", 200] }, () => GetConferenceTranscriptionInput$, () => GetConferenceTranscriptionOutput$
|
|
1030
|
+
];
|
|
1031
|
+
export var GetConferenceTranscriptionText$ = [9, n1, _GCTTet,
|
|
1032
|
+
{ [_ht]: ["GET", "/v2/history/conferences/{conferenceId}/transcription/text", 200] }, () => GetConferenceTranscriptionTextInput$, () => GetConferenceTranscriptionTextOutput$
|
|
1033
|
+
];
|
|
1034
|
+
export var QueryConversations$ = [9, n1, _QC,
|
|
1035
|
+
{ [_ht]: ["POST", "/v2/history/conversations", 200] }, () => QueryConversationsInput$, () => QueryConversationsOutput$
|
|
1036
|
+
];
|
|
1037
|
+
export var QueryUserCalls$ = [9, n1, _QUC,
|
|
1038
|
+
{ [_ht]: ["POST", "/v2/history/user/calls", 200] }, () => QueryUserCallsInput$, () => QueryUserCallsOutput$
|
|
1039
|
+
];
|
|
1040
|
+
export var UpdateCall$ = [9, n1, _UC,
|
|
1041
|
+
{ [_ht]: ["PUT", "/v2/history/calls/{callId}/flows/{flowIndex}", 200] }, () => UpdateCallInput$, () => UpdateCallOutput$
|
|
1042
|
+
];
|