@aws-sdk/client-ivschat 3.721.0 → 3.723.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 +193 -101
- package/dist-es/IvschatClient.js +1 -0
- package/dist-es/models/models_0.js +28 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -162,7 +162,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
162
162
|
}, "resolveRuntimeExtensions");
|
|
163
163
|
|
|
164
164
|
// src/IvschatClient.ts
|
|
165
|
-
var
|
|
165
|
+
var IvschatClient = class extends import_smithy_client.Client {
|
|
166
|
+
static {
|
|
167
|
+
__name(this, "IvschatClient");
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* The resolved configuration of IvschatClient class. This is resolved and normalized from the {@link IvschatClientConfig | constructor configuration interface}.
|
|
171
|
+
*/
|
|
172
|
+
config;
|
|
166
173
|
constructor(...[configuration]) {
|
|
167
174
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
168
175
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -172,7 +179,7 @@ var _IvschatClient = class _IvschatClient extends import_smithy_client.Client {
|
|
|
172
179
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
173
180
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
174
181
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
175
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
182
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
176
183
|
super(_config_8);
|
|
177
184
|
this.config = _config_8;
|
|
178
185
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -200,8 +207,6 @@ var _IvschatClient = class _IvschatClient extends import_smithy_client.Client {
|
|
|
200
207
|
super.destroy();
|
|
201
208
|
}
|
|
202
209
|
};
|
|
203
|
-
__name(_IvschatClient, "IvschatClient");
|
|
204
|
-
var IvschatClient = _IvschatClient;
|
|
205
210
|
|
|
206
211
|
// src/Ivschat.ts
|
|
207
212
|
|
|
@@ -216,7 +221,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
216
221
|
|
|
217
222
|
// src/models/IvschatServiceException.ts
|
|
218
223
|
|
|
219
|
-
var
|
|
224
|
+
var IvschatServiceException = class _IvschatServiceException extends import_smithy_client.ServiceException {
|
|
225
|
+
static {
|
|
226
|
+
__name(this, "IvschatServiceException");
|
|
227
|
+
}
|
|
220
228
|
/**
|
|
221
229
|
* @internal
|
|
222
230
|
*/
|
|
@@ -225,11 +233,14 @@ var _IvschatServiceException = class _IvschatServiceException extends import_smi
|
|
|
225
233
|
Object.setPrototypeOf(this, _IvschatServiceException.prototype);
|
|
226
234
|
}
|
|
227
235
|
};
|
|
228
|
-
__name(_IvschatServiceException, "IvschatServiceException");
|
|
229
|
-
var IvschatServiceException = _IvschatServiceException;
|
|
230
236
|
|
|
231
237
|
// src/models/models_0.ts
|
|
232
|
-
var
|
|
238
|
+
var AccessDeniedException = class _AccessDeniedException extends IvschatServiceException {
|
|
239
|
+
static {
|
|
240
|
+
__name(this, "AccessDeniedException");
|
|
241
|
+
}
|
|
242
|
+
name = "AccessDeniedException";
|
|
243
|
+
$fault = "client";
|
|
233
244
|
/**
|
|
234
245
|
* @internal
|
|
235
246
|
*/
|
|
@@ -239,19 +250,20 @@ var _AccessDeniedException = class _AccessDeniedException extends IvschatService
|
|
|
239
250
|
$fault: "client",
|
|
240
251
|
...opts
|
|
241
252
|
});
|
|
242
|
-
this.name = "AccessDeniedException";
|
|
243
|
-
this.$fault = "client";
|
|
244
253
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
245
254
|
}
|
|
246
255
|
};
|
|
247
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
248
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
249
256
|
var ChatTokenCapability = {
|
|
250
257
|
DELETE_MESSAGE: "DELETE_MESSAGE",
|
|
251
258
|
DISCONNECT_USER: "DISCONNECT_USER",
|
|
252
259
|
SEND_MESSAGE: "SEND_MESSAGE"
|
|
253
260
|
};
|
|
254
|
-
var
|
|
261
|
+
var PendingVerification = class _PendingVerification extends IvschatServiceException {
|
|
262
|
+
static {
|
|
263
|
+
__name(this, "PendingVerification");
|
|
264
|
+
}
|
|
265
|
+
name = "PendingVerification";
|
|
266
|
+
$fault = "client";
|
|
255
267
|
/**
|
|
256
268
|
* @internal
|
|
257
269
|
*/
|
|
@@ -261,17 +273,28 @@ var _PendingVerification = class _PendingVerification extends IvschatServiceExce
|
|
|
261
273
|
$fault: "client",
|
|
262
274
|
...opts
|
|
263
275
|
});
|
|
264
|
-
this.name = "PendingVerification";
|
|
265
|
-
this.$fault = "client";
|
|
266
276
|
Object.setPrototypeOf(this, _PendingVerification.prototype);
|
|
267
277
|
}
|
|
268
278
|
};
|
|
269
|
-
__name(_PendingVerification, "PendingVerification");
|
|
270
|
-
var PendingVerification = _PendingVerification;
|
|
271
279
|
var ResourceType = {
|
|
272
280
|
ROOM: "ROOM"
|
|
273
281
|
};
|
|
274
|
-
var
|
|
282
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends IvschatServiceException {
|
|
283
|
+
static {
|
|
284
|
+
__name(this, "ResourceNotFoundException");
|
|
285
|
+
}
|
|
286
|
+
name = "ResourceNotFoundException";
|
|
287
|
+
$fault = "client";
|
|
288
|
+
/**
|
|
289
|
+
* <p/>
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
resourceId;
|
|
293
|
+
/**
|
|
294
|
+
* <p/>
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
297
|
+
resourceType;
|
|
275
298
|
/**
|
|
276
299
|
* @internal
|
|
277
300
|
*/
|
|
@@ -281,21 +304,32 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Ivscha
|
|
|
281
304
|
$fault: "client",
|
|
282
305
|
...opts
|
|
283
306
|
});
|
|
284
|
-
this.name = "ResourceNotFoundException";
|
|
285
|
-
this.$fault = "client";
|
|
286
307
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
287
308
|
this.resourceId = opts.resourceId;
|
|
288
309
|
this.resourceType = opts.resourceType;
|
|
289
310
|
}
|
|
290
311
|
};
|
|
291
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
292
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
293
312
|
var ValidationExceptionReason = {
|
|
294
313
|
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
295
314
|
OTHER: "OTHER",
|
|
296
315
|
UNKNOWN_OPERATION: "UNKNOWN_OPERATION"
|
|
297
316
|
};
|
|
298
|
-
var
|
|
317
|
+
var ValidationException = class _ValidationException extends IvschatServiceException {
|
|
318
|
+
static {
|
|
319
|
+
__name(this, "ValidationException");
|
|
320
|
+
}
|
|
321
|
+
name = "ValidationException";
|
|
322
|
+
$fault = "client";
|
|
323
|
+
/**
|
|
324
|
+
* <p/>
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
reason;
|
|
328
|
+
/**
|
|
329
|
+
* <p/>
|
|
330
|
+
* @public
|
|
331
|
+
*/
|
|
332
|
+
fieldList;
|
|
299
333
|
/**
|
|
300
334
|
* @internal
|
|
301
335
|
*/
|
|
@@ -305,16 +339,27 @@ var _ValidationException = class _ValidationException extends IvschatServiceExce
|
|
|
305
339
|
$fault: "client",
|
|
306
340
|
...opts
|
|
307
341
|
});
|
|
308
|
-
this.name = "ValidationException";
|
|
309
|
-
this.$fault = "client";
|
|
310
342
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
311
343
|
this.reason = opts.reason;
|
|
312
344
|
this.fieldList = opts.fieldList;
|
|
313
345
|
}
|
|
314
346
|
};
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
347
|
+
var ConflictException = class _ConflictException extends IvschatServiceException {
|
|
348
|
+
static {
|
|
349
|
+
__name(this, "ConflictException");
|
|
350
|
+
}
|
|
351
|
+
name = "ConflictException";
|
|
352
|
+
$fault = "client";
|
|
353
|
+
/**
|
|
354
|
+
* <p/>
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
resourceId;
|
|
358
|
+
/**
|
|
359
|
+
* <p/>
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
resourceType;
|
|
318
363
|
/**
|
|
319
364
|
* @internal
|
|
320
365
|
*/
|
|
@@ -324,15 +369,11 @@ var _ConflictException = class _ConflictException extends IvschatServiceExceptio
|
|
|
324
369
|
$fault: "client",
|
|
325
370
|
...opts
|
|
326
371
|
});
|
|
327
|
-
this.name = "ConflictException";
|
|
328
|
-
this.$fault = "client";
|
|
329
372
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
330
373
|
this.resourceId = opts.resourceId;
|
|
331
374
|
this.resourceType = opts.resourceType;
|
|
332
375
|
}
|
|
333
376
|
};
|
|
334
|
-
__name(_ConflictException, "ConflictException");
|
|
335
|
-
var ConflictException = _ConflictException;
|
|
336
377
|
var DestinationConfiguration;
|
|
337
378
|
((DestinationConfiguration3) => {
|
|
338
379
|
DestinationConfiguration3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -348,7 +389,27 @@ var DestinationConfiguration;
|
|
|
348
389
|
var CreateLoggingConfigurationState = {
|
|
349
390
|
ACTIVE: "ACTIVE"
|
|
350
391
|
};
|
|
351
|
-
var
|
|
392
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends IvschatServiceException {
|
|
393
|
+
static {
|
|
394
|
+
__name(this, "ServiceQuotaExceededException");
|
|
395
|
+
}
|
|
396
|
+
name = "ServiceQuotaExceededException";
|
|
397
|
+
$fault = "client";
|
|
398
|
+
/**
|
|
399
|
+
* <p/>
|
|
400
|
+
* @public
|
|
401
|
+
*/
|
|
402
|
+
resourceId;
|
|
403
|
+
/**
|
|
404
|
+
* <p/>
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
resourceType;
|
|
408
|
+
/**
|
|
409
|
+
* <p/>
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
412
|
+
limit;
|
|
352
413
|
/**
|
|
353
414
|
* @internal
|
|
354
415
|
*/
|
|
@@ -358,21 +419,37 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
358
419
|
$fault: "client",
|
|
359
420
|
...opts
|
|
360
421
|
});
|
|
361
|
-
this.name = "ServiceQuotaExceededException";
|
|
362
|
-
this.$fault = "client";
|
|
363
422
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
364
423
|
this.resourceId = opts.resourceId;
|
|
365
424
|
this.resourceType = opts.resourceType;
|
|
366
425
|
this.limit = opts.limit;
|
|
367
426
|
}
|
|
368
427
|
};
|
|
369
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
370
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
371
428
|
var FallbackResult = {
|
|
372
429
|
ALLOW: "ALLOW",
|
|
373
430
|
DENY: "DENY"
|
|
374
431
|
};
|
|
375
|
-
var
|
|
432
|
+
var ThrottlingException = class _ThrottlingException extends IvschatServiceException {
|
|
433
|
+
static {
|
|
434
|
+
__name(this, "ThrottlingException");
|
|
435
|
+
}
|
|
436
|
+
name = "ThrottlingException";
|
|
437
|
+
$fault = "client";
|
|
438
|
+
/**
|
|
439
|
+
* <p/>
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
442
|
+
resourceId;
|
|
443
|
+
/**
|
|
444
|
+
* <p/>
|
|
445
|
+
* @public
|
|
446
|
+
*/
|
|
447
|
+
resourceType;
|
|
448
|
+
/**
|
|
449
|
+
* <p/>
|
|
450
|
+
* @public
|
|
451
|
+
*/
|
|
452
|
+
limit;
|
|
376
453
|
/**
|
|
377
454
|
* @internal
|
|
378
455
|
*/
|
|
@@ -382,16 +459,12 @@ var _ThrottlingException = class _ThrottlingException extends IvschatServiceExce
|
|
|
382
459
|
$fault: "client",
|
|
383
460
|
...opts
|
|
384
461
|
});
|
|
385
|
-
this.name = "ThrottlingException";
|
|
386
|
-
this.$fault = "client";
|
|
387
462
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
388
463
|
this.resourceId = opts.resourceId;
|
|
389
464
|
this.resourceType = opts.resourceType;
|
|
390
465
|
this.limit = opts.limit;
|
|
391
466
|
}
|
|
392
467
|
};
|
|
393
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
394
|
-
var ThrottlingException = _ThrottlingException;
|
|
395
468
|
var LoggingConfigurationState = {
|
|
396
469
|
ACTIVE: "ACTIVE",
|
|
397
470
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -401,7 +474,12 @@ var LoggingConfigurationState = {
|
|
|
401
474
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
402
475
|
UPDATING: "UPDATING"
|
|
403
476
|
};
|
|
404
|
-
var
|
|
477
|
+
var InternalServerException = class _InternalServerException extends IvschatServiceException {
|
|
478
|
+
static {
|
|
479
|
+
__name(this, "InternalServerException");
|
|
480
|
+
}
|
|
481
|
+
name = "InternalServerException";
|
|
482
|
+
$fault = "server";
|
|
405
483
|
/**
|
|
406
484
|
* @internal
|
|
407
485
|
*/
|
|
@@ -411,13 +489,9 @@ var _InternalServerException = class _InternalServerException extends IvschatSer
|
|
|
411
489
|
$fault: "server",
|
|
412
490
|
...opts
|
|
413
491
|
});
|
|
414
|
-
this.name = "InternalServerException";
|
|
415
|
-
this.$fault = "server";
|
|
416
492
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
417
493
|
}
|
|
418
494
|
};
|
|
419
|
-
__name(_InternalServerException, "InternalServerException");
|
|
420
|
-
var InternalServerException = _InternalServerException;
|
|
421
495
|
var UpdateLoggingConfigurationState = {
|
|
422
496
|
ACTIVE: "ACTIVE"
|
|
423
497
|
};
|
|
@@ -1187,239 +1261,256 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
|
1187
1261
|
var _tK = "tagKeys";
|
|
1188
1262
|
|
|
1189
1263
|
// src/commands/CreateChatTokenCommand.ts
|
|
1190
|
-
var
|
|
1264
|
+
var CreateChatTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1191
1265
|
return [
|
|
1192
1266
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1193
1267
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1194
1268
|
];
|
|
1195
1269
|
}).s("AmazonInteractiveVideoServiceChat", "CreateChatToken", {}).n("IvschatClient", "CreateChatTokenCommand").f(CreateChatTokenRequestFilterSensitiveLog, CreateChatTokenResponseFilterSensitiveLog).ser(se_CreateChatTokenCommand).de(de_CreateChatTokenCommand).build() {
|
|
1270
|
+
static {
|
|
1271
|
+
__name(this, "CreateChatTokenCommand");
|
|
1272
|
+
}
|
|
1196
1273
|
};
|
|
1197
|
-
__name(_CreateChatTokenCommand, "CreateChatTokenCommand");
|
|
1198
|
-
var CreateChatTokenCommand = _CreateChatTokenCommand;
|
|
1199
1274
|
|
|
1200
1275
|
// src/commands/CreateLoggingConfigurationCommand.ts
|
|
1201
1276
|
|
|
1202
1277
|
|
|
1203
1278
|
|
|
1204
|
-
var
|
|
1279
|
+
var CreateLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1205
1280
|
return [
|
|
1206
1281
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1207
1282
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1208
1283
|
];
|
|
1209
1284
|
}).s("AmazonInteractiveVideoServiceChat", "CreateLoggingConfiguration", {}).n("IvschatClient", "CreateLoggingConfigurationCommand").f(void 0, void 0).ser(se_CreateLoggingConfigurationCommand).de(de_CreateLoggingConfigurationCommand).build() {
|
|
1285
|
+
static {
|
|
1286
|
+
__name(this, "CreateLoggingConfigurationCommand");
|
|
1287
|
+
}
|
|
1210
1288
|
};
|
|
1211
|
-
__name(_CreateLoggingConfigurationCommand, "CreateLoggingConfigurationCommand");
|
|
1212
|
-
var CreateLoggingConfigurationCommand = _CreateLoggingConfigurationCommand;
|
|
1213
1289
|
|
|
1214
1290
|
// src/commands/CreateRoomCommand.ts
|
|
1215
1291
|
|
|
1216
1292
|
|
|
1217
1293
|
|
|
1218
|
-
var
|
|
1294
|
+
var CreateRoomCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1219
1295
|
return [
|
|
1220
1296
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1221
1297
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1222
1298
|
];
|
|
1223
1299
|
}).s("AmazonInteractiveVideoServiceChat", "CreateRoom", {}).n("IvschatClient", "CreateRoomCommand").f(void 0, void 0).ser(se_CreateRoomCommand).de(de_CreateRoomCommand).build() {
|
|
1300
|
+
static {
|
|
1301
|
+
__name(this, "CreateRoomCommand");
|
|
1302
|
+
}
|
|
1224
1303
|
};
|
|
1225
|
-
__name(_CreateRoomCommand, "CreateRoomCommand");
|
|
1226
|
-
var CreateRoomCommand = _CreateRoomCommand;
|
|
1227
1304
|
|
|
1228
1305
|
// src/commands/DeleteLoggingConfigurationCommand.ts
|
|
1229
1306
|
|
|
1230
1307
|
|
|
1231
1308
|
|
|
1232
|
-
var
|
|
1309
|
+
var DeleteLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1233
1310
|
return [
|
|
1234
1311
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1235
1312
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1236
1313
|
];
|
|
1237
1314
|
}).s("AmazonInteractiveVideoServiceChat", "DeleteLoggingConfiguration", {}).n("IvschatClient", "DeleteLoggingConfigurationCommand").f(void 0, void 0).ser(se_DeleteLoggingConfigurationCommand).de(de_DeleteLoggingConfigurationCommand).build() {
|
|
1315
|
+
static {
|
|
1316
|
+
__name(this, "DeleteLoggingConfigurationCommand");
|
|
1317
|
+
}
|
|
1238
1318
|
};
|
|
1239
|
-
__name(_DeleteLoggingConfigurationCommand, "DeleteLoggingConfigurationCommand");
|
|
1240
|
-
var DeleteLoggingConfigurationCommand = _DeleteLoggingConfigurationCommand;
|
|
1241
1319
|
|
|
1242
1320
|
// src/commands/DeleteMessageCommand.ts
|
|
1243
1321
|
|
|
1244
1322
|
|
|
1245
1323
|
|
|
1246
|
-
var
|
|
1324
|
+
var DeleteMessageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1247
1325
|
return [
|
|
1248
1326
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1249
1327
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1250
1328
|
];
|
|
1251
1329
|
}).s("AmazonInteractiveVideoServiceChat", "DeleteMessage", {}).n("IvschatClient", "DeleteMessageCommand").f(void 0, void 0).ser(se_DeleteMessageCommand).de(de_DeleteMessageCommand).build() {
|
|
1330
|
+
static {
|
|
1331
|
+
__name(this, "DeleteMessageCommand");
|
|
1332
|
+
}
|
|
1252
1333
|
};
|
|
1253
|
-
__name(_DeleteMessageCommand, "DeleteMessageCommand");
|
|
1254
|
-
var DeleteMessageCommand = _DeleteMessageCommand;
|
|
1255
1334
|
|
|
1256
1335
|
// src/commands/DeleteRoomCommand.ts
|
|
1257
1336
|
|
|
1258
1337
|
|
|
1259
1338
|
|
|
1260
|
-
var
|
|
1339
|
+
var DeleteRoomCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1261
1340
|
return [
|
|
1262
1341
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1263
1342
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1264
1343
|
];
|
|
1265
1344
|
}).s("AmazonInteractiveVideoServiceChat", "DeleteRoom", {}).n("IvschatClient", "DeleteRoomCommand").f(void 0, void 0).ser(se_DeleteRoomCommand).de(de_DeleteRoomCommand).build() {
|
|
1345
|
+
static {
|
|
1346
|
+
__name(this, "DeleteRoomCommand");
|
|
1347
|
+
}
|
|
1266
1348
|
};
|
|
1267
|
-
__name(_DeleteRoomCommand, "DeleteRoomCommand");
|
|
1268
|
-
var DeleteRoomCommand = _DeleteRoomCommand;
|
|
1269
1349
|
|
|
1270
1350
|
// src/commands/DisconnectUserCommand.ts
|
|
1271
1351
|
|
|
1272
1352
|
|
|
1273
1353
|
|
|
1274
|
-
var
|
|
1354
|
+
var DisconnectUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1275
1355
|
return [
|
|
1276
1356
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1277
1357
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1278
1358
|
];
|
|
1279
1359
|
}).s("AmazonInteractiveVideoServiceChat", "DisconnectUser", {}).n("IvschatClient", "DisconnectUserCommand").f(DisconnectUserRequestFilterSensitiveLog, void 0).ser(se_DisconnectUserCommand).de(de_DisconnectUserCommand).build() {
|
|
1360
|
+
static {
|
|
1361
|
+
__name(this, "DisconnectUserCommand");
|
|
1362
|
+
}
|
|
1280
1363
|
};
|
|
1281
|
-
__name(_DisconnectUserCommand, "DisconnectUserCommand");
|
|
1282
|
-
var DisconnectUserCommand = _DisconnectUserCommand;
|
|
1283
1364
|
|
|
1284
1365
|
// src/commands/GetLoggingConfigurationCommand.ts
|
|
1285
1366
|
|
|
1286
1367
|
|
|
1287
1368
|
|
|
1288
|
-
var
|
|
1369
|
+
var GetLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1289
1370
|
return [
|
|
1290
1371
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1291
1372
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1292
1373
|
];
|
|
1293
1374
|
}).s("AmazonInteractiveVideoServiceChat", "GetLoggingConfiguration", {}).n("IvschatClient", "GetLoggingConfigurationCommand").f(void 0, void 0).ser(se_GetLoggingConfigurationCommand).de(de_GetLoggingConfigurationCommand).build() {
|
|
1375
|
+
static {
|
|
1376
|
+
__name(this, "GetLoggingConfigurationCommand");
|
|
1377
|
+
}
|
|
1294
1378
|
};
|
|
1295
|
-
__name(_GetLoggingConfigurationCommand, "GetLoggingConfigurationCommand");
|
|
1296
|
-
var GetLoggingConfigurationCommand = _GetLoggingConfigurationCommand;
|
|
1297
1379
|
|
|
1298
1380
|
// src/commands/GetRoomCommand.ts
|
|
1299
1381
|
|
|
1300
1382
|
|
|
1301
1383
|
|
|
1302
|
-
var
|
|
1384
|
+
var GetRoomCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1303
1385
|
return [
|
|
1304
1386
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1305
1387
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1306
1388
|
];
|
|
1307
1389
|
}).s("AmazonInteractiveVideoServiceChat", "GetRoom", {}).n("IvschatClient", "GetRoomCommand").f(void 0, void 0).ser(se_GetRoomCommand).de(de_GetRoomCommand).build() {
|
|
1390
|
+
static {
|
|
1391
|
+
__name(this, "GetRoomCommand");
|
|
1392
|
+
}
|
|
1308
1393
|
};
|
|
1309
|
-
__name(_GetRoomCommand, "GetRoomCommand");
|
|
1310
|
-
var GetRoomCommand = _GetRoomCommand;
|
|
1311
1394
|
|
|
1312
1395
|
// src/commands/ListLoggingConfigurationsCommand.ts
|
|
1313
1396
|
|
|
1314
1397
|
|
|
1315
1398
|
|
|
1316
|
-
var
|
|
1399
|
+
var ListLoggingConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1317
1400
|
return [
|
|
1318
1401
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1319
1402
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1320
1403
|
];
|
|
1321
1404
|
}).s("AmazonInteractiveVideoServiceChat", "ListLoggingConfigurations", {}).n("IvschatClient", "ListLoggingConfigurationsCommand").f(void 0, void 0).ser(se_ListLoggingConfigurationsCommand).de(de_ListLoggingConfigurationsCommand).build() {
|
|
1405
|
+
static {
|
|
1406
|
+
__name(this, "ListLoggingConfigurationsCommand");
|
|
1407
|
+
}
|
|
1322
1408
|
};
|
|
1323
|
-
__name(_ListLoggingConfigurationsCommand, "ListLoggingConfigurationsCommand");
|
|
1324
|
-
var ListLoggingConfigurationsCommand = _ListLoggingConfigurationsCommand;
|
|
1325
1409
|
|
|
1326
1410
|
// src/commands/ListRoomsCommand.ts
|
|
1327
1411
|
|
|
1328
1412
|
|
|
1329
1413
|
|
|
1330
|
-
var
|
|
1414
|
+
var ListRoomsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1331
1415
|
return [
|
|
1332
1416
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1333
1417
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1334
1418
|
];
|
|
1335
1419
|
}).s("AmazonInteractiveVideoServiceChat", "ListRooms", {}).n("IvschatClient", "ListRoomsCommand").f(void 0, void 0).ser(se_ListRoomsCommand).de(de_ListRoomsCommand).build() {
|
|
1420
|
+
static {
|
|
1421
|
+
__name(this, "ListRoomsCommand");
|
|
1422
|
+
}
|
|
1336
1423
|
};
|
|
1337
|
-
__name(_ListRoomsCommand, "ListRoomsCommand");
|
|
1338
|
-
var ListRoomsCommand = _ListRoomsCommand;
|
|
1339
1424
|
|
|
1340
1425
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1341
1426
|
|
|
1342
1427
|
|
|
1343
1428
|
|
|
1344
|
-
var
|
|
1429
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1345
1430
|
return [
|
|
1346
1431
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1347
1432
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1348
1433
|
];
|
|
1349
1434
|
}).s("AmazonInteractiveVideoServiceChat", "ListTagsForResource", {}).n("IvschatClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1435
|
+
static {
|
|
1436
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1437
|
+
}
|
|
1350
1438
|
};
|
|
1351
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1352
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1353
1439
|
|
|
1354
1440
|
// src/commands/SendEventCommand.ts
|
|
1355
1441
|
|
|
1356
1442
|
|
|
1357
1443
|
|
|
1358
|
-
var
|
|
1444
|
+
var SendEventCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1359
1445
|
return [
|
|
1360
1446
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1361
1447
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1362
1448
|
];
|
|
1363
1449
|
}).s("AmazonInteractiveVideoServiceChat", "SendEvent", {}).n("IvschatClient", "SendEventCommand").f(void 0, void 0).ser(se_SendEventCommand).de(de_SendEventCommand).build() {
|
|
1450
|
+
static {
|
|
1451
|
+
__name(this, "SendEventCommand");
|
|
1452
|
+
}
|
|
1364
1453
|
};
|
|
1365
|
-
__name(_SendEventCommand, "SendEventCommand");
|
|
1366
|
-
var SendEventCommand = _SendEventCommand;
|
|
1367
1454
|
|
|
1368
1455
|
// src/commands/TagResourceCommand.ts
|
|
1369
1456
|
|
|
1370
1457
|
|
|
1371
1458
|
|
|
1372
|
-
var
|
|
1459
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1373
1460
|
return [
|
|
1374
1461
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1375
1462
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1376
1463
|
];
|
|
1377
1464
|
}).s("AmazonInteractiveVideoServiceChat", "TagResource", {}).n("IvschatClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1465
|
+
static {
|
|
1466
|
+
__name(this, "TagResourceCommand");
|
|
1467
|
+
}
|
|
1378
1468
|
};
|
|
1379
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1380
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1381
1469
|
|
|
1382
1470
|
// src/commands/UntagResourceCommand.ts
|
|
1383
1471
|
|
|
1384
1472
|
|
|
1385
1473
|
|
|
1386
|
-
var
|
|
1474
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1387
1475
|
return [
|
|
1388
1476
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1389
1477
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1390
1478
|
];
|
|
1391
1479
|
}).s("AmazonInteractiveVideoServiceChat", "UntagResource", {}).n("IvschatClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1480
|
+
static {
|
|
1481
|
+
__name(this, "UntagResourceCommand");
|
|
1482
|
+
}
|
|
1392
1483
|
};
|
|
1393
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1394
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1395
1484
|
|
|
1396
1485
|
// src/commands/UpdateLoggingConfigurationCommand.ts
|
|
1397
1486
|
|
|
1398
1487
|
|
|
1399
1488
|
|
|
1400
|
-
var
|
|
1489
|
+
var UpdateLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1401
1490
|
return [
|
|
1402
1491
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1403
1492
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1404
1493
|
];
|
|
1405
1494
|
}).s("AmazonInteractiveVideoServiceChat", "UpdateLoggingConfiguration", {}).n("IvschatClient", "UpdateLoggingConfigurationCommand").f(void 0, void 0).ser(se_UpdateLoggingConfigurationCommand).de(de_UpdateLoggingConfigurationCommand).build() {
|
|
1495
|
+
static {
|
|
1496
|
+
__name(this, "UpdateLoggingConfigurationCommand");
|
|
1497
|
+
}
|
|
1406
1498
|
};
|
|
1407
|
-
__name(_UpdateLoggingConfigurationCommand, "UpdateLoggingConfigurationCommand");
|
|
1408
|
-
var UpdateLoggingConfigurationCommand = _UpdateLoggingConfigurationCommand;
|
|
1409
1499
|
|
|
1410
1500
|
// src/commands/UpdateRoomCommand.ts
|
|
1411
1501
|
|
|
1412
1502
|
|
|
1413
1503
|
|
|
1414
|
-
var
|
|
1504
|
+
var UpdateRoomCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1415
1505
|
return [
|
|
1416
1506
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1417
1507
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1418
1508
|
];
|
|
1419
1509
|
}).s("AmazonInteractiveVideoServiceChat", "UpdateRoom", {}).n("IvschatClient", "UpdateRoomCommand").f(void 0, void 0).ser(se_UpdateRoomCommand).de(de_UpdateRoomCommand).build() {
|
|
1510
|
+
static {
|
|
1511
|
+
__name(this, "UpdateRoomCommand");
|
|
1512
|
+
}
|
|
1420
1513
|
};
|
|
1421
|
-
__name(_UpdateRoomCommand, "UpdateRoomCommand");
|
|
1422
|
-
var UpdateRoomCommand = _UpdateRoomCommand;
|
|
1423
1514
|
|
|
1424
1515
|
// src/Ivschat.ts
|
|
1425
1516
|
var commands = {
|
|
@@ -1441,10 +1532,11 @@ var commands = {
|
|
|
1441
1532
|
UpdateLoggingConfigurationCommand,
|
|
1442
1533
|
UpdateRoomCommand
|
|
1443
1534
|
};
|
|
1444
|
-
var
|
|
1535
|
+
var Ivschat = class extends IvschatClient {
|
|
1536
|
+
static {
|
|
1537
|
+
__name(this, "Ivschat");
|
|
1538
|
+
}
|
|
1445
1539
|
};
|
|
1446
|
-
__name(_Ivschat, "Ivschat");
|
|
1447
|
-
var Ivschat = _Ivschat;
|
|
1448
1540
|
(0, import_smithy_client.createAggregatedClient)(commands, Ivschat);
|
|
1449
1541
|
|
|
1450
1542
|
// src/pagination/ListLoggingConfigurationsPaginator.ts
|
package/dist-es/IvschatClient.js
CHANGED
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class IvschatClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { IvschatServiceException as __BaseException } from "./IvschatServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
4
6
|
constructor(opts) {
|
|
5
7
|
super({
|
|
6
8
|
name: "AccessDeniedException",
|
|
7
9
|
$fault: "client",
|
|
8
10
|
...opts,
|
|
9
11
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -18,14 +18,14 @@ export const ChatTokenCapability = {
|
|
|
18
18
|
SEND_MESSAGE: "SEND_MESSAGE",
|
|
19
19
|
};
|
|
20
20
|
export class PendingVerification extends __BaseException {
|
|
21
|
+
name = "PendingVerification";
|
|
22
|
+
$fault = "client";
|
|
21
23
|
constructor(opts) {
|
|
22
24
|
super({
|
|
23
25
|
name: "PendingVerification",
|
|
24
26
|
$fault: "client",
|
|
25
27
|
...opts,
|
|
26
28
|
});
|
|
27
|
-
this.name = "PendingVerification";
|
|
28
|
-
this.$fault = "client";
|
|
29
29
|
Object.setPrototypeOf(this, PendingVerification.prototype);
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -33,14 +33,16 @@ export const ResourceType = {
|
|
|
33
33
|
ROOM: "ROOM",
|
|
34
34
|
};
|
|
35
35
|
export class ResourceNotFoundException extends __BaseException {
|
|
36
|
+
name = "ResourceNotFoundException";
|
|
37
|
+
$fault = "client";
|
|
38
|
+
resourceId;
|
|
39
|
+
resourceType;
|
|
36
40
|
constructor(opts) {
|
|
37
41
|
super({
|
|
38
42
|
name: "ResourceNotFoundException",
|
|
39
43
|
$fault: "client",
|
|
40
44
|
...opts,
|
|
41
45
|
});
|
|
42
|
-
this.name = "ResourceNotFoundException";
|
|
43
|
-
this.$fault = "client";
|
|
44
46
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
45
47
|
this.resourceId = opts.resourceId;
|
|
46
48
|
this.resourceType = opts.resourceType;
|
|
@@ -52,28 +54,32 @@ export const ValidationExceptionReason = {
|
|
|
52
54
|
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
53
55
|
};
|
|
54
56
|
export class ValidationException extends __BaseException {
|
|
57
|
+
name = "ValidationException";
|
|
58
|
+
$fault = "client";
|
|
59
|
+
reason;
|
|
60
|
+
fieldList;
|
|
55
61
|
constructor(opts) {
|
|
56
62
|
super({
|
|
57
63
|
name: "ValidationException",
|
|
58
64
|
$fault: "client",
|
|
59
65
|
...opts,
|
|
60
66
|
});
|
|
61
|
-
this.name = "ValidationException";
|
|
62
|
-
this.$fault = "client";
|
|
63
67
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
64
68
|
this.reason = opts.reason;
|
|
65
69
|
this.fieldList = opts.fieldList;
|
|
66
70
|
}
|
|
67
71
|
}
|
|
68
72
|
export class ConflictException extends __BaseException {
|
|
73
|
+
name = "ConflictException";
|
|
74
|
+
$fault = "client";
|
|
75
|
+
resourceId;
|
|
76
|
+
resourceType;
|
|
69
77
|
constructor(opts) {
|
|
70
78
|
super({
|
|
71
79
|
name: "ConflictException",
|
|
72
80
|
$fault: "client",
|
|
73
81
|
...opts,
|
|
74
82
|
});
|
|
75
|
-
this.name = "ConflictException";
|
|
76
|
-
this.$fault = "client";
|
|
77
83
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
78
84
|
this.resourceId = opts.resourceId;
|
|
79
85
|
this.resourceType = opts.resourceType;
|
|
@@ -95,14 +101,17 @@ export const CreateLoggingConfigurationState = {
|
|
|
95
101
|
ACTIVE: "ACTIVE",
|
|
96
102
|
};
|
|
97
103
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
104
|
+
name = "ServiceQuotaExceededException";
|
|
105
|
+
$fault = "client";
|
|
106
|
+
resourceId;
|
|
107
|
+
resourceType;
|
|
108
|
+
limit;
|
|
98
109
|
constructor(opts) {
|
|
99
110
|
super({
|
|
100
111
|
name: "ServiceQuotaExceededException",
|
|
101
112
|
$fault: "client",
|
|
102
113
|
...opts,
|
|
103
114
|
});
|
|
104
|
-
this.name = "ServiceQuotaExceededException";
|
|
105
|
-
this.$fault = "client";
|
|
106
115
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
107
116
|
this.resourceId = opts.resourceId;
|
|
108
117
|
this.resourceType = opts.resourceType;
|
|
@@ -114,14 +123,17 @@ export const FallbackResult = {
|
|
|
114
123
|
DENY: "DENY",
|
|
115
124
|
};
|
|
116
125
|
export class ThrottlingException extends __BaseException {
|
|
126
|
+
name = "ThrottlingException";
|
|
127
|
+
$fault = "client";
|
|
128
|
+
resourceId;
|
|
129
|
+
resourceType;
|
|
130
|
+
limit;
|
|
117
131
|
constructor(opts) {
|
|
118
132
|
super({
|
|
119
133
|
name: "ThrottlingException",
|
|
120
134
|
$fault: "client",
|
|
121
135
|
...opts,
|
|
122
136
|
});
|
|
123
|
-
this.name = "ThrottlingException";
|
|
124
|
-
this.$fault = "client";
|
|
125
137
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
126
138
|
this.resourceId = opts.resourceId;
|
|
127
139
|
this.resourceType = opts.resourceType;
|
|
@@ -138,14 +150,14 @@ export const LoggingConfigurationState = {
|
|
|
138
150
|
UPDATING: "UPDATING",
|
|
139
151
|
};
|
|
140
152
|
export class InternalServerException extends __BaseException {
|
|
153
|
+
name = "InternalServerException";
|
|
154
|
+
$fault = "server";
|
|
141
155
|
constructor(opts) {
|
|
142
156
|
super({
|
|
143
157
|
name: "InternalServerException",
|
|
144
158
|
$fault: "server",
|
|
145
159
|
...opts,
|
|
146
160
|
});
|
|
147
|
-
this.name = "InternalServerException";
|
|
148
|
-
this.$fault = "server";
|
|
149
161
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
150
162
|
}
|
|
151
163
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
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> | undefined;
|
|
34
|
+
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;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: IvschatClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivschat",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivschat Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ivschat",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|