@aws-sdk/client-sso-oidc 3.933.0 → 3.935.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.
@@ -1,29 +1,3 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
3
- export declare const AccessDeniedExceptionReason: {
4
- readonly KMS_ACCESS_DENIED: "KMS_AccessDeniedException";
5
- };
6
- export type AccessDeniedExceptionReason =
7
- (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
8
- export declare class AccessDeniedException extends __BaseException {
9
- readonly name: "AccessDeniedException";
10
- readonly $fault: "client";
11
- error?: string | undefined;
12
- reason?: AccessDeniedExceptionReason | undefined;
13
- error_description?: string | undefined;
14
- constructor(
15
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
16
- );
17
- }
18
- export declare class AuthorizationPendingException extends __BaseException {
19
- readonly name: "AuthorizationPendingException";
20
- readonly $fault: "client";
21
- error?: string | undefined;
22
- error_description?: string | undefined;
23
- constructor(
24
- opts: __ExceptionOptionType<AuthorizationPendingException, __BaseException>
25
- );
26
- }
27
1
  export interface AwsAdditionalDetails {
28
2
  identityContext?: string | undefined;
29
3
  }
@@ -45,94 +19,6 @@ export interface CreateTokenResponse {
45
19
  refreshToken?: string | undefined;
46
20
  idToken?: string | undefined;
47
21
  }
48
- export declare class ExpiredTokenException extends __BaseException {
49
- readonly name: "ExpiredTokenException";
50
- readonly $fault: "client";
51
- error?: string | undefined;
52
- error_description?: string | undefined;
53
- constructor(
54
- opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>
55
- );
56
- }
57
- export declare class InternalServerException extends __BaseException {
58
- readonly name: "InternalServerException";
59
- readonly $fault: "server";
60
- error?: string | undefined;
61
- error_description?: string | undefined;
62
- constructor(
63
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
64
- );
65
- }
66
- export declare class InvalidClientException extends __BaseException {
67
- readonly name: "InvalidClientException";
68
- readonly $fault: "client";
69
- error?: string | undefined;
70
- error_description?: string | undefined;
71
- constructor(
72
- opts: __ExceptionOptionType<InvalidClientException, __BaseException>
73
- );
74
- }
75
- export declare class InvalidGrantException extends __BaseException {
76
- readonly name: "InvalidGrantException";
77
- readonly $fault: "client";
78
- error?: string | undefined;
79
- error_description?: string | undefined;
80
- constructor(
81
- opts: __ExceptionOptionType<InvalidGrantException, __BaseException>
82
- );
83
- }
84
- export declare const InvalidRequestExceptionReason: {
85
- readonly KMS_DISABLED_KEY: "KMS_DisabledException";
86
- readonly KMS_INVALID_KEY_USAGE: "KMS_InvalidKeyUsageException";
87
- readonly KMS_INVALID_STATE: "KMS_InvalidStateException";
88
- readonly KMS_KEY_NOT_FOUND: "KMS_NotFoundException";
89
- };
90
- export type InvalidRequestExceptionReason =
91
- (typeof InvalidRequestExceptionReason)[keyof typeof InvalidRequestExceptionReason];
92
- export declare class InvalidRequestException extends __BaseException {
93
- readonly name: "InvalidRequestException";
94
- readonly $fault: "client";
95
- error?: string | undefined;
96
- reason?: InvalidRequestExceptionReason | undefined;
97
- error_description?: string | undefined;
98
- constructor(
99
- opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
100
- );
101
- }
102
- export declare class InvalidScopeException extends __BaseException {
103
- readonly name: "InvalidScopeException";
104
- readonly $fault: "client";
105
- error?: string | undefined;
106
- error_description?: string | undefined;
107
- constructor(
108
- opts: __ExceptionOptionType<InvalidScopeException, __BaseException>
109
- );
110
- }
111
- export declare class SlowDownException extends __BaseException {
112
- readonly name: "SlowDownException";
113
- readonly $fault: "client";
114
- error?: string | undefined;
115
- error_description?: string | undefined;
116
- constructor(opts: __ExceptionOptionType<SlowDownException, __BaseException>);
117
- }
118
- export declare class UnauthorizedClientException extends __BaseException {
119
- readonly name: "UnauthorizedClientException";
120
- readonly $fault: "client";
121
- error?: string | undefined;
122
- error_description?: string | undefined;
123
- constructor(
124
- opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
125
- );
126
- }
127
- export declare class UnsupportedGrantTypeException extends __BaseException {
128
- readonly name: "UnsupportedGrantTypeException";
129
- readonly $fault: "client";
130
- error?: string | undefined;
131
- error_description?: string | undefined;
132
- constructor(
133
- opts: __ExceptionOptionType<UnsupportedGrantTypeException, __BaseException>
134
- );
135
- }
136
22
  export interface CreateTokenWithIAMRequest {
137
23
  clientId: string | undefined;
138
24
  grantType: string | undefined;
@@ -156,35 +42,6 @@ export interface CreateTokenWithIAMResponse {
156
42
  scope?: string[] | undefined;
157
43
  awsAdditionalDetails?: AwsAdditionalDetails | undefined;
158
44
  }
159
- export declare class InvalidRequestRegionException extends __BaseException {
160
- readonly name: "InvalidRequestRegionException";
161
- readonly $fault: "client";
162
- error?: string | undefined;
163
- error_description?: string | undefined;
164
- endpoint?: string | undefined;
165
- region?: string | undefined;
166
- constructor(
167
- opts: __ExceptionOptionType<InvalidRequestRegionException, __BaseException>
168
- );
169
- }
170
- export declare class InvalidClientMetadataException extends __BaseException {
171
- readonly name: "InvalidClientMetadataException";
172
- readonly $fault: "client";
173
- error?: string | undefined;
174
- error_description?: string | undefined;
175
- constructor(
176
- opts: __ExceptionOptionType<InvalidClientMetadataException, __BaseException>
177
- );
178
- }
179
- export declare class InvalidRedirectUriException extends __BaseException {
180
- readonly name: "InvalidRedirectUriException";
181
- readonly $fault: "client";
182
- error?: string | undefined;
183
- error_description?: string | undefined;
184
- constructor(
185
- opts: __ExceptionOptionType<InvalidRedirectUriException, __BaseException>
186
- );
187
- }
188
45
  export interface RegisterClientRequest {
189
46
  clientName: string | undefined;
190
47
  clientType: string | undefined;
package/package.json CHANGED
@@ -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.933.0",
4
+ "version": "3.935.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,38 +20,38 @@
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.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";