@aws-sdk/client-sso-oidc 3.721.0 → 3.726.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 CHANGED
@@ -148,7 +148,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
148
148
  }, "resolveRuntimeExtensions");
149
149
 
150
150
  // src/SSOOIDCClient.ts
151
- var _SSOOIDCClient = class _SSOOIDCClient extends import_smithy_client.Client {
151
+ var SSOOIDCClient = class extends import_smithy_client.Client {
152
+ static {
153
+ __name(this, "SSOOIDCClient");
154
+ }
155
+ /**
156
+ * The resolved configuration of SSOOIDCClient class. This is resolved and normalized from the {@link SSOOIDCClientConfig | constructor configuration interface}.
157
+ */
158
+ config;
152
159
  constructor(...[configuration]) {
153
160
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
154
161
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -158,7 +165,7 @@ var _SSOOIDCClient = class _SSOOIDCClient extends import_smithy_client.Client {
158
165
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
159
166
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
160
167
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
161
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
168
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
162
169
  super(_config_8);
163
170
  this.config = _config_8;
164
171
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -186,8 +193,6 @@ var _SSOOIDCClient = class _SSOOIDCClient extends import_smithy_client.Client {
186
193
  super.destroy();
187
194
  }
188
195
  };
189
- __name(_SSOOIDCClient, "SSOOIDCClient");
190
- var SSOOIDCClient = _SSOOIDCClient;
191
196
 
192
197
  // src/SSOOIDC.ts
193
198
 
@@ -202,7 +207,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
202
207
 
203
208
  // src/models/SSOOIDCServiceException.ts
204
209
 
205
- var _SSOOIDCServiceException = class _SSOOIDCServiceException extends import_smithy_client.ServiceException {
210
+ var SSOOIDCServiceException = class _SSOOIDCServiceException extends import_smithy_client.ServiceException {
211
+ static {
212
+ __name(this, "SSOOIDCServiceException");
213
+ }
206
214
  /**
207
215
  * @internal
208
216
  */
@@ -211,11 +219,26 @@ var _SSOOIDCServiceException = class _SSOOIDCServiceException extends import_smi
211
219
  Object.setPrototypeOf(this, _SSOOIDCServiceException.prototype);
212
220
  }
213
221
  };
214
- __name(_SSOOIDCServiceException, "SSOOIDCServiceException");
215
- var SSOOIDCServiceException = _SSOOIDCServiceException;
216
222
 
217
223
  // src/models/models_0.ts
218
- var _AccessDeniedException = class _AccessDeniedException extends SSOOIDCServiceException {
224
+ var AccessDeniedException = class _AccessDeniedException extends SSOOIDCServiceException {
225
+ static {
226
+ __name(this, "AccessDeniedException");
227
+ }
228
+ name = "AccessDeniedException";
229
+ $fault = "client";
230
+ /**
231
+ * <p>Single error code.
232
+ * For this exception the value will be <code>access_denied</code>.</p>
233
+ * @public
234
+ */
235
+ error;
236
+ /**
237
+ * <p>Human-readable text providing additional information, used to assist the
238
+ * client developer in understanding the error that occurred.</p>
239
+ * @public
240
+ */
241
+ error_description;
219
242
  /**
220
243
  * @internal
221
244
  */
@@ -225,16 +248,29 @@ var _AccessDeniedException = class _AccessDeniedException extends SSOOIDCService
225
248
  $fault: "client",
226
249
  ...opts
227
250
  });
228
- this.name = "AccessDeniedException";
229
- this.$fault = "client";
230
251
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
231
252
  this.error = opts.error;
232
253
  this.error_description = opts.error_description;
233
254
  }
234
255
  };
235
- __name(_AccessDeniedException, "AccessDeniedException");
236
- var AccessDeniedException = _AccessDeniedException;
237
- var _AuthorizationPendingException = class _AuthorizationPendingException extends SSOOIDCServiceException {
256
+ var AuthorizationPendingException = class _AuthorizationPendingException extends SSOOIDCServiceException {
257
+ static {
258
+ __name(this, "AuthorizationPendingException");
259
+ }
260
+ name = "AuthorizationPendingException";
261
+ $fault = "client";
262
+ /**
263
+ * <p>Single error code.
264
+ * For this exception the value will be <code>authorization_pending</code>.</p>
265
+ * @public
266
+ */
267
+ error;
268
+ /**
269
+ * <p>Human-readable text providing additional information, used to assist the
270
+ * client developer in understanding the error that occurred.</p>
271
+ * @public
272
+ */
273
+ error_description;
238
274
  /**
239
275
  * @internal
240
276
  */
@@ -244,16 +280,29 @@ var _AuthorizationPendingException = class _AuthorizationPendingException extend
244
280
  $fault: "client",
245
281
  ...opts
246
282
  });
247
- this.name = "AuthorizationPendingException";
248
- this.$fault = "client";
249
283
  Object.setPrototypeOf(this, _AuthorizationPendingException.prototype);
250
284
  this.error = opts.error;
251
285
  this.error_description = opts.error_description;
252
286
  }
253
287
  };
