@aws-sdk/middleware-sdk-sts 3.734.0 → 3.775.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
@@ -19,16 +19,19 @@ var __copyProps = (to, from, except, desc) => {
19
19
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
20
 
21
21
  // src/index.ts
22
- var src_exports = {};
23
- __export(src_exports, {
22
+ var index_exports = {};
23
+ __export(index_exports, {
24
24
  resolveStsAuthConfig: () => resolveStsAuthConfig
25
25
  });
26
- module.exports = __toCommonJS(src_exports);
26
+ module.exports = __toCommonJS(index_exports);
27
27
  var import_middleware_signing = require("@aws-sdk/middleware-signing");
28
- var resolveStsAuthConfig = /* @__PURE__ */ __name((input, { stsClientCtor }) => (0, import_middleware_signing.resolveAwsAuthConfig)({
29
- ...input,
30
- stsClientCtor
31
- }), "resolveStsAuthConfig");
28
+ var resolveStsAuthConfig = /* @__PURE__ */ __name((input, { stsClientCtor }) => {
29
+ return (0, import_middleware_signing.resolveAwsAuthConfig)(
30
+ Object.assign(input, {
31
+ stsClientCtor
32
+ })
33
+ );
34
+ }, "resolveStsAuthConfig");
32
35
  // Annotate the CommonJS export names for ESM import in node:
33
36
 
34
37
  0 && (module.exports = {
package/dist-es/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { resolveAwsAuthConfig } from "@aws-sdk/middleware-signing";
2
- export const resolveStsAuthConfig = (input, { stsClientCtor }) => resolveAwsAuthConfig({
3
- ...input,
4
- stsClientCtor,
5
- });
2
+ export const resolveStsAuthConfig = (input, { stsClientCtor }) => {
3
+ return resolveAwsAuthConfig(Object.assign(input, {
4
+ stsClientCtor,
5
+ }));
6
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-sts",
3
- "version": "3.734.0",
3
+ "version": "3.775.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-sts",
@@ -22,9 +22,9 @@
22
22
  },
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@aws-sdk/middleware-signing": "3.734.0",
26
- "@aws-sdk/types": "3.734.0",
27
- "@smithy/types": "^4.1.0",
25
+ "@aws-sdk/middleware-signing": "3.775.0",
26
+ "@aws-sdk/types": "3.775.0",
27
+ "@smithy/types": "^4.2.0",
28
28
  "tslib": "^2.6.2"
29
29
  },
30
30
  "engines": {