@aws-sdk/core 3.812.0 → 3.821.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.
@@ -26,6 +26,7 @@ __export(index_exports, {
26
26
  AwsSdkSigV4Signer: () => AwsSdkSigV4Signer,
27
27
  NODE_AUTH_SCHEME_PREFERENCE_OPTIONS: () => NODE_AUTH_SCHEME_PREFERENCE_OPTIONS,
28
28
  NODE_SIGV4A_CONFIG_OPTIONS: () => NODE_SIGV4A_CONFIG_OPTIONS,
29
+ getBearerTokenEnvKey: () => getBearerTokenEnvKey,
29
30
  resolveAWSSDKSigV4Config: () => resolveAWSSDKSigV4Config,
30
31
  resolveAwsSdkSigV4AConfig: () => resolveAwsSdkSigV4AConfig,
31
32
  resolveAwsSdkSigV4Config: () => resolveAwsSdkSigV4Config,
@@ -382,6 +383,7 @@ __name(bindCallerConfig, "bindCallerConfig");
382
383
  AwsSdkSigV4Signer,
383
384
  NODE_AUTH_SCHEME_PREFERENCE_OPTIONS,
384
385
  NODE_SIGV4A_CONFIG_OPTIONS,
386
+ getBearerTokenEnvKey,
385
387
  resolveAWSSDKSigV4Config,
386
388
  resolveAwsSdkSigV4AConfig,
387
389
  resolveAwsSdkSigV4Config,
@@ -1 +1,2 @@
1
1
  export * from "./aws_sdk";
2
+ export * from "./utils/getBearerTokenEnvKey";
@@ -1 +1,2 @@
1
1
  export * from "./aws_sdk";
2
+ export * from "./utils/getBearerTokenEnvKey";
@@ -1 +1,2 @@
1
1
  export * from "./aws_sdk";
2
+ export * from "./utils/getBearerTokenEnvKey";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/core",
3
- "version": "3.812.0",
3
+ "version": "3.821.0",
4
4
  "description": "Core functions & classes shared by multiple AWS SDK clients.",
5
5
  "scripts": {
6
6
  "build": "yarn lint && concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
@@ -81,15 +81,15 @@
81
81
  },
82
82
  "license": "Apache-2.0",
83
83
  "dependencies": {
84
- "@aws-sdk/types": "3.804.0",
85
- "@smithy/core": "^3.3.3",
86
- "@smithy/node-config-provider": "^4.1.1",
87
- "@smithy/property-provider": "^4.0.2",
88
- "@smithy/protocol-http": "^5.1.0",
89
- "@smithy/signature-v4": "^5.1.0",
90
- "@smithy/smithy-client": "^4.2.6",
91
- "@smithy/types": "^4.2.0",
92
- "@smithy/util-middleware": "^4.0.2",
84
+ "@aws-sdk/types": "3.821.0",
85
+ "@smithy/core": "^3.5.1",
86
+ "@smithy/node-config-provider": "^4.1.3",
87
+ "@smithy/property-provider": "^4.0.4",
88
+ "@smithy/protocol-http": "^5.1.2",
89
+ "@smithy/signature-v4": "^5.1.2",
90
+ "@smithy/smithy-client": "^4.4.1",
91
+ "@smithy/types": "^4.3.1",
92
+ "@smithy/util-middleware": "^4.0.4",
93
93
  "fast-xml-parser": "4.4.1",
94
94
  "tslib": "^2.6.2"
95
95
  },