254
- __name(_AuthorizationPendingException, "AuthorizationPendingException");
255
- var AuthorizationPendingException = _AuthorizationPendingException;
256
- var _ExpiredTokenException = class _ExpiredTokenException extends SSOOIDCServiceException {
288
+ var ExpiredTokenException = class _ExpiredTokenException extends SSOOIDCServiceException {
289
+ static {
290
+ __name(this, "ExpiredTokenException");
291
+ }
292
+ name = "ExpiredTokenException";
293
+ $fault = "client";
294
+ /**
295
+ * <p>Single error code.
296
+ * For this exception the value will be <code>expired_token</code>.</p>
297
+ * @public
298
+ */
299
+ error;
300
+ /**
301
+ * <p>Human-readable text providing additional information, used to assist the
302
+ * client developer in understanding the error that occurred.</p>
303
+ * @public
304
+ */
305
+ error_description;
257
306
  /**
258
307
  * @internal
259
308
  */
@@ -263,16 +312,29 @@ var _ExpiredTokenException = class _ExpiredTokenException extends SSOOIDCService
263
312
  $fault: "client",
264
313
  ...opts
265
314
  });
266
- this.name = "ExpiredTokenException";
267
- this.$fault = "client";
268
315
  Object.setPrototypeOf(this, _ExpiredTokenException.prototype);
269
316
  this.error = opts.error;
270
317
  this.error_description = opts.error_description;
271
318
  }
272
319
  };
273
- __name(_ExpiredTokenException, "ExpiredTokenException");
274
- var ExpiredTokenException = _ExpiredTokenException;
275
- var _InternalServerException = class _InternalServerException extends SSOOIDCServiceException {
320
+ var InternalServerException = class _InternalServerException extends SSOOIDCServiceException {
321
+ static {
322
+ __name(this, "InternalServerException");
323
+ }
324
+ name = "InternalServerException";
325
+ $fault = "server";
326
+ /**
327
+ * <p>Single error code.
328
+ * For this exception the value will be <code>server_error</code>.</p>
329
+ * @public
330
+ */
331
+ error;
332
+ /**
333
+ * <p>Human-readable text providing additional information, used to assist the
334
+ * client developer in understanding the error that occurred.</p>
335
+ * @public
336
+ */
337
+ error_description;
276
338
  /**
277
339
  * @internal
278
340
  */
@@ -282,16 +344,29 @@ var _InternalServerException = class _InternalServerException extends SSOOIDCSer
282
344
  $fault: "server",
283
345
  ...opts
284
346
  });
285
- this.name = "InternalServerException";
286
- this.$fault = "server";
287
347
  Object.setPrototypeOf(this, _InternalServerException.prototype);
288
348
  this.error = opts.error;
289
349
  this.error_description = opts.error_description;
290
350
  }
291
351
  };
292
- __name(_InternalServerException, "InternalServerException");
293
- var InternalServerException = _InternalServerException;
294
- var _InvalidClientException = class _InvalidClientException extends SSOOIDCServiceException {
352
+ var InvalidClientException = class _InvalidClientException extends SSOOIDCServiceException {
353
+ static {
354
+ __name(this, "InvalidClientException");
355
+ }
356
+ name = "InvalidClientException";
357
+ $fault = "client";
358
+ /**
359
+ * <p>Single error code.
360
+ * For this exception the value will be <code>invalid_client</code>.</p>
361
+ * @public
362
+ */
363
+ error;
364
+ /**
365
+ * <p>Human-readable text providing additional information, used to assist the
366
+ * client developer in understanding the error that occurred.</p>
367
+ * @public
368
+ */
369
+ error_description;
295
370
  /**
296
371
  * @internal
297
372
  */
@@ -301,16 +376,29 @@ var _InvalidClientException = class _InvalidClientException extends SSOOIDCServi
301
376
  $fault: "client",
302
377
  ...opts
303
378
  });
304
- this.name = "InvalidClientException";
305
- this.$fault = "client";
306
379
  Object.setPrototypeOf(this, _InvalidClientException.prototype);
307
380
  this.error = opts.error;
308
381
  this.error_description = opts.error_description;
309
382
  }
310
383
  };
311
- __name(_InvalidClientException, "InvalidClientException");
312
- var InvalidClientException = _InvalidClientException;
313
- var _InvalidGrantException = class _InvalidGrantException extends SSOOIDCServiceException {
384
+ var InvalidGrantException = class _InvalidGrantException extends SSOOIDCServiceException {
385
+ static {
386
+ __name(this, "InvalidGrantException");
387
+ }
388
+ name = "InvalidGrantException";
389
+ $fault = "client";
390
+ /**
391
+ * <p>Single error code.
392
+ * For this exception the value will be <code>invalid_grant</code>.</p>
393
+ * @public
394
+ */
395
+ error;
396
+ /**
397
+ * <p>Human-readable text providing additional information, used to assist the
398
+ * client developer in understanding the error that occurred.</p>
399
+ * @public
400
+ */
401
+ error_description;
314
402
  /**
315
403
  * @internal
316
404
  */
@@ -320,16 +408,29 @@ var _InvalidGrantException = class _InvalidGrantException extends SSOOIDCService
320
408
  $fault: "client",
321
409
  ...opts
322
410
  });
323
- this.name = "InvalidGrantException";
324
- this.$fault = "client";
325
411
  Object.setPrototypeOf(this, _InvalidGrantException.prototype);
326
412
  this.error = opts.error;
327
413
  this.error_description = opts.error_description;
328
414
  }
329
415
  };
