@aws-sdk/credential-provider-env 3.972.58 → 3.972.60

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.
@@ -7,6 +7,4 @@ export declare const ENV_SESSION = "AWS_SESSION_TOKEN";
7
7
  export declare const ENV_EXPIRATION = "AWS_CREDENTIAL_EXPIRATION";
8
8
  export declare const ENV_CREDENTIAL_SCOPE = "AWS_CREDENTIAL_SCOPE";
9
9
  export declare const ENV_ACCOUNT_ID = "AWS_ACCOUNT_ID";
10
- export declare const fromEnv: (
11
- init?: FromEnvInit
12
- ) => AwsCredentialIdentityProvider;
10
+ export declare const fromEnv: (init?: FromEnvInit) => AwsCredentialIdentityProvider;
package/package.json CHANGED
@@ -1,9 +1,36 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-env",
3
- "version": "3.972.58",
3
+ "version": "3.972.60",
4
4
  "description": "AWS credential provider that sources credentials from known environment variables",
5
+ "keywords": [
6
+ "aws",
7
+ "credentials"
8
+ ],
9
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/credential-provider-env",
10
+ "license": "Apache-2.0",
11
+ "author": {
12
+ "name": "AWS SDK for JavaScript Team",
13
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
18
+ "directory": "packages-internal/credential-provider-env"
19
+ },
20
+ "files": [
21
+ "dist-*/**"
22
+ ],
23
+ "sideEffects": false,
5
24
  "main": "./dist-cjs/index.js",
6
25
  "module": "./dist-es/index.js",
26
+ "types": "./dist-types/index.d.ts",
27
+ "typesVersions": {
28
+ "<4.5": {
29
+ "dist-types/*": [
30
+ "dist-types/ts3.4/*"
31
+ ]
32
+ }
33
+ },
7
34
  "scripts": {
8
35
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
9
36
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -15,20 +42,10 @@
15
42
  "test": "yarn g:vitest run",
16
43
  "test:watch": "yarn g:vitest watch"
17
44
  },
18
- "keywords": [
19
- "aws",
20
- "credentials"
21
- ],
22
- "sideEffects": false,
23
- "author": {
24
- "name": "AWS SDK for JavaScript Team",
25
- "url": "https://aws.amazon.com/sdk-for-javascript/"
26
- },
27
- "license": "Apache-2.0",
28
45
  "dependencies": {
29
- "@aws-sdk/core": "^3.975.2",
30
- "@aws-sdk/types": "^3.974.1",
31
- "@smithy/core": "^3.29.3",
46
+ "@aws-sdk/core": "^3.976.0",
47
+ "@aws-sdk/types": "^3.974.2",
48
+ "@smithy/core": "^3.29.4",
32
49
  "@smithy/types": "^4.16.1",
33
50
  "tslib": "^2.6.2"
34
51
  },
@@ -40,24 +57,7 @@
40
57
  "premove": "4.0.0",
41
58
  "typescript": "~5.8.3"
42
59
  },
43
- "types": "./dist-types/index.d.ts",
44
60
  "engines": {
45
61
  "node": ">=20.0.0"
46
- },
47
- "typesVersions": {
48
- "<4.5": {
49
- "dist-types/*": [
50
- "dist-types/ts3.4/*"
51
- ]
52
- }
53
- },
54
- "files": [
55
- "dist-*/**"
56
- ],
57
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/credential-provider-env",
58
- "repository": {
59
- "type": "git",
60
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
61
- "directory": "packages-internal/credential-provider-env"
62
62
  }
63
63
  }