@aws-sdk/client-connectparticipant 3.987.0 → 3.988.0
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/index.js +30 -613
- package/dist-cjs/models/ConnectParticipantServiceException.js +12 -0
- package/dist-cjs/models/errors.js +113 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +441 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +55 -49
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ConnectParticipantServiceException = require('./models/ConnectParticipantServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -111,542 +114,6 @@ class ConnectParticipantClient extends smithyClient.Client {
|
|
|
111
114
|
}
|
|
112
115
|
}
|
|
113
116
|
|
|
114
|
-
class ConnectParticipantServiceException extends smithyClient.ServiceException {
|
|
115
|
-
constructor(options) {
|
|
116
|
-
super(options);
|
|
117
|
-
Object.setPrototypeOf(this, ConnectParticipantServiceException.prototype);
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
class AccessDeniedException extends ConnectParticipantServiceException {
|
|
122
|
-
name = "AccessDeniedException";
|
|
123
|
-
$fault = "client";
|
|
124
|
-
Message;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
this.Message = opts.Message;
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
class InternalServerException extends ConnectParticipantServiceException {
|
|
136
|
-
name = "InternalServerException";
|
|
137
|
-
$fault = "server";
|
|
138
|
-
Message;
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "InternalServerException",
|
|
142
|
-
$fault: "server",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
146
|
-
this.Message = opts.Message;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
class ThrottlingException extends ConnectParticipantServiceException {
|
|
150
|
-
name = "ThrottlingException";
|
|
151
|
-
$fault = "client";
|
|
152
|
-
Message;
|
|
153
|
-
constructor(opts) {
|
|
154
|
-
super({
|
|
155
|
-
name: "ThrottlingException",
|
|
156
|
-
$fault: "client",
|
|
157
|
-
...opts,
|
|
158
|
-
});
|
|
159
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
160
|
-
this.Message = opts.Message;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
class ValidationException extends ConnectParticipantServiceException {
|
|
164
|
-
name = "ValidationException";
|
|
165
|
-
$fault = "client";
|
|
166
|
-
Message;
|
|
167
|
-
constructor(opts) {
|
|
168
|
-
super({
|
|
169
|
-
name: "ValidationException",
|
|
170
|
-
$fault: "client",
|
|
171
|
-
...opts,
|
|
172
|
-
});
|
|
173
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
174
|
-
this.Message = opts.Message;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
class ConflictException extends ConnectParticipantServiceException {
|
|
178
|
-
name = "ConflictException";
|
|
179
|
-
$fault = "client";
|
|
180
|
-
Message;
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "ConflictException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
188
|
-
this.Message = opts.Message;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
class ServiceQuotaExceededException extends ConnectParticipantServiceException {
|
|
192
|
-
name = "ServiceQuotaExceededException";
|
|
193
|
-
$fault = "client";
|
|
194
|
-
Message;
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ServiceQuotaExceededException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
202
|
-
this.Message = opts.Message;
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
class ResourceNotFoundException extends ConnectParticipantServiceException {
|
|
206
|
-
name = "ResourceNotFoundException";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
Message;
|
|
209
|
-
ResourceId;
|
|
210
|
-
ResourceType;
|
|
211
|
-
constructor(opts) {
|
|
212
|
-
super({
|
|
213
|
-
name: "ResourceNotFoundException",
|
|
214
|
-
$fault: "client",
|
|
215
|
-
...opts,
|
|
216
|
-
});
|
|
217
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
218
|
-
this.Message = opts.Message;
|
|
219
|
-
this.ResourceId = opts.ResourceId;
|
|
220
|
-
this.ResourceType = opts.ResourceType;
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
const _A = "Attendee";
|
|
225
|
-
const _ADE = "AccessDeniedException";
|
|
226
|
-
const _AF = "AudioFeatures";
|
|
227
|
-
const _AFU = "AudioFallbackUrl";
|
|
228
|
-
const _AHU = "AudioHostUrl";
|
|
229
|
-
const _AI = "AttachmentItem";
|
|
230
|
-
const _AIt = "AttachmentId";
|
|
231
|
-
const _AItt = "AttendeeId";
|
|
232
|
-
const _AItta = "AttachmentIds";
|
|
233
|
-
const _AN = "AttachmentName";
|
|
234
|
-
const _ASIB = "AttachmentSizeInBytes";
|
|
235
|
-
const _AT = "AbsoluteTime";
|
|
236
|
-
const _AU = "AuthenticationUrl";
|
|
237
|
-
const _Ac = "Actions";
|
|
238
|
-
const _Ar = "Arn";
|
|
239
|
-
const _At = "Attachments";
|
|
240
|
-
const _Au = "Audio";
|
|
241
|
-
const _C = "Content";
|
|
242
|
-
const _CAU = "CompleteAttachmentUpload";
|
|
243
|
-
const _CAUR = "CompleteAttachmentUploadRequest";
|
|
244
|
-
const _CAURo = "CompleteAttachmentUploadResponse";
|
|
245
|
-
const _CC = "ConnectionCredentials";
|
|
246
|
-
const _CE = "ConflictException";
|
|
247
|
-
const _CEo = "ConnectionExpiry";
|
|
248
|
-
const _CI = "ContactId";
|
|
249
|
-
const _CP = "ConnectParticipant";
|
|
250
|
-
const _CPA = "CancelParticipantAuthentication";
|
|
251
|
-
const _CPAR = "CancelParticipantAuthenticationRequest";
|
|
252
|
-
const _CPARa = "CancelParticipantAuthenticationResponse";
|
|
253
|
-
const _CPC = "CreateParticipantConnection";
|
|
254
|
-
const _CPCR = "CreateParticipantConnectionRequest";
|
|
255
|
-
const _CPCRr = "CreateParticipantConnectionResponse";
|
|
256
|
-
const _CT = "ContentType";
|
|
257
|
-
const _CTl = "ClientToken";
|
|
258
|
-
const _CTo = "ConnectionToken";
|
|
259
|
-
const _DN = "DisplayName";
|
|
260
|
-
const _DP = "DisconnectParticipant";
|
|
261
|
-
const _DPR = "DisconnectParticipantRequest";
|
|
262
|
-
const _DPRi = "DisconnectParticipantResponse";
|
|
263
|
-
const _DT = "DeliveredTimestamp";
|
|
264
|
-
const _DV = "DescribeView";
|
|
265
|
-
const _DVR = "DescribeViewRequest";
|
|
266
|
-
const _DVRe = "DescribeViewResponse";
|
|
267
|
-
const _E = "Expiry";
|
|
268
|
-
const _EIU = "EventIngestionUrl";
|
|
269
|
-
const _ER = "EchoReduction";
|
|
270
|
-
const _GA = "GetAttachment";
|
|
271
|
-
const _GAR = "GetAttachmentRequest";
|
|
272
|
-
const _GARe = "GetAttachmentResponse";
|
|
273
|
-
const _GAU = "GetAuthenticationUrl";
|
|
274
|
-
const _GAUR = "GetAuthenticationUrlRequest";
|
|
275
|
-
const _GAURe = "GetAuthenticationUrlResponse";
|
|
276
|
-
const _GT = "GetTranscript";
|
|
277
|
-
const _GTR = "GetTranscriptRequest";
|
|
278
|
-
const _GTRe = "GetTranscriptResponse";
|
|
279
|
-
const _HTI = "HeadersToInclude";
|
|
280
|
-
const _I = "Item";
|
|
281
|
-
const _ICI = "InitialContactId";
|
|
282
|
-
const _IS = "InputSchema";
|
|
283
|
-
const _ISE = "InternalServerException";
|
|
284
|
-
const _Id = "Id";
|
|
285
|
-
const _JT = "JoinToken";
|
|
286
|
-
const _M = "Message";
|
|
287
|
-
const _MF = "MeetingFeatures";
|
|
288
|
-
const _MFC = "MeetingFeaturesConfiguration";
|
|
289
|
-
const _MI = "MessageId";
|
|
290
|
-
const _MIe = "MeetingId";
|
|
291
|
-
const _MM = "MessageMetadata";
|
|
292
|
-
const _MP = "MediaPlacement";
|
|
293
|
-
const _MPM = "MessageProcessingMetadata";
|
|
294
|
-
const _MPS = "MessageProcessingStatus";
|
|
295
|
-
const _MR = "MaxResults";
|
|
296
|
-
const _MRo = "MostRecent";
|
|
297
|
-
const _Me = "Meeting";
|
|
298
|
-
const _N = "Name";
|
|
299
|
-
const _NT = "NextToken";
|
|
300
|
-
const _PI = "ParticipantId";
|
|
301
|
-
const _PR = "ParticipantRole";
|
|
302
|
-
const _PT = "ParticipantToken";
|
|
303
|
-
const _R = "Receipts";
|
|
304
|
-
const _RCI = "RelatedContactId";
|
|
305
|
-
const _RI = "ResourceId";
|
|
306
|
-
const _RNFE = "ResourceNotFoundException";
|
|
307
|
-
const _RPI = "RecipientParticipantId";
|
|
308
|
-
const _RT = "ReadTimestamp";
|
|
309
|
-
const _RTe = "ResourceType";
|
|
310
|
-
const _RU = "RedirectUri";
|
|
311
|
-
const _Re = "Receipt";
|
|
312
|
-
const _S = "Status";
|
|
313
|
-
const _SAU = "StartAttachmentUpload";
|
|
314
|
-
const _SAUR = "StartAttachmentUploadRequest";
|
|
315
|
-
const _SAURt = "StartAttachmentUploadResponse";
|
|
316
|
-
const _SD = "ScanDirection";
|
|
317
|
-
const _SE = "SendEvent";
|
|
318
|
-
const _SER = "SendEventRequest";
|
|
319
|
-
const _SERe = "SendEventResponse";
|
|
320
|
-
const _SI = "SessionId";
|
|
321
|
-
const _SM = "SendMessage";
|
|
322
|
-
const _SMR = "SendMessageRequest";
|
|
323
|
-
const _SMRe = "SendMessageResponse";
|
|
324
|
-
const _SO = "SortOrder";
|
|
325
|
-
const _SP = "StartPosition";
|
|
326
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
327
|
-
const _SU = "SignalingUrl";
|
|
328
|
-
const _T = "Type";
|
|
329
|
-
const _TE = "ThrottlingException";
|
|
330
|
-
const _Te = "Template";
|
|
331
|
-
const _Tr = "Transcript";
|
|
332
|
-
const _U = "Url";
|
|
333
|
-
const _UE = "UrlExpiry";
|
|
334
|
-
const _UEIS = "UrlExpiryInSeconds";
|
|
335
|
-
const _UM = "UploadMetadata";
|
|
336
|
-
const _V = "View";
|
|
337
|
-
const _VA = "ViewAction";
|
|
338
|
-
const _VAi = "ViewActions";
|
|
339
|
-
const _VC = "ViewContent";
|
|
340
|
-
const _VE = "ValidationException";
|
|
341
|
-
const _VIS = "ViewInputSchema";
|
|
342
|
-
const _VN = "ViewName";
|
|
343
|
-
const _VT = "ViewTemplate";
|
|
344
|
-
const _VTi = "ViewToken";
|
|
345
|
-
const _Ve = "Version";
|
|
346
|
-
const _W = "Websocket";
|
|
347
|
-
const _WRTCC = "WebRTCConnection";
|
|
348
|
-
const _WRTCM = "WebRTCMeeting";
|
|
349
|
-
const _WRTCMP = "WebRTCMediaPlacement";
|
|
350
|
-
const _XAB = "X-Amz-Bearer";
|
|
351
|
-
const _c = "client";
|
|
352
|
-
const _e = "error";
|
|
353
|
-
const _h = "http";
|
|
354
|
-
const _hE = "httpError";
|
|
355
|
-
const _hH = "httpHeader";
|
|
356
|
-
const _s = "server";
|
|
357
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.connectparticipant";
|
|
358
|
-
const n0 = "com.amazonaws.connectparticipant";
|
|
359
|
-
var JoinToken = [0, n0, _JT, 8, 0];
|
|
360
|
-
var ViewAction = [0, n0, _VA, 8, 0];
|
|
361
|
-
var ViewInputSchema = [0, n0, _VIS, 8, 0];
|
|
362
|
-
var ViewName = [0, n0, _VN, 8, 0];
|
|
363
|
-
var ViewTemplate = [0, n0, _VT, 8, 0];
|
|
364
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
365
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
366
|
-
[_M],
|
|
367
|
-
[0], 1
|
|
368
|
-
];
|
|
369
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
370
|
-
var AttachmentItem$ = [3, n0, _AI,
|
|
371
|
-
0,
|
|
372
|
-
[_CT, _AIt, _AN, _S],
|
|
373
|
-
[0, 0, 0, 0]
|
|
374
|
-
];
|
|
375
|
-
var Attendee$ = [3, n0, _A,
|
|
376
|
-
0,
|
|
377
|
-
[_AItt, _JT],
|
|
378
|
-
[0, [() => JoinToken, 0]]
|
|
379
|
-
];
|
|
380
|
-
var AudioFeatures$ = [3, n0, _AF,
|
|
381
|
-
0,
|
|
382
|
-
[_ER],
|
|
383
|
-
[0]
|
|
384
|
-
];
|
|
385
|
-
var CancelParticipantAuthenticationRequest$ = [3, n0, _CPAR,
|
|
386
|
-
0,
|
|
387
|
-
[_SI, _CTo],
|
|
388
|
-
[0, [0, { [_hH]: _XAB }]], 2
|
|
389
|
-
];
|
|
390
|
-
var CancelParticipantAuthenticationResponse$ = [3, n0, _CPARa,
|
|
391
|
-
0,
|
|
392
|
-
[],
|
|
393
|
-
[]
|
|
394
|
-
];
|
|
395
|
-
var CompleteAttachmentUploadRequest$ = [3, n0, _CAUR,
|
|
396
|
-
0,
|
|
397
|
-
[_AItta, _CTo, _CTl],
|
|
398
|
-
[64 | 0, [0, { [_hH]: _XAB }], [0, 4]], 2
|
|
399
|
-
];
|
|
400
|
-
var CompleteAttachmentUploadResponse$ = [3, n0, _CAURo,
|
|
401
|
-
0,
|
|
402
|
-
[],
|
|
403
|
-
[]
|
|
404
|
-
];
|
|
405
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
406
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
407
|
-
[_M],
|
|
408
|
-
[0], 1
|
|
409
|
-
];
|
|
410
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
411
|
-
var ConnectionCredentials$ = [3, n0, _CC,
|
|
412
|
-
0,
|
|
413
|
-
[_CTo, _E],
|
|
414
|
-
[0, 0]
|
|
415
|
-
];
|
|
416
|
-
var CreateParticipantConnectionRequest$ = [3, n0, _CPCR,
|
|
417
|
-
0,
|
|
418
|
-
[_PT, _T, _CP],
|
|
419
|
-
[[0, { [_hH]: _XAB }], 64 | 0, 2], 1
|
|
420
|
-
];
|
|
421
|
-
var CreateParticipantConnectionResponse$ = [3, n0, _CPCRr,
|
|
422
|
-
0,
|
|
423
|
-
[_W, _CC, _WRTCC],
|
|
424
|
-
[() => Websocket$, () => ConnectionCredentials$, [() => WebRTCConnection$, 0]]
|
|
425
|
-
];
|
|
426
|
-
var DescribeViewRequest$ = [3, n0, _DVR,
|
|
427
|
-
0,
|
|
428
|
-
[_VTi, _CTo],
|
|
429
|
-
[[0, 1], [0, { [_hH]: _XAB }]], 2
|
|
430
|
-
];
|
|
431
|
-
var DescribeViewResponse$ = [3, n0, _DVRe,
|
|
432
|
-
0,
|
|
433
|
-
[_V],
|
|
434
|
-
[[() => View$, 0]]
|
|
435
|
-
];
|
|
436
|
-
var DisconnectParticipantRequest$ = [3, n0, _DPR,
|
|
437
|
-
0,
|
|
438
|
-
[_CTo, _CTl],
|
|
439
|
-
[[0, { [_hH]: _XAB }], [0, 4]], 1
|
|
440
|
-
];
|
|
441
|
-
var DisconnectParticipantResponse$ = [3, n0, _DPRi,
|
|
442
|
-
0,
|
|
443
|
-
[],
|
|
444
|
-
[]
|
|
445
|
-
];
|
|
446
|
-
var GetAttachmentRequest$ = [3, n0, _GAR,
|
|
447
|
-
0,
|
|
448
|
-
[_AIt, _CTo, _UEIS],
|
|
449
|
-
[0, [0, { [_hH]: _XAB }], 1], 2
|
|
450
|
-
];
|
|
451
|
-
var GetAttachmentResponse$ = [3, n0, _GARe,
|
|
452
|
-
0,
|
|
453
|
-
[_ASIB, _U, _UE],
|
|
454
|
-
[1, 0, 0], 1
|
|
455
|
-
];
|
|
456
|
-
var GetAuthenticationUrlRequest$ = [3, n0, _GAUR,
|
|
457
|
-
0,
|
|
458
|
-
[_SI, _RU, _CTo],
|
|
459
|
-
[0, 0, [0, { [_hH]: _XAB }]], 3
|
|
460
|
-
];
|
|
461
|
-
var GetAuthenticationUrlResponse$ = [3, n0, _GAURe,
|
|
462
|
-
0,
|
|
463
|
-
[_AU],
|
|
464
|
-
[0]
|
|
465
|
-
];
|
|
466
|
-
var GetTranscriptRequest$ = [3, n0, _GTR,
|
|
467
|
-
0,
|
|
468
|
-
[_CTo, _CI, _MR, _NT, _SD, _SO, _SP],
|
|
469
|
-
[[0, { [_hH]: _XAB }], 0, 1, 0, 0, 0, () => StartPosition$], 1
|
|
470
|
-
];
|
|
471
|
-
var GetTranscriptResponse$ = [3, n0, _GTRe,
|
|
472
|
-
0,
|
|
473
|
-
[_ICI, _Tr, _NT],
|
|
474
|
-
[0, () => Transcript, 0]
|
|
475
|
-
];
|
|
476
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
477
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
478
|
-
[_M],
|
|
479
|
-
[0], 1
|
|
480
|
-
];
|
|
481
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
482
|
-
var Item$ = [3, n0, _I,
|
|
483
|
-
0,
|
|
484
|
-
[_AT, _C, _CT, _Id, _T, _PI, _DN, _PR, _At, _MM, _RCI, _CI],
|
|
485
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => Attachments, () => MessageMetadata$, 0, 0]
|
|
486
|
-
];
|
|
487
|
-
var MeetingFeaturesConfiguration$ = [3, n0, _MFC,
|
|
488
|
-
0,
|
|
489
|
-
[_Au],
|
|
490
|
-
[() => AudioFeatures$]
|
|
491
|
-
];
|
|
492
|
-
var MessageMetadata$ = [3, n0, _MM,
|
|
493
|
-
0,
|
|
494
|
-
[_MI, _R, _MPS],
|
|
495
|
-
[0, () => Receipts, 0]
|
|
496
|
-
];
|
|
497
|
-
var MessageProcessingMetadata$ = [3, n0, _MPM,
|
|
498
|
-
0,
|
|
499
|
-
[_MPS],
|
|
500
|
-
[0]
|
|
501
|
-
];
|
|
502
|
-
var Receipt$ = [3, n0, _Re,
|
|
503
|
-
0,
|
|
504
|
-
[_DT, _RT, _RPI],
|
|
505
|
-
[0, 0, 0]
|
|
506
|
-
];
|
|
507
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
508
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
509
|
-
[_M, _RI, _RTe],
|
|
510
|
-
[0, 0, 0]
|
|
511
|
-
];
|
|
512
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
513
|
-
var SendEventRequest$ = [3, n0, _SER,
|
|
514
|
-
0,
|
|
515
|
-
[_CT, _CTo, _C, _CTl],
|
|
516
|
-
[0, [0, { [_hH]: _XAB }], 0, [0, 4]], 2
|
|
517
|
-
];
|
|
518
|
-
var SendEventResponse$ = [3, n0, _SERe,
|
|
519
|
-
0,
|
|
520
|
-
[_Id, _AT],
|
|
521
|
-
[0, 0]
|
|
522
|
-
];
|
|
523
|
-
var SendMessageRequest$ = [3, n0, _SMR,
|
|
524
|
-
0,
|
|
525
|
-
[_CT, _C, _CTo, _CTl],
|
|
526
|
-
[0, 0, [0, { [_hH]: _XAB }], [0, 4]], 3
|
|
527
|
-
];
|
|
528
|
-
var SendMessageResponse$ = [3, n0, _SMRe,
|
|
529
|
-
0,
|
|
530
|
-
[_Id, _AT, _MM],
|
|
531
|
-
[0, 0, () => MessageProcessingMetadata$]
|
|
532
|
-
];
|
|
533
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
534
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
535
|
-
[_M],
|
|
536
|
-
[0], 1
|
|
537
|
-
];
|
|
538
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
539
|
-
var StartAttachmentUploadRequest$ = [3, n0, _SAUR,
|
|
540
|
-
0,
|
|
541
|
-
[_CT, _ASIB, _AN, _CTo, _CTl],
|
|
542
|
-
[0, 1, 0, [0, { [_hH]: _XAB }], [0, 4]], 4
|
|
543
|
-
];
|
|
544
|
-
var StartAttachmentUploadResponse$ = [3, n0, _SAURt,
|
|
545
|
-
0,
|
|
546
|
-
[_AIt, _UM],
|
|
547
|
-
[0, () => UploadMetadata$]
|
|
548
|
-
];
|
|
549
|
-
var StartPosition$ = [3, n0, _SP,
|
|
550
|
-
0,
|
|
551
|
-
[_Id, _AT, _MRo],
|
|
552
|
-
[0, 0, 1]
|
|
553
|
-
];
|
|
554
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
555
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
556
|
-
[_M],
|
|
557
|
-
[0], 1
|
|
558
|
-
];
|
|
559
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
560
|
-
var UploadMetadata$ = [3, n0, _UM,
|
|
561
|
-
0,
|
|
562
|
-
[_U, _UE, _HTI],
|
|
563
|
-
[0, 0, 128 | 0]
|
|
564
|
-
];
|
|
565
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
566
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
567
|
-
[_M],
|
|
568
|
-
[0], 1
|
|
569
|
-
];
|
|
570
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
571
|
-
var View$ = [3, n0, _V,
|
|
572
|
-
0,
|
|
573
|
-
[_Id, _Ar, _N, _Ve, _C],
|
|
574
|
-
[0, 0, [() => ViewName, 0], 1, [() => ViewContent$, 0]]
|
|
575
|
-
];
|
|
576
|
-
var ViewContent$ = [3, n0, _VC,
|
|
577
|
-
0,
|
|
578
|
-
[_IS, _Te, _Ac],
|
|
579
|
-
[[() => ViewInputSchema, 0], [() => ViewTemplate, 0], [() => ViewActions, 0]]
|
|
580
|
-
];
|
|
581
|
-
var WebRTCConnection$ = [3, n0, _WRTCC,
|
|
582
|
-
0,
|
|
583
|
-
[_A, _Me],
|
|
584
|
-
[[() => Attendee$, 0], () => WebRTCMeeting$]
|
|
585
|
-
];
|
|
586
|
-
var WebRTCMediaPlacement$ = [3, n0, _WRTCMP,
|
|
587
|
-
0,
|
|
588
|
-
[_AHU, _AFU, _SU, _EIU],
|
|
589
|
-
[0, 0, 0, 0]
|
|
590
|
-
];
|
|
591
|
-
var WebRTCMeeting$ = [3, n0, _WRTCM,
|
|
592
|
-
0,
|
|
593
|
-
[_MP, _MF, _MIe],
|
|
594
|
-
[() => WebRTCMediaPlacement$, () => MeetingFeaturesConfiguration$, 0]
|
|
595
|
-
];
|
|
596
|
-
var Websocket$ = [3, n0, _W,
|
|
597
|
-
0,
|
|
598
|
-
[_U, _CEo],
|
|
599
|
-
[0, 0]
|
|
600
|
-
];
|
|
601
|
-
var ConnectParticipantServiceException$ = [-3, _sm, "ConnectParticipantServiceException", 0, [], []];
|
|
602
|
-
schema.TypeRegistry.for(_sm).registerError(ConnectParticipantServiceException$, ConnectParticipantServiceException);
|
|
603
|
-
var Attachments = [1, n0, _At,
|
|
604
|
-
0, () => AttachmentItem$
|
|
605
|
-
];
|
|
606
|
-
var Receipts = [1, n0, _R,
|
|
607
|
-
0, () => Receipt$
|
|
608
|
-
];
|
|
609
|
-
var Transcript = [1, n0, _Tr,
|
|
610
|
-
0, () => Item$
|
|
611
|
-
];
|
|
612
|
-
var ViewActions = [1, n0, _VAi,
|
|
613
|
-
0, [() => ViewAction,
|
|
614
|
-
0]
|
|
615
|
-
];
|
|
616
|
-
var CancelParticipantAuthentication$ = [9, n0, _CPA,
|
|
617
|
-
{ [_h]: ["POST", "/participant/cancel-authentication", 200] }, () => CancelParticipantAuthenticationRequest$, () => CancelParticipantAuthenticationResponse$
|
|
618
|
-
];
|
|
619
|
-
var CompleteAttachmentUpload$ = [9, n0, _CAU,
|
|
620
|
-
{ [_h]: ["POST", "/participant/complete-attachment-upload", 200] }, () => CompleteAttachmentUploadRequest$, () => CompleteAttachmentUploadResponse$
|
|
621
|
-
];
|
|
622
|
-
var CreateParticipantConnection$ = [9, n0, _CPC,
|
|
623
|
-
{ [_h]: ["POST", "/participant/connection", 200] }, () => CreateParticipantConnectionRequest$, () => CreateParticipantConnectionResponse$
|
|
624
|
-
];
|
|
625
|
-
var DescribeView$ = [9, n0, _DV,
|
|
626
|
-
{ [_h]: ["GET", "/participant/views/{ViewToken}", 200] }, () => DescribeViewRequest$, () => DescribeViewResponse$
|
|
627
|
-
];
|
|
628
|
-
var DisconnectParticipant$ = [9, n0, _DP,
|
|
629
|
-
{ [_h]: ["POST", "/participant/disconnect", 200] }, () => DisconnectParticipantRequest$, () => DisconnectParticipantResponse$
|
|
630
|
-
];
|
|
631
|
-
var GetAttachment$ = [9, n0, _GA,
|
|
632
|
-
{ [_h]: ["POST", "/participant/attachment", 200] }, () => GetAttachmentRequest$, () => GetAttachmentResponse$
|
|
633
|
-
];
|
|
634
|
-
var GetAuthenticationUrl$ = [9, n0, _GAU,
|
|
635
|
-
{ [_h]: ["POST", "/participant/authentication-url", 200] }, () => GetAuthenticationUrlRequest$, () => GetAuthenticationUrlResponse$
|
|
636
|
-
];
|
|
637
|
-
var GetTranscript$ = [9, n0, _GT,
|
|
638
|
-
{ [_h]: ["POST", "/participant/transcript", 200] }, () => GetTranscriptRequest$, () => GetTranscriptResponse$
|
|
639
|
-
];
|
|
640
|
-
var SendEvent$ = [9, n0, _SE,
|
|
641
|
-
{ [_h]: ["POST", "/participant/event", 200] }, () => SendEventRequest$, () => SendEventResponse$
|
|
642
|
-
];
|
|
643
|
-
var SendMessage$ = [9, n0, _SM,
|
|
644
|
-
{ [_h]: ["POST", "/participant/message", 200] }, () => SendMessageRequest$, () => SendMessageResponse$
|
|
645
|
-
];
|
|
646
|
-
var StartAttachmentUpload$ = [9, n0, _SAU,
|
|
647
|
-
{ [_h]: ["POST", "/participant/start-attachment-upload", 200] }, () => StartAttachmentUploadRequest$, () => StartAttachmentUploadResponse$
|
|
648
|
-
];
|
|
649
|
-
|
|
650
117
|
class CancelParticipantAuthenticationCommand extends smithyClient.Command
|
|
651
118
|
.classBuilder()
|
|
652
119
|
.ep(commonParams)
|
|
@@ -655,7 +122,7 @@ class CancelParticipantAuthenticationCommand extends smithyClient.Command
|
|
|
655
122
|
})
|
|
656
123
|
.s("AmazonConnectParticipantServiceLambda", "CancelParticipantAuthentication", {})
|
|
657
124
|
.n("ConnectParticipantClient", "CancelParticipantAuthenticationCommand")
|
|
658
|
-
.sc(CancelParticipantAuthentication$)
|
|
125
|
+
.sc(schemas_0.CancelParticipantAuthentication$)
|
|
659
126
|
.build() {
|
|
660
127
|
}
|
|
661
128
|
|
|
@@ -667,7 +134,7 @@ class CompleteAttachmentUploadCommand extends smithyClient.Command
|
|
|
667
134
|
})
|
|
668
135
|
.s("AmazonConnectParticipantServiceLambda", "CompleteAttachmentUpload", {})
|
|
669
136
|
.n("ConnectParticipantClient", "CompleteAttachmentUploadCommand")
|
|
670
|
-
.sc(CompleteAttachmentUpload$)
|
|
137
|
+
.sc(schemas_0.CompleteAttachmentUpload$)
|
|
671
138
|
.build() {
|
|
672
139
|
}
|
|
673
140
|
|
|
@@ -679,7 +146,7 @@ class CreateParticipantConnectionCommand extends smithyClient.Command
|
|
|
679
146
|
})
|
|
680
147
|
.s("AmazonConnectParticipantServiceLambda", "CreateParticipantConnection", {})
|
|
681
148
|
.n("ConnectParticipantClient", "CreateParticipantConnectionCommand")
|
|
682
|
-
.sc(CreateParticipantConnection$)
|
|
149
|
+
.sc(schemas_0.CreateParticipantConnection$)
|
|
683
150
|
.build() {
|
|
684
151
|
}
|
|
685
152
|
|
|
@@ -691,7 +158,7 @@ class DescribeViewCommand extends smithyClient.Command
|
|
|
691
158
|
})
|
|
692
159
|
.s("AmazonConnectParticipantServiceLambda", "DescribeView", {})
|
|
693
160
|
.n("ConnectParticipantClient", "DescribeViewCommand")
|
|
694
|
-
.sc(DescribeView$)
|
|
161
|
+
.sc(schemas_0.DescribeView$)
|
|
695
162
|
.build() {
|
|
696
163
|
}
|
|
697
164
|
|
|
@@ -703,7 +170,7 @@ class DisconnectParticipantCommand extends smithyClient.Command
|
|
|
703
170
|
})
|
|
704
171
|
.s("AmazonConnectParticipantServiceLambda", "DisconnectParticipant", {})
|
|
705
172
|
.n("ConnectParticipantClient", "DisconnectParticipantCommand")
|
|
706
|
-
.sc(DisconnectParticipant$)
|
|
173
|
+
.sc(schemas_0.DisconnectParticipant$)
|
|
707
174
|
.build() {
|
|
708
175
|
}
|
|
709
176
|
|
|
@@ -715,7 +182,7 @@ class GetAttachmentCommand extends smithyClient.Command
|
|
|
715
182
|
})
|
|
716
183
|
.s("AmazonConnectParticipantServiceLambda", "GetAttachment", {})
|
|
717
184
|
.n("ConnectParticipantClient", "GetAttachmentCommand")
|
|
718
|
-
.sc(GetAttachment$)
|
|
185
|
+
.sc(schemas_0.GetAttachment$)
|
|
719
186
|
.build() {
|
|
720
187
|
}
|
|
721
188
|
|
|
@@ -727,7 +194,7 @@ class GetAuthenticationUrlCommand extends smithyClient.Command
|
|
|
727
194
|
})
|
|
728
195
|
.s("AmazonConnectParticipantServiceLambda", "GetAuthenticationUrl", {})
|
|
729
196
|
.n("ConnectParticipantClient", "GetAuthenticationUrlCommand")
|
|
730
|
-
.sc(GetAuthenticationUrl$)
|
|
197
|
+
.sc(schemas_0.GetAuthenticationUrl$)
|
|
731
198
|
.build() {
|
|
732
199
|
}
|
|
733
200
|
|
|
@@ -739,7 +206,7 @@ class GetTranscriptCommand extends smithyClient.Command
|
|
|
739
206
|
})
|
|
740
207
|
.s("AmazonConnectParticipantServiceLambda", "GetTranscript", {})
|
|
741
208
|
.n("ConnectParticipantClient", "GetTranscriptCommand")
|
|
742
|
-
.sc(GetTranscript$)
|
|
209
|
+
.sc(schemas_0.GetTranscript$)
|
|
743
210
|
.build() {
|
|
744
211
|
}
|
|
745
212
|
|
|
@@ -751,7 +218,7 @@ class SendEventCommand extends smithyClient.Command
|
|
|
751
218
|
})
|
|
752
219
|
.s("AmazonConnectParticipantServiceLambda", "SendEvent", {})
|
|
753
220
|
.n("ConnectParticipantClient", "SendEventCommand")
|
|
754
|
-
.sc(SendEvent$)
|
|
221
|
+
.sc(schemas_0.SendEvent$)
|
|
755
222
|
.build() {
|
|
756
223
|
}
|
|
757
224
|
|
|
@@ -763,7 +230,7 @@ class SendMessageCommand extends smithyClient.Command
|
|
|
763
230
|
})
|
|
764
231
|
.s("AmazonConnectParticipantServiceLambda", "SendMessage", {})
|
|
765
232
|
.n("ConnectParticipantClient", "SendMessageCommand")
|
|
766
|
-
.sc(SendMessage$)
|
|
233
|
+
.sc(schemas_0.SendMessage$)
|
|
767
234
|
.build() {
|
|
768
235
|
}
|
|
769
236
|
|
|
@@ -775,7 +242,7 @@ class StartAttachmentUploadCommand extends smithyClient.Command
|
|
|
775
242
|
})
|
|
776
243
|
.s("AmazonConnectParticipantServiceLambda", "StartAttachmentUpload", {})
|
|
777
244
|
.n("ConnectParticipantClient", "StartAttachmentUploadCommand")
|
|
778
|
-
.sc(StartAttachmentUpload$)
|
|
245
|
+
.sc(schemas_0.StartAttachmentUpload$)
|
|
779
246
|
.build() {
|
|
780
247
|
}
|
|
781
248
|
|
|
@@ -868,92 +335,42 @@ Object.defineProperty(exports, "__Client", {
|
|
|
868
335
|
enumerable: true,
|
|
869
336
|
get: function () { return smithyClient.Client; }
|
|
870
337
|
});
|
|
871
|
-
exports
|
|
872
|
-
|
|
338
|
+
Object.defineProperty(exports, "ConnectParticipantServiceException", {
|
|
339
|
+
enumerable: true,
|
|
340
|
+
get: function () { return ConnectParticipantServiceException.ConnectParticipantServiceException; }
|
|
341
|
+
});
|
|
873
342
|
exports.ArtifactStatus = ArtifactStatus;
|
|
874
|
-
exports.AttachmentItem$ = AttachmentItem$;
|
|
875
|
-
exports.Attendee$ = Attendee$;
|
|
876
|
-
exports.AudioFeatures$ = AudioFeatures$;
|
|
877
|
-
exports.CancelParticipantAuthentication$ = CancelParticipantAuthentication$;
|
|
878
343
|
exports.CancelParticipantAuthenticationCommand = CancelParticipantAuthenticationCommand;
|
|
879
|
-
exports.CancelParticipantAuthenticationRequest$ = CancelParticipantAuthenticationRequest$;
|
|
880
|
-
exports.CancelParticipantAuthenticationResponse$ = CancelParticipantAuthenticationResponse$;
|
|
881
344
|
exports.ChatItemType = ChatItemType;
|
|
882
|
-
exports.CompleteAttachmentUpload$ = CompleteAttachmentUpload$;
|
|
883
345
|
exports.CompleteAttachmentUploadCommand = CompleteAttachmentUploadCommand;
|
|
884
|
-
exports.CompleteAttachmentUploadRequest$ = CompleteAttachmentUploadRequest$;
|
|
885
|
-
exports.CompleteAttachmentUploadResponse$ = CompleteAttachmentUploadResponse$;
|
|
886
|
-
exports.ConflictException = ConflictException;
|
|
887
|
-
exports.ConflictException$ = ConflictException$;
|
|
888
346
|
exports.ConnectParticipant = ConnectParticipant;
|
|
889
347
|
exports.ConnectParticipantClient = ConnectParticipantClient;
|
|
890
|
-
exports.ConnectParticipantServiceException = ConnectParticipantServiceException;
|
|
891
|
-
exports.ConnectParticipantServiceException$ = ConnectParticipantServiceException$;
|
|
892
|
-
exports.ConnectionCredentials$ = ConnectionCredentials$;
|
|
893
348
|
exports.ConnectionType = ConnectionType;
|
|
894
|
-
exports.CreateParticipantConnection$ = CreateParticipantConnection$;
|
|
895
349
|
exports.CreateParticipantConnectionCommand = CreateParticipantConnectionCommand;
|
|
896
|
-
exports.CreateParticipantConnectionRequest$ = CreateParticipantConnectionRequest$;
|
|
897
|
-
exports.CreateParticipantConnectionResponse$ = CreateParticipantConnectionResponse$;
|
|
898
|
-
exports.DescribeView$ = DescribeView$;
|
|
899
350
|
exports.DescribeViewCommand = DescribeViewCommand;
|
|
900
|
-
exports.DescribeViewRequest$ = DescribeViewRequest$;
|
|
901
|
-
exports.DescribeViewResponse$ = DescribeViewResponse$;
|
|
902
|
-
exports.DisconnectParticipant$ = DisconnectParticipant$;
|
|
903
351
|
exports.DisconnectParticipantCommand = DisconnectParticipantCommand;
|
|
904
|
-
exports.DisconnectParticipantRequest$ = DisconnectParticipantRequest$;
|
|
905
|
-
exports.DisconnectParticipantResponse$ = DisconnectParticipantResponse$;
|
|
906
|
-
exports.GetAttachment$ = GetAttachment$;
|
|
907
352
|
exports.GetAttachmentCommand = GetAttachmentCommand;
|
|
908
|
-
exports.GetAttachmentRequest$ = GetAttachmentRequest$;
|
|
909
|
-
exports.GetAttachmentResponse$ = GetAttachmentResponse$;
|
|
910
|
-
exports.GetAuthenticationUrl$ = GetAuthenticationUrl$;
|
|
911
353
|
exports.GetAuthenticationUrlCommand = GetAuthenticationUrlCommand;
|
|
912
|
-
exports.GetAuthenticationUrlRequest$ = GetAuthenticationUrlRequest$;
|
|
913
|
-
exports.GetAuthenticationUrlResponse$ = GetAuthenticationUrlResponse$;
|
|
914
|
-
exports.GetTranscript$ = GetTranscript$;
|
|
915
354
|
exports.GetTranscriptCommand = GetTranscriptCommand;
|
|
916
|
-
exports.GetTranscriptRequest$ = GetTranscriptRequest$;
|
|
917
|
-
exports.GetTranscriptResponse$ = GetTranscriptResponse$;
|
|
918
|
-
exports.InternalServerException = InternalServerException;
|
|
919
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
920
|
-
exports.Item$ = Item$;
|
|
921
355
|
exports.MeetingFeatureStatus = MeetingFeatureStatus;
|
|
922
|
-
exports.MeetingFeaturesConfiguration$ = MeetingFeaturesConfiguration$;
|
|
923
|
-
exports.MessageMetadata$ = MessageMetadata$;
|
|
924
|
-
exports.MessageProcessingMetadata$ = MessageProcessingMetadata$;
|
|
925
356
|
exports.MessageProcessingStatus = MessageProcessingStatus;
|
|
926
357
|
exports.ParticipantRole = ParticipantRole;
|
|
927
|
-
exports.Receipt$ = Receipt$;
|
|
928
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
929
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
930
358
|
exports.ResourceType = ResourceType;
|
|
931
359
|
exports.ScanDirection = ScanDirection;
|
|
932
|
-
exports.SendEvent$ = SendEvent$;
|
|
933
360
|
exports.SendEventCommand = SendEventCommand;
|
|
934
|
-
exports.SendEventRequest$ = SendEventRequest$;
|
|
935
|
-
exports.SendEventResponse$ = SendEventResponse$;
|
|
936
|
-
exports.SendMessage$ = SendMessage$;
|
|
937
361
|
exports.SendMessageCommand = SendMessageCommand;
|
|
938
|
-
exports.SendMessageRequest$ = SendMessageRequest$;
|
|
939
|
-
exports.SendMessageResponse$ = SendMessageResponse$;
|
|
940
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
941
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
942
362
|
exports.SortKey = SortKey;
|
|
943
|
-
exports.StartAttachmentUpload$ = StartAttachmentUpload$;
|
|
944
363
|
exports.StartAttachmentUploadCommand = StartAttachmentUploadCommand;
|
|
945
|
-
exports.StartAttachmentUploadRequest$ = StartAttachmentUploadRequest$;
|
|
946
|
-
exports.StartAttachmentUploadResponse$ = StartAttachmentUploadResponse$;
|
|
947
|
-
exports.StartPosition$ = StartPosition$;
|
|
948
|
-
exports.ThrottlingException = ThrottlingException;
|
|
949
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
950
|
-
exports.UploadMetadata$ = UploadMetadata$;
|
|
951
|
-
exports.ValidationException = ValidationException;
|
|
952
|
-
exports.ValidationException$ = ValidationException$;
|
|
953
|
-
exports.View$ = View$;
|
|
954
|
-
exports.ViewContent$ = ViewContent$;
|
|
955
|
-
exports.WebRTCConnection$ = WebRTCConnection$;
|
|
956
|
-
exports.WebRTCMediaPlacement$ = WebRTCMediaPlacement$;
|
|
957
|
-
exports.WebRTCMeeting$ = WebRTCMeeting$;
|
|
958
|
-
exports.Websocket$ = Websocket$;
|
|
959
364
|
exports.paginateGetTranscript = paginateGetTranscript;
|
|
365
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
366
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
367
|
+
enumerable: true,
|
|
368
|
+
get: function () { return schemas_0[k]; }
|
|
369
|
+
});
|
|
370
|
+
});
|
|
371
|
+
Object.keys(errors).forEach(function (k) {
|
|
372
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
373
|
+
enumerable: true,
|
|
374
|
+
get: function () { return errors[k]; }
|
|
375
|
+
});
|
|
376
|
+
});
|