@cdk8s/awscdk-resolver 0.0.197 → 0.0.199
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 +4 -4
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +760 -760
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +81 -81
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +764 -760
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +81 -81
- package/node_modules/@aws-sdk/client-cloudformation/package.json +7 -7
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +18 -18
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +18 -18
- package/node_modules/@aws-sdk/client-sso/package.json +4 -4
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +74 -74
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +74 -74
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +6 -6
- package/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +56 -56
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +56 -56
- package/node_modules/@aws-sdk/client-sts/package.json +6 -6
- package/node_modules/@aws-sdk/core/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-node/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +4 -4
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/package.json +5 -5
@@ -3,8 +3,8 @@ import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceExce
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
4
4
|
readonly name: "AccessDeniedException";
|
5
5
|
readonly $fault: "client";
|
6
|
-
error?: string;
|
7
|
-
error_description?: string;
|
6
|
+
error?: string | undefined;
|
7
|
+
error_description?: string | undefined;
|
8
8
|
constructor(
|
9
9
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
10
10
|
);
|
@@ -12,8 +12,8 @@ export declare class AccessDeniedException extends __BaseException {
|
|
12
12
|
export declare class AuthorizationPendingException extends __BaseException {
|
13
13
|
readonly name: "AuthorizationPendingException";
|
14
14
|
readonly $fault: "client";
|
15
|
-
error?: string;
|
16
|
-
error_description?: string;
|
15
|
+
error?: string | undefined;
|
16
|
+
error_description?: string | undefined;
|
17
17
|
constructor(
|
18
18
|
opts: __ExceptionOptionType<AuthorizationPendingException, __BaseException>
|
19
19
|
);
|
@@ -22,25 +22,25 @@ export interface CreateTokenRequest {
|
|
22
22
|
clientId: string | undefined;
|
23
23
|
clientSecret: string | undefined;
|
24
24
|
grantType: string | undefined;
|
25
|
-
deviceCode?: string;
|
26
|
-
code?: string;
|
27
|
-
refreshToken?: string;
|
28
|
-
scope?: string[];
|
29
|
-
redirectUri?: string;
|
30
|
-
codeVerifier?: string;
|
25
|
+
deviceCode?: string | undefined;
|
26
|
+
code?: string | undefined;
|
27
|
+
refreshToken?: string | undefined;
|
28
|
+
scope?: string[] | undefined;
|
29
|
+
redirectUri?: string | undefined;
|
30
|
+
codeVerifier?: string | undefined;
|
31
31
|
}
|
32
32
|
export interface CreateTokenResponse {
|
33
|
-
accessToken?: string;
|
34
|
-
tokenType?: string;
|
35
|
-
expiresIn?: number;
|
36
|
-
refreshToken?: string;
|
37
|
-
idToken?: string;
|
33
|
+
accessToken?: string | undefined;
|
34
|
+
tokenType?: string | undefined;
|
35
|
+
expiresIn?: number | undefined;
|
36
|
+
refreshToken?: string | undefined;
|
37
|
+
idToken?: string | undefined;
|
38
38
|
}
|
39
39
|
export declare class ExpiredTokenException extends __BaseException {
|
40
40
|
readonly name: "ExpiredTokenException";
|
41
41
|
readonly $fault: "client";
|
42
|
-
error?: string;
|
43
|
-
error_description?: string;
|
42
|
+
error?: string | undefined;
|
43
|
+
error_description?: string | undefined;
|
44
44
|
constructor(
|
45
45
|
opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>
|
46
46
|
);
|
@@ -48,8 +48,8 @@ export declare class ExpiredTokenException extends __BaseException {
|
|
48
48
|
export declare class InternalServerException extends __BaseException {
|
49
49
|
readonly name: "InternalServerException";
|
50
50
|
readonly $fault: "server";
|
51
|
-
error?: string;
|
52
|
-
error_description?: string;
|
51
|
+
error?: string | undefined;
|
52
|
+
error_description?: string | undefined;
|
53
53
|
constructor(
|
54
54
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
55
55
|
);
|
@@ -57,8 +57,8 @@ export declare class InternalServerException extends __BaseException {
|
|
57
57
|
export declare class InvalidClientException extends __BaseException {
|
58
58
|
readonly name: "InvalidClientException";
|
59
59
|
readonly $fault: "client";
|
60
|
-
error?: string;
|
61
|
-
error_description?: string;
|
60
|
+
error?: string | undefined;
|
61
|
+
error_description?: string | undefined;
|
62
62
|
constructor(
|
63
63
|
opts: __ExceptionOptionType<InvalidClientException, __BaseException>
|
64
64
|
);
|
@@ -66,8 +66,8 @@ export declare class InvalidClientException extends __BaseException {
|
|
66
66
|
export declare class InvalidGrantException extends __BaseException {
|
67
67
|
readonly name: "InvalidGrantException";
|
68
68
|
readonly $fault: "client";
|
69
|
-
error?: string;
|
70
|
-
error_description?: string;
|
69
|
+
error?: string | undefined;
|
70
|
+
error_description?: string | undefined;
|
71
71
|
constructor(
|
72
72
|
opts: __ExceptionOptionType<InvalidGrantException, __BaseException>
|
73
73
|
);
|
@@ -75,8 +75,8 @@ export declare class InvalidGrantException extends __BaseException {
|
|
75
75
|
export declare class InvalidRequestException extends __BaseException {
|
76
76
|
readonly name: "InvalidRequestException";
|
77
77
|
readonly $fault: "client";
|
78
|
-
error?: string;
|
79
|
-
error_description?: string;
|
78
|
+
error?: string | undefined;
|
79
|
+
error_description?: string | undefined;
|
80
80
|
constructor(
|
81
81
|
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
82
82
|
);
|
@@ -84,8 +84,8 @@ export declare class InvalidRequestException extends __BaseException {
|
|
84
84
|
export declare class InvalidScopeException extends __BaseException {
|
85
85
|
readonly name: "InvalidScopeException";
|
86
86
|
readonly $fault: "client";
|
87
|
-
error?: string;
|
88
|
-
error_description?: string;
|
87
|
+
error?: string | undefined;
|
88
|
+
error_description?: string | undefined;
|
89
89
|
constructor(
|
90
90
|
opts: __ExceptionOptionType<InvalidScopeException, __BaseException>
|
91
91
|
);
|
@@ -93,15 +93,15 @@ export declare class InvalidScopeException extends __BaseException {
|
|
93
93
|
export declare class SlowDownException extends __BaseException {
|
94
94
|
readonly name: "SlowDownException";
|
95
95
|
readonly $fault: "client";
|
96
|
-
error?: string;
|
97
|
-
error_description?: string;
|
96
|
+
error?: string | undefined;
|
97
|
+
error_description?: string | undefined;
|
98
98
|
constructor(opts: __ExceptionOptionType<SlowDownException, __BaseException>);
|
99
99
|
}
|
100
100
|
export declare class UnauthorizedClientException extends __BaseException {
|
101
101
|
readonly name: "UnauthorizedClientException";
|
102
102
|
readonly $fault: "client";
|
103
|
-
error?: string;
|
104
|
-
error_description?: string;
|
103
|
+
error?: string | undefined;
|
104
|
+
error_description?: string | undefined;
|
105
105
|
constructor(
|
106
106
|
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
107
107
|
);
|
@@ -109,8 +109,8 @@ export declare class UnauthorizedClientException extends __BaseException {
|
|
109
109
|
export declare class UnsupportedGrantTypeException extends __BaseException {
|
110
110
|
readonly name: "UnsupportedGrantTypeException";
|
111
111
|
readonly $fault: "client";
|
112
|
-
error?: string;
|
113
|
-
error_description?: string;
|
112
|
+
error?: string | undefined;
|
113
|
+
error_description?: string | undefined;
|
114
114
|
constructor(
|
115
115
|
opts: __ExceptionOptionType<UnsupportedGrantTypeException, __BaseException>
|
116
116
|
);
|
@@ -118,32 +118,32 @@ export declare class UnsupportedGrantTypeException extends __BaseException {
|
|
118
118
|
export interface CreateTokenWithIAMRequest {
|
119
119
|
clientId: string | undefined;
|
120
120
|
grantType: string | undefined;
|
121
|
-
code?: string;
|
122
|
-
refreshToken?: string;
|
123
|
-
assertion?: string;
|
124
|
-
scope?: string[];
|
125
|
-
redirectUri?: string;
|
126
|
-
subjectToken?: string;
|
127
|
-
subjectTokenType?: string;
|
128
|
-
requestedTokenType?: string;
|
129
|
-
codeVerifier?: string;
|
121
|
+
code?: string | undefined;
|
122
|
+
refreshToken?: string | undefined;
|
123
|
+
assertion?: string | undefined;
|
124
|
+
scope?: string[] | undefined;
|
125
|
+
redirectUri?: string | undefined;
|
126
|
+
subjectToken?: string | undefined;
|
127
|
+
subjectTokenType?: string | undefined;
|
128
|
+
requestedTokenType?: string | undefined;
|
129
|
+
codeVerifier?: string | undefined;
|
130
130
|
}
|
131
131
|
export interface CreateTokenWithIAMResponse {
|
132
|
-
accessToken?: string;
|
133
|
-
tokenType?: string;
|
134
|
-
expiresIn?: number;
|
135
|
-
refreshToken?: string;
|
136
|
-
idToken?: string;
|
137
|
-
issuedTokenType?: string;
|
138
|
-
scope?: string[];
|
132
|
+
accessToken?: string | undefined;
|
133
|
+
tokenType?: string | undefined;
|
134
|
+
expiresIn?: number | undefined;
|
135
|
+
refreshToken?: string | undefined;
|
136
|
+
idToken?: string | undefined;
|
137
|
+
issuedTokenType?: string | undefined;
|
138
|
+
scope?: string[] | undefined;
|
139
139
|
}
|
140
140
|
export declare class InvalidRequestRegionException extends __BaseException {
|
141
141
|
readonly name: "InvalidRequestRegionException";
|
142
142
|
readonly $fault: "client";
|
143
|
-
error?: string;
|
144
|
-
error_description?: string;
|
145
|
-
endpoint?: string;
|
146
|
-
region?: string;
|
143
|
+
error?: string | undefined;
|
144
|
+
error_description?: string | undefined;
|
145
|
+
endpoint?: string | undefined;
|
146
|
+
region?: string | undefined;
|
147
147
|
constructor(
|
148
148
|
opts: __ExceptionOptionType<InvalidRequestRegionException, __BaseException>
|
149
149
|
);
|
@@ -151,8 +151,8 @@ export declare class InvalidRequestRegionException extends __BaseException {
|
|
151
151
|
export declare class InvalidClientMetadataException extends __BaseException {
|
152
152
|
readonly name: "InvalidClientMetadataException";
|
153
153
|
readonly $fault: "client";
|
154
|
-
error?: string;
|
155
|
-
error_description?: string;
|
154
|
+
error?: string | undefined;
|
155
|
+
error_description?: string | undefined;
|
156
156
|
constructor(
|
157
157
|
opts: __ExceptionOptionType<InvalidClientMetadataException, __BaseException>
|
158
158
|
);
|
@@ -160,8 +160,8 @@ export declare class InvalidClientMetadataException extends __BaseException {
|
|
160
160
|
export declare class InvalidRedirectUriException extends __BaseException {
|
161
161
|
readonly name: "InvalidRedirectUriException";
|
162
162
|
readonly $fault: "client";
|
163
|
-
error?: string;
|
164
|
-
error_description?: string;
|
163
|
+
error?: string | undefined;
|
164
|
+
error_description?: string | undefined;
|
165
165
|
constructor(
|
166
166
|
opts: __ExceptionOptionType<InvalidRedirectUriException, __BaseException>
|
167
167
|
);
|
@@ -169,19 +169,19 @@ export declare class InvalidRedirectUriException extends __BaseException {
|
|
169
169
|
export interface RegisterClientRequest {
|
170
170
|
clientName: string | undefined;
|
171
171
|
clientType: string | undefined;
|
172
|
-
scopes?: string[];
|
173
|
-
redirectUris?: string[];
|
174
|
-
grantTypes?: string[];
|
175
|
-
issuerUrl?: string;
|
176
|
-
entitledApplicationArn?: string;
|
172
|
+
scopes?: string[] | undefined;
|
173
|
+
redirectUris?: string[] | undefined;
|
174
|
+
grantTypes?: string[] | undefined;
|
175
|
+
issuerUrl?: string | undefined;
|
176
|
+
entitledApplicationArn?: string | undefined;
|
177
177
|
}
|
178
178
|
export interface RegisterClientResponse {
|
179
|
-
clientId?: string;
|
180
|
-
clientSecret?: string;
|
181
|
-
clientIdIssuedAt?: number;
|
182
|
-
clientSecretExpiresAt?: number;
|
183
|
-
authorizationEndpoint?: string;
|
184
|
-
tokenEndpoint?: string;
|
179
|
+
clientId?: string | undefined;
|
180
|
+
clientSecret?: string | undefined;
|
181
|
+
clientIdIssuedAt?: number | undefined;
|
182
|
+
clientSecretExpiresAt?: number | undefined;
|
183
|
+
authorizationEndpoint?: string | undefined;
|
184
|
+
tokenEndpoint?: string | undefined;
|
185
185
|
}
|
186
186
|
export interface StartDeviceAuthorizationRequest {
|
187
187
|
clientId: string | undefined;
|
@@ -189,12 +189,12 @@ export interface StartDeviceAuthorizationRequest {
|
|
189
189
|
startUrl: string | undefined;
|
190
190
|
}
|
191
191
|
export interface StartDeviceAuthorizationResponse {
|
192
|
-
deviceCode?: string;
|
193
|
-
userCode?: string;
|
194
|
-
verificationUri?: string;
|
195
|
-
verificationUriComplete?: string;
|
196
|
-
expiresIn?: number;
|
197
|
-
interval?: number;
|
192
|
+
deviceCode?: string | undefined;
|
193
|
+
userCode?: string | undefined;
|
194
|
+
verificationUri?: string | undefined;
|
195
|
+
verificationUriComplete?: string | undefined;
|
196
|
+
expiresIn?: number | undefined;
|
197
|
+
interval?: number | undefined;
|
198
198
|
}
|
199
199
|
export declare const CreateTokenRequestFilterSensitiveLog: (
|
200
200
|
obj: CreateTokenRequest
|
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/client-sso-oidc",
|
3
3
|
"description": "AWS SDK for JavaScript Sso Oidc Client for Node.js, Browser and React Native",
|
4
|
-
"version": "3.
|
4
|
+
"version": "3.691.0",
|
5
5
|
"scripts": {
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sso-oidc",
|
@@ -20,17 +20,17 @@
|
|
20
20
|
"dependencies": {
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
23
|
-
"@aws-sdk/core": "3.
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
23
|
+
"@aws-sdk/core": "3.691.0",
|
24
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
25
25
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
26
26
|
"@aws-sdk/middleware-logger": "3.686.0",
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
29
29
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
30
30
|
"@aws-sdk/types": "3.686.0",
|
31
31
|
"@aws-sdk/util-endpoints": "3.686.0",
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
34
34
|
"@smithy/config-resolver": "^3.0.10",
|
35
35
|
"@smithy/core": "^2.5.1",
|
36
36
|
"@smithy/fetch-http-handler": "^4.0.0",
|
@@ -85,7 +85,7 @@
|
|
85
85
|
},
|
86
86
|
"license": "Apache-2.0",
|
87
87
|
"peerDependencies": {
|
88
|
-
"@aws-sdk/client-sts": "^3.
|
88
|
+
"@aws-sdk/client-sts": "^3.691.0"
|
89
89
|
},
|
90
90
|
"browser": {
|
91
91
|
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|