@aws-sdk/client-signin 3.1076.0 → 3.1078.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 +23 -108
- package/dist-es/commandBuilder.js +11 -0
- package/dist-es/commands/CreateOAuth2TokenCommand.js +2 -17
- package/dist-es/commands/DeleteConsoleAuthorizationConfigurationCommand.js +2 -17
- package/dist-es/commands/DeleteResourcePermissionStatementCommand.js +2 -17
- package/dist-es/commands/GetConsoleAuthorizationConfigurationCommand.js +2 -17
- package/dist-es/commands/GetResourcePolicyCommand.js +2 -17
- package/dist-es/commands/ListResourcePermissionStatementsCommand.js +2 -17
- package/dist-es/commands/PutConsoleAuthorizationConfigurationCommand.js +2 -17
- package/dist-es/commands/PutResourcePermissionStatementCommand.js +2 -17
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/commandBuilder.d.ts +22 -0
- package/dist-types/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/dist-types/commands/DeleteConsoleAuthorizationConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/DeleteResourcePermissionStatementCommand.d.ts +3 -8
- package/dist-types/commands/GetConsoleAuthorizationConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +3 -8
- package/dist-types/commands/ListResourcePermissionStatementsCommand.d.ts +3 -8
- package/dist-types/commands/PutConsoleAuthorizationConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/PutResourcePermissionStatementCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateOAuth2TokenCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteConsoleAuthorizationConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteResourcePermissionStatementCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetConsoleAuthorizationConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListResourcePermissionStatementsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PutConsoleAuthorizationConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PutResourcePermissionStatementCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +9 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-signin",
|
|
3
3
|
"description": "AWS SDK for JavaScript Signin Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -23,19 +23,17 @@
|
|
|
23
23
|
"module": "./dist-es/index.js",
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aws-
|
|
27
|
-
"@aws-
|
|
28
|
-
"@aws-sdk/
|
|
29
|
-
"@
|
|
30
|
-
"@
|
|
31
|
-
"@smithy/
|
|
32
|
-
"@smithy/
|
|
33
|
-
"@smithy/node-http-handler": "^4.9.0",
|
|
34
|
-
"@smithy/types": "^4.15.0",
|
|
26
|
+
"@aws-sdk/core": "^3.974.26",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
28
|
+
"@aws-sdk/types": "^3.973.15",
|
|
29
|
+
"@smithy/core": "^3.29.0",
|
|
30
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
31
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
32
|
+
"@smithy/types": "^4.15.1",
|
|
35
33
|
"tslib": "^2.6.2"
|
|
36
34
|
},
|
|
37
35
|
"devDependencies": {
|
|
38
|
-
"@smithy/snapshot-testing": "^2.2.
|
|
36
|
+
"@smithy/snapshot-testing": "^2.2.5",
|
|
39
37
|
"@tsconfig/node20": "20.1.8",
|
|
40
38
|
"@types/node": "^20.14.8",
|
|
41
39
|
"concurrently": "7.0.0",
|