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