@aws-sdk/client-repostspace 3.716.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 +185 -88
- package/dist-es/RepostspaceClient.js +1 -0
- package/dist-es/models/models_0.js +32 -18
- 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
|
@@ -158,7 +158,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
158
158
|
}, "resolveRuntimeExtensions");
|
|
159
159
|
|
|
160
160
|
// src/RepostspaceClient.ts
|
|
161
|
-
var
|
|
161
|
+
var RepostspaceClient = class extends import_smithy_client.Client {
|
|
162
|
+
static {
|
|
163
|
+
__name(this, "RepostspaceClient");
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* The resolved configuration of RepostspaceClient class. This is resolved and normalized from the {@link RepostspaceClientConfig | constructor configuration interface}.
|
|
167
|
+
*/
|
|
168
|
+
config;
|
|
162
169
|
constructor(...[configuration]) {
|
|
163
170
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
164
171
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -168,7 +175,7 @@ var _RepostspaceClient = class _RepostspaceClient extends import_smithy_client.C
|
|
|
168
175
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
169
176
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
170
177
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
171
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
178
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
172
179
|
super(_config_8);
|
|
173
180
|
this.config = _config_8;
|
|
174
181
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -196,8 +203,6 @@ var _RepostspaceClient = class _RepostspaceClient extends import_smithy_client.C
|
|
|
196
203
|
super.destroy();
|
|
197
204
|
}
|
|
198
205
|
};
|
|
199
|
-
__name(_RepostspaceClient, "RepostspaceClient");
|
|
200
|
-
var RepostspaceClient = _RepostspaceClient;
|
|
201
206
|
|
|
202
207
|
// src/Repostspace.ts
|
|
203
208
|
|
|
@@ -217,7 +222,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
217
222
|
|
|
218
223
|
// src/models/RepostspaceServiceException.ts
|
|
219
224
|
|
|
220
|
-
var
|
|
225
|
+
var RepostspaceServiceException = class _RepostspaceServiceException extends import_smithy_client.ServiceException {
|
|
226
|
+
static {
|
|
227
|
+
__name(this, "RepostspaceServiceException");
|
|
228
|
+
}
|
|
221
229
|
/**
|
|
222
230
|
* @internal
|
|
223
231
|
*/
|
|
@@ -226,11 +234,14 @@ var _RepostspaceServiceException = class _RepostspaceServiceException extends im
|
|
|
226
234
|
Object.setPrototypeOf(this, _RepostspaceServiceException.prototype);
|
|
227
235
|
}
|
|
228
236
|
};
|
|
229
|
-
__name(_RepostspaceServiceException, "RepostspaceServiceException");
|
|
230
|
-
var RepostspaceServiceException = _RepostspaceServiceException;
|
|
231
237
|
|
|
232
238
|
// src/models/models_0.ts
|
|
233
|
-
var
|
|
239
|
+
var AccessDeniedException = class _AccessDeniedException extends RepostspaceServiceException {
|
|
240
|
+
static {
|
|
241
|
+
__name(this, "AccessDeniedException");
|
|
242
|
+
}
|
|
243
|
+
name = "AccessDeniedException";
|
|
244
|
+
$fault = "client";
|
|
234
245
|
/**
|
|
235
246
|
* @internal
|
|
236
247
|
*/
|
|
@@ -240,20 +251,27 @@ var _AccessDeniedException = class _AccessDeniedException extends RepostspaceSer
|
|
|
240
251
|
$fault: "client",
|
|
241
252
|
...opts
|
|
242
253
|
});
|
|
243
|
-
this.name = "AccessDeniedException";
|
|
244
|
-
this.$fault = "client";
|
|
245
254
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
246
255
|
}
|
|
247
256
|
};
|
|
248
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
249
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
250
257
|
var Role = {
|
|
251
258
|
ADMINISTRATOR: "ADMINISTRATOR",
|
|
252
259
|
EXPERT: "EXPERT",
|
|
253
260
|
MODERATOR: "MODERATOR",
|
|
254
261
|
SUPPORTREQUESTOR: "SUPPORTREQUESTOR"
|
|
255
262
|
};
|
|
256
|
-
var
|
|
263
|
+
var InternalServerException = class _InternalServerException extends RepostspaceServiceException {
|
|
264
|
+
static {
|
|
265
|
+
__name(this, "InternalServerException");
|
|
266
|
+
}
|
|
267
|
+
name = "InternalServerException";
|
|
268
|
+
$fault = "server";
|
|
269
|
+
$retryable = {};
|
|
270
|
+
/**
|
|
271
|
+
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
272
|
+
* @public
|
|
273
|
+
*/
|
|
274
|
+
retryAfterSeconds;
|
|
257
275
|
/**
|
|
258
276
|
* @internal
|
|
259
277
|
*/
|
|
@@ -263,16 +281,26 @@ var _InternalServerException = class _InternalServerException extends Repostspac
|
|
|
263
281
|
$fault: "server",
|
|
264
282
|
...opts
|
|
265
283
|
});
|
|
266
|
-
this.name = "InternalServerException";
|
|
267
|
-
this.$fault = "server";
|
|
268
|
-
this.$retryable = {};
|
|
269
284
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
270
285
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
271
286
|
}
|
|
272
287
|
};
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
288
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends RepostspaceServiceException {
|
|
289
|
+
static {
|
|
290
|
+
__name(this, "ResourceNotFoundException");
|
|
291
|
+
}
|
|
292
|
+
name = "ResourceNotFoundException";
|
|
293
|
+
$fault = "client";
|
|
294
|
+
/**
|
|
295
|
+
* <p>The ID of the resource.</p>
|
|
296
|
+
* @public
|
|
297
|
+
*/
|
|
298
|
+
resourceId;
|
|
299
|
+
/**
|
|
300
|
+
* <p>The type of the resource.</p>
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
resourceType;
|
|
276
304
|
/**
|
|
277
305
|
* @internal
|
|
278
306
|
*/
|
|
@@ -282,16 +310,35 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Repost
|
|
|
282
310
|
$fault: "client",
|
|
283
311
|
...opts
|
|
284
312
|
});
|
|
285
|
-
this.name = "ResourceNotFoundException";
|
|
286
|
-
this.$fault = "client";
|
|
287
313
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
288
314
|
this.resourceId = opts.resourceId;
|
|
289
315
|
this.resourceType = opts.resourceType;
|
|
290
316
|
}
|
|
291
317
|
};
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
318
|
+
var ThrottlingException = class _ThrottlingException extends RepostspaceServiceException {
|
|
319
|
+
static {
|
|
320
|
+
__name(this, "ThrottlingException");
|
|
321
|
+
}
|
|
322
|
+
name = "ThrottlingException";
|
|
323
|
+
$fault = "client";
|
|
324
|
+
$retryable = {
|
|
325
|
+
throttling: true
|
|
326
|
+
};
|
|
327
|
+
/**
|
|
328
|
+
* <p>The code to identify the service.</p>
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
331
|
+
serviceCode;
|
|
332
|
+
/**
|
|
333
|
+
* <p>The code to identify the quota.</p>
|
|
334
|
+
* @public
|
|
335
|
+
*/
|
|
336
|
+
quotaCode;
|
|
337
|
+
/**
|
|
338
|
+
* <p> Advice to clients on when the call can be safely retried.</p>
|
|
339
|
+
* @public
|
|
340
|
+
*/
|
|
341
|
+
retryAfterSeconds;
|
|
295
342
|
/**
|
|
296
343
|
* @internal
|
|
297
344
|
*/
|
|
@@ -301,26 +348,34 @@ var _ThrottlingException = class _ThrottlingException extends RepostspaceService
|
|
|
301
348
|
$fault: "client",
|
|
302
349
|
...opts
|
|
303
350
|
});
|
|
304
|
-
this.name = "ThrottlingException";
|
|
305
|
-
this.$fault = "client";
|
|
306
|
-
this.$retryable = {
|
|
307
|
-
throttling: true
|
|
308
|
-
};
|
|
309
351
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
310
352
|
this.serviceCode = opts.serviceCode;
|
|
311
353
|
this.quotaCode = opts.quotaCode;
|
|
312
354
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
313
355
|
}
|
|
314
356
|
};
|
|
315
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
316
|
-
var ThrottlingException = _ThrottlingException;
|
|
317
357
|
var ValidationExceptionReason = {
|
|
318
358
|
CANNOT_PARSE: "cannotParse",
|
|
319
359
|
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
320
360
|
OTHER: "other",
|
|
321
361
|
UNKNOWN_OPERATION: "unknownOperation"
|
|
322
362
|
};
|
|
323
|
-
var
|
|
363
|
+
var ValidationException = class _ValidationException extends RepostspaceServiceException {
|
|
364
|
+
static {
|
|
365
|
+
__name(this, "ValidationException");
|
|
366
|
+
}
|
|
367
|
+
name = "ValidationException";
|
|
368
|
+
$fault = "client";
|
|
369
|
+
/**
|
|
370
|
+
* <p>The reason why the request failed validation.</p>
|
|
371
|
+
* @public
|
|
372
|
+
*/
|
|
373
|
+
reason;
|
|
374
|
+
/**
|
|
375
|
+
* <p>The field that caused the error, if applicable.</p>
|
|
376
|
+
* @public
|
|
377
|
+
*/
|
|
378
|
+
fieldList;
|
|
324
379
|
/**
|
|
325
380
|
* @internal
|
|
326
381
|
*/
|
|
@@ -330,20 +385,31 @@ var _ValidationException = class _ValidationException extends RepostspaceService
|
|
|
330
385
|
$fault: "client",
|
|
331
386
|
...opts
|
|
332
387
|
});
|
|
333
|
-
this.name = "ValidationException";
|
|
334
|
-
this.$fault = "client";
|
|
335
388
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
336
389
|
this.reason = opts.reason;
|
|
337
390
|
this.fieldList = opts.fieldList;
|
|
338
391
|
}
|
|
339
392
|
};
|
|
340
|
-
__name(_ValidationException, "ValidationException");
|
|
341
|
-
var ValidationException = _ValidationException;
|
|
342
393
|
var ConfigurationStatus = {
|
|
343
394
|
CONFIGURED: "CONFIGURED",
|
|
344
395
|
UNCONFIGURED: "UNCONFIGURED"
|
|
345
396
|
};
|
|
346
|
-
var
|
|
397
|
+
var ConflictException = class _ConflictException extends RepostspaceServiceException {
|
|
398
|
+
static {
|
|
399
|
+
__name(this, "ConflictException");
|
|
400
|
+
}
|
|
401
|
+
name = "ConflictException";
|
|
402
|
+
$fault = "client";
|
|
403
|
+
/**
|
|
404
|
+
* <p>The ID of the resource.</p>
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
resourceId;
|
|
408
|
+
/**
|
|
409
|
+
* <p>The type of the resource.</p>
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
412
|
+
resourceType;
|
|
347
413
|
/**
|
|
348
414
|
* @internal
|
|
349
415
|
*/
|
|
@@ -353,20 +419,41 @@ var _ConflictException = class _ConflictException extends RepostspaceServiceExce
|
|
|
353
419
|
$fault: "client",
|
|
354
420
|
...opts
|
|
355
421
|
});
|
|
356
|
-
this.name = "ConflictException";
|
|
357
|
-
this.$fault = "client";
|
|
358
422
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
359
423
|
this.resourceId = opts.resourceId;
|
|
360
424
|
this.resourceType = opts.resourceType;
|
|
361
425
|
}
|
|
362
426
|
};
|
|
363
|
-
__name(_ConflictException, "ConflictException");
|
|
364
|
-
var ConflictException = _ConflictException;
|
|
365
427
|
var TierLevel = {
|
|
366
428
|
BASIC: "BASIC",
|
|
367
429
|
STANDARD: "STANDARD"
|
|
368
430
|
};
|
|
369
|
-
var
|
|
431
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends RepostspaceServiceException {
|
|
432
|
+
static {
|
|
433
|
+
__name(this, "ServiceQuotaExceededException");
|
|
434
|
+
}
|
|
435
|
+
name = "ServiceQuotaExceededException";
|
|
436
|
+
$fault = "client";
|
|
437
|
+
/**
|
|
438
|
+
* <p>The id of the resource.</p>
|
|
439
|
+
* @public
|
|
440
|
+
*/
|
|
441
|
+
resourceId;
|
|
442
|
+
/**
|
|
443
|
+
* <p>The type of the resource.</p>
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
446
|
+
resourceType;
|
|
447
|
+
/**
|
|
448
|
+
* <p>The code to identify the service.</p>
|
|
449
|
+
* @public
|
|
450
|
+
*/
|
|
451
|
+
serviceCode;
|
|
452
|
+
/**
|
|
453
|
+
* <p>The code to identify the quota.</p>
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
456
|
+
quotaCode;
|
|
370
457
|
/**
|
|
371
458
|
* @internal
|
|
372
459
|
*/
|
|
@@ -376,8 +463,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
376
463
|
$fault: "client",
|
|
377
464
|
...opts
|
|
378
465
|
});
|
|
379
|
-
this.name = "ServiceQuotaExceededException";
|
|
380
|
-
this.$fault = "client";
|
|
381
466
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
382
467
|
this.resourceId = opts.resourceId;
|
|
383
468
|
this.resourceType = opts.resourceType;
|
|
@@ -385,8 +470,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
385
470
|
this.quotaCode = opts.quotaCode;
|
|
386
471
|
}
|
|
387
472
|
};
|
|
388
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
389
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
390
473
|
var VanityDomainStatus = {
|
|
391
474
|
APPROVED: "APPROVED",
|
|
392
475
|
PENDING: "PENDING",
|
|
@@ -970,183 +1053,196 @@ var _ra = "retry-after";
|
|
|
970
1053
|
var _tK = "tagKeys";
|
|
971
1054
|
|
|
972
1055
|
// src/commands/BatchAddRoleCommand.ts
|
|
973
|
-
var
|
|
1056
|
+
var BatchAddRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
974
1057
|
return [
|
|
975
1058
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
976
1059
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
977
1060
|
];
|
|
978
1061
|
}).s("RepostSpace", "BatchAddRole", {}).n("RepostspaceClient", "BatchAddRoleCommand").f(void 0, void 0).ser(se_BatchAddRoleCommand).de(de_BatchAddRoleCommand).build() {
|
|
1062
|
+
static {
|
|
1063
|
+
__name(this, "BatchAddRoleCommand");
|
|
1064
|
+
}
|
|
979
1065
|
};
|
|
980
|
-
__name(_BatchAddRoleCommand, "BatchAddRoleCommand");
|
|
981
|
-
var BatchAddRoleCommand = _BatchAddRoleCommand;
|
|
982
1066
|
|
|
983
1067
|
// src/commands/BatchRemoveRoleCommand.ts
|
|
984
1068
|
|
|
985
1069
|
|
|
986
1070
|
|
|
987
|
-
var
|
|
1071
|
+
var BatchRemoveRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
988
1072
|
return [
|
|
989
1073
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
990
1074
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
991
1075
|
];
|
|
992
1076
|
}).s("RepostSpace", "BatchRemoveRole", {}).n("RepostspaceClient", "BatchRemoveRoleCommand").f(void 0, void 0).ser(se_BatchRemoveRoleCommand).de(de_BatchRemoveRoleCommand).build() {
|
|
1077
|
+
static {
|
|
1078
|
+
__name(this, "BatchRemoveRoleCommand");
|
|
1079
|
+
}
|
|
993
1080
|
};
|
|
994
|
-
__name(_BatchRemoveRoleCommand, "BatchRemoveRoleCommand");
|
|
995
|
-
var BatchRemoveRoleCommand = _BatchRemoveRoleCommand;
|
|
996
1081
|
|
|
997
1082
|
// src/commands/CreateSpaceCommand.ts
|
|
998
1083
|
|
|
999
1084
|
|
|
1000
1085
|
|
|
1001
|
-
var
|
|
1086
|
+
var CreateSpaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1002
1087
|
return [
|
|
1003
1088
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1004
1089
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1005
1090
|
];
|
|
1006
1091
|
}).s("RepostSpace", "CreateSpace", {}).n("RepostspaceClient", "CreateSpaceCommand").f(CreateSpaceInputFilterSensitiveLog, void 0).ser(se_CreateSpaceCommand).de(de_CreateSpaceCommand).build() {
|
|
1092
|
+
static {
|
|
1093
|
+
__name(this, "CreateSpaceCommand");
|
|
1094
|
+
}
|
|
1007
1095
|
};
|
|
1008
|
-
__name(_CreateSpaceCommand, "CreateSpaceCommand");
|
|
1009
|
-
var CreateSpaceCommand = _CreateSpaceCommand;
|
|
1010
1096
|
|
|
1011
1097
|
// src/commands/DeleteSpaceCommand.ts
|
|
1012
1098
|
|
|
1013
1099
|
|
|
1014
1100
|
|
|
1015
|
-
var
|
|
1101
|
+
var DeleteSpaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1016
1102
|
return [
|
|
1017
1103
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1018
1104
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1019
1105
|
];
|
|
1020
1106
|
}).s("RepostSpace", "DeleteSpace", {}).n("RepostspaceClient", "DeleteSpaceCommand").f(void 0, void 0).ser(se_DeleteSpaceCommand).de(de_DeleteSpaceCommand).build() {
|
|
1107
|
+
static {
|
|
1108
|
+
__name(this, "DeleteSpaceCommand");
|
|
1109
|
+
}
|
|
1021
1110
|
};
|
|
1022
|
-
__name(_DeleteSpaceCommand, "DeleteSpaceCommand");
|
|
1023
|
-
var DeleteSpaceCommand = _DeleteSpaceCommand;
|
|
1024
1111
|
|
|
1025
1112
|
// src/commands/DeregisterAdminCommand.ts
|
|
1026
1113
|
|
|
1027
1114
|
|
|
1028
1115
|
|
|
1029
|
-
var
|
|
1116
|
+
var DeregisterAdminCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1030
1117
|
return [
|
|
1031
1118
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1032
1119
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1033
1120
|
];
|
|
1034
1121
|
}).s("RepostSpace", "DeregisterAdmin", {}).n("RepostspaceClient", "DeregisterAdminCommand").f(void 0, void 0).ser(se_DeregisterAdminCommand).de(de_DeregisterAdminCommand).build() {
|
|
1122
|
+
static {
|
|
1123
|
+
__name(this, "DeregisterAdminCommand");
|
|
1124
|
+
}
|
|
1035
1125
|
};
|
|
1036
|
-
__name(_DeregisterAdminCommand, "DeregisterAdminCommand");
|
|
1037
|
-
var DeregisterAdminCommand = _DeregisterAdminCommand;
|
|
1038
1126
|
|
|
1039
1127
|
// src/commands/GetSpaceCommand.ts
|
|
1040
1128
|
|
|
1041
1129
|
|
|
1042
1130
|
|
|
1043
|
-
var
|
|
1131
|
+
var GetSpaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1044
1132
|
return [
|
|
1045
1133
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1046
1134
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1047
1135
|
];
|
|
1048
1136
|
}).s("RepostSpace", "GetSpace", {}).n("RepostspaceClient", "GetSpaceCommand").f(void 0, GetSpaceOutputFilterSensitiveLog).ser(se_GetSpaceCommand).de(de_GetSpaceCommand).build() {
|
|
1137
|
+
static {
|
|
1138
|
+
__name(this, "GetSpaceCommand");
|
|
1139
|
+
}
|
|
1049
1140
|
};
|
|
1050
|
-
__name(_GetSpaceCommand, "GetSpaceCommand");
|
|
1051
|
-
var GetSpaceCommand = _GetSpaceCommand;
|
|
1052
1141
|
|
|
1053
1142
|
// src/commands/ListSpacesCommand.ts
|
|
1054
1143
|
|
|
1055
1144
|
|
|
1056
1145
|
|
|
1057
|
-
var
|
|
1146
|
+
var ListSpacesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1058
1147
|
return [
|
|
1059
1148
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1060
1149
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1061
1150
|
];
|
|
1062
1151
|
}).s("RepostSpace", "ListSpaces", {}).n("RepostspaceClient", "ListSpacesCommand").f(void 0, ListSpacesOutputFilterSensitiveLog).ser(se_ListSpacesCommand).de(de_ListSpacesCommand).build() {
|
|
1152
|
+
static {
|
|
1153
|
+
__name(this, "ListSpacesCommand");
|
|
1154
|
+
}
|
|
1063
1155
|
};
|
|
1064
|
-
__name(_ListSpacesCommand, "ListSpacesCommand");
|
|
1065
|
-
var ListSpacesCommand = _ListSpacesCommand;
|
|
1066
1156
|
|
|
1067
1157
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1068
1158
|
|
|
1069
1159
|
|
|
1070
1160
|
|
|
1071
|
-
var
|
|
1161
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1072
1162
|
return [
|
|
1073
1163
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1074
1164
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1075
1165
|
];
|
|
1076
1166
|
}).s("RepostSpace", "ListTagsForResource", {}).n("RepostspaceClient", "ListTagsForResourceCommand").f(void 0, ListTagsForResourceResponseFilterSensitiveLog).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1167
|
+
static {
|
|
1168
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1169
|
+
}
|
|
1077
1170
|
};
|
|
1078
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1079
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1080
1171
|
|
|
1081
1172
|
// src/commands/RegisterAdminCommand.ts
|
|
1082
1173
|
|
|
1083
1174
|
|
|
1084
1175
|
|
|
1085
|
-
var
|
|
1176
|
+
var RegisterAdminCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1086
1177
|
return [
|
|
1087
1178
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1088
1179
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1089
1180
|
];
|
|
1090
1181
|
}).s("RepostSpace", "RegisterAdmin", {}).n("RepostspaceClient", "RegisterAdminCommand").f(void 0, void 0).ser(se_RegisterAdminCommand).de(de_RegisterAdminCommand).build() {
|
|
1182
|
+
static {
|
|
1183
|
+
__name(this, "RegisterAdminCommand");
|
|
1184
|
+
}
|
|
1091
1185
|
};
|
|
1092
|
-
__name(_RegisterAdminCommand, "RegisterAdminCommand");
|
|
1093
|
-
var RegisterAdminCommand = _RegisterAdminCommand;
|
|
1094
1186
|
|
|
1095
1187
|
// src/commands/SendInvitesCommand.ts
|
|
1096
1188
|
|
|
1097
1189
|
|
|
1098
1190
|
|
|
1099
|
-
var
|
|
1191
|
+
var SendInvitesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1100
1192
|
return [
|
|
1101
1193
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1102
1194
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1103
1195
|
];
|
|
1104
1196
|
}).s("RepostSpace", "SendInvites", {}).n("RepostspaceClient", "SendInvitesCommand").f(SendInvitesInputFilterSensitiveLog, void 0).ser(se_SendInvitesCommand).de(de_SendInvitesCommand).build() {
|
|
1197
|
+
static {
|
|
1198
|
+
__name(this, "SendInvitesCommand");
|
|
1199
|
+
}
|
|
1105
1200
|
};
|
|
1106
|
-
__name(_SendInvitesCommand, "SendInvitesCommand");
|
|
1107
|
-
var SendInvitesCommand = _SendInvitesCommand;
|
|
1108
1201
|
|
|
1109
1202
|
// src/commands/TagResourceCommand.ts
|
|
1110
1203
|
|
|
1111
1204
|
|
|
1112
1205
|
|
|
1113
|
-
var
|
|
1206
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1114
1207
|
return [
|
|
1115
1208
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1116
1209
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1117
1210
|
];
|
|
1118
1211
|
}).s("RepostSpace", "TagResource", {}).n("RepostspaceClient", "TagResourceCommand").f(TagResourceRequestFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1212
|
+
static {
|
|
1213
|
+
__name(this, "TagResourceCommand");
|
|
1214
|
+
}
|
|
1119
1215
|
};
|
|
1120
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1121
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1122
1216
|
|
|
1123
1217
|
// src/commands/UntagResourceCommand.ts
|
|
1124
1218
|
|
|
1125
1219
|
|
|
1126
1220
|
|
|
1127
|
-
var
|
|
1221
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1128
1222
|
return [
|
|
1129
1223
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1130
1224
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1131
1225
|
];
|
|
1132
1226
|
}).s("RepostSpace", "UntagResource", {}).n("RepostspaceClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1227
|
+
static {
|
|
1228
|
+
__name(this, "UntagResourceCommand");
|
|
1229
|
+
}
|
|
1133
1230
|
};
|
|
1134
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1135
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1136
1231
|
|
|
1137
1232
|
// src/commands/UpdateSpaceCommand.ts
|
|
1138
1233
|
|
|
1139
1234
|
|
|
1140
1235
|
|
|
1141
|
-
var
|
|
1236
|
+
var UpdateSpaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1142
1237
|
return [
|
|
1143
1238
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1144
1239
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1145
1240
|
];
|
|
1146
1241
|
}).s("RepostSpace", "UpdateSpace", {}).n("RepostspaceClient", "UpdateSpaceCommand").f(UpdateSpaceInputFilterSensitiveLog, void 0).ser(se_UpdateSpaceCommand).de(de_UpdateSpaceCommand).build() {
|
|
1242
|
+
static {
|
|
1243
|
+
__name(this, "UpdateSpaceCommand");
|
|
1244
|
+
}
|
|
1147
1245
|
};
|
|
1148
|
-
__name(_UpdateSpaceCommand, "UpdateSpaceCommand");
|
|
1149
|
-
var UpdateSpaceCommand = _UpdateSpaceCommand;
|
|
1150
1246
|
|
|
1151
1247
|
// src/Repostspace.ts
|
|
1152
1248
|
var commands = {
|
|
@@ -1164,10 +1260,11 @@ var commands = {
|
|
|
1164
1260
|
UntagResourceCommand,
|
|
1165
1261
|
UpdateSpaceCommand
|
|
1166
1262
|
};
|
|
1167
|
-
var
|
|
1263
|
+
var Repostspace = class extends RepostspaceClient {
|
|
1264
|
+
static {
|
|
1265
|
+
__name(this, "Repostspace");
|
|
1266
|
+
}
|
|
1168
1267
|
};
|
|
1169
|
-
__name(_Repostspace, "Repostspace");
|
|
1170
|
-
var Repostspace = _Repostspace;
|
|
1171
1268
|
(0, import_smithy_client.createAggregatedClient)(commands, Repostspace);
|
|
1172
1269
|
|
|
1173
1270
|
// src/pagination/ListSpacesPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class RepostspaceClient 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 { RepostspaceServiceException as __BaseException } from "./RepostspaceServiceException";
|
|
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
|
}
|
|
@@ -19,45 +19,51 @@ export const Role = {
|
|
|
19
19
|
SUPPORTREQUESTOR: "SUPPORTREQUESTOR",
|
|
20
20
|
};
|
|
21
21
|
export class InternalServerException extends __BaseException {
|
|
22
|
+
name = "InternalServerException";
|
|
23
|
+
$fault = "server";
|
|
24
|
+
$retryable = {};
|
|
25
|
+
retryAfterSeconds;
|
|
22
26
|
constructor(opts) {
|
|
23
27
|
super({
|
|
24
28
|
name: "InternalServerException",
|
|
25
29
|
$fault: "server",
|
|
26
30
|
...opts,
|
|
27
31
|
});
|
|
28
|
-
this.name = "InternalServerException";
|
|
29
|
-
this.$fault = "server";
|
|
30
|
-
this.$retryable = {};
|
|
31
32
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
32
33
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
33
34
|
}
|
|
34
35
|
}
|
|
35
36
|
export class ResourceNotFoundException extends __BaseException {
|
|
37
|
+
name = "ResourceNotFoundException";
|
|
38
|
+
$fault = "client";
|
|
39
|
+
resourceId;
|
|
40
|
+
resourceType;
|
|
36
41
|
constructor(opts) {
|
|
37
42
|
super({
|
|
38
43
|
name: "ResourceNotFoundException",
|
|
39
44
|
$fault: "client",
|
|
40
45
|
...opts,
|
|
41
46
|
});
|
|
42
|
-
this.name = "ResourceNotFoundException";
|
|
43
|
-
this.$fault = "client";
|
|
44
47
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
45
48
|
this.resourceId = opts.resourceId;
|
|
46
49
|
this.resourceType = opts.resourceType;
|
|
47
50
|
}
|
|
48
51
|
}
|
|
49
52
|
export class ThrottlingException extends __BaseException {
|
|
53
|
+
name = "ThrottlingException";
|
|
54
|
+
$fault = "client";
|
|
55
|
+
$retryable = {
|
|
56
|
+
throttling: true,
|
|
57
|
+
};
|
|
58
|
+
serviceCode;
|
|
59
|
+
quotaCode;
|
|
60
|
+
retryAfterSeconds;
|
|
50
61
|
constructor(opts) {
|
|
51
62
|
super({
|
|
52
63
|
name: "ThrottlingException",
|
|
53
64
|
$fault: "client",
|
|
54
65
|
...opts,
|
|
55
66
|
});
|
|
56
|
-
this.name = "ThrottlingException";
|
|
57
|
-
this.$fault = "client";
|
|
58
|
-
this.$retryable = {
|
|
59
|
-
throttling: true,
|
|
60
|
-
};
|
|
61
67
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
62
68
|
this.serviceCode = opts.serviceCode;
|
|
63
69
|
this.quotaCode = opts.quotaCode;
|
|
@@ -71,14 +77,16 @@ export const ValidationExceptionReason = {
|
|
|
71
77
|
UNKNOWN_OPERATION: "unknownOperation",
|
|
72
78
|
};
|
|
73
79
|
export class ValidationException extends __BaseException {
|
|
80
|
+
name = "ValidationException";
|
|
81
|
+
$fault = "client";
|
|
82
|
+
reason;
|
|
83
|
+
fieldList;
|
|
74
84
|
constructor(opts) {
|
|
75
85
|
super({
|
|
76
86
|
name: "ValidationException",
|
|
77
87
|
$fault: "client",
|
|
78
88
|
...opts,
|
|
79
89
|
});
|
|
80
|
-
this.name = "ValidationException";
|
|
81
|
-
this.$fault = "client";
|
|
82
90
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
83
91
|
this.reason = opts.reason;
|
|
84
92
|
this.fieldList = opts.fieldList;
|
|
@@ -89,14 +97,16 @@ export const ConfigurationStatus = {
|
|
|
89
97
|
UNCONFIGURED: "UNCONFIGURED",
|
|
90
98
|
};
|
|
91
99
|
export class ConflictException extends __BaseException {
|
|
100
|
+
name = "ConflictException";
|
|
101
|
+
$fault = "client";
|
|
102
|
+
resourceId;
|
|
103
|
+
resourceType;
|
|
92
104
|
constructor(opts) {
|
|
93
105
|
super({
|
|
94
106
|
name: "ConflictException",
|
|
95
107
|
$fault: "client",
|
|
96
108
|
...opts,
|
|
97
109
|
});
|
|
98
|
-
this.name = "ConflictException";
|
|
99
|
-
this.$fault = "client";
|
|
100
110
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
101
111
|
this.resourceId = opts.resourceId;
|
|
102
112
|
this.resourceType = opts.resourceType;
|
|
@@ -107,14 +117,18 @@ export const TierLevel = {
|
|
|
107
117
|
STANDARD: "STANDARD",
|
|
108
118
|
};
|
|
109
119
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
120
|
+
name = "ServiceQuotaExceededException";
|
|
121
|
+
$fault = "client";
|
|
122
|
+
resourceId;
|
|
123
|
+
resourceType;
|
|
124
|
+
serviceCode;
|
|
125
|
+
quotaCode;
|
|
110
126
|
constructor(opts) {
|
|
111
127
|
super({
|
|
112
128
|
name: "ServiceQuotaExceededException",
|
|
113
129
|
$fault: "client",
|
|
114
130
|
...opts,
|
|
115
131
|
});
|
|
116
|
-
this.name = "ServiceQuotaExceededException";
|
|
117
|
-
this.$fault = "client";
|
|
118
132
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
119
133
|
this.resourceId = opts.resourceId;
|
|
120
134
|
this.resourceType = opts.resourceType;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: RepostspaceClientConfig) => {
|
|
|
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: RepostspaceClientConfig) => {
|
|
|
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: RepostspaceClientConfig) => {
|
|
|
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: RepostspaceClientConfig) => {
|
|
|
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: RepostspaceClientConfig) => {
|
|
|
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: RepostspaceClientConfig) => {
|
|
|
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: RepostspaceClientConfig) => {
|
|
|
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: RepostspaceClientConfig) => {
|
|
|
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-repostspace",
|
|
3
3
|
"description": "AWS SDK for JavaScript Repostspace 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-repostspace",
|
|
@@ -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": {
|