@jjrawlins/cdk-diff-pr-github-action 0.0.44 → 0.0.46
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/.jsii +3 -3
- package/lib/CdkDiffIamTemplate.js +1 -1
- package/lib/CdkDiffStackWorkflow.js +1 -1
- package/lib/CdkDriftDetectionWorkflow.js +1 -1
- package/lib/CdkDriftIamTemplate.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/README.md +1 -96
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1857 -2253
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/pagination/index.js +3 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +4 -6
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/schemas/schemas_0.js +1504 -1900
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/index.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForChangeSetCreateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +74 -74
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +34 -34
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +26 -26
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +3 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +18 -18
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +18 -18
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForTypeRegistrationComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/index.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/package.json +2 -2
- package/node_modules/@aws-sdk/client-sso/README.md +1 -9
- package/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +27 -20
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +69 -77
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +27 -20
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +4 -6
- package/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +75 -83
- package/node_modules/@aws-sdk/client-sso/package.json +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-login/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/package.json +1 -1
- package/node_modules/@aws-sdk/token-providers/package.json +2 -2
- package/package.json +2 -2
|
@@ -19,8 +19,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
19
19
|
runtime: "browser",
|
|
20
20
|
defaultsMode,
|
|
21
21
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
22
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
23
|
-
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
22
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
24
23
|
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
25
24
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
26
25
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
|
|
3
|
+
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
4
4
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
5
5
|
import { Hash } from "@smithy/hash-node";
|
|
6
6
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
|
|
@@ -28,11 +28,9 @@ export const getRuntimeConfig = (config) => {
|
|
|
28
28
|
defaultsMode,
|
|
29
29
|
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
30
30
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
31
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
32
|
-
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
31
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
33
32
|
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
34
|
-
region: config?.region ??
|
|
35
|
-
loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
33
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
36
34
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
37
35
|
retryMode: config?.retryMode ??
|
|
38
36
|
loadNodeConfig({
|
|
@@ -55,106 +55,98 @@ import { SSOServiceException } from "../models/SSOServiceException";
|
|
|
55
55
|
var AccessTokenType = [0, n0, _ATT, 8, 0];
|
|
56
56
|
var SecretAccessKeyType = [0, n0, _SAKT, 8, 0];
|
|
57
57
|
var SessionTokenType = [0, n0, _STT, 8, 0];
|
|
58
|
-
export var AccountInfo$ = [3, n0, _AI,
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
58
|
+
export var AccountInfo$ = [3, n0, _AI,
|
|
59
|
+
0,
|
|
60
|
+
[_aI, _aN, _eA],
|
|
61
|
+
[0, 0, 0]
|
|
62
|
+
];
|
|
63
|
+
export var GetRoleCredentialsRequest$ = [3, n0, _GRCR,
|
|
63
64
|
0,
|
|
64
65
|
[_rN, _aI, _aT],
|
|
65
|
-
[
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
[() => AccessTokenType, { [_hH]: _xasbt }],
|
|
69
|
-
],
|
|
70
|
-
];
|
|
71
|
-
export var GetRoleCredentialsResponse$ = [
|
|
72
|
-
3,
|
|
73
|
-
n0,
|
|
74
|
-
_GRCRe,
|
|
66
|
+
[[0, { [_hQ]: _rn }], [0, { [_hQ]: _ai }], [() => AccessTokenType, { [_hH]: _xasbt }]]
|
|
67
|
+
];
|
|
68
|
+
export var GetRoleCredentialsResponse$ = [3, n0, _GRCRe,
|
|
75
69
|
0,
|
|
76
70
|
[_rC],
|
|
77
|
-
[[() => RoleCredentials$, 0]]
|
|
71
|
+
[[() => RoleCredentials$, 0]]
|
|
72
|
+
];
|
|
73
|
+
export var InvalidRequestException$ = [-3, n0, _IRE,
|
|
74
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
75
|
+
[_m],
|
|
76
|
+
[0]
|
|
78
77
|
];
|
|
79
|
-
export var InvalidRequestException$ = [-3, n0, _IRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
80
78
|
TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
81
|
-
export var ListAccountRolesRequest$ = [
|
|
82
|
-
3,
|
|
83
|
-
n0,
|
|
84
|
-
_LARR,
|
|
79
|
+
export var ListAccountRolesRequest$ = [3, n0, _LARR,
|
|
85
80
|
0,
|
|
86
81
|
[_nT, _mR, _aT, _aI],
|
|
87
|
-
[
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
]
|
|
93
|
-
];
|
|
94
|
-
export var
|
|
95
|
-
export var ListAccountsRequest$ = [
|
|
96
|
-
3,
|
|
97
|
-
n0,
|
|
98
|
-
_LAR,
|
|
82
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }], [() => AccessTokenType, { [_hH]: _xasbt }], [0, { [_hQ]: _ai }]]
|
|
83
|
+
];
|
|
84
|
+
export var ListAccountRolesResponse$ = [3, n0, _LARRi,
|
|
85
|
+
0,
|
|
86
|
+
[_nT, _rL],
|
|
87
|
+
[0, () => RoleListType]
|
|
88
|
+
];
|
|
89
|
+
export var ListAccountsRequest$ = [3, n0, _LAR,
|
|
99
90
|
0,
|
|
100
91
|
[_nT, _mR, _aT],
|
|
101
|
-
[
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
],
|
|
106
|
-
]
|
|
107
|
-
|
|
108
|
-
export var LogoutRequest$ = [3, n0, _LR,
|
|
109
|
-
|
|
92
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }], [() => AccessTokenType, { [_hH]: _xasbt }]]
|
|
93
|
+
];
|
|
94
|
+
export var ListAccountsResponse$ = [3, n0, _LARi,
|
|
95
|
+
0,
|
|
96
|
+
[_nT, _aL],
|
|
97
|
+
[0, () => AccountListType]
|
|
98
|
+
];
|
|
99
|
+
export var LogoutRequest$ = [3, n0, _LR,
|
|
100
|
+
0,
|
|
101
|
+
[_aT],
|
|
102
|
+
[[() => AccessTokenType, { [_hH]: _xasbt }]]
|
|
103
|
+
];
|
|
104
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
105
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
106
|
+
[_m],
|
|
107
|
+
[0]
|
|
108
|
+
];
|
|
110
109
|
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
111
|
-
export var RoleCredentials$ = [
|
|
112
|
-
3,
|
|
113
|
-
n0,
|
|
114
|
-
_RC,
|
|
110
|
+
export var RoleCredentials$ = [3, n0, _RC,
|
|
115
111
|
0,
|
|
116
112
|
[_aKI, _sAK, _sT, _ex],
|
|
117
|
-
[0, [() => SecretAccessKeyType, 0], [() => SessionTokenType, 0], 1]
|
|
113
|
+
[0, [() => SecretAccessKeyType, 0], [() => SessionTokenType, 0], 1]
|
|
114
|
+
];
|
|
115
|
+
export var RoleInfo$ = [3, n0, _RI,
|
|
116
|
+
0,
|
|
117
|
+
[_rN, _aI],
|
|
118
|
+
[0, 0]
|
|
119
|
+
];
|
|
120
|
+
export var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
121
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
122
|
+
[_m],
|
|
123
|
+
[0]
|
|
118
124
|
];
|
|
119
|
-
export var RoleInfo$ = [3, n0, _RI, 0, [_rN, _aI], [0, 0]];
|
|
120
|
-
export var TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
121
125
|
TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
122
|
-
export var UnauthorizedException$ = [-3, n0, _UE,
|
|
126
|
+
export var UnauthorizedException$ = [-3, n0, _UE,
|
|
127
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
128
|
+
[_m],
|
|
129
|
+
[0]
|
|
130
|
+
];
|
|
123
131
|
TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
124
132
|
var __Unit = "unit";
|
|
125
133
|
export var SSOServiceException$ = [-3, _s, "SSOServiceException", 0, [], []];
|
|
126
134
|
TypeRegistry.for(_s).registerError(SSOServiceException$, SSOServiceException);
|
|
127
|
-
var AccountListType = [1, n0, _ALT,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
() => GetRoleCredentialsRequest$,
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
() =>
|
|
144
|
-
];
|
|
145
|
-
export var ListAccounts$ = [
|
|
146
|
-
9,
|
|
147
|
-
n0,
|
|
148
|
-
_LA,
|
|
149
|
-
{ [_h]: ["GET", "/assignment/accounts", 200] },
|
|
150
|
-
() => ListAccountsRequest$,
|
|
151
|
-
() => ListAccountsResponse$,
|
|
152
|
-
];
|
|
153
|
-
export var Logout$ = [
|
|
154
|
-
9,
|
|
155
|
-
n0,
|
|
156
|
-
_L,
|
|
157
|
-
{ [_h]: ["POST", "/logout", 200] },
|
|
158
|
-
() => LogoutRequest$,
|
|
159
|
-
() => __Unit,
|
|
135
|
+
var AccountListType = [1, n0, _ALT,
|
|
136
|
+
0, () => AccountInfo$
|
|
137
|
+
];
|
|
138
|
+
var RoleListType = [1, n0, _RLT,
|
|
139
|
+
0, () => RoleInfo$
|
|
140
|
+
];
|
|
141
|
+
export var GetRoleCredentials$ = [9, n0, _GRC,
|
|
142
|
+
{ [_h]: ["GET", "/federation/credentials", 200] }, () => GetRoleCredentialsRequest$, () => GetRoleCredentialsResponse$
|
|
143
|
+
];
|
|
144
|
+
export var ListAccountRoles$ = [9, n0, _LARis,
|
|
145
|
+
{ [_h]: ["GET", "/assignment/roles", 200] }, () => ListAccountRolesRequest$, () => ListAccountRolesResponse$
|
|
146
|
+
];
|
|
147
|
+
export var ListAccounts$ = [9, n0, _LA,
|
|
148
|
+
{ [_h]: ["GET", "/assignment/accounts", 200] }, () => ListAccountsRequest$, () => ListAccountsResponse$
|
|
149
|
+
];
|
|
150
|
+
export var Logout$ = [9, n0, _L,
|
|
151
|
+
{ [_h]: ["POST", "/logout", 200] }, () => LogoutRequest$, () => __Unit
|
|
160
152
|
];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.958.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 client-sso",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-ini",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.958.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"@aws-sdk/core": "3.957.0",
|
|
32
32
|
"@aws-sdk/credential-provider-env": "3.957.0",
|
|
33
33
|
"@aws-sdk/credential-provider-http": "3.957.0",
|
|
34
|
-
"@aws-sdk/credential-provider-login": "3.
|
|
34
|
+
"@aws-sdk/credential-provider-login": "3.958.0",
|
|
35
35
|
"@aws-sdk/credential-provider-process": "3.957.0",
|
|
36
|
-
"@aws-sdk/credential-provider-sso": "3.
|
|
37
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
|
38
|
-
"@aws-sdk/nested-clients": "3.
|
|
36
|
+
"@aws-sdk/credential-provider-sso": "3.958.0",
|
|
37
|
+
"@aws-sdk/credential-provider-web-identity": "3.958.0",
|
|
38
|
+
"@aws-sdk/nested-clients": "3.958.0",
|
|
39
39
|
"@aws-sdk/types": "3.957.0",
|
|
40
40
|
"@smithy/credential-provider-imds": "^4.2.7",
|
|
41
41
|
"@smithy/property-provider": "^4.2.7",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-login",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.958.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from aws login cached tokens",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@aws-sdk/core": "3.957.0",
|
|
32
|
-
"@aws-sdk/nested-clients": "3.
|
|
32
|
+
"@aws-sdk/nested-clients": "3.958.0",
|
|
33
33
|
"@aws-sdk/types": "3.957.0",
|
|
34
34
|
"@smithy/property-provider": "^4.2.7",
|
|
35
35
|
"@smithy/protocol-http": "^5.3.7",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-node",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.958.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from a Node.JS environment. ",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@aws-sdk/credential-provider-env": "3.957.0",
|
|
35
35
|
"@aws-sdk/credential-provider-http": "3.957.0",
|
|
36
|
-
"@aws-sdk/credential-provider-ini": "3.
|
|
36
|
+
"@aws-sdk/credential-provider-ini": "3.958.0",
|
|
37
37
|
"@aws-sdk/credential-provider-process": "3.957.0",
|
|
38
|
-
"@aws-sdk/credential-provider-sso": "3.
|
|
39
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
|
38
|
+
"@aws-sdk/credential-provider-sso": "3.958.0",
|
|
39
|
+
"@aws-sdk/credential-provider-web-identity": "3.958.0",
|
|
40
40
|
"@aws-sdk/types": "3.957.0",
|
|
41
41
|
"@smithy/credential-provider-imds": "^4.2.7",
|
|
42
42
|
"@smithy/property-provider": "^4.2.7",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-sso",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.958.0",
|
|
4
4
|
"description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@aws-sdk/client-sso": "3.
|
|
29
|
+
"@aws-sdk/client-sso": "3.958.0",
|
|
30
30
|
"@aws-sdk/core": "3.957.0",
|
|
31
|
-
"@aws-sdk/token-providers": "3.
|
|
31
|
+
"@aws-sdk/token-providers": "3.958.0",
|
|
32
32
|
"@aws-sdk/types": "3.957.0",
|
|
33
33
|
"@smithy/property-provider": "^4.2.7",
|
|
34
34
|
"@smithy/shared-ini-file-loader": "^4.4.2",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-web-identity",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.958.0",
|
|
4
4
|
"description": "AWS credential provider that calls STS assumeRole for temporary AWS credentials",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"license": "Apache-2.0",
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@aws-sdk/core": "3.957.0",
|
|
38
|
-
"@aws-sdk/nested-clients": "3.
|
|
38
|
+
"@aws-sdk/nested-clients": "3.958.0",
|
|
39
39
|
"@aws-sdk/types": "3.957.0",
|
|
40
40
|
"@smithy/property-provider": "^4.2.7",
|
|
41
41
|
"@smithy/shared-ini-file-loader": "^4.4.2",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../../../package.json";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
|
|
3
|
+
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
4
4
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
5
5
|
import { Hash } from "@smithy/hash-node";
|
|
6
6
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../../../package.json";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
|
|
3
|
+
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
4
4
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
5
5
|
import { Hash } from "@smithy/hash-node";
|
|
6
6
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../../../package.json";
|
|
2
|
-
import { AwsSdkSigV4Signer,
|
|
3
|
-
import {
|
|
2
|
+
import { AwsSdkSigV4Signer, emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, } from "@aws-sdk/core";
|
|
3
|
+
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
4
4
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
5
5
|
import { NoAuthSigner } from "@smithy/core";
|
|
6
6
|
import { Hash } from "@smithy/hash-node";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/token-providers",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.958.0",
|
|
4
4
|
"description": "A collection of token providers",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"license": "Apache-2.0",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@aws-sdk/core": "3.957.0",
|
|
33
|
-
"@aws-sdk/nested-clients": "3.
|
|
33
|
+
"@aws-sdk/nested-clients": "3.958.0",
|
|
34
34
|
"@aws-sdk/types": "3.957.0",
|
|
35
35
|
"@smithy/property-provider": "^4.2.7",
|
|
36
36
|
"@smithy/shared-ini-file-loader": "^4.4.2",
|
package/package.json
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"constructs": ">=10.0.5 <11.0.0"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@aws-sdk/client-cloudformation": "^3.
|
|
69
|
+
"@aws-sdk/client-cloudformation": "^3.958.0",
|
|
70
70
|
"@types/crypto-js": "^4.2.2",
|
|
71
71
|
"@types/js-yaml": "^4.0.9",
|
|
72
72
|
"crypto-js": "^4.2.0",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"publishConfig": {
|
|
108
108
|
"access": "public"
|
|
109
109
|
},
|
|
110
|
-
"version": "0.0.
|
|
110
|
+
"version": "0.0.46",
|
|
111
111
|
"jest": {
|
|
112
112
|
"coverageProvider": "v8",
|
|
113
113
|
"testMatch": [
|