330
- __name(_InvalidGrantException, "InvalidGrantException");
331
- var InvalidGrantException = _InvalidGrantException;
332
- var _InvalidRequestException = class _InvalidRequestException extends SSOOIDCServiceException {
416
+ var InvalidRequestException = class _InvalidRequestException extends SSOOIDCServiceException {
417
+ static {
418
+ __name(this, "InvalidRequestException");
419
+ }
420
+ name = "InvalidRequestException";
421
+ $fault = "client";
422
+ /**
423
+ * <p>Single error code.
424
+ * For this exception the value will be <code>invalid_request</code>.</p>
425
+ * @public
426
+ */
427
+ error;
428
+ /**
429
+ * <p>Human-readable text providing additional information, used to assist the
430
+ * client developer in understanding the error that occurred.</p>
431
+ * @public
432
+ */
433
+ error_description;
333
434
  /**
334
435
  * @internal
335
436
  */
@@ -339,16 +440,29 @@ var _InvalidRequestException = class _InvalidRequestException extends SSOOIDCSer
339
440
  $fault: "client",
340
441
  ...opts
341
442
  });
342
- this.name = "InvalidRequestException";
343
- this.$fault = "client";
344
443
  Object.setPrototypeOf(this, _InvalidRequestException.prototype);
345
444
  this.error = opts.error;
346
445
  this.error_description = opts.error_description;
347
446
  }
348
447
  };
349
- __name(_InvalidRequestException, "InvalidRequestException");
350
- var InvalidRequestException = _InvalidRequestException;
351
- var _InvalidScopeException = class _InvalidScopeException extends SSOOIDCServiceException {
448
+ var InvalidScopeException = class _InvalidScopeException extends SSOOIDCServiceException {
449
+ static {
450
+ __name(this, "InvalidScopeException");
451
+ }
452
+ name = "InvalidScopeException";
453
+ $fault = "client";
454
+ /**
455
+ * <p>Single error code.
456
+ * For this exception the value will be <code>invalid_scope</code>.</p>
457
+ * @public
458
+ */
459
+ error;
460
+ /**
461
+ * <p>Human-readable text providing additional information, used to assist the
462
+ * client developer in understanding the error that occurred.</p>
463
+ * @public
464
+ */
465
+ error_description;
352
466
  /**
353
467
  * @internal
354
468
  */
@@ -358,16 +472,29 @@ var _InvalidScopeException = class _InvalidScopeException extends SSOOIDCService
358
472
  $fault: "client",
359
473
  ...opts
360
474
  });
361
- this.name = "InvalidScopeException";
362
- this.$fault = "client";
363
475
  Object.setPrototypeOf(this, _InvalidScopeException.prototype);
364
476
  this.error = opts.error;
365
477
  this.error_description = opts.error_description;
366
478
  }
367
479
  };
368
- __name(_InvalidScopeException, "InvalidScopeException");
369
- var InvalidScopeException = _InvalidScopeException;
370
- var _SlowDownException = class _SlowDownException extends SSOOIDCServiceException {
480
+ var SlowDownException = class _SlowDownException extends SSOOIDCServiceException {
481
+ static {
482
+ __name(this, "SlowDownException");
483
+ }
484
+ name = "SlowDownException";
485
+ $fault = "client";
486
+ /**
487
+ * <p>Single error code.
488
+ * For this exception the value will be <code>slow_down</code>.</p>
489
+ * @public
490
+ */
491
+ error;
492
+ /**
493
+ * <p>Human-readable text providing additional information, used to assist the
494
+ * client developer in understanding the error that occurred.</p>
495
+ * @public
496
+ */
497
+ error_description;
371
498
  /**
372
499
  * @internal
373
500
  */
@@ -377,16 +504,29 @@ var _SlowDownException = class _SlowDownException extends SSOOIDCServiceExceptio
377
504
  $fault: "client",
378
505
  ...opts
379
506
  });
380
- this.name = "SlowDownException";
381
- this.$fault = "client";
382
507
  Object.setPrototypeOf(this, _SlowDownException.prototype);
383
508
  this.error = opts.error;
384
509
  this.error_description = opts.error_description;
385
510
  }
386
511
  };
387
- __name(_SlowDownException, "SlowDownException");
388
- var SlowDownException = _SlowDownException;
389
- var _UnauthorizedClientException = class _UnauthorizedClientException extends SSOOIDCServiceException {
512
+ var UnauthorizedClientException = class _UnauthorizedClientException extends SSOOIDCServiceException {
513
+ static {
514
+ __name(this, "UnauthorizedClientException");
515
+ }
516
+ name = "UnauthorizedClientException";
517
+ $fault = "client";
518
+ /**
519
+ * <p>Single error code.
520
+ * For this exception the value will be <code>unauthorized_client</code>.</p>
521
+ * @public
522
+ */
523
+ error;
524
+ /**
525
+ * <p>Human-readable text providing additional information, used to assist the
526
+ * client developer in understanding the error that occurred.</p>
527
+ * @public
528
+ */
529
+ error_description;
390
530
  /**
391
531
  * @internal
392
532
  */
@@ -396,16 +536,29 @@ var _UnauthorizedClientException = class _UnauthorizedClientException extends SS
396
536
  $fault: "client",
397
537
  ...opts
398
538
  });
399
- this.name = "UnauthorizedClientException";
400
- this.$fault = "client";
401
539
  Object.setPrototypeOf(this, _UnauthorizedClientException.prototype);
402
540
  this.error = opts.error;
403
541
  this.error_description = opts.error_description;
404
542
  }
405
543
  };
