@aws-sdk/client-ivschat 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 +235 -169
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateChatTokenCommand.js +2 -2
- package/dist-es/commands/CreateLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateRoomCommand.js +2 -2
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteMessageCommand.js +2 -2
- package/dist-es/commands/DeleteRoomCommand.js +2 -2
- package/dist-es/commands/DisconnectUserCommand.js +2 -2
- package/dist-es/commands/GetLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/GetRoomCommand.js +2 -2
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListRoomsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/SendEventCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateRoomCommand.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 +137 -137
- package/dist-types/IvschatClient.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 +67 -79
- package/dist-types/ts3.4/IvschatClient.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 +66 -81
- package/package.json +34 -34
|
@@ -122,16 +122,16 @@ const _uI = "userId";
|
|
|
122
122
|
const _uT = "updateTime";
|
|
123
123
|
const n0 = "com.amazonaws.ivschat";
|
|
124
124
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
125
|
-
import { AccessDeniedException
|
|
126
|
-
import { IvschatServiceException
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
130
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
131
|
-
export var CloudWatchLogsDestinationConfiguration = [3, n0, _CWLDC, 0, [_lGN], [0]];
|
|
132
|
-
export var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
133
|
-
TypeRegistry.for(n0).registerError(ConflictException
|
|
134
|
-
export var CreateChatTokenRequest = [
|
|
125
|
+
import { AccessDeniedException, ConflictException, InternalServerException, PendingVerification, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
126
|
+
import { IvschatServiceException } from "../models/IvschatServiceException";
|
|
127
|
+
var ChatToken = [0, n0, _CT, 8, 0];
|
|
128
|
+
var UserID = [0, n0, _UID, 8, 0];
|
|
129
|
+
export var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
130
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
131
|
+
export var CloudWatchLogsDestinationConfiguration$ = [3, n0, _CWLDC, 0, [_lGN], [0]];
|
|
132
|
+
export var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
133
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
134
|
+
export var CreateChatTokenRequest$ = [
|
|
135
135
|
3,
|
|
136
136
|
n0,
|
|
137
137
|
_CCTR,
|
|
@@ -139,7 +139,7 @@ export var CreateChatTokenRequest = [
|
|
|
139
139
|
[_rIo, _uI, _ca, _sDIM, _a],
|
|
140
140
|
[0, [() => UserID, 0], 64 | 0, 1, [() => ChatTokenAttributes, 0]],
|
|
141
141
|
];
|
|
142
|
-
export var CreateChatTokenResponse = [
|
|
142
|
+
export var CreateChatTokenResponse$ = [
|
|
143
143
|
3,
|
|
144
144
|
n0,
|
|
145
145
|
_CCTRr,
|
|
@@ -147,67 +147,67 @@ export var CreateChatTokenResponse = [
|
|
|
147
147
|
[_t, _tET, _sET],
|
|
148
148
|
[[() => ChatToken, 0], 5, 5],
|
|
149
149
|
];
|
|
150
|
-
export var CreateLoggingConfigurationRequest = [
|
|
150
|
+
export var CreateLoggingConfigurationRequest$ = [
|
|
151
151
|
3,
|
|
152
152
|
n0,
|
|
153
153
|
_CLCR,
|
|
154
154
|
0,
|
|
155
155
|
[_n, _dC, _ta],
|
|
156
|
-
[0, () => DestinationConfiguration
|
|
156
|
+
[0, () => DestinationConfiguration$, 128 | 0],
|
|
157
157
|
];
|
|
158
|
-
export var CreateLoggingConfigurationResponse = [
|
|
158
|
+
export var CreateLoggingConfigurationResponse$ = [
|
|
159
159
|
3,
|
|
160
160
|
n0,
|
|
161
161
|
_CLCRr,
|
|
162
162
|
0,
|
|
163
163
|
[_ar, _i, _cT, _uT, _n, _dC, _s, _ta],
|
|
164
|
-
[0, 0, 5, 5, 0, () => DestinationConfiguration
|
|
164
|
+
[0, 0, 5, 5, 0, () => DestinationConfiguration$, 0, 128 | 0],
|
|
165
165
|
];
|
|
166
|
-
export var CreateRoomRequest = [
|
|
166
|
+
export var CreateRoomRequest$ = [
|
|
167
167
|
3,
|
|
168
168
|
n0,
|
|
169
169
|
_CRR,
|
|
170
170
|
0,
|
|
171
171
|
[_n, _mMRPS, _mML, _mRH, _ta, _lCI],
|
|
172
|
-
[0, 1, 1, () => MessageReviewHandler
|
|
172
|
+
[0, 1, 1, () => MessageReviewHandler$, 128 | 0, 64 | 0],
|
|
173
173
|
];
|
|
174
|
-
export var CreateRoomResponse = [
|
|
174
|
+
export var CreateRoomResponse$ = [
|
|
175
175
|
3,
|
|
176
176
|
n0,
|
|
177
177
|
_CRRr,
|
|
178
178
|
0,
|
|
179
179
|
[_ar, _i, _n, _cT, _uT, _mMRPS, _mML, _mRH, _ta, _lCI],
|
|
180
|
-
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler
|
|
181
|
-
];
|
|
182
|
-
export var DeleteLoggingConfigurationRequest = [3, n0, _DLCR, 0, [_id], [0]];
|
|
183
|
-
export var DeleteMessageRequest = [3, n0, _DMR, 0, [_rIo, _i, _r], [0, 0, 0]];
|
|
184
|
-
export var DeleteMessageResponse = [3, n0, _DMRe, 0, [_i], [0]];
|
|
185
|
-
export var DeleteRoomRequest = [3, n0, _DRR, 0, [_id], [0]];
|
|
186
|
-
export var DisconnectUserRequest = [3, n0, _DUR, 0, [_rIo, _uI, _r], [0, [() => UserID, 0], 0]];
|
|
187
|
-
export var DisconnectUserResponse = [3, n0, _DURi, 0, [], []];
|
|
188
|
-
export var FirehoseDestinationConfiguration = [3, n0, _FDC, 0, [_dSN], [0]];
|
|
189
|
-
export var GetLoggingConfigurationRequest = [3, n0, _GLCR, 0, [_id], [0]];
|
|
190
|
-
export var GetLoggingConfigurationResponse = [
|
|
180
|
+
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler$, 128 | 0, 64 | 0],
|
|
181
|
+
];
|
|
182
|
+
export var DeleteLoggingConfigurationRequest$ = [3, n0, _DLCR, 0, [_id], [0]];
|
|
183
|
+
export var DeleteMessageRequest$ = [3, n0, _DMR, 0, [_rIo, _i, _r], [0, 0, 0]];
|
|
184
|
+
export var DeleteMessageResponse$ = [3, n0, _DMRe, 0, [_i], [0]];
|
|
185
|
+
export var DeleteRoomRequest$ = [3, n0, _DRR, 0, [_id], [0]];
|
|
186
|
+
export var DisconnectUserRequest$ = [3, n0, _DUR, 0, [_rIo, _uI, _r], [0, [() => UserID, 0], 0]];
|
|
187
|
+
export var DisconnectUserResponse$ = [3, n0, _DURi, 0, [], []];
|
|
188
|
+
export var FirehoseDestinationConfiguration$ = [3, n0, _FDC, 0, [_dSN], [0]];
|
|
189
|
+
export var GetLoggingConfigurationRequest$ = [3, n0, _GLCR, 0, [_id], [0]];
|
|
190
|
+
export var GetLoggingConfigurationResponse$ = [
|
|
191
191
|
3,
|
|
192
192
|
n0,
|
|
193
193
|
_GLCRe,
|
|
194
194
|
0,
|
|
195
195
|
[_ar, _i, _cT, _uT, _n, _dC, _s, _ta],
|
|
196
|
-
[0, 0, 5, 5, 0, () => DestinationConfiguration
|
|
196
|
+
[0, 0, 5, 5, 0, () => DestinationConfiguration$, 0, 128 | 0],
|
|
197
197
|
];
|
|
198
|
-
export var GetRoomRequest = [3, n0, _GRR, 0, [_id], [0]];
|
|
199
|
-
export var GetRoomResponse = [
|
|
198
|
+
export var GetRoomRequest$ = [3, n0, _GRR, 0, [_id], [0]];
|
|
199
|
+
export var GetRoomResponse$ = [
|
|
200
200
|
3,
|
|
201
201
|
n0,
|
|
202
202
|
_GRRe,
|
|
203
203
|
0,
|
|
204
204
|
[_ar, _i, _n, _cT, _uT, _mMRPS, _mML, _mRH, _ta, _lCI],
|
|
205
|
-
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler
|
|
205
|
+
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler$, 128 | 0, 64 | 0],
|
|
206
206
|
];
|
|
207
|
-
export var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
208
|
-
TypeRegistry.for(n0).registerError(InternalServerException
|
|
209
|
-
export var ListLoggingConfigurationsRequest = [3, n0, _LLCR, 0, [_nT, _mR], [0, 1]];
|
|
210
|
-
export var ListLoggingConfigurationsResponse = [
|
|
207
|
+
export var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
208
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
209
|
+
export var ListLoggingConfigurationsRequest$ = [3, n0, _LLCR, 0, [_nT, _mR], [0, 1]];
|
|
210
|
+
export var ListLoggingConfigurationsResponse$ = [
|
|
211
211
|
3,
|
|
212
212
|
n0,
|
|
213
213
|
_LLCRi,
|
|
@@ -215,22 +215,22 @@ export var ListLoggingConfigurationsResponse = [
|
|
|
215
215
|
[_lC, _nT],
|
|
216
216
|
[() => LoggingConfigurationList, 0],
|
|
217
217
|
];
|
|
218
|
-
export var ListRoomsRequest = [3, n0, _LRR, 0, [_n, _nT, _mR, _mRHU, _lCIo], [0, 0, 1, 0, 0]];
|
|
219
|
-
export var ListRoomsResponse = [3, n0, _LRRi, 0, [_ro, _nT], [() => RoomList, 0]];
|
|
220
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
221
|
-
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
|
|
222
|
-
export var LoggingConfigurationSummary = [
|
|
218
|
+
export var ListRoomsRequest$ = [3, n0, _LRR, 0, [_n, _nT, _mR, _mRHU, _lCIo], [0, 0, 1, 0, 0]];
|
|
219
|
+
export var ListRoomsResponse$ = [3, n0, _LRRi, 0, [_ro, _nT], [() => RoomList, 0]];
|
|
220
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
221
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
|
|
222
|
+
export var LoggingConfigurationSummary$ = [
|
|
223
223
|
3,
|
|
224
224
|
n0,
|
|
225
225
|
_LCS,
|
|
226
226
|
0,
|
|
227
227
|
[_ar, _i, _cT, _uT, _n, _dC, _s, _ta],
|
|
228
|
-
[0, 0, 5, 5, 0, () => DestinationConfiguration
|
|
228
|
+
[0, 0, 5, 5, 0, () => DestinationConfiguration$, 0, 128 | 0],
|
|
229
229
|
];
|
|
230
|
-
export var MessageReviewHandler = [3, n0, _MRH, 0, [_u, _fR], [0, 0]];
|
|
231
|
-
export var PendingVerification = [-3, n0, _PV, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
232
|
-
TypeRegistry.for(n0).registerError(PendingVerification
|
|
233
|
-
export var ResourceNotFoundException = [
|
|
230
|
+
export var MessageReviewHandler$ = [3, n0, _MRH, 0, [_u, _fR], [0, 0]];
|
|
231
|
+
export var PendingVerification$ = [-3, n0, _PV, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
232
|
+
TypeRegistry.for(n0).registerError(PendingVerification$, PendingVerification);
|
|
233
|
+
export var ResourceNotFoundException$ = [
|
|
234
234
|
-3,
|
|
235
235
|
n0,
|
|
236
236
|
_RNFE,
|
|
@@ -238,19 +238,19 @@ export var ResourceNotFoundException = [
|
|
|
238
238
|
[_m, _rI, _rT],
|
|
239
239
|
[0, 0, 0],
|
|
240
240
|
];
|
|
241
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
242
|
-
export var RoomSummary = [
|
|
241
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
242
|
+
export var RoomSummary$ = [
|
|
243
243
|
3,
|
|
244
244
|
n0,
|
|
245
245
|
_RS,
|
|
246
246
|
0,
|
|
247
247
|
[_ar, _i, _n, _mRH, _cT, _uT, _ta, _lCI],
|
|
248
|
-
[0, 0, 0, () => MessageReviewHandler
|
|
248
|
+
[0, 0, 0, () => MessageReviewHandler$, 5, 5, 128 | 0, 64 | 0],
|
|
249
249
|
];
|
|
250
|
-
export var S3DestinationConfiguration = [3, n0, _SDC, 0, [_bN], [0]];
|
|
251
|
-
export var SendEventRequest = [3, n0, _SER, 0, [_rIo, _eN, _a], [0, 0, 128 | 0]];
|
|
252
|
-
export var SendEventResponse = [3, n0, _SERe, 0, [_i], [0]];
|
|
253
|
-
export var ServiceQuotaExceededException = [
|
|
250
|
+
export var S3DestinationConfiguration$ = [3, n0, _SDC, 0, [_bN], [0]];
|
|
251
|
+
export var SendEventRequest$ = [3, n0, _SER, 0, [_rIo, _eN, _a], [0, 0, 128 | 0]];
|
|
252
|
+
export var SendEventResponse$ = [3, n0, _SERe, 0, [_i], [0]];
|
|
253
|
+
export var ServiceQuotaExceededException$ = [
|
|
254
254
|
-3,
|
|
255
255
|
n0,
|
|
256
256
|
_SQEE,
|
|
@@ -258,10 +258,10 @@ export var ServiceQuotaExceededException = [
|
|
|
258
258
|
[_m, _rI, _rT, _l],
|
|
259
259
|
[0, 0, 0, 1],
|
|
260
260
|
];
|
|
261
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
262
|
-
export var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
|
|
263
|
-
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
264
|
-
export var ThrottlingException = [
|
|
261
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
262
|
+
export var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _ta], [[0, 1], 128 | 0]];
|
|
263
|
+
export var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
264
|
+
export var ThrottlingException$ = [
|
|
265
265
|
-3,
|
|
266
266
|
n0,
|
|
267
267
|
_TE,
|
|
@@ -269,8 +269,8 @@ export var ThrottlingException = [
|
|
|
269
269
|
[_m, _rI, _rT, _l],
|
|
270
270
|
[0, 0, 0, 1],
|
|
271
271
|
];
|
|
272
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
273
|
-
export var UntagResourceRequest = [
|
|
272
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
273
|
+
export var UntagResourceRequest$ = [
|
|
274
274
|
3,
|
|
275
275
|
n0,
|
|
276
276
|
_URR,
|
|
@@ -281,40 +281,40 @@ export var UntagResourceRequest = [
|
|
|
281
281
|
[64 | 0, { [_hQ]: _tK }],
|
|
282
282
|
],
|
|
283
283
|
];
|
|
284
|
-
export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
285
|
-
export var UpdateLoggingConfigurationRequest = [
|
|
284
|
+
export var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
285
|
+
export var UpdateLoggingConfigurationRequest$ = [
|
|
286
286
|
3,
|
|
287
287
|
n0,
|
|
288
288
|
_ULCR,
|
|
289
289
|
0,
|
|
290
290
|
[_id, _n, _dC],
|
|
291
|
-
[0, 0, () => DestinationConfiguration],
|
|
291
|
+
[0, 0, () => DestinationConfiguration$],
|
|
292
292
|
];
|
|
293
|
-
export var UpdateLoggingConfigurationResponse = [
|
|
293
|
+
export var UpdateLoggingConfigurationResponse$ = [
|
|
294
294
|
3,
|
|
295
295
|
n0,
|
|
296
296
|
_ULCRp,
|
|
297
297
|
0,
|
|
298
298
|
[_ar, _i, _cT, _uT, _n, _dC, _s, _ta],
|
|
299
|
-
[0, 0, 5, 5, 0, () => DestinationConfiguration
|
|
299
|
+
[0, 0, 5, 5, 0, () => DestinationConfiguration$, 0, 128 | 0],
|
|
300
300
|
];
|
|
301
|
-
export var UpdateRoomRequest = [
|
|
301
|
+
export var UpdateRoomRequest$ = [
|
|
302
302
|
3,
|
|
303
303
|
n0,
|
|
304
304
|
_URRp,
|
|
305
305
|
0,
|
|
306
306
|
[_id, _n, _mMRPS, _mML, _mRH, _lCI],
|
|
307
|
-
[0, 0, 1, 1, () => MessageReviewHandler
|
|
307
|
+
[0, 0, 1, 1, () => MessageReviewHandler$, 64 | 0],
|
|
308
308
|
];
|
|
309
|
-
export var UpdateRoomResponse = [
|
|
309
|
+
export var UpdateRoomResponse$ = [
|
|
310
310
|
3,
|
|
311
311
|
n0,
|
|
312
312
|
_URRpd,
|
|
313
313
|
0,
|
|
314
314
|
[_ar, _i, _n, _cT, _uT, _mMRPS, _mML, _mRH, _ta, _lCI],
|
|
315
|
-
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler
|
|
315
|
+
[0, 0, 0, 5, 5, 1, 1, () => MessageReviewHandler$, 128 | 0, 64 | 0],
|
|
316
316
|
];
|
|
317
|
-
export var ValidationException = [
|
|
317
|
+
export var ValidationException$ = [
|
|
318
318
|
-3,
|
|
319
319
|
n0,
|
|
320
320
|
_VE,
|
|
@@ -322,165 +322,165 @@ export var ValidationException = [
|
|
|
322
322
|
[_m, _r, _fL],
|
|
323
323
|
[0, 0, () => ValidationExceptionFieldList],
|
|
324
324
|
];
|
|
325
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
326
|
-
export var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
327
|
-
|
|
328
|
-
export var IvschatServiceException = [-3, _sm, "IvschatServiceException", 0, [], []];
|
|
329
|
-
TypeRegistry.for(_sm).registerError(IvschatServiceException
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
export var DestinationConfiguration = [
|
|
325
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
326
|
+
export var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
327
|
+
var __Unit = "unit";
|
|
328
|
+
export var IvschatServiceException$ = [-3, _sm, "IvschatServiceException", 0, [], []];
|
|
329
|
+
TypeRegistry.for(_sm).registerError(IvschatServiceException$, IvschatServiceException);
|
|
330
|
+
var ChatTokenCapabilities = 64 | 0;
|
|
331
|
+
var LoggingConfigurationIdentifierList = 64 | 0;
|
|
332
|
+
var LoggingConfigurationList = [1, n0, _LCL, 0, () => LoggingConfigurationSummary$];
|
|
333
|
+
var RoomList = [1, n0, _RL, 0, () => RoomSummary$];
|
|
334
|
+
var TagKeyList = 64 | 0;
|
|
335
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
336
|
+
var ChatTokenAttributes = [2, n0, _CTA, 8, 0, 0];
|
|
337
|
+
var EventAttributes = 128 | 0;
|
|
338
|
+
var Tags = 128 | 0;
|
|
339
|
+
export var DestinationConfiguration$ = [
|
|
340
340
|
3,
|
|
341
341
|
n0,
|
|
342
342
|
_DC,
|
|
343
343
|
0,
|
|
344
344
|
[_s_, _cWL, _f],
|
|
345
345
|
[
|
|
346
|
-
() => S3DestinationConfiguration
|
|
347
|
-
() => CloudWatchLogsDestinationConfiguration
|
|
348
|
-
() => FirehoseDestinationConfiguration
|
|
346
|
+
() => S3DestinationConfiguration$,
|
|
347
|
+
() => CloudWatchLogsDestinationConfiguration$,
|
|
348
|
+
() => FirehoseDestinationConfiguration$,
|
|
349
349
|
],
|
|
350
350
|
];
|
|
351
|
-
export var CreateChatToken = [
|
|
351
|
+
export var CreateChatToken$ = [
|
|
352
352
|
9,
|
|
353
353
|
n0,
|
|
354
354
|
_CCT,
|
|
355
355
|
{ [_h]: ["POST", "/CreateChatToken", 200] },
|
|
356
|
-
() => CreateChatTokenRequest
|
|
357
|
-
() => CreateChatTokenResponse
|
|
356
|
+
() => CreateChatTokenRequest$,
|
|
357
|
+
() => CreateChatTokenResponse$,
|
|
358
358
|
];
|
|
359
|
-
export var CreateLoggingConfiguration = [
|
|
359
|
+
export var CreateLoggingConfiguration$ = [
|
|
360
360
|
9,
|
|
361
361
|
n0,
|
|
362
362
|
_CLC,
|
|
363
363
|
{ [_h]: ["POST", "/CreateLoggingConfiguration", 200] },
|
|
364
|
-
() => CreateLoggingConfigurationRequest
|
|
365
|
-
() => CreateLoggingConfigurationResponse
|
|
364
|
+
() => CreateLoggingConfigurationRequest$,
|
|
365
|
+
() => CreateLoggingConfigurationResponse$,
|
|
366
366
|
];
|
|
367
|
-
export var CreateRoom = [
|
|
367
|
+
export var CreateRoom$ = [
|
|
368
368
|
9,
|
|
369
369
|
n0,
|
|
370
370
|
_CR,
|
|
371
371
|
{ [_h]: ["POST", "/CreateRoom", 200] },
|
|
372
|
-
() => CreateRoomRequest
|
|
373
|
-
() => CreateRoomResponse
|
|
372
|
+
() => CreateRoomRequest$,
|
|
373
|
+
() => CreateRoomResponse$,
|
|
374
374
|
];
|
|
375
|
-
export var DeleteLoggingConfiguration = [
|
|
375
|
+
export var DeleteLoggingConfiguration$ = [
|
|
376
376
|
9,
|
|
377
377
|
n0,
|
|
378
378
|
_DLC,
|
|
379
379
|
{ [_h]: ["POST", "/DeleteLoggingConfiguration", 204] },
|
|
380
|
-
() => DeleteLoggingConfigurationRequest
|
|
380
|
+
() => DeleteLoggingConfigurationRequest$,
|
|
381
381
|
() => __Unit,
|
|
382
382
|
];
|
|
383
|
-
export var DeleteMessage = [
|
|
383
|
+
export var DeleteMessage$ = [
|
|
384
384
|
9,
|
|
385
385
|
n0,
|
|
386
386
|
_DM,
|
|
387
387
|
{ [_h]: ["POST", "/DeleteMessage", 200] },
|
|
388
|
-
() => DeleteMessageRequest
|
|
389
|
-
() => DeleteMessageResponse
|
|
388
|
+
() => DeleteMessageRequest$,
|
|
389
|
+
() => DeleteMessageResponse$,
|
|
390
390
|
];
|
|
391
|
-
export var DeleteRoom = [
|
|
391
|
+
export var DeleteRoom$ = [
|
|
392
392
|
9,
|
|
393
393
|
n0,
|
|
394
394
|
_DR,
|
|
395
395
|
{ [_h]: ["POST", "/DeleteRoom", 204] },
|
|
396
|
-
() => DeleteRoomRequest
|
|
396
|
+
() => DeleteRoomRequest$,
|
|
397
397
|
() => __Unit,
|
|
398
398
|
];
|
|
399
|
-
export var DisconnectUser = [
|
|
399
|
+
export var DisconnectUser$ = [
|
|
400
400
|
9,
|
|
401
401
|
n0,
|
|
402
402
|
_DU,
|
|
403
403
|
{ [_h]: ["POST", "/DisconnectUser", 200] },
|
|
404
|
-
() => DisconnectUserRequest
|
|
405
|
-
() => DisconnectUserResponse
|
|
404
|
+
() => DisconnectUserRequest$,
|
|
405
|
+
() => DisconnectUserResponse$,
|
|
406
406
|
];
|
|
407
|
-
export var GetLoggingConfiguration = [
|
|
407
|
+
export var GetLoggingConfiguration$ = [
|
|
408
408
|
9,
|
|
409
409
|
n0,
|
|
410
410
|
_GLC,
|
|
411
411
|
{ [_h]: ["POST", "/GetLoggingConfiguration", 200] },
|
|
412
|
-
() => GetLoggingConfigurationRequest
|
|
413
|
-
() => GetLoggingConfigurationResponse
|
|
412
|
+
() => GetLoggingConfigurationRequest$,
|
|
413
|
+
() => GetLoggingConfigurationResponse$,
|
|
414
414
|
];
|
|
415
|
-
export var GetRoom = [
|
|
415
|
+
export var GetRoom$ = [
|
|
416
416
|
9,
|
|
417
417
|
n0,
|
|
418
418
|
_GR,
|
|
419
419
|
{ [_h]: ["POST", "/GetRoom", 200] },
|
|
420
|
-
() => GetRoomRequest
|
|
421
|
-
() => GetRoomResponse
|
|
420
|
+
() => GetRoomRequest$,
|
|
421
|
+
() => GetRoomResponse$,
|
|
422
422
|
];
|
|
423
|
-
export var ListLoggingConfigurations = [
|
|
423
|
+
export var ListLoggingConfigurations$ = [
|
|
424
424
|
9,
|
|
425
425
|
n0,
|
|
426
426
|
_LLC,
|
|
427
427
|
{ [_h]: ["POST", "/ListLoggingConfigurations", 200] },
|
|
428
|
-
() => ListLoggingConfigurationsRequest
|
|
429
|
-
() => ListLoggingConfigurationsResponse
|
|
428
|
+
() => ListLoggingConfigurationsRequest$,
|
|
429
|
+
() => ListLoggingConfigurationsResponse$,
|
|
430
430
|
];
|
|
431
|
-
export var ListRooms = [
|
|
431
|
+
export var ListRooms$ = [
|
|
432
432
|
9,
|
|
433
433
|
n0,
|
|
434
434
|
_LR,
|
|
435
435
|
{ [_h]: ["POST", "/ListRooms", 200] },
|
|
436
|
-
() => ListRoomsRequest
|
|
437
|
-
() => ListRoomsResponse
|
|
436
|
+
() => ListRoomsRequest$,
|
|
437
|
+
() => ListRoomsResponse$,
|
|
438
438
|
];
|
|
439
|
-
export var ListTagsForResource = [
|
|
439
|
+
export var ListTagsForResource$ = [
|
|
440
440
|
9,
|
|
441
441
|
n0,
|
|
442
442
|
_LTFR,
|
|
443
443
|
{ [_h]: ["GET", "/tags/{resourceArn}", 200] },
|
|
444
|
-
() => ListTagsForResourceRequest
|
|
445
|
-
() => ListTagsForResourceResponse
|
|
444
|
+
() => ListTagsForResourceRequest$,
|
|
445
|
+
() => ListTagsForResourceResponse$,
|
|
446
446
|
];
|
|
447
|
-
export var SendEvent = [
|
|
447
|
+
export var SendEvent$ = [
|
|
448
448
|
9,
|
|
449
449
|
n0,
|
|
450
450
|
_SE,
|
|
451
451
|
{ [_h]: ["POST", "/SendEvent", 200] },
|
|
452
|
-
() => SendEventRequest
|
|
453
|
-
() => SendEventResponse
|
|
452
|
+
() => SendEventRequest$,
|
|
453
|
+
() => SendEventResponse$,
|
|
454
454
|
];
|
|
455
|
-
export var TagResource = [
|
|
455
|
+
export var TagResource$ = [
|
|
456
456
|
9,
|
|
457
457
|
n0,
|
|
458
458
|
_TR,
|
|
459
459
|
{ [_h]: ["POST", "/tags/{resourceArn}", 200] },
|
|
460
|
-
() => TagResourceRequest
|
|
461
|
-
() => TagResourceResponse
|
|
460
|
+
() => TagResourceRequest$,
|
|
461
|
+
() => TagResourceResponse$,
|
|
462
462
|
];
|
|
463
|
-
export var UntagResource = [
|
|
463
|
+
export var UntagResource$ = [
|
|
464
464
|
9,
|
|
465
465
|
n0,
|
|
466
466
|
_UR,
|
|
467
467
|
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
|
|
468
|
-
() => UntagResourceRequest
|
|
469
|
-
() => UntagResourceResponse
|
|
468
|
+
() => UntagResourceRequest$,
|
|
469
|
+
() => UntagResourceResponse$,
|
|
470
470
|
];
|
|
471
|
-
export var UpdateLoggingConfiguration = [
|
|
471
|
+
export var UpdateLoggingConfiguration$ = [
|
|
472
472
|
9,
|
|
473
473
|
n0,
|
|
474
474
|
_ULC,
|
|
475
475
|
{ [_h]: ["POST", "/UpdateLoggingConfiguration", 200] },
|
|
476
|
-
() => UpdateLoggingConfigurationRequest
|
|
477
|
-
() => UpdateLoggingConfigurationResponse
|
|
476
|
+
() => UpdateLoggingConfigurationRequest$,
|
|
477
|
+
() => UpdateLoggingConfigurationResponse$,
|
|
478
478
|
];
|
|
479
|
-
export var UpdateRoom = [
|
|
479
|
+
export var UpdateRoom$ = [
|
|
480
480
|
9,
|
|
481
481
|
n0,
|
|
482
482
|
_URp,
|
|
483
483
|
{ [_h]: ["POST", "/UpdateRoom", 200] },
|
|
484
|
-
() => UpdateRoomRequest
|
|
485
|
-
() => UpdateRoomResponse
|
|
484
|
+
() => UpdateRoomRequest$,
|
|
485
|
+
() => UpdateRoomResponse$,
|
|
486
486
|
];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateChatTokenCommandInput, CreateChatTokenCommandOutput } from "./commands/CreateChatTokenCommand";
|
|
11
11
|
import { CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput } from "./commands/CreateLoggingConfigurationCommand";
|
|
@@ -158,15 +158,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
158
158
|
* Optional extensions
|
|
159
159
|
*/
|
|
160
160
|
extensions?: RuntimeExtension[];
|
|
161
|
-
/**
|
|
162
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
163
|
-
* may be overridden. A default will always be set by the client.
|
|
164
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
165
|
-
* the client.
|
|
166
|
-
* @alpha
|
|
167
|
-
*
|
|
168
|
-
*/
|
|
169
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
170
161
|
/**
|
|
171
162
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
172
163
|
*/
|
package/dist-types/index.d.ts
CHANGED
|
@@ -114,6 +114,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
114
114
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
115
115
|
export type { IvschatExtensionConfiguration } from "./extensionConfiguration";
|
|
116
116
|
export * from "./commands";
|
|
117
|
+
export * from "./schemas/schemas_0";
|
|
117
118
|
export * from "./pagination";
|
|
118
119
|
export * from "./models/enums";
|
|
119
120
|
export * from "./models/errors";
|
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { IvschatClientConfig } from "./IvschatClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").IvschatHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|