@aws-sdk/client-sts 3.332.0 → 3.335.1
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/CHANGELOG.md +3735 -0
- package/dist-cjs/commands/AssumeRoleCommand.js +2 -1
- package/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +3 -2
- package/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +3 -2
- package/dist-cjs/commands/GetFederationTokenCommand.js +2 -1
- package/dist-cjs/commands/GetSessionTokenCommand.js +2 -1
- package/dist-cjs/models/models_0.js +42 -1
- package/dist-cjs/protocols/Aws_query.js +1 -1
- package/dist-es/commands/AssumeRoleCommand.js +2 -1
- package/dist-es/commands/AssumeRoleWithSAMLCommand.js +3 -2
- package/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +3 -2
- package/dist-es/commands/GetFederationTokenCommand.js +2 -1
- package/dist-es/commands/GetSessionTokenCommand.js +2 -1
- package/dist-es/models/models_0.js +33 -0
- package/dist-es/protocols/Aws_query.js +1 -1
- package/dist-types/STSClient.d.ts +3 -2
- package/dist-types/endpoint/EndpointParameters.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +32 -0
- package/dist-types/protocols/Aws_query.d.ts +2 -2
- package/dist-types/runtimeConfig.browser.d.ts +13 -13
- package/dist-types/runtimeConfig.d.ts +9 -9
- package/dist-types/runtimeConfig.native.d.ts +14 -14
- package/dist-types/runtimeConfig.shared.d.ts +4 -4
- package/dist-types/ts3.4/STS.d.ts +69 -141
- package/dist-types/ts3.4/STSClient.d.ts +173 -159
- package/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +261 -34
- package/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +292 -38
- package/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +301 -41
- package/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +125 -41
- package/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +86 -37
- package/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +124 -38
- package/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +235 -38
- package/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +162 -37
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/dist-types/ts3.4/defaultRoleAssumers.d.ts +20 -22
- package/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +35 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +22 -35
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +5 -8
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/STSServiceException.d.ts +12 -7
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1110 -179
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +74 -101
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +43 -95
- package/dist-types/ts3.4/runtimeConfig.d.ts +43 -93
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +42 -84
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -18
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.335.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
26
26
|
"@aws-sdk/config-resolver": "3.329.0",
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.335.0",
|
|
28
28
|
"@aws-sdk/fetch-http-handler": "3.329.0",
|
|
29
29
|
"@aws-sdk/hash-node": "3.329.0",
|
|
30
30
|
"@aws-sdk/invalid-dependency": "3.329.0",
|
|
@@ -41,7 +41,6 @@
|
|
|
41
41
|
"@aws-sdk/middleware-user-agent": "3.332.0",
|
|
42
42
|
"@aws-sdk/node-config-provider": "3.329.0",
|
|
43
43
|
"@aws-sdk/node-http-handler": "3.329.0",
|
|
44
|
-
"@aws-sdk/protocol-http": "3.329.0",
|
|
45
44
|
"@aws-sdk/smithy-client": "3.329.0",
|
|
46
45
|
"@aws-sdk/types": "3.329.0",
|
|
47
46
|
"@aws-sdk/url-parser": "3.329.0",
|
|
@@ -55,7 +54,9 @@
|
|
|
55
54
|
"@aws-sdk/util-user-agent-browser": "3.329.0",
|
|
56
55
|
"@aws-sdk/util-user-agent-node": "3.329.0",
|
|
57
56
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
58
|
-
"
|
|
57
|
+
"@smithy/protocol-http": "^1.0.1",
|
|
58
|
+
"@smithy/types": "^1.0.0",
|
|
59
|
+
"fast-xml-parser": "4.2.4",
|
|
59
60
|
"tslib": "^2.5.0"
|
|
60
61
|
},
|
|
61
62
|
"devDependencies": {
|