406
- __name(_UnauthorizedClientException, "UnauthorizedClientException");
407
- var UnauthorizedClientException = _UnauthorizedClientException;
408
- var _UnsupportedGrantTypeException = class _UnsupportedGrantTypeException extends SSOOIDCServiceException {
544
+ var UnsupportedGrantTypeException = class _UnsupportedGrantTypeException extends SSOOIDCServiceException {
545
+ static {
546
+ __name(this, "UnsupportedGrantTypeException");
547
+ }
548
+ name = "UnsupportedGrantTypeException";
549
+ $fault = "client";
550
+ /**
551
+ * <p>Single error code.
552
+ * For this exception the value will be <code>unsupported_grant_type</code>.</p>
553
+ * @public
554
+ */
555
+ error;
556
+ /**
557
+ * <p>Human-readable text providing additional information, used to assist the
558
+ * client developer in understanding the error that occurred.</p>
559
+ * @public
560
+ */
561
+ error_description;
409
562
  /**
410
563
  * @internal
411
564
  */
@@ -415,16 +568,39 @@ var _UnsupportedGrantTypeException = class _UnsupportedGrantTypeException extend
415
568
  $fault: "client",
416
569
  ...opts
417
570
  });
418
- this.name = "UnsupportedGrantTypeException";
419
- this.$fault = "client";
420
571
  Object.setPrototypeOf(this, _UnsupportedGrantTypeException.prototype);
421
572
  this.error = opts.error;
422
573
  this.error_description = opts.error_description;
423
574
  }
424
575
  };
425
- __name(_UnsupportedGrantTypeException, "UnsupportedGrantTypeException");
426
- var UnsupportedGrantTypeException = _UnsupportedGrantTypeException;
427
- var _InvalidRequestRegionException = class _InvalidRequestRegionException extends SSOOIDCServiceException {
576
+ var InvalidRequestRegionException = class _InvalidRequestRegionException extends SSOOIDCServiceException {
577
+ static {
578
+ __name(this, "InvalidRequestRegionException");
579
+ }
580
+ name = "InvalidRequestRegionException";
581
+ $fault = "client";
582
+ /**
583
+ * <p>Single error code.
584
+ * For this exception the value will be <code>invalid_request</code>.</p>
585
+ * @public
586
+ */
587
+ error;
588
+ /**
589
+ * <p>Human-readable text providing additional information, used to assist the
590
+ * client developer in understanding the error that occurred.</p>
591
+ * @public
592
+ */
593
+ error_description;
594
+ /**
595
+ * <p>Indicates the IAM Identity Center endpoint which the requester may call with this token.</p>
596
+ * @public
597
+ */
598
+ endpoint;
599
+ /**
600
+ * <p>Indicates the region which the requester may call with this token.</p>
601
+ * @public
602
+ */
603
+ region;
428
604
  /**
429
605
  * @internal
430
606
  */
@@ -434,8 +610,6 @@ var _InvalidRequestRegionException = class _InvalidRequestRegionException extend
434
610
  $fault: "client",
435
611
  ...opts
436
612
  });
437
- this.name = "InvalidRequestRegionException";
438
- this.$fault = "client";
439
613
  Object.setPrototypeOf(this, _InvalidRequestRegionException.prototype);
440
614
  this.error = opts.error;
441
615
  this.error_description = opts.error_description;
@@ -443,9 +617,24 @@ var _InvalidRequestRegionException = class _InvalidRequestRegionException extend
443
617
  this.region = opts.region;
444
618
  }
445
619
  };
446
- __name(_InvalidRequestRegionException, "InvalidRequestRegionException");
447
- var InvalidRequestRegionException = _InvalidRequestRegionException;
448
- var _InvalidClientMetadataException = class _InvalidClientMetadataException extends SSOOIDCServiceException {
620
+ var InvalidClientMetadataException = class _InvalidClientMetadataException extends SSOOIDCServiceException {
621
+ static {
622
+ __name(this, "InvalidClientMetadataException");
623
+ }
624
+ name = "InvalidClientMetadataException";
625
+ $fault = "client";
626
+ /**
627
+ * <p>Single error code.
628
+ * For this exception the value will be <code>invalid_client_metadata</code>.</p>
629
+ * @public
630
+ */
631
+ error;
632
+ /**
633
+ * <p>Human-readable text providing additional information, used to assist the
634
+ * client developer in understanding the error that occurred.</p>
635
+ * @public
636
+ */
637
+ error_description;
449
638
  /**
450
639
  * @internal
451
640
  */
@@ -455,16 +644,29 @@ var _InvalidClientMetadataException = class _InvalidClientMetadataException exte
455
644
  $fault: "client",
456
645
  ...opts
457
646
  });
458
- this.name = "InvalidClientMetadataException";
459
- this.$fault = "client";
460
647
  Object.setPrototypeOf(this, _InvalidClientMetadataException.prototype);
461
648
  this.error = opts.error;
462
649
  this.error_description = opts.error_description;
463
650
  }
464
651
  };
