@aws-sdk/client-connectparticipant 3.952.0 → 3.954.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 +200 -135
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelParticipantAuthenticationCommand.js +2 -2
- package/dist-es/commands/CompleteAttachmentUploadCommand.js +2 -2
- package/dist-es/commands/CreateParticipantConnectionCommand.js +2 -2
- package/dist-es/commands/DescribeViewCommand.js +2 -2
- package/dist-es/commands/DisconnectParticipantCommand.js +2 -2
- package/dist-es/commands/GetAttachmentCommand.js +2 -2
- package/dist-es/commands/GetAuthenticationUrlCommand.js +2 -2
- package/dist-es/commands/GetTranscriptCommand.js +2 -2
- package/dist-es/commands/SendEventCommand.js +2 -2
- package/dist-es/commands/SendMessageCommand.js +2 -2
- package/dist-es/commands/StartAttachmentUploadCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +118 -111
- package/dist-types/ConnectParticipantClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +59 -71
- package/dist-types/ts3.4/ConnectParticipantClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -72
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -111,14 +111,14 @@ class ConnectParticipantClient extends smithyClient.Client {
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
|
|
114
|
+
class ConnectParticipantServiceException extends smithyClient.ServiceException {
|
|
115
115
|
constructor(options) {
|
|
116
116
|
super(options);
|
|
117
117
|
Object.setPrototypeOf(this, ConnectParticipantServiceException.prototype);
|
|
118
118
|
}
|
|
119
|
-
}
|
|
119
|
+
}
|
|
120
120
|
|
|
121
|
-
|
|
121
|
+
class AccessDeniedException extends ConnectParticipantServiceException {
|
|
122
122
|
name = "AccessDeniedException";
|
|
123
123
|
$fault = "client";
|
|
124
124
|
Message;
|
|
@@ -131,8 +131,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ConnectPartici
|
|
|
131
131
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
132
|
this.Message = opts.Message;
|
|
133
133
|
}
|
|
134
|
-
}
|
|
135
|
-
|
|
134
|
+
}
|
|
135
|
+
class InternalServerException extends ConnectParticipantServiceException {
|
|
136
136
|
name = "InternalServerException";
|
|
137
137
|
$fault = "server";
|
|
138
138
|
Message;
|
|
@@ -145,8 +145,8 @@ let InternalServerException$1 = class InternalServerException extends ConnectPar
|
|
|
145
145
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
146
146
|
this.Message = opts.Message;
|
|
147
147
|
}
|
|
148
|
-
}
|
|
149
|
-
|
|
148
|
+
}
|
|
149
|
+
class ThrottlingException extends ConnectParticipantServiceException {
|
|
150
150
|
name = "ThrottlingException";
|
|
151
151
|
$fault = "client";
|
|
152
152
|
Message;
|
|
@@ -159,8 +159,8 @@ let ThrottlingException$1 = class ThrottlingException extends ConnectParticipant
|
|
|
159
159
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
160
160
|
this.Message = opts.Message;
|
|
161
161
|
}
|
|
162
|
-
}
|
|
163
|
-
|
|
162
|
+
}
|
|
163
|
+
class ValidationException extends ConnectParticipantServiceException {
|
|
164
164
|
name = "ValidationException";
|
|
165
165
|
$fault = "client";
|
|
166
166
|
Message;
|
|
@@ -173,8 +173,8 @@ let ValidationException$1 = class ValidationException extends ConnectParticipant
|
|
|
173
173
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
174
174
|
this.Message = opts.Message;
|
|
175
175
|
}
|
|
176
|
-
}
|
|
177
|
-
|
|
176
|
+
}
|
|
177
|
+
class ConflictException extends ConnectParticipantServiceException {
|
|
178
178
|
name = "ConflictException";
|
|
179
179
|
$fault = "client";
|
|
180
180
|
Message;
|
|
@@ -187,8 +187,8 @@ let ConflictException$1 = class ConflictException extends ConnectParticipantServ
|
|
|
187
187
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
188
188
|
this.Message = opts.Message;
|
|
189
189
|
}
|
|
190
|
-
}
|
|
191
|
-
|
|
190
|
+
}
|
|
191
|
+
class ServiceQuotaExceededException extends ConnectParticipantServiceException {
|
|
192
192
|
name = "ServiceQuotaExceededException";
|
|
193
193
|
$fault = "client";
|
|
194
194
|
Message;
|
|
@@ -201,8 +201,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
201
201
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
202
202
|
this.Message = opts.Message;
|
|
203
203
|
}
|
|
204
|
-
}
|
|
205
|
-
|
|
204
|
+
}
|
|
205
|
+
class ResourceNotFoundException extends ConnectParticipantServiceException {
|
|
206
206
|
name = "ResourceNotFoundException";
|
|
207
207
|
$fault = "client";
|
|
208
208
|
Message;
|
|
@@ -219,7 +219,7 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Connec
|
|
|
219
219
|
this.ResourceId = opts.ResourceId;
|
|
220
220
|
this.ResourceType = opts.ResourceType;
|
|
221
221
|
}
|
|
222
|
-
}
|
|
222
|
+
}
|
|
223
223
|
|
|
224
224
|
const _A = "Attendee";
|
|
225
225
|
const _ADE = "AccessDeniedException";
|
|
@@ -361,12 +361,12 @@ var ViewAction = [0, n0, _VA, 8, 0];
|
|
|
361
361
|
var ViewInputSchema = [0, n0, _VIS, 8, 0];
|
|
362
362
|
var ViewName = [0, n0, _VN, 8, 0];
|
|
363
363
|
var ViewTemplate = [0, n0, _VT, 8, 0];
|
|
364
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
365
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
366
|
-
var AttachmentItem = [3, n0, _AI, 0, [_CT, _AIt, _AN, _S], [0, 0, 0, 0]];
|
|
367
|
-
var Attendee = [3, n0, _A, 0, [_AItt, _JT], [0, [() => JoinToken, 0]]];
|
|
368
|
-
var AudioFeatures = [3, n0, _AF, 0, [_ER], [0]];
|
|
369
|
-
var CancelParticipantAuthenticationRequest = [
|
|
364
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
365
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
366
|
+
var AttachmentItem$ = [3, n0, _AI, 0, [_CT, _AIt, _AN, _S], [0, 0, 0, 0]];
|
|
367
|
+
var Attendee$ = [3, n0, _A, 0, [_AItt, _JT], [0, [() => JoinToken, 0]]];
|
|
368
|
+
var AudioFeatures$ = [3, n0, _AF, 0, [_ER], [0]];
|
|
369
|
+
var CancelParticipantAuthenticationRequest$ = [
|
|
370
370
|
3,
|
|
371
371
|
n0,
|
|
372
372
|
_CPAR,
|
|
@@ -374,8 +374,8 @@ var CancelParticipantAuthenticationRequest = [
|
|
|
374
374
|
[_SI, _CTo],
|
|
375
375
|
[0, [0, { [_hH]: _XAB }]],
|
|
376
376
|
];
|
|
377
|
-
var CancelParticipantAuthenticationResponse = [3, n0, _CPARa, 0, [], []];
|
|
378
|
-
var CompleteAttachmentUploadRequest = [
|
|
377
|
+
var CancelParticipantAuthenticationResponse$ = [3, n0, _CPARa, 0, [], []];
|
|
378
|
+
var CompleteAttachmentUploadRequest$ = [
|
|
379
379
|
3,
|
|
380
380
|
n0,
|
|
381
381
|
_CAUR,
|
|
@@ -383,11 +383,11 @@ var CompleteAttachmentUploadRequest = [
|
|
|
383
383
|
[_AItta, _CTl, _CTo],
|
|
384
384
|
[64 | 0, [0, 4], [0, { [_hH]: _XAB }]],
|
|
385
385
|
];
|
|
386
|
-
var CompleteAttachmentUploadResponse = [3, n0, _CAURo, 0, [], []];
|
|
387
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
388
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
389
|
-
var ConnectionCredentials = [3, n0, _CC, 0, [_CTo, _E], [0, 0]];
|
|
390
|
-
var CreateParticipantConnectionRequest = [
|
|
386
|
+
var CompleteAttachmentUploadResponse$ = [3, n0, _CAURo, 0, [], []];
|
|
387
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
388
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
389
|
+
var ConnectionCredentials$ = [3, n0, _CC, 0, [_CTo, _E], [0, 0]];
|
|
390
|
+
var CreateParticipantConnectionRequest$ = [
|
|
391
391
|
3,
|
|
392
392
|
n0,
|
|
393
393
|
_CPCR,
|
|
@@ -395,15 +395,15 @@ var CreateParticipantConnectionRequest = [
|
|
|
395
395
|
[_T, _PT, _CP],
|
|
396
396
|
[64 | 0, [0, { [_hH]: _XAB }], 2],
|
|
397
397
|
];
|
|
398
|
-
var CreateParticipantConnectionResponse = [
|
|
398
|
+
var CreateParticipantConnectionResponse$ = [
|
|
399
399
|
3,
|
|
400
400
|
n0,
|
|
401
401
|
_CPCRr,
|
|
402
402
|
0,
|
|
403
403
|
[_W, _CC, _WRTCC],
|
|
404
|
-
[() => Websocket
|
|
404
|
+
[() => Websocket$, () => ConnectionCredentials$, [() => WebRTCConnection$, 0]],
|
|
405
405
|
];
|
|
406
|
-
var DescribeViewRequest = [
|
|
406
|
+
var DescribeViewRequest$ = [
|
|
407
407
|
3,
|
|
408
408
|
n0,
|
|
409
409
|
_DVR,
|
|
@@ -414,8 +414,8 @@ var DescribeViewRequest = [
|
|
|
414
414
|
[0, { [_hH]: _XAB }],
|
|
415
415
|
],
|
|
416
416
|
];
|
|
417
|
-
var DescribeViewResponse = [3, n0, _DVRe, 0, [_V], [[() => View
|
|
418
|
-
var DisconnectParticipantRequest = [
|
|
417
|
+
var DescribeViewResponse$ = [3, n0, _DVRe, 0, [_V], [[() => View$, 0]]];
|
|
418
|
+
var DisconnectParticipantRequest$ = [
|
|
419
419
|
3,
|
|
420
420
|
n0,
|
|
421
421
|
_DPR,
|
|
@@ -426,8 +426,8 @@ var DisconnectParticipantRequest = [
|
|
|
426
426
|
[0, { [_hH]: _XAB }],
|
|
427
427
|
],
|
|
428
428
|
];
|
|
429
|
-
var DisconnectParticipantResponse = [3, n0, _DPRi, 0, [], []];
|
|
430
|
-
var GetAttachmentRequest = [
|
|
429
|
+
var DisconnectParticipantResponse$ = [3, n0, _DPRi, 0, [], []];
|
|
430
|
+
var GetAttachmentRequest$ = [
|
|
431
431
|
3,
|
|
432
432
|
n0,
|
|
433
433
|
_GAR,
|
|
@@ -435,8 +435,8 @@ var GetAttachmentRequest = [
|
|
|
435
435
|
[_AIt, _CTo, _UEIS],
|
|
436
436
|
[0, [0, { [_hH]: _XAB }], 1],
|
|
437
437
|
];
|
|
438
|
-
var GetAttachmentResponse = [3, n0, _GARe, 0, [_U, _UE, _ASIB], [0, 0, 1]];
|
|
439
|
-
var GetAuthenticationUrlRequest = [
|
|
438
|
+
var GetAttachmentResponse$ = [3, n0, _GARe, 0, [_U, _UE, _ASIB], [0, 0, 1]];
|
|
439
|
+
var GetAuthenticationUrlRequest$ = [
|
|
440
440
|
3,
|
|
441
441
|
n0,
|
|
442
442
|
_GAUR,
|
|
@@ -444,31 +444,38 @@ var GetAuthenticationUrlRequest = [
|
|
|
444
444
|
[_SI, _RU, _CTo],
|
|
445
445
|
[0, 0, [0, { [_hH]: _XAB }]],
|
|
446
446
|
];
|
|
447
|
-
var GetAuthenticationUrlResponse = [3, n0, _GAURe, 0, [_AU], [0]];
|
|
448
|
-
var GetTranscriptRequest = [
|
|
447
|
+
var GetAuthenticationUrlResponse$ = [3, n0, _GAURe, 0, [_AU], [0]];
|
|
448
|
+
var GetTranscriptRequest$ = [
|
|
449
449
|
3,
|
|
450
450
|
n0,
|
|
451
451
|
_GTR,
|
|
452
452
|
0,
|
|
453
453
|
[_CI, _MR, _NT, _SD, _SO, _SP, _CTo],
|
|
454
|
-
[0, 1, 0, 0, 0, () => StartPosition
|
|
454
|
+
[0, 1, 0, 0, 0, () => StartPosition$, [0, { [_hH]: _XAB }]],
|
|
455
|
+
];
|
|
456
|
+
var GetTranscriptResponse$ = [
|
|
457
|
+
3,
|
|
458
|
+
n0,
|
|
459
|
+
_GTRe,
|
|
460
|
+
0,
|
|
461
|
+
[_ICI, _Tr, _NT],
|
|
462
|
+
[0, () => Transcript, 0],
|
|
455
463
|
];
|
|
456
|
-
var
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
var Item = [
|
|
464
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
465
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
466
|
+
var Item$ = [
|
|
460
467
|
3,
|
|
461
468
|
n0,
|
|
462
469
|
_I,
|
|
463
470
|
0,
|
|
464
471
|
[_AT, _C, _CT, _Id, _T, _PI, _DN, _PR, _At, _MM, _RCI, _CI],
|
|
465
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => Attachments, () => MessageMetadata
|
|
472
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => Attachments, () => MessageMetadata$, 0, 0],
|
|
466
473
|
];
|
|
467
|
-
var MeetingFeaturesConfiguration = [3, n0, _MFC, 0, [_Au], [() => AudioFeatures]];
|
|
468
|
-
var MessageMetadata = [3, n0, _MM, 0, [_MI, _R, _MPS], [0, () => Receipts, 0]];
|
|
469
|
-
var MessageProcessingMetadata = [3, n0, _MPM, 0, [_MPS], [0]];
|
|
470
|
-
var Receipt = [3, n0, _Re, 0, [_DT, _RT, _RPI], [0, 0, 0]];
|
|
471
|
-
var ResourceNotFoundException = [
|
|
474
|
+
var MeetingFeaturesConfiguration$ = [3, n0, _MFC, 0, [_Au], [() => AudioFeatures$]];
|
|
475
|
+
var MessageMetadata$ = [3, n0, _MM, 0, [_MI, _R, _MPS], [0, () => Receipts, 0]];
|
|
476
|
+
var MessageProcessingMetadata$ = [3, n0, _MPM, 0, [_MPS], [0]];
|
|
477
|
+
var Receipt$ = [3, n0, _Re, 0, [_DT, _RT, _RPI], [0, 0, 0]];
|
|
478
|
+
var ResourceNotFoundException$ = [
|
|
472
479
|
-3,
|
|
473
480
|
n0,
|
|
474
481
|
_RNFE,
|
|
@@ -476,8 +483,8 @@ var ResourceNotFoundException = [
|
|
|
476
483
|
[_M, _RI, _RTe],
|
|
477
484
|
[0, 0, 0],
|
|
478
485
|
];
|
|
479
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
480
|
-
var SendEventRequest = [
|
|
486
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
487
|
+
var SendEventRequest$ = [
|
|
481
488
|
3,
|
|
482
489
|
n0,
|
|
483
490
|
_SER,
|
|
@@ -485,8 +492,8 @@ var SendEventRequest = [
|
|
|
485
492
|
[_CT, _C, _CTl, _CTo],
|
|
486
493
|
[0, 0, [0, 4], [0, { [_hH]: _XAB }]],
|
|
487
494
|
];
|
|
488
|
-
var SendEventResponse = [3, n0, _SERe, 0, [_Id, _AT], [0, 0]];
|
|
489
|
-
var SendMessageRequest = [
|
|
495
|
+
var SendEventResponse$ = [3, n0, _SERe, 0, [_Id, _AT], [0, 0]];
|
|
496
|
+
var SendMessageRequest$ = [
|
|
490
497
|
3,
|
|
491
498
|
n0,
|
|
492
499
|
_SMR,
|
|
@@ -494,17 +501,17 @@ var SendMessageRequest = [
|
|
|
494
501
|
[_CT, _C, _CTl, _CTo],
|
|
495
502
|
[0, 0, [0, 4], [0, { [_hH]: _XAB }]],
|
|
496
503
|
];
|
|
497
|
-
var SendMessageResponse = [
|
|
504
|
+
var SendMessageResponse$ = [
|
|
498
505
|
3,
|
|
499
506
|
n0,
|
|
500
507
|
_SMRe,
|
|
501
508
|
0,
|
|
502
509
|
[_Id, _AT, _MM],
|
|
503
|
-
[0, 0, () => MessageProcessingMetadata],
|
|
510
|
+
[0, 0, () => MessageProcessingMetadata$],
|
|
504
511
|
];
|
|
505
|
-
var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
506
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
507
|
-
var StartAttachmentUploadRequest = [
|
|
512
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
513
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
514
|
+
var StartAttachmentUploadRequest$ = [
|
|
508
515
|
3,
|
|
509
516
|
n0,
|
|
510
517
|
_SAUR,
|
|
@@ -512,29 +519,29 @@ var StartAttachmentUploadRequest = [
|
|
|
512
519
|
[_CT, _ASIB, _AN, _CTl, _CTo],
|
|
513
520
|
[0, 1, 0, [0, 4], [0, { [_hH]: _XAB }]],
|
|
514
521
|
];
|
|
515
|
-
var StartAttachmentUploadResponse = [
|
|
522
|
+
var StartAttachmentUploadResponse$ = [
|
|
516
523
|
3,
|
|
517
524
|
n0,
|
|
518
525
|
_SAURt,
|
|
519
526
|
0,
|
|
520
527
|
[_AIt, _UM],
|
|
521
|
-
[0, () => UploadMetadata],
|
|
522
|
-
];
|
|
523
|
-
var StartPosition = [3, n0, _SP, 0, [_Id, _AT, _MRo], [0, 0, 1]];
|
|
524
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
525
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
526
|
-
var UploadMetadata = [3, n0, _UM, 0, [_U, _UE, _HTI], [0, 0, 128 | 0]];
|
|
527
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
528
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
529
|
-
var View = [
|
|
528
|
+
[0, () => UploadMetadata$],
|
|
529
|
+
];
|
|
530
|
+
var StartPosition$ = [3, n0, _SP, 0, [_Id, _AT, _MRo], [0, 0, 1]];
|
|
531
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
532
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
533
|
+
var UploadMetadata$ = [3, n0, _UM, 0, [_U, _UE, _HTI], [0, 0, 128 | 0]];
|
|
534
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
535
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
536
|
+
var View$ = [
|
|
530
537
|
3,
|
|
531
538
|
n0,
|
|
532
539
|
_V,
|
|
533
540
|
0,
|
|
534
541
|
[_Id, _Ar, _N, _Ve, _C],
|
|
535
|
-
[0, 0, [() => ViewName, 0], 1, [() => ViewContent
|
|
542
|
+
[0, 0, [() => ViewName, 0], 1, [() => ViewContent$, 0]],
|
|
536
543
|
];
|
|
537
|
-
var ViewContent = [
|
|
544
|
+
var ViewContent$ = [
|
|
538
545
|
3,
|
|
539
546
|
n0,
|
|
540
547
|
_VC,
|
|
@@ -546,25 +553,25 @@ var ViewContent = [
|
|
|
546
553
|
[() => ViewActions, 0],
|
|
547
554
|
],
|
|
548
555
|
];
|
|
549
|
-
var WebRTCConnection = [
|
|
556
|
+
var WebRTCConnection$ = [
|
|
550
557
|
3,
|
|
551
558
|
n0,
|
|
552
559
|
_WRTCC,
|
|
553
560
|
0,
|
|
554
561
|
[_A, _Me],
|
|
555
|
-
[[() => Attendee
|
|
562
|
+
[[() => Attendee$, 0], () => WebRTCMeeting$],
|
|
556
563
|
];
|
|
557
|
-
var WebRTCMediaPlacement = [3, n0, _WRTCMP, 0, [_AHU, _AFU, _SU, _EIU], [0, 0, 0, 0]];
|
|
558
|
-
var WebRTCMeeting = [
|
|
564
|
+
var WebRTCMediaPlacement$ = [3, n0, _WRTCMP, 0, [_AHU, _AFU, _SU, _EIU], [0, 0, 0, 0]];
|
|
565
|
+
var WebRTCMeeting$ = [
|
|
559
566
|
3,
|
|
560
567
|
n0,
|
|
561
568
|
_WRTCM,
|
|
562
569
|
0,
|
|
563
570
|
[_MP, _MF, _MIe],
|
|
564
|
-
[() => WebRTCMediaPlacement
|
|
571
|
+
[() => WebRTCMediaPlacement$, () => MeetingFeaturesConfiguration$, 0],
|
|
565
572
|
];
|
|
566
|
-
var Websocket = [3, n0, _W, 0, [_U, _CEo], [0, 0]];
|
|
567
|
-
var ConnectParticipantServiceException = [
|
|
573
|
+
var Websocket$ = [3, n0, _W, 0, [_U, _CEo], [0, 0]];
|
|
574
|
+
var ConnectParticipantServiceException$ = [
|
|
568
575
|
-3,
|
|
569
576
|
_sm,
|
|
570
577
|
"ConnectParticipantServiceException",
|
|
@@ -572,98 +579,98 @@ var ConnectParticipantServiceException = [
|
|
|
572
579
|
[],
|
|
573
580
|
[],
|
|
574
581
|
];
|
|
575
|
-
schema.TypeRegistry.for(_sm).registerError(ConnectParticipantServiceException
|
|
576
|
-
var Attachments = [1, n0, _At, 0, () => AttachmentItem];
|
|
577
|
-
var Receipts = [1, n0, _R, 0, () => Receipt];
|
|
578
|
-
var Transcript = [1, n0, _Tr, 0, () => Item];
|
|
582
|
+
schema.TypeRegistry.for(_sm).registerError(ConnectParticipantServiceException$, ConnectParticipantServiceException);
|
|
583
|
+
var Attachments = [1, n0, _At, 0, () => AttachmentItem$];
|
|
584
|
+
var Receipts = [1, n0, _R, 0, () => Receipt$];
|
|
585
|
+
var Transcript = [1, n0, _Tr, 0, () => Item$];
|
|
579
586
|
var ViewActions = [1, n0, _VAi, 0, [() => ViewAction, 0]];
|
|
580
|
-
var CancelParticipantAuthentication = [
|
|
587
|
+
var CancelParticipantAuthentication$ = [
|
|
581
588
|
9,
|
|
582
589
|
n0,
|
|
583
590
|
_CPA,
|
|
584
591
|
{ [_h]: ["POST", "/participant/cancel-authentication", 200] },
|
|
585
|
-
() => CancelParticipantAuthenticationRequest
|
|
586
|
-
() => CancelParticipantAuthenticationResponse
|
|
592
|
+
() => CancelParticipantAuthenticationRequest$,
|
|
593
|
+
() => CancelParticipantAuthenticationResponse$,
|
|
587
594
|
];
|
|
588
|
-
var CompleteAttachmentUpload = [
|
|
595
|
+
var CompleteAttachmentUpload$ = [
|
|
589
596
|
9,
|
|
590
597
|
n0,
|
|
591
598
|
_CAU,
|
|
592
599
|
{ [_h]: ["POST", "/participant/complete-attachment-upload", 200] },
|
|
593
|
-
() => CompleteAttachmentUploadRequest
|
|
594
|
-
() => CompleteAttachmentUploadResponse
|
|
600
|
+
() => CompleteAttachmentUploadRequest$,
|
|
601
|
+
() => CompleteAttachmentUploadResponse$,
|
|
595
602
|
];
|
|
596
|
-
var CreateParticipantConnection = [
|
|
603
|
+
var CreateParticipantConnection$ = [
|
|
597
604
|
9,
|
|
598
605
|
n0,
|
|
599
606
|
_CPC,
|
|
600
607
|
{ [_h]: ["POST", "/participant/connection", 200] },
|
|
601
|
-
() => CreateParticipantConnectionRequest
|
|
602
|
-
() => CreateParticipantConnectionResponse
|
|
608
|
+
() => CreateParticipantConnectionRequest$,
|
|
609
|
+
() => CreateParticipantConnectionResponse$,
|
|
603
610
|
];
|
|
604
|
-
var DescribeView = [
|
|
611
|
+
var DescribeView$ = [
|
|
605
612
|
9,
|
|
606
613
|
n0,
|
|
607
614
|
_DV,
|
|
608
615
|
{ [_h]: ["GET", "/participant/views/{ViewToken}", 200] },
|
|
609
|
-
() => DescribeViewRequest
|
|
610
|
-
() => DescribeViewResponse
|
|
616
|
+
() => DescribeViewRequest$,
|
|
617
|
+
() => DescribeViewResponse$,
|
|
611
618
|
];
|
|
612
|
-
var DisconnectParticipant = [
|
|
619
|
+
var DisconnectParticipant$ = [
|
|
613
620
|
9,
|
|
614
621
|
n0,
|
|
615
622
|
_DP,
|
|
616
623
|
{ [_h]: ["POST", "/participant/disconnect", 200] },
|
|
617
|
-
() => DisconnectParticipantRequest
|
|
618
|
-
() => DisconnectParticipantResponse
|
|
624
|
+
() => DisconnectParticipantRequest$,
|
|
625
|
+
() => DisconnectParticipantResponse$,
|
|
619
626
|
];
|
|
620
|
-
var GetAttachment = [
|
|
627
|
+
var GetAttachment$ = [
|
|
621
628
|
9,
|
|
622
629
|
n0,
|
|
623
630
|
_GA,
|
|
624
631
|
{ [_h]: ["POST", "/participant/attachment", 200] },
|
|
625
|
-
() => GetAttachmentRequest
|
|
626
|
-
() => GetAttachmentResponse
|
|
632
|
+
() => GetAttachmentRequest$,
|
|
633
|
+
() => GetAttachmentResponse$,
|
|
627
634
|
];
|
|
628
|
-
var GetAuthenticationUrl = [
|
|
635
|
+
var GetAuthenticationUrl$ = [
|
|
629
636
|
9,
|
|
630
637
|
n0,
|
|
631
638
|
_GAU,
|
|
632
639
|
{ [_h]: ["POST", "/participant/authentication-url", 200] },
|
|
633
|
-
() => GetAuthenticationUrlRequest
|
|
634
|
-
() => GetAuthenticationUrlResponse
|
|
640
|
+
() => GetAuthenticationUrlRequest$,
|
|
641
|
+
() => GetAuthenticationUrlResponse$,
|
|
635
642
|
];
|
|
636
|
-
var GetTranscript = [
|
|
643
|
+
var GetTranscript$ = [
|
|
637
644
|
9,
|
|
638
645
|
n0,
|
|
639
646
|
_GT,
|
|
640
647
|
{ [_h]: ["POST", "/participant/transcript", 200] },
|
|
641
|
-
() => GetTranscriptRequest
|
|
642
|
-
() => GetTranscriptResponse
|
|
648
|
+
() => GetTranscriptRequest$,
|
|
649
|
+
() => GetTranscriptResponse$,
|
|
643
650
|
];
|
|
644
|
-
var SendEvent = [
|
|
651
|
+
var SendEvent$ = [
|
|
645
652
|
9,
|
|
646
653
|
n0,
|
|
647
654
|
_SE,
|
|
648
655
|
{ [_h]: ["POST", "/participant/event", 200] },
|
|
649
|
-
() => SendEventRequest
|
|
650
|
-
() => SendEventResponse
|
|
656
|
+
() => SendEventRequest$,
|
|
657
|
+
() => SendEventResponse$,
|
|
651
658
|
];
|
|
652
|
-
var SendMessage = [
|
|
659
|
+
var SendMessage$ = [
|
|
653
660
|
9,
|
|
654
661
|
n0,
|
|
655
662
|
_SM,
|
|
656
663
|
{ [_h]: ["POST", "/participant/message", 200] },
|
|
657
|
-
() => SendMessageRequest
|
|
658
|
-
() => SendMessageResponse
|
|
664
|
+
() => SendMessageRequest$,
|
|
665
|
+
() => SendMessageResponse$,
|
|
659
666
|
];
|
|
660
|
-
var StartAttachmentUpload = [
|
|
667
|
+
var StartAttachmentUpload$ = [
|
|
661
668
|
9,
|
|
662
669
|
n0,
|
|
663
670
|
_SAU,
|
|
664
671
|
{ [_h]: ["POST", "/participant/start-attachment-upload", 200] },
|
|
665
|
-
() => StartAttachmentUploadRequest
|
|
666
|
-
() => StartAttachmentUploadResponse
|
|
672
|
+
() => StartAttachmentUploadRequest$,
|
|
673
|
+
() => StartAttachmentUploadResponse$,
|
|
667
674
|
];
|
|
668
675
|
|
|
669
676
|
class CancelParticipantAuthenticationCommand extends smithyClient.Command
|
|
@@ -674,7 +681,7 @@ class CancelParticipantAuthenticationCommand extends smithyClient.Command
|
|
|
674
681
|
})
|
|
675
682
|
.s("AmazonConnectParticipantServiceLambda", "CancelParticipantAuthentication", {})
|
|
676
683
|
.n("ConnectParticipantClient", "CancelParticipantAuthenticationCommand")
|
|
677
|
-
.sc(CancelParticipantAuthentication)
|
|
684
|
+
.sc(CancelParticipantAuthentication$)
|
|
678
685
|
.build() {
|
|
679
686
|
}
|
|
680
687
|
|
|
@@ -686,7 +693,7 @@ class CompleteAttachmentUploadCommand extends smithyClient.Command
|
|
|
686
693
|
})
|
|
687
694
|
.s("AmazonConnectParticipantServiceLambda", "CompleteAttachmentUpload", {})
|
|
688
695
|
.n("ConnectParticipantClient", "CompleteAttachmentUploadCommand")
|
|
689
|
-
.sc(CompleteAttachmentUpload)
|
|
696
|
+
.sc(CompleteAttachmentUpload$)
|
|
690
697
|
.build() {
|
|
691
698
|
}
|
|
692
699
|
|
|
@@ -698,7 +705,7 @@ class CreateParticipantConnectionCommand extends smithyClient.Command
|
|
|
698
705
|
})
|
|
699
706
|
.s("AmazonConnectParticipantServiceLambda", "CreateParticipantConnection", {})
|
|
700
707
|
.n("ConnectParticipantClient", "CreateParticipantConnectionCommand")
|
|
701
|
-
.sc(CreateParticipantConnection)
|
|
708
|
+
.sc(CreateParticipantConnection$)
|
|
702
709
|
.build() {
|
|
703
710
|
}
|
|
704
711
|
|
|
@@ -710,7 +717,7 @@ class DescribeViewCommand extends smithyClient.Command
|
|
|
710
717
|
})
|
|
711
718
|
.s("AmazonConnectParticipantServiceLambda", "DescribeView", {})
|
|
712
719
|
.n("ConnectParticipantClient", "DescribeViewCommand")
|
|
713
|
-
.sc(DescribeView)
|
|
720
|
+
.sc(DescribeView$)
|
|
714
721
|
.build() {
|
|
715
722
|
}
|
|
716
723
|
|
|
@@ -722,7 +729,7 @@ class DisconnectParticipantCommand extends smithyClient.Command
|
|
|
722
729
|
})
|
|
723
730
|
.s("AmazonConnectParticipantServiceLambda", "DisconnectParticipant", {})
|
|
724
731
|
.n("ConnectParticipantClient", "DisconnectParticipantCommand")
|
|
725
|
-
.sc(DisconnectParticipant)
|
|
732
|
+
.sc(DisconnectParticipant$)
|
|
726
733
|
.build() {
|
|
727
734
|
}
|
|
728
735
|
|
|
@@ -734,7 +741,7 @@ class GetAttachmentCommand extends smithyClient.Command
|
|
|
734
741
|
})
|
|
735
742
|
.s("AmazonConnectParticipantServiceLambda", "GetAttachment", {})
|
|
736
743
|
.n("ConnectParticipantClient", "GetAttachmentCommand")
|
|
737
|
-
.sc(GetAttachment)
|
|
744
|
+
.sc(GetAttachment$)
|
|
738
745
|
.build() {
|
|
739
746
|
}
|
|
740
747
|
|
|
@@ -746,7 +753,7 @@ class GetAuthenticationUrlCommand extends smithyClient.Command
|
|
|
746
753
|
})
|
|
747
754
|
.s("AmazonConnectParticipantServiceLambda", "GetAuthenticationUrl", {})
|
|
748
755
|
.n("ConnectParticipantClient", "GetAuthenticationUrlCommand")
|
|
749
|
-
.sc(GetAuthenticationUrl)
|
|
756
|
+
.sc(GetAuthenticationUrl$)
|
|
750
757
|
.build() {
|
|
751
758
|
}
|
|
752
759
|
|
|
@@ -758,7 +765,7 @@ class GetTranscriptCommand extends smithyClient.Command
|
|
|
758
765
|
})
|
|
759
766
|
.s("AmazonConnectParticipantServiceLambda", "GetTranscript", {})
|
|
760
767
|
.n("ConnectParticipantClient", "GetTranscriptCommand")
|
|
761
|
-
.sc(GetTranscript)
|
|
768
|
+
.sc(GetTranscript$)
|
|
762
769
|
.build() {
|
|
763
770
|
}
|
|
764
771
|
|
|
@@ -770,7 +777,7 @@ class SendEventCommand extends smithyClient.Command
|
|
|
770
777
|
})
|
|
771
778
|
.s("AmazonConnectParticipantServiceLambda", "SendEvent", {})
|
|
772
779
|
.n("ConnectParticipantClient", "SendEventCommand")
|
|
773
|
-
.sc(SendEvent)
|
|
780
|
+
.sc(SendEvent$)
|
|
774
781
|
.build() {
|
|
775
782
|
}
|
|
776
783
|
|
|
@@ -782,7 +789,7 @@ class SendMessageCommand extends smithyClient.Command
|
|
|
782
789
|
})
|
|
783
790
|
.s("AmazonConnectParticipantServiceLambda", "SendMessage", {})
|
|
784
791
|
.n("ConnectParticipantClient", "SendMessageCommand")
|
|
785
|
-
.sc(SendMessage)
|
|
792
|
+
.sc(SendMessage$)
|
|
786
793
|
.build() {
|
|
787
794
|
}
|
|
788
795
|
|
|
@@ -794,7 +801,7 @@ class StartAttachmentUploadCommand extends smithyClient.Command
|
|
|
794
801
|
})
|
|
795
802
|
.s("AmazonConnectParticipantServiceLambda", "StartAttachmentUpload", {})
|
|
796
803
|
.n("ConnectParticipantClient", "StartAttachmentUploadCommand")
|
|
797
|
-
.sc(StartAttachmentUpload)
|
|
804
|
+
.sc(StartAttachmentUpload$)
|
|
798
805
|
.build() {
|
|
799
806
|
}
|
|
800
807
|
|
|
@@ -884,34 +891,92 @@ Object.defineProperty(exports, "__Client", {
|
|
|
884
891
|
enumerable: true,
|
|
885
892
|
get: function () { return smithyClient.Client; }
|
|
886
893
|
});
|
|
887
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
894
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
895
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
888
896
|
exports.ArtifactStatus = ArtifactStatus;
|
|
897
|
+
exports.AttachmentItem$ = AttachmentItem$;
|
|
898
|
+
exports.Attendee$ = Attendee$;
|
|
899
|
+
exports.AudioFeatures$ = AudioFeatures$;
|
|
900
|
+
exports.CancelParticipantAuthentication$ = CancelParticipantAuthentication$;
|
|
889
901
|
exports.CancelParticipantAuthenticationCommand = CancelParticipantAuthenticationCommand;
|
|
902
|
+
exports.CancelParticipantAuthenticationRequest$ = CancelParticipantAuthenticationRequest$;
|
|
903
|
+
exports.CancelParticipantAuthenticationResponse$ = CancelParticipantAuthenticationResponse$;
|
|
890
904
|
exports.ChatItemType = ChatItemType;
|
|
905
|
+
exports.CompleteAttachmentUpload$ = CompleteAttachmentUpload$;
|
|
891
906
|
exports.CompleteAttachmentUploadCommand = CompleteAttachmentUploadCommand;
|
|
892
|
-
exports.
|
|
907
|
+
exports.CompleteAttachmentUploadRequest$ = CompleteAttachmentUploadRequest$;
|
|
908
|
+
exports.CompleteAttachmentUploadResponse$ = CompleteAttachmentUploadResponse$;
|
|
909
|
+
exports.ConflictException = ConflictException;
|
|
910
|
+
exports.ConflictException$ = ConflictException$;
|
|
893
911
|
exports.ConnectParticipant = ConnectParticipant;
|
|
894
912
|
exports.ConnectParticipantClient = ConnectParticipantClient;
|
|
895
|
-
exports.ConnectParticipantServiceException = ConnectParticipantServiceException
|
|
913
|
+
exports.ConnectParticipantServiceException = ConnectParticipantServiceException;
|
|
914
|
+
exports.ConnectParticipantServiceException$ = ConnectParticipantServiceException$;
|
|
915
|
+
exports.ConnectionCredentials$ = ConnectionCredentials$;
|
|
896
916
|
exports.ConnectionType = ConnectionType;
|
|
917
|
+
exports.CreateParticipantConnection$ = CreateParticipantConnection$;
|
|
897
918
|
exports.CreateParticipantConnectionCommand = CreateParticipantConnectionCommand;
|
|
919
|
+
exports.CreateParticipantConnectionRequest$ = CreateParticipantConnectionRequest$;
|
|
920
|
+
exports.CreateParticipantConnectionResponse$ = CreateParticipantConnectionResponse$;
|
|
921
|
+
exports.DescribeView$ = DescribeView$;
|
|
898
922
|
exports.DescribeViewCommand = DescribeViewCommand;
|
|
923
|
+
exports.DescribeViewRequest$ = DescribeViewRequest$;
|
|
924
|
+
exports.DescribeViewResponse$ = DescribeViewResponse$;
|
|
925
|
+
exports.DisconnectParticipant$ = DisconnectParticipant$;
|
|
899
926
|
exports.DisconnectParticipantCommand = DisconnectParticipantCommand;
|
|
927
|
+
exports.DisconnectParticipantRequest$ = DisconnectParticipantRequest$;
|
|
928
|
+
exports.DisconnectParticipantResponse$ = DisconnectParticipantResponse$;
|
|
929
|
+
exports.GetAttachment$ = GetAttachment$;
|
|
900
930
|
exports.GetAttachmentCommand = GetAttachmentCommand;
|
|
931
|
+
exports.GetAttachmentRequest$ = GetAttachmentRequest$;
|
|
932
|
+
exports.GetAttachmentResponse$ = GetAttachmentResponse$;
|
|
933
|
+
exports.GetAuthenticationUrl$ = GetAuthenticationUrl$;
|
|
901
934
|
exports.GetAuthenticationUrlCommand = GetAuthenticationUrlCommand;
|
|
935
|
+
exports.GetAuthenticationUrlRequest$ = GetAuthenticationUrlRequest$;
|
|
936
|
+
exports.GetAuthenticationUrlResponse$ = GetAuthenticationUrlResponse$;
|
|
937
|
+
exports.GetTranscript$ = GetTranscript$;
|
|
902
938
|
exports.GetTranscriptCommand = GetTranscriptCommand;
|
|
903
|
-
exports.
|
|
939
|
+
exports.GetTranscriptRequest$ = GetTranscriptRequest$;
|
|
940
|
+
exports.GetTranscriptResponse$ = GetTranscriptResponse$;
|
|
941
|
+
exports.InternalServerException = InternalServerException;
|
|
942
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
943
|
+
exports.Item$ = Item$;
|
|
904
944
|
exports.MeetingFeatureStatus = MeetingFeatureStatus;
|
|
945
|
+
exports.MeetingFeaturesConfiguration$ = MeetingFeaturesConfiguration$;
|
|
946
|
+
exports.MessageMetadata$ = MessageMetadata$;
|
|
947
|
+
exports.MessageProcessingMetadata$ = MessageProcessingMetadata$;
|
|
905
948
|
exports.MessageProcessingStatus = MessageProcessingStatus;
|
|
906
949
|
exports.ParticipantRole = ParticipantRole;
|
|
907
|
-
exports.
|
|
950
|
+
exports.Receipt$ = Receipt$;
|
|
951
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
952
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
908
953
|
exports.ResourceType = ResourceType;
|
|
909
954
|
exports.ScanDirection = ScanDirection;
|
|
955
|
+
exports.SendEvent$ = SendEvent$;
|
|
910
956
|
exports.SendEventCommand = SendEventCommand;
|
|
957
|
+
exports.SendEventRequest$ = SendEventRequest$;
|
|
958
|
+
exports.SendEventResponse$ = SendEventResponse$;
|
|
959
|
+
exports.SendMessage$ = SendMessage$;
|
|
911
960
|
exports.SendMessageCommand = SendMessageCommand;
|
|
912
|
-
exports.
|
|
961
|
+
exports.SendMessageRequest$ = SendMessageRequest$;
|
|
962
|
+
exports.SendMessageResponse$ = SendMessageResponse$;
|
|
963
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
964
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
913
965
|
exports.SortKey = SortKey;
|
|
966
|
+
exports.StartAttachmentUpload$ = StartAttachmentUpload$;
|
|
914
967
|
exports.StartAttachmentUploadCommand = StartAttachmentUploadCommand;
|
|
915
|
-
exports.
|
|
916
|
-
exports.
|
|
968
|
+
exports.StartAttachmentUploadRequest$ = StartAttachmentUploadRequest$;
|
|
969
|
+
exports.StartAttachmentUploadResponse$ = StartAttachmentUploadResponse$;
|
|
970
|
+
exports.StartPosition$ = StartPosition$;
|
|
971
|
+
exports.ThrottlingException = ThrottlingException;
|
|
972
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
973
|
+
exports.UploadMetadata$ = UploadMetadata$;
|
|
974
|
+
exports.ValidationException = ValidationException;
|
|
975
|
+
exports.ValidationException$ = ValidationException$;
|
|
976
|
+
exports.View$ = View$;
|
|
977
|
+
exports.ViewContent$ = ViewContent$;
|
|
978
|
+
exports.WebRTCConnection$ = WebRTCConnection$;
|
|
979
|
+
exports.WebRTCMediaPlacement$ = WebRTCMediaPlacement$;
|
|
980
|
+
exports.WebRTCMeeting$ = WebRTCMeeting$;
|
|
981
|
+
exports.Websocket$ = Websocket$;
|
|
917
982
|
exports.paginateGetTranscript = paginateGetTranscript;
|