@aws-sdk/client-connectparticipant 3.948.0 → 3.953.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
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.connectparticipant",
|
|
32
|
+
version: "2018-09-07",
|
|
33
|
+
serviceTarget: "AmazonConnectParticipantServiceLambda",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "ConnectParticipant",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelParticipantAuthentication } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelParticipantAuthentication$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelParticipantAuthenticationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelParticipantAuthenticationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "CancelParticipantAuthentication", {})
|
|
13
13
|
.n("ConnectParticipantClient", "CancelParticipantAuthenticationCommand")
|
|
14
|
-
.sc(CancelParticipantAuthentication)
|
|
14
|
+
.sc(CancelParticipantAuthentication$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CompleteAttachmentUpload } from "../schemas/schemas_0";
|
|
4
|
+
import { CompleteAttachmentUpload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CompleteAttachmentUploadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CompleteAttachmentUploadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "CompleteAttachmentUpload", {})
|
|
13
13
|
.n("ConnectParticipantClient", "CompleteAttachmentUploadCommand")
|
|
14
|
-
.sc(CompleteAttachmentUpload)
|
|
14
|
+
.sc(CompleteAttachmentUpload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateParticipantConnection } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateParticipantConnection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateParticipantConnectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateParticipantConnectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "CreateParticipantConnection", {})
|
|
13
13
|
.n("ConnectParticipantClient", "CreateParticipantConnectionCommand")
|
|
14
|
-
.sc(CreateParticipantConnection)
|
|
14
|
+
.sc(CreateParticipantConnection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeView } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeView$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeViewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeViewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "DescribeView", {})
|
|
13
13
|
.n("ConnectParticipantClient", "DescribeViewCommand")
|
|
14
|
-
.sc(DescribeView)
|
|
14
|
+
.sc(DescribeView$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisconnectParticipant } from "../schemas/schemas_0";
|
|
4
|
+
import { DisconnectParticipant$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisconnectParticipantCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisconnectParticipantCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "DisconnectParticipant", {})
|
|
13
13
|
.n("ConnectParticipantClient", "DisconnectParticipantCommand")
|
|
14
|
-
.sc(DisconnectParticipant)
|
|
14
|
+
.sc(DisconnectParticipant$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAttachment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAttachment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAttachmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAttachmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "GetAttachment", {})
|
|
13
13
|
.n("ConnectParticipantClient", "GetAttachmentCommand")
|
|
14
|
-
.sc(GetAttachment)
|
|
14
|
+
.sc(GetAttachment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAuthenticationUrl } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAuthenticationUrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAuthenticationUrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAuthenticationUrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "GetAuthenticationUrl", {})
|
|
13
13
|
.n("ConnectParticipantClient", "GetAuthenticationUrlCommand")
|
|
14
|
-
.sc(GetAuthenticationUrl)
|
|
14
|
+
.sc(GetAuthenticationUrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTranscript } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTranscript$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTranscriptCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTranscriptCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "GetTranscript", {})
|
|
13
13
|
.n("ConnectParticipantClient", "GetTranscriptCommand")
|
|
14
|
-
.sc(GetTranscript)
|
|
14
|
+
.sc(GetTranscript$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SendEvent } from "../schemas/schemas_0";
|
|
4
|
+
import { SendEvent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SendEventCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SendEventCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "SendEvent", {})
|
|
13
13
|
.n("ConnectParticipantClient", "SendEventCommand")
|
|
14
|
-
.sc(SendEvent)
|
|
14
|
+
.sc(SendEvent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SendMessage } from "../schemas/schemas_0";
|
|
4
|
+
import { SendMessage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SendMessageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SendMessageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "SendMessage", {})
|
|
13
13
|
.n("ConnectParticipantClient", "SendMessageCommand")
|
|
14
|
-
.sc(SendMessage)
|
|
14
|
+
.sc(SendMessage$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartAttachmentUpload } from "../schemas/schemas_0";
|
|
4
|
+
import { StartAttachmentUpload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartAttachmentUploadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartAttachmentUploadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonConnectParticipantServiceLambda", "StartAttachmentUpload", {})
|
|
13
13
|
.n("ConnectParticipantClient", "StartAttachmentUploadCommand")
|
|
14
|
-
.sc(StartAttachmentUpload)
|
|
14
|
+
.sc(StartAttachmentUpload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.connectparticipant",
|
|
29
|
+
version: "2018-09-07",
|
|
30
|
+
serviceTarget: "AmazonConnectParticipantServiceLambda",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "ConnectParticipant",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -134,19 +134,19 @@ const _s = "server";
|
|
|
134
134
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.connectparticipant";
|
|
135
135
|
const n0 = "com.amazonaws.connectparticipant";
|
|
136
136
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
137
|
-
import { ConnectParticipantServiceException
|
|
138
|
-
import { AccessDeniedException
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
145
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
146
|
-
export var AttachmentItem = [3, n0, _AI, 0, [_CT, _AIt, _AN, _S], [0, 0, 0, 0]];
|
|
147
|
-
export var Attendee = [3, n0, _A, 0, [_AItt, _JT], [0, [() => JoinToken, 0]]];
|
|
148
|
-
export var AudioFeatures = [3, n0, _AF, 0, [_ER], [0]];
|
|
149
|
-
export var CancelParticipantAuthenticationRequest = [
|
|
137
|
+
import { ConnectParticipantServiceException } from "../models/ConnectParticipantServiceException";
|
|
138
|
+
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
139
|
+
var JoinToken = [0, n0, _JT, 8, 0];
|
|
140
|
+
var ViewAction = [0, n0, _VA, 8, 0];
|
|
141
|
+
var ViewInputSchema = [0, n0, _VIS, 8, 0];
|
|
142
|
+
var ViewName = [0, n0, _VN, 8, 0];
|
|
143
|
+
var ViewTemplate = [0, n0, _VT, 8, 0];
|
|
144
|
+
export var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
|
|
145
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
146
|
+
export var AttachmentItem$ = [3, n0, _AI, 0, [_CT, _AIt, _AN, _S], [0, 0, 0, 0]];
|
|
147
|
+
export var Attendee$ = [3, n0, _A, 0, [_AItt, _JT], [0, [() => JoinToken, 0]]];
|
|
148
|
+
export var AudioFeatures$ = [3, n0, _AF, 0, [_ER], [0]];
|
|
149
|
+
export var CancelParticipantAuthenticationRequest$ = [
|
|
150
150
|
3,
|
|
151
151
|
n0,
|
|
152
152
|
_CPAR,
|
|
@@ -154,8 +154,8 @@ export var CancelParticipantAuthenticationRequest = [
|
|
|
154
154
|
[_SI, _CTo],
|
|
155
155
|
[0, [0, { [_hH]: _XAB }]],
|
|
156
156
|
];
|
|
157
|
-
export var CancelParticipantAuthenticationResponse = [3, n0, _CPARa, 0, [], []];
|
|
158
|
-
export var CompleteAttachmentUploadRequest = [
|
|
157
|
+
export var CancelParticipantAuthenticationResponse$ = [3, n0, _CPARa, 0, [], []];
|
|
158
|
+
export var CompleteAttachmentUploadRequest$ = [
|
|
159
159
|
3,
|
|
160
160
|
n0,
|
|
161
161
|
_CAUR,
|
|
@@ -163,11 +163,11 @@ export var CompleteAttachmentUploadRequest = [
|
|
|
163
163
|
[_AItta, _CTl, _CTo],
|
|
164
164
|
[64 | 0, [0, 4], [0, { [_hH]: _XAB }]],
|
|
165
165
|
];
|
|
166
|
-
export var CompleteAttachmentUploadResponse = [3, n0, _CAURo, 0, [], []];
|
|
167
|
-
export var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
168
|
-
TypeRegistry.for(n0).registerError(ConflictException
|
|
169
|
-
export var ConnectionCredentials = [3, n0, _CC, 0, [_CTo, _E], [0, 0]];
|
|
170
|
-
export var CreateParticipantConnectionRequest = [
|
|
166
|
+
export var CompleteAttachmentUploadResponse$ = [3, n0, _CAURo, 0, [], []];
|
|
167
|
+
export var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_M], [0]];
|
|
168
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
169
|
+
export var ConnectionCredentials$ = [3, n0, _CC, 0, [_CTo, _E], [0, 0]];
|
|
170
|
+
export var CreateParticipantConnectionRequest$ = [
|
|
171
171
|
3,
|
|
172
172
|
n0,
|
|
173
173
|
_CPCR,
|
|
@@ -175,15 +175,15 @@ export var CreateParticipantConnectionRequest = [
|
|
|
175
175
|
[_T, _PT, _CP],
|
|
176
176
|
[64 | 0, [0, { [_hH]: _XAB }], 2],
|
|
177
177
|
];
|
|
178
|
-
export var CreateParticipantConnectionResponse = [
|
|
178
|
+
export var CreateParticipantConnectionResponse$ = [
|
|
179
179
|
3,
|
|
180
180
|
n0,
|
|
181
181
|
_CPCRr,
|
|
182
182
|
0,
|
|
183
183
|
[_W, _CC, _WRTCC],
|
|
184
|
-
[() => Websocket
|
|
184
|
+
[() => Websocket$, () => ConnectionCredentials$, [() => WebRTCConnection$, 0]],
|
|
185
185
|
];
|
|
186
|
-
export var DescribeViewRequest = [
|
|
186
|
+
export var DescribeViewRequest$ = [
|
|
187
187
|
3,
|
|
188
188
|
n0,
|
|
189
189
|
_DVR,
|
|
@@ -194,8 +194,8 @@ export var DescribeViewRequest = [
|
|
|
194
194
|
[0, { [_hH]: _XAB }],
|
|
195
195
|
],
|
|
196
196
|
];
|
|
197
|
-
export var DescribeViewResponse = [3, n0, _DVRe, 0, [_V], [[() => View
|
|
198
|
-
export var DisconnectParticipantRequest = [
|
|
197
|
+
export var DescribeViewResponse$ = [3, n0, _DVRe, 0, [_V], [[() => View$, 0]]];
|
|
198
|
+
export var DisconnectParticipantRequest$ = [
|
|
199
199
|
3,
|
|
200
200
|
n0,
|
|
201
201
|
_DPR,
|
|
@@ -206,8 +206,8 @@ export var DisconnectParticipantRequest = [
|
|
|
206
206
|
[0, { [_hH]: _XAB }],
|
|
207
207
|
],
|
|
208
208
|
];
|
|
209
|
-
export var DisconnectParticipantResponse = [3, n0, _DPRi, 0, [], []];
|
|
210
|
-
export var GetAttachmentRequest = [
|
|
209
|
+
export var DisconnectParticipantResponse$ = [3, n0, _DPRi, 0, [], []];
|
|
210
|
+
export var GetAttachmentRequest$ = [
|
|
211
211
|
3,
|
|
212
212
|
n0,
|
|
213
213
|
_GAR,
|
|
@@ -215,8 +215,8 @@ export var GetAttachmentRequest = [
|
|
|
215
215
|
[_AIt, _CTo, _UEIS],
|
|
216
216
|
[0, [0, { [_hH]: _XAB }], 1],
|
|
217
217
|
];
|
|
218
|
-
export var GetAttachmentResponse = [3, n0, _GARe, 0, [_U, _UE, _ASIB], [0, 0, 1]];
|
|
219
|
-
export var GetAuthenticationUrlRequest = [
|
|
218
|
+
export var GetAttachmentResponse$ = [3, n0, _GARe, 0, [_U, _UE, _ASIB], [0, 0, 1]];
|
|
219
|
+
export var GetAuthenticationUrlRequest$ = [
|
|
220
220
|
3,
|
|
221
221
|
n0,
|
|
222
222
|
_GAUR,
|
|
@@ -224,31 +224,38 @@ export var GetAuthenticationUrlRequest = [
|
|
|
224
224
|
[_SI, _RU, _CTo],
|
|
225
225
|
[0, 0, [0, { [_hH]: _XAB }]],
|
|
226
226
|
];
|
|
227
|
-
export var GetAuthenticationUrlResponse = [3, n0, _GAURe, 0, [_AU], [0]];
|
|
228
|
-
export var GetTranscriptRequest = [
|
|
227
|
+
export var GetAuthenticationUrlResponse$ = [3, n0, _GAURe, 0, [_AU], [0]];
|
|
228
|
+
export var GetTranscriptRequest$ = [
|
|
229
229
|
3,
|
|
230
230
|
n0,
|
|
231
231
|
_GTR,
|
|
232
232
|
0,
|
|
233
233
|
[_CI, _MR, _NT, _SD, _SO, _SP, _CTo],
|
|
234
|
-
[0, 1, 0, 0, 0, () => StartPosition
|
|
234
|
+
[0, 1, 0, 0, 0, () => StartPosition$, [0, { [_hH]: _XAB }]],
|
|
235
235
|
];
|
|
236
|
-
export var GetTranscriptResponse = [
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
236
|
+
export var GetTranscriptResponse$ = [
|
|
237
|
+
3,
|
|
238
|
+
n0,
|
|
239
|
+
_GTRe,
|
|
240
|
+
0,
|
|
241
|
+
[_ICI, _Tr, _NT],
|
|
242
|
+
[0, () => Transcript, 0],
|
|
243
|
+
];
|
|
244
|
+
export var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
|
|
245
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
246
|
+
export var Item$ = [
|
|
240
247
|
3,
|
|
241
248
|
n0,
|
|
242
249
|
_I,
|
|
243
250
|
0,
|
|
244
251
|
[_AT, _C, _CT, _Id, _T, _PI, _DN, _PR, _At, _MM, _RCI, _CI],
|
|
245
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => Attachments, () => MessageMetadata
|
|
252
|
+
[0, 0, 0, 0, 0, 0, 0, 0, () => Attachments, () => MessageMetadata$, 0, 0],
|
|
246
253
|
];
|
|
247
|
-
export var MeetingFeaturesConfiguration = [3, n0, _MFC, 0, [_Au], [() => AudioFeatures]];
|
|
248
|
-
export var MessageMetadata = [3, n0, _MM, 0, [_MI, _R, _MPS], [0, () => Receipts, 0]];
|
|
249
|
-
export var MessageProcessingMetadata = [3, n0, _MPM, 0, [_MPS], [0]];
|
|
250
|
-
export var Receipt = [3, n0, _Re, 0, [_DT, _RT, _RPI], [0, 0, 0]];
|
|
251
|
-
export var ResourceNotFoundException = [
|
|
254
|
+
export var MeetingFeaturesConfiguration$ = [3, n0, _MFC, 0, [_Au], [() => AudioFeatures$]];
|
|
255
|
+
export var MessageMetadata$ = [3, n0, _MM, 0, [_MI, _R, _MPS], [0, () => Receipts, 0]];
|
|
256
|
+
export var MessageProcessingMetadata$ = [3, n0, _MPM, 0, [_MPS], [0]];
|
|
257
|
+
export var Receipt$ = [3, n0, _Re, 0, [_DT, _RT, _RPI], [0, 0, 0]];
|
|
258
|
+
export var ResourceNotFoundException$ = [
|
|
252
259
|
-3,
|
|
253
260
|
n0,
|
|
254
261
|
_RNFE,
|
|
@@ -256,8 +263,8 @@ export var ResourceNotFoundException = [
|
|
|
256
263
|
[_M, _RI, _RTe],
|
|
257
264
|
[0, 0, 0],
|
|
258
265
|
];
|
|
259
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
260
|
-
export var SendEventRequest = [
|
|
266
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
267
|
+
export var SendEventRequest$ = [
|
|
261
268
|
3,
|
|
262
269
|
n0,
|
|
263
270
|
_SER,
|
|
@@ -265,8 +272,8 @@ export var SendEventRequest = [
|
|
|
265
272
|
[_CT, _C, _CTl, _CTo],
|
|
266
273
|
[0, 0, [0, 4], [0, { [_hH]: _XAB }]],
|
|
267
274
|
];
|
|
268
|
-
export var SendEventResponse = [3, n0, _SERe, 0, [_Id, _AT], [0, 0]];
|
|
269
|
-
export var SendMessageRequest = [
|
|
275
|
+
export var SendEventResponse$ = [3, n0, _SERe, 0, [_Id, _AT], [0, 0]];
|
|
276
|
+
export var SendMessageRequest$ = [
|
|
270
277
|
3,
|
|
271
278
|
n0,
|
|
272
279
|
_SMR,
|
|
@@ -274,17 +281,17 @@ export var SendMessageRequest = [
|
|
|
274
281
|
[_CT, _C, _CTl, _CTo],
|
|
275
282
|
[0, 0, [0, 4], [0, { [_hH]: _XAB }]],
|
|
276
283
|
];
|
|
277
|
-
export var SendMessageResponse = [
|
|
284
|
+
export var SendMessageResponse$ = [
|
|
278
285
|
3,
|
|
279
286
|
n0,
|
|
280
287
|
_SMRe,
|
|
281
288
|
0,
|
|
282
289
|
[_Id, _AT, _MM],
|
|
283
|
-
[0, 0, () => MessageProcessingMetadata],
|
|
290
|
+
[0, 0, () => MessageProcessingMetadata$],
|
|
284
291
|
];
|
|
285
|
-
export var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
286
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
287
|
-
export var StartAttachmentUploadRequest = [
|
|
292
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_M], [0]];
|
|
293
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
294
|
+
export var StartAttachmentUploadRequest$ = [
|
|
288
295
|
3,
|
|
289
296
|
n0,
|
|
290
297
|
_SAUR,
|
|
@@ -292,29 +299,29 @@ export var StartAttachmentUploadRequest = [
|
|
|
292
299
|
[_CT, _ASIB, _AN, _CTl, _CTo],
|
|
293
300
|
[0, 1, 0, [0, 4], [0, { [_hH]: _XAB }]],
|
|
294
301
|
];
|
|
295
|
-
export var StartAttachmentUploadResponse = [
|
|
302
|
+
export var StartAttachmentUploadResponse$ = [
|
|
296
303
|
3,
|
|
297
304
|
n0,
|
|
298
305
|
_SAURt,
|
|
299
306
|
0,
|
|
300
307
|
[_AIt, _UM],
|
|
301
|
-
[0, () => UploadMetadata],
|
|
302
|
-
];
|
|
303
|
-
export var StartPosition = [3, n0, _SP, 0, [_Id, _AT, _MRo], [0, 0, 1]];
|
|
304
|
-
export var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
305
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
306
|
-
export var UploadMetadata = [3, n0, _UM, 0, [_U, _UE, _HTI], [0, 0, 128 | 0]];
|
|
307
|
-
export var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
308
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
309
|
-
export var View = [
|
|
308
|
+
[0, () => UploadMetadata$],
|
|
309
|
+
];
|
|
310
|
+
export var StartPosition$ = [3, n0, _SP, 0, [_Id, _AT, _MRo], [0, 0, 1]];
|
|
311
|
+
export var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
312
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
313
|
+
export var UploadMetadata$ = [3, n0, _UM, 0, [_U, _UE, _HTI], [0, 0, 128 | 0]];
|
|
314
|
+
export var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
315
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
316
|
+
export var View$ = [
|
|
310
317
|
3,
|
|
311
318
|
n0,
|
|
312
319
|
_V,
|
|
313
320
|
0,
|
|
314
321
|
[_Id, _Ar, _N, _Ve, _C],
|
|
315
|
-
[0, 0, [() => ViewName, 0], 1, [() => ViewContent
|
|
322
|
+
[0, 0, [() => ViewName, 0], 1, [() => ViewContent$, 0]],
|
|
316
323
|
];
|
|
317
|
-
export var ViewContent = [
|
|
324
|
+
export var ViewContent$ = [
|
|
318
325
|
3,
|
|
319
326
|
n0,
|
|
320
327
|
_VC,
|
|
@@ -326,25 +333,25 @@ export var ViewContent = [
|
|
|
326
333
|
[() => ViewActions, 0],
|
|
327
334
|
],
|
|
328
335
|
];
|
|
329
|
-
export var WebRTCConnection = [
|
|
336
|
+
export var WebRTCConnection$ = [
|
|
330
337
|
3,
|
|
331
338
|
n0,
|
|
332
339
|
_WRTCC,
|
|
333
340
|
0,
|
|
334
341
|
[_A, _Me],
|
|
335
|
-
[[() => Attendee
|
|
342
|
+
[[() => Attendee$, 0], () => WebRTCMeeting$],
|
|
336
343
|
];
|
|
337
|
-
export var WebRTCMediaPlacement = [3, n0, _WRTCMP, 0, [_AHU, _AFU, _SU, _EIU], [0, 0, 0, 0]];
|
|
338
|
-
export var WebRTCMeeting = [
|
|
344
|
+
export var WebRTCMediaPlacement$ = [3, n0, _WRTCMP, 0, [_AHU, _AFU, _SU, _EIU], [0, 0, 0, 0]];
|
|
345
|
+
export var WebRTCMeeting$ = [
|
|
339
346
|
3,
|
|
340
347
|
n0,
|
|
341
348
|
_WRTCM,
|
|
342
349
|
0,
|
|
343
350
|
[_MP, _MF, _MIe],
|
|
344
|
-
[() => WebRTCMediaPlacement
|
|
351
|
+
[() => WebRTCMediaPlacement$, () => MeetingFeaturesConfiguration$, 0],
|
|
345
352
|
];
|
|
346
|
-
export var Websocket = [3, n0, _W, 0, [_U, _CEo], [0, 0]];
|
|
347
|
-
export var ConnectParticipantServiceException = [
|
|
353
|
+
export var Websocket$ = [3, n0, _W, 0, [_U, _CEo], [0, 0]];
|
|
354
|
+
export var ConnectParticipantServiceException$ = [
|
|
348
355
|
-3,
|
|
349
356
|
_sm,
|
|
350
357
|
"ConnectParticipantServiceException",
|
|
@@ -352,99 +359,99 @@ export var ConnectParticipantServiceException = [
|
|
|
352
359
|
[],
|
|
353
360
|
[],
|
|
354
361
|
];
|
|
355
|
-
TypeRegistry.for(_sm).registerError(ConnectParticipantServiceException
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
export var CancelParticipantAuthentication = [
|
|
362
|
+
TypeRegistry.for(_sm).registerError(ConnectParticipantServiceException$, ConnectParticipantServiceException);
|
|
363
|
+
var AttachmentIdList = 64 | 0;
|
|
364
|
+
var Attachments = [1, n0, _At, 0, () => AttachmentItem$];
|
|
365
|
+
var ConnectionTypeList = 64 | 0;
|
|
366
|
+
var Receipts = [1, n0, _R, 0, () => Receipt$];
|
|
367
|
+
var Transcript = [1, n0, _Tr, 0, () => Item$];
|
|
368
|
+
var ViewActions = [1, n0, _VAi, 0, [() => ViewAction, 0]];
|
|
369
|
+
var UploadMetadataSignedHeaders = 128 | 0;
|
|
370
|
+
export var CancelParticipantAuthentication$ = [
|
|
364
371
|
9,
|
|
365
372
|
n0,
|
|
366
373
|
_CPA,
|
|
367
374
|
{ [_h]: ["POST", "/participant/cancel-authentication", 200] },
|
|
368
|
-
() => CancelParticipantAuthenticationRequest
|
|
369
|
-
() => CancelParticipantAuthenticationResponse
|
|
375
|
+
() => CancelParticipantAuthenticationRequest$,
|
|
376
|
+
() => CancelParticipantAuthenticationResponse$,
|
|
370
377
|
];
|
|
371
|
-
export var CompleteAttachmentUpload = [
|
|
378
|
+
export var CompleteAttachmentUpload$ = [
|
|
372
379
|
9,
|
|
373
380
|
n0,
|
|
374
381
|
_CAU,
|
|
375
382
|
{ [_h]: ["POST", "/participant/complete-attachment-upload", 200] },
|
|
376
|
-
() => CompleteAttachmentUploadRequest
|
|
377
|
-
() => CompleteAttachmentUploadResponse
|
|
383
|
+
() => CompleteAttachmentUploadRequest$,
|
|
384
|
+
() => CompleteAttachmentUploadResponse$,
|
|
378
385
|
];
|
|
379
|
-
export var CreateParticipantConnection = [
|
|
386
|
+
export var CreateParticipantConnection$ = [
|
|
380
387
|
9,
|
|
381
388
|
n0,
|
|
382
389
|
_CPC,
|
|
383
390
|
{ [_h]: ["POST", "/participant/connection", 200] },
|
|
384
|
-
() => CreateParticipantConnectionRequest
|
|
385
|
-
() => CreateParticipantConnectionResponse
|
|
391
|
+
() => CreateParticipantConnectionRequest$,
|
|
392
|
+
() => CreateParticipantConnectionResponse$,
|
|
386
393
|
];
|
|
387
|
-
export var DescribeView = [
|
|
394
|
+
export var DescribeView$ = [
|
|
388
395
|
9,
|
|
389
396
|
n0,
|
|
390
397
|
_DV,
|
|
391
398
|
{ [_h]: ["GET", "/participant/views/{ViewToken}", 200] },
|
|
392
|
-
() => DescribeViewRequest
|
|
393
|
-
() => DescribeViewResponse
|
|
399
|
+
() => DescribeViewRequest$,
|
|
400
|
+
() => DescribeViewResponse$,
|
|
394
401
|
];
|
|
395
|
-
export var DisconnectParticipant = [
|
|
402
|
+
export var DisconnectParticipant$ = [
|
|
396
403
|
9,
|
|
397
404
|
n0,
|
|
398
405
|
_DP,
|
|
399
406
|
{ [_h]: ["POST", "/participant/disconnect", 200] },
|
|
400
|
-
() => DisconnectParticipantRequest
|
|
401
|
-
() => DisconnectParticipantResponse
|
|
407
|
+
() => DisconnectParticipantRequest$,
|
|
408
|
+
() => DisconnectParticipantResponse$,
|
|
402
409
|
];
|
|
403
|
-
export var GetAttachment = [
|
|
410
|
+
export var GetAttachment$ = [
|
|
404
411
|
9,
|
|
405
412
|
n0,
|
|
406
413
|
_GA,
|
|
407
414
|
{ [_h]: ["POST", "/participant/attachment", 200] },
|
|
408
|
-
() => GetAttachmentRequest
|
|
409
|
-
() => GetAttachmentResponse
|
|
415
|
+
() => GetAttachmentRequest$,
|
|
416
|
+
() => GetAttachmentResponse$,
|
|
410
417
|
];
|
|
411
|
-
export var GetAuthenticationUrl = [
|
|
418
|
+
export var GetAuthenticationUrl$ = [
|
|
412
419
|
9,
|
|
413
420
|
n0,
|
|
414
421
|
_GAU,
|
|
415
422
|
{ [_h]: ["POST", "/participant/authentication-url", 200] },
|
|
416
|
-
() => GetAuthenticationUrlRequest
|
|
417
|
-
() => GetAuthenticationUrlResponse
|
|
423
|
+
() => GetAuthenticationUrlRequest$,
|
|
424
|
+
() => GetAuthenticationUrlResponse$,
|
|
418
425
|
];
|
|
419
|
-
export var GetTranscript = [
|
|
426
|
+
export var GetTranscript$ = [
|
|
420
427
|
9,
|
|
421
428
|
n0,
|
|
422
429
|
_GT,
|
|
423
430
|
{ [_h]: ["POST", "/participant/transcript", 200] },
|
|
424
|
-
() => GetTranscriptRequest
|
|
425
|
-
() => GetTranscriptResponse
|
|
431
|
+
() => GetTranscriptRequest$,
|
|
432
|
+
() => GetTranscriptResponse$,
|
|
426
433
|
];
|
|
427
|
-
export var SendEvent = [
|
|
434
|
+
export var SendEvent$ = [
|
|
428
435
|
9,
|
|
429
436
|
n0,
|
|
430
437
|
_SE,
|
|
431
438
|
{ [_h]: ["POST", "/participant/event", 200] },
|
|
432
|
-
() => SendEventRequest
|
|
433
|
-
() => SendEventResponse
|
|
439
|
+
() => SendEventRequest$,
|
|
440
|
+
() => SendEventResponse$,
|
|
434
441
|
];
|
|
435
|
-
export var SendMessage = [
|
|
442
|
+
export var SendMessage$ = [
|
|
436
443
|
9,
|
|
437
444
|
n0,
|
|
438
445
|
_SM,
|
|
439
446
|
{ [_h]: ["POST", "/participant/message", 200] },
|
|
440
|
-
() => SendMessageRequest
|
|
441
|
-
() => SendMessageResponse
|
|
447
|
+
() => SendMessageRequest$,
|
|
448
|
+
() => SendMessageResponse$,
|
|
442
449
|
];
|
|
443
|
-
export var StartAttachmentUpload = [
|
|
450
|
+
export var StartAttachmentUpload$ = [
|
|
444
451
|
9,
|
|
445
452
|
n0,
|
|
446
453
|
_SAU,
|
|
447
454
|
{ [_h]: ["POST", "/participant/start-attachment-upload", 200] },
|
|
448
|
-
() => StartAttachmentUploadRequest
|
|
449
|
-
() => StartAttachmentUploadResponse
|
|
455
|
+
() => StartAttachmentUploadRequest$,
|
|
456
|
+
() => StartAttachmentUploadResponse$,
|
|
450
457
|
];
|