465
- __name(_InvalidClientMetadataException, "InvalidClientMetadataException");
466
- var InvalidClientMetadataException = _InvalidClientMetadataException;
467
- var _InvalidRedirectUriException = class _InvalidRedirectUriException extends SSOOIDCServiceException {
652
+ var InvalidRedirectUriException = class _InvalidRedirectUriException extends SSOOIDCServiceException {
653
+ static {
654
+ __name(this, "InvalidRedirectUriException");
655
+ }
656
+ name = "InvalidRedirectUriException";
657
+ $fault = "client";
658
+ /**
659
+ * <p>Single error code.
660
+ * For this exception the value will be <code>invalid_redirect_uri</code>.</p>
661
+ * @public
662
+ */
663
+ error;
664
+ /**
665
+ * <p>Human-readable text providing additional information, used to assist the
666
+ * client developer in understanding the error that occurred.</p>
667
+ * @public
668
+ */
669
+ error_description;
468
670
  /**
469
671
  * @internal
470
672
  */
@@ -474,15 +676,11 @@ var _InvalidRedirectUriException = class _InvalidRedirectUriException extends SS
474
676
  $fault: "client",
475
677
  ...opts
476
678
  });
477
- this.name = "InvalidRedirectUriException";
478
- this.$fault = "client";
479
679
  Object.setPrototypeOf(this, _InvalidRedirectUriException.prototype);
480
680
  this.error = opts.error;
481
681
  this.error_description = opts.error_description;
482
682
  }
483
683
  };
484
- __name(_InvalidRedirectUriException, "InvalidRedirectUriException");
485
- var InvalidRedirectUriException = _InvalidRedirectUriException;
486
684
  var CreateTokenRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
487
685
  ...obj,
488
686
  ...obj.clientSecret && { clientSecret: import_smithy_client.SENSITIVE_STRING },
@@ -952,57 +1150,61 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
952
1150
  var _ai = "aws_iam";
953
1151
 
954
1152
  // src/commands/CreateTokenCommand.ts
955
- var _CreateTokenCommand = class _CreateTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1153
+ var CreateTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
956
1154
  return [
957
1155
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
958
1156
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
959
1157
  ];
960
1158
  }).s("AWSSSOOIDCService", "CreateToken", {}).n("SSOOIDCClient", "CreateTokenCommand").f(CreateTokenRequestFilterSensitiveLog, CreateTokenResponseFilterSensitiveLog).ser(se_CreateTokenCommand).de(de_CreateTokenCommand).build() {
1159
+ static {
1160
+ __name(this, "CreateTokenCommand");
1161
+ }
961
1162
  };
962
- __name(_CreateTokenCommand, "CreateTokenCommand");
963
- var CreateTokenCommand = _CreateTokenCommand;
964
1163
 
965
1164
  // src/commands/CreateTokenWithIAMCommand.ts
966
1165
 
967
1166
 
968
1167
 
969
- var _CreateTokenWithIAMCommand = class _CreateTokenWithIAMCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1168
+ var CreateTokenWithIAMCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
970
1169
  return [
971
1170
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
972
1171
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
973
1172
  ];
974
1173
  }).s("AWSSSOOIDCService", "CreateTokenWithIAM", {}).n("SSOOIDCClient", "CreateTokenWithIAMCommand").f(CreateTokenWithIAMRequestFilterSensitiveLog, CreateTokenWithIAMResponseFilterSensitiveLog).ser(se_CreateTokenWithIAMCommand).de(de_CreateTokenWithIAMCommand).build() {
1174
+ static {
1175
+ __name(this, "CreateTokenWithIAMCommand");
1176
+ }
975
1177
  };
976
- __name(_CreateTokenWithIAMCommand, "CreateTokenWithIAMCommand");
977
- var CreateTokenWithIAMCommand = _CreateTokenWithIAMCommand;
978
1178
 
979
1179
  // src/commands/RegisterClientCommand.ts
980
1180
 
981
1181
 
982
1182
 
983
- var _RegisterClientCommand = class _RegisterClientCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1183
+ var RegisterClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
984
1184
  return [
985
1185
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
986
1186
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
987
1187
  ];
988
1188
  }).s("AWSSSOOIDCService", "RegisterClient", {}).n("SSOOIDCClient", "RegisterClientCommand").f(void 0, RegisterClientResponseFilterSensitiveLog).ser(se_RegisterClientCommand).de(de_RegisterClientCommand).build() {
1189
+ static {
1190
+ __name(this, "RegisterClientCommand");
1191
+ }
989
1192
  };
990
- __name(_RegisterClientCommand, "RegisterClientCommand");
991
- var RegisterClientCommand = _RegisterClientCommand;
992
1193
 
993
1194
  // src/commands/StartDeviceAuthorizationCommand.ts
994
1195
 
995
1196
 
996
1197
 
997
- var _StartDeviceAuthorizationCommand = class _StartDeviceAuthorizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1198
+ var StartDeviceAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
998
1199
  return [
999
1200
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1000
1201
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1001
1202
  ];
1002
1203
  }).s("AWSSSOOIDCService", "StartDeviceAuthorization", {}).n("SSOOIDCClient", "StartDeviceAuthorizationCommand").f(StartDeviceAuthorizationRequestFilterSensitiveLog, void 0).ser(se_StartDeviceAuthorizationCommand).de(de_StartDeviceAuthorizationCommand).build() {
1204
+ static {
1205
+ __name(this, "StartDeviceAuthorizationCommand");
1206
+ }
1003
1207
  };
1004
- __name(_StartDeviceAuthorizationCommand, "StartDeviceAuthorizationCommand");
1005
- var StartDeviceAuthorizationCommand = _StartDeviceAuthorizationCommand;
1006
1208
 
1007
1209
  // src/SSOOIDC.ts
1008
1210
  var commands = {
@@ -1011,10 +1213,11 @@ var commands = {
1011
1213
  RegisterClientCommand,
1012
1214
  StartDeviceAuthorizationCommand
1013
1215
  };
1014
- var _SSOOIDC = class _SSOOIDC extends SSOOIDCClient {
1216
+ var SSOOIDC = class extends SSOOIDCClient {
1217
+ static {
1218
+ __name(this, "SSOOIDC");
1219
+ }
1015
1220
  };
1016
- __name(_SSOOIDC, "SSOOIDC");
1017
- var SSOOIDC = _SSOOIDC;
1018
1221
  (0, import_smithy_client.createAggregatedClient)(commands, SSOOIDC);
1019
1222
  // Annotate the CommonJS export names for ESM import in node:
1020
1223
 
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class SSOOIDCClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -1,168 +1,194 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
3
3
  export class AccessDeniedException extends __BaseException {
4
+ name = "AccessDeniedException";
5
+ $fault = "client";
6
+ error;
7
+ error_description;
4
8
  constructor(opts) {
5
9
  super({
6
10
  name: "AccessDeniedException",
7
11
  $fault: "client",
8
12
  ...opts,
9
13
  });
10
- this.name = "AccessDeniedException";
11
- this.$fault = "client";
12
14
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
15
  this.error = opts.error;
14
16
  this.error_description = opts.error_description;
15
17
  }
16
18
  }
17
19
  export class AuthorizationPendingException extends __BaseException {
20
+ name = "AuthorizationPendingException";
21
+ $fault = "client";
22
+ error;
23
+ error_description;
18
24
  constructor(opts) {
19
25
  super({
20
26
  name: "AuthorizationPendingException",
21
27
  $fault: "client",
22
28
  ...opts,
23
29
  });
24
- this.name = "AuthorizationPendingException";
25
- this.$fault = "client";
26
30
  Object.setPrototypeOf(this, AuthorizationPendingException.prototype);
27
31
  this.error = opts.error;
28
32
  this.error_description = opts.error_description;
29
33
  }
30
34
  }
31
35
  export class ExpiredTokenException extends __BaseException {
36
+ name = "ExpiredTokenException";
37
+ $fault = "client";
38
+ error;
39
+ error_description;
32
40
  constructor(opts) {
33
41
  super({
34
42
  name: "ExpiredTokenException",
35
43
  $fault: "client",
36
44
  ...opts,
37
45
  });
38
- this.name = "ExpiredTokenException";
39
- this.$fault = "client";
40
46
  Object.setPrototypeOf(this, ExpiredTokenException.prototype);
41
47
  this.error = opts.error;
42
48
  this.error_description = opts.error_description;
43
49
  }
44
50
  }
45
51
  export class InternalServerException extends __BaseException {
52
+ name = "InternalServerException";
53
+ $fault = "server";
54
+ error;
55
+ error_description;
46
56
  constructor(opts) {
47
57
  super({
48
58
  name: "InternalServerException",
49
59
  $fault: "server",
50
60
  ...opts,
51
61
  });
52
- this.name = "InternalServerException";
53
- this.$fault = "server";
54
62
  Object.setPrototypeOf(this, InternalServerException.prototype);
55
63
  this.error = opts.error;
56
64
  this.error_description = opts.error_description;
57
65
  }
58
66
  }
59
67
  export class InvalidClientException extends __BaseException {
68
+ name = "InvalidClientException";
69
+ $fault = "client";
70
+ error;
71
+ error_description;
60
72
  constructor(opts) {
61
73
  super({
62
74
  name: "InvalidClientException",
63
75
  $fault: "client",
64
76
  ...opts,
65
77
  });
66
- this.name = "InvalidClientException";
67
- this.$fault = "client";
68
78
  Object.setPrototypeOf(this, InvalidClientException.prototype);
69
79
  this.error = opts.error;
70
80
  this.error_description = opts.error_description;
71
81
  }
72
82
  }
73
83
  export class InvalidGrantException extends __BaseException {
84
+ name = "InvalidGrantException";
85
+ $fault = "client";
86
+ error;
87
+ error_description;
74
88
  constructor(opts) {
75
89
  super({
76
90
  name: "InvalidGrantException",
77
91
  $fault: "client",
78
92
  ...opts,
79
93
  });
80
- this.name = "InvalidGrantException";
81
- this.$fault = "client";
82
94
  Object.setPrototypeOf(this, InvalidGrantException.prototype);
83
95
  this.error = opts.error;
84
96
  this.error_description = opts.error_description;
85
97
  }
86
98
  }
87
99
  export class InvalidRequestException extends __BaseException {
100
+ name = "InvalidRequestException";
101
+ $fault = "client";
102
+ error;
103
+ error_description;
88
104
  constructor(opts) {
89
105
  super({
90
106
  name: "InvalidRequestException",
91
107
  $fault: "client",
92
108
  ...opts,
93
109
  });
94
- this.name = "InvalidRequestException";
95
- this.$fault = "client";
96
110
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
97
111
  this.error = opts.error;
98
112
  this.error_description = opts.error_description;
99
113
  }
100
114
  }
101
115
  export class InvalidScopeException extends __BaseException {
116
+ name = "InvalidScopeException";
117
+ $fault = "client";
118
+ error;
119
+ error_description;
102
120
  constructor(opts) {
103
121
  super({
104
122
  name: "InvalidScopeException",
105
123
  $fault: "client",
106
124
  ...opts,
107
125
  });
108
- this.name = "InvalidScopeException";
109
- this.$fault = "client";
110
126
  Object.setPrototypeOf(this, InvalidScopeException.prototype);
111
127
  this.error = opts.error;
112
128
  this.error_description = opts.error_description;
113
129
  }
114
130
  }
115
131
  export class SlowDownException extends __BaseException {
132
+ name = "SlowDownException";
133
+ $fault = "client";
134
+ error;
135
+ error_description;
116
136
  constructor(opts) {
117
137
  super({
118
138
  name: "SlowDownException",
119
139
  $fault: "client",
120
140
  ...opts,
121
141
  });
122
- this.name = "SlowDownException";
123
- this.$fault = "client";
124
142
  Object.setPrototypeOf(this, SlowDownException.prototype);
125
143
  this.error = opts.error;
126
144
  this.error_description = opts.error_description;
127
145
  }
128
146
  }
129
147
  export class UnauthorizedClientException extends __BaseException {
148
+ name = "UnauthorizedClientException";
149
+ $fault = "client";
150
+ error;
151
+ error_description;
130
152
  constructor(opts) {
131
153
  super({
132
154
  name: "UnauthorizedClientException",
133
155
  $fault: "client",
134
156
  ...opts,
135
157
  });
136
- this.name = "UnauthorizedClientException";
137
- this.$fault = "client";
138
158
  Object.setPrototypeOf(this, UnauthorizedClientException.prototype);
139
159
  this.error = opts.error;
140
160
  this.error_description = opts.error_description;
141
161
  }
142
162
  }
143
163
  export class UnsupportedGrantTypeException extends __BaseException {
164
+ name = "UnsupportedGrantTypeException";
165
+ $fault = "client";
166
+ error;
167
+ error_description;
144
168
  constructor(opts) {
145
169
  super({
146
170
  name: "UnsupportedGrantTypeException",
147
171
  $fault: "client",
148
172
  ...opts,
149
173
  });
150
- this.name = "UnsupportedGrantTypeException";
151
- this.$fault = "client";
152
174
  Object.setPrototypeOf(this, UnsupportedGrantTypeException.prototype);
153
175
  this.error = opts.error;
154
176
  this.error_description = opts.error_description;
155
177
  }
156
178
  }
157
179
  export class InvalidRequestRegionException extends __BaseException {
180
+ name = "InvalidRequestRegionException";
181
+ $fault = "client";
182
+ error;
183
+ error_description;
184
+ endpoint;
185
+ region;
158
186
  constructor(opts) {
159
187
  super({
160
188
  name: "InvalidRequestRegionException",
161
189
  $fault: "client",
162
190
  ...opts,
163
191
  });
164
- this.name = "InvalidRequestRegionException";
165
- this.$fault = "client";
166
192
  Object.setPrototypeOf(this, InvalidRequestRegionException.prototype);
167
193
  this.error = opts.error;
168
194
  this.error_description = opts.error_description;
@@ -171,28 +197,32 @@ export class InvalidRequestRegionException extends __BaseException {
171
197
  }
172
198
  }
173
199
  export class InvalidClientMetadataException extends __BaseException {
200
+ name = "InvalidClientMetadataException";
201
+ $fault = "client";
202
+ error;
203
+ error_description;
174
204
  constructor(opts) {
175
205
  super({
176
206
  name: "InvalidClientMetadataException",
177
207
  $fault: "client",
178
208
  ...opts,
179
209
  });
180
- this.name = "InvalidClientMetadataException";
181
- this.$fault = "client";
182
210
  Object.setPrototypeOf(this, InvalidClientMetadataException.prototype);
183
211
  this.error = opts.error;
184
212
  this.error_description = opts.error_description;
185
213
  }
186
214
  }
187
215
  export class InvalidRedirectUriException extends __BaseException {
216
+ name = "InvalidRedirectUriException";
217
+ $fault = "client";
218
+ error;
219
+ error_description;
188
220
  constructor(opts) {
189
221
  super({
190
222
  name: "InvalidRedirectUriException",
191
223
  $fault: "client",
192
224
  ...opts,
193
225
  });
194
- this.name = "InvalidRedirectUriException";
195
- this.$fault = "client";
196
226
  Object.setPrototypeOf(this, InvalidRedirectUriException.prototype);
197
227
  this.error = opts.error;
198
228
  this.error_description = opts.error_description;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
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: SSOOIDCClientConfig) => {
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: SSOOIDCClientConfig) => {
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: SSOOIDCClientConfig) => {
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: SSOOIDCClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- input: any
11
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
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: SSOOIDCClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- init?:
11
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
12
- | undefined
13
- ) => import("@smithy/types").MemoizedProvider<
14
- import("@smithy/types").AwsCredentialIdentity
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: SSOOIDCClientConfig) => {
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
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
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: SSOOIDCClientConfig) => {
50
52
  | import("@smithy/types").RetryStrategyV2
51
53
  | undefined;
52
54
  endpoint?:
53
- | string
54
- | import("@smithy/types").Endpoint
55
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
- | import("@smithy/types").EndpointV2
57
- | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
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-sso-oidc",
3
3
  "description": "AWS SDK for JavaScript Sso Oidc Client for Node.js, Browser and React Native",
4
- "version": "3.721.0",
4
+ "version": "3.726.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-sso-oidc",
@@ -20,54 +20,54 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.716.0",
24
- "@aws-sdk/credential-provider-node": "3.721.0",
25
- "@aws-sdk/middleware-host-header": "3.714.0",
26
- "@aws-sdk/middleware-logger": "3.714.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.714.0",
28
- "@aws-sdk/middleware-user-agent": "3.721.0",
29
- "@aws-sdk/region-config-resolver": "3.714.0",
30
- "@aws-sdk/types": "3.714.0",
31
- "@aws-sdk/util-endpoints": "3.714.0",
32
- "@aws-sdk/util-user-agent-browser": "3.714.0",
33
- "@aws-sdk/util-user-agent-node": "3.721.0",
34
- "@smithy/config-resolver": "^3.0.13",
35
- "@smithy/core": "^2.5.5",
36
- "@smithy/fetch-http-handler": "^4.1.2",
37
- "@smithy/hash-node": "^3.0.11",
38
- "@smithy/invalid-dependency": "^3.0.11",
39
- "@smithy/middleware-content-length": "^3.0.13",
40
- "@smithy/middleware-endpoint": "^3.2.6",
41
- "@smithy/middleware-retry": "^3.0.31",
42
- "@smithy/middleware-serde": "^3.0.11",
43
- "@smithy/middleware-stack": "^3.0.11",
44
- "@smithy/node-config-provider": "^3.1.12",
45
- "@smithy/node-http-handler": "^3.3.2",
46
- "@smithy/protocol-http": "^4.1.8",
47
- "@smithy/smithy-client": "^3.5.1",
48
- "@smithy/types": "^3.7.2",
49
- "@smithy/url-parser": "^3.0.11",
50
- "@smithy/util-base64": "^3.0.0",
51
- "@smithy/util-body-length-browser": "^3.0.0",
52
- "@smithy/util-body-length-node": "^3.0.0",
53
- "@smithy/util-defaults-mode-browser": "^3.0.31",
54
- "@smithy/util-defaults-mode-node": "^3.0.31",
55
- "@smithy/util-endpoints": "^2.1.7",
56
- "@smithy/util-middleware": "^3.0.11",
57
- "@smithy/util-retry": "^3.0.11",
58
- "@smithy/util-utf8": "^3.0.0",
23
+ "@aws-sdk/core": "3.723.0",
24
+ "@aws-sdk/credential-provider-node": "3.726.0",
25
+ "@aws-sdk/middleware-host-header": "3.723.0",
26
+ "@aws-sdk/middleware-logger": "3.723.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.723.0",
28
+ "@aws-sdk/middleware-user-agent": "3.726.0",
29
+ "@aws-sdk/region-config-resolver": "3.723.0",
30
+ "@aws-sdk/types": "3.723.0",
31
+ "@aws-sdk/util-endpoints": "3.726.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.723.0",
33
+ "@aws-sdk/util-user-agent-node": "3.726.0",
34
+ "@smithy/config-resolver": "^4.0.0",
35
+ "@smithy/core": "^3.0.0",
36
+ "@smithy/fetch-http-handler": "^5.0.0",
37
+ "@smithy/hash-node": "^4.0.0",
38
+ "@smithy/invalid-dependency": "^4.0.0",
39
+ "@smithy/middleware-content-length": "^4.0.0",
40
+ "@smithy/middleware-endpoint": "^4.0.0",
41
+ "@smithy/middleware-retry": "^4.0.0",
42
+ "@smithy/middleware-serde": "^4.0.0",
43
+ "@smithy/middleware-stack": "^4.0.0",
44
+ "@smithy/node-config-provider": "^4.0.0",
45
+ "@smithy/node-http-handler": "^4.0.0",
46
+ "@smithy/protocol-http": "^5.0.0",
47
+ "@smithy/smithy-client": "^4.0.0",
48
+ "@smithy/types": "^4.0.0",
49
+ "@smithy/url-parser": "^4.0.0",
50
+ "@smithy/util-base64": "^4.0.0",
51
+ "@smithy/util-body-length-browser": "^4.0.0",
52
+ "@smithy/util-body-length-node": "^4.0.0",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.0",
54
+ "@smithy/util-defaults-mode-node": "^4.0.0",
55
+ "@smithy/util-endpoints": "^3.0.0",
56
+ "@smithy/util-middleware": "^4.0.0",
57
+ "@smithy/util-retry": "^4.0.0",
58
+ "@smithy/util-utf8": "^4.0.0",
59
59
  "tslib": "^2.6.2"
60
60
  },
61
61
  "devDependencies": {
62
- "@tsconfig/node16": "16.1.3",
63
- "@types/node": "^16.18.96",
62
+ "@tsconfig/node18": "18.2.4",
63
+ "@types/node": "^18.19.69",
64
64
  "concurrently": "7.0.0",
65
65
  "downlevel-dts": "0.10.1",
66
66
  "rimraf": "3.0.2",
67
- "typescript": "~4.9.5"
67
+ "typescript": "~5.2.2"
68
68
  },
69
69
  "engines": {
70
- "node": ">=16.0.0"
70
+ "node": ">=18.0.0"
71
71
  },
72
72
  "typesVersions": {
73
73
  "<4.0": {
@@ -85,7 +85,7 @@
85
85
  },
86
86
  "license": "Apache-2.0",
87
87
  "peerDependencies": {
88
- "@aws-sdk/client-sts": "^3.721.0"
88
+ "@aws-sdk/client-sts": "^3.726.0"
89
89
  },
90
90
  "browser": {
91
91
  "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"