@aws-sdk/client-sso-oidc 3.295.0 → 3.297.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.
@@ -4,6 +4,7 @@ import { RegisterClientCommandInput, RegisterClientCommandOutput } from "./comma
4
4
  import { StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput } from "./commands/StartDeviceAuthorizationCommand";
5
5
  import { SSOOIDCClient } from "./SSOOIDCClient";
6
6
  /**
7
+ * @public
7
8
  * <p>AWS IAM Identity Center (successor to AWS Single Sign-On) OpenID Connect (OIDC) is a web service that enables a client (such as AWS CLI
8
9
  * or a native application) to register with IAM Identity Center. The service also enables the client to
9
10
  * fetch the user’s access token upon successful authentication and authorization with
@@ -47,6 +48,7 @@ import { SSOOIDCClient } from "./SSOOIDCClient";
47
48
  */
48
49
  export declare class SSOOIDC extends SSOOIDCClient {
49
50
  /**
51
+ * @public
50
52
  * <p>Creates and returns an access token for the authorized client. The access token issued
51
53
  * will be used to fetch short-term credentials for the assigned roles in the AWS
52
54
  * account.</p>
@@ -55,6 +57,7 @@ export declare class SSOOIDC extends SSOOIDCClient {
55
57
  createToken(args: CreateTokenCommandInput, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
56
58
  createToken(args: CreateTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
57
59
  /**
60
+ * @public
58
61
  * <p>Registers a client with IAM Identity Center. This allows clients to initiate device authorization.
59
62
  * The output should be persisted for reuse through many authentication requests.</p>
60
63
  */
@@ -62,6 +65,7 @@ export declare class SSOOIDC extends SSOOIDCClient {
62
65
  registerClient(args: RegisterClientCommandInput, cb: (err: any, data?: RegisterClientCommandOutput) => void): void;
63
66
  registerClient(args: RegisterClientCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterClientCommandOutput) => void): void;
64
67
  /**
68
+ * @public
65
69
  * <p>Initiates device authorization by requesting a pair of verification codes from the
66
70
  * authorization service.</p>
67
71
  */
@@ -10,15 +10,24 @@ import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/Cr
10
10
  import { RegisterClientCommandInput, RegisterClientCommandOutput } from "./commands/RegisterClientCommand";
11
11
  import { StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput } from "./commands/StartDeviceAuthorizationCommand";
12
12
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
13
+ /**
14
+ * @public
15
+ */
13
16
  export type ServiceInputTypes = CreateTokenCommandInput | RegisterClientCommandInput | StartDeviceAuthorizationCommandInput;
17
+ /**
18
+ * @public
19
+ */
14
20
  export type ServiceOutputTypes = CreateTokenCommandOutput | RegisterClientCommandOutput | StartDeviceAuthorizationCommandOutput;
21
+ /**
22
+ * @public
23
+ */
15
24
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
16
25
  /**
17
26
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
18
27
  */
19
28
  requestHandler?: __HttpHandler;
20
29
  /**
21
- * A constructor for a class implementing the {@link __Checksum} interface
30
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
22
31
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
23
32
  * @internal
24
33
  */
@@ -103,23 +112,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
103
112
  */
104
113
  logger?: __Logger;
105
114
  /**
106
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
115
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
107
116
  */
108
117
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
109
118
  }
119
+ /**
120
+ * @public
121
+ */
110
122
  type SSOOIDCClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
111
123
  /**
112
- * The configuration interface of SSOOIDCClient class constructor that set the region, credentials and other options.
124
+ * @public
125
+ *
126
+ * The configuration interface of SSOOIDCClient class constructor that set the region, credentials and other options.
113
127
  */
114
128
  export interface SSOOIDCClientConfig extends SSOOIDCClientConfigType {
115
129
  }
130
+ /**
131
+ * @public
132
+ */
116
133
  type SSOOIDCClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
117
134
  /**
118
- * The resolved configuration interface of SSOOIDCClient class. This is resolved and normalized from the {@link SSOOIDCClientConfig | constructor configuration interface}.
135
+ * @public
136
+ *
137
+ * The resolved configuration interface of SSOOIDCClient class. This is resolved and normalized from the {@link SSOOIDCClientConfig | constructor configuration interface}.
119
138
  */
120
139
  export interface SSOOIDCClientResolvedConfig extends SSOOIDCClientResolvedConfigType {
121
140
  }
122
141
  /**
142
+ * @public
123
143
  * <p>AWS IAM Identity Center (successor to AWS Single Sign-On) OpenID Connect (OIDC) is a web service that enables a client (such as AWS CLI
124
144
  * or a native application) to register with IAM Identity Center. The service also enables the client to
125
145
  * fetch the user’s access token upon successful authentication and authorization with
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateTokenCommand}.
8
10
  */
9
11
  export interface CreateTokenCommandInput extends CreateTokenRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateTokenCommand}.
13
17
  */
14
18
  export interface CreateTokenCommandOutput extends CreateTokenResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates and returns an access token for the authorized client. The access token issued
18
23
  * will be used to fetch short-term credentials for the assigned roles in the AWS
19
24
  * account.</p>
@@ -27,6 +32,8 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param CreateTokenCommandInput - {@link CreateTokenCommandInput}
36
+ * @returns {@link CreateTokenCommandOutput}
30
37
  * @see {@link CreateTokenCommandInput} for command's `input` shape.
31
38
  * @see {@link CreateTokenCommandOutput} for command's `response` shape.
32
39
  * @see {@link SSOOIDCClientResolvedConfig | config} for SSOOIDCClient's `config` shape.
@@ -77,11 +84,20 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
77
84
  export declare class CreateTokenCommand extends $Command<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig> {
78
85
  readonly input: CreateTokenCommandInput;
79
86
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
+ /**
88
+ * @public
89
+ */
80
90
  constructor(input: CreateTokenCommandInput);
81
91
  /**
82
92
  * @internal
83
93
  */
84
94
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOOIDCClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTokenCommandInput, CreateTokenCommandOutput>;
95
+ /**
96
+ * @internal
97
+ */
85
98
  private serialize;
99
+ /**
100
+ * @internal
101
+ */
86
102
  private deserialize;
87
103
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { RegisterClientRequest, RegisterClientResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RegisterClientCommand}.
8
10
  */
9
11
  export interface RegisterClientCommandInput extends RegisterClientRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RegisterClientCommand}.
13
17
  */
14
18
  export interface RegisterClientCommandOutput extends RegisterClientResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Registers a client with IAM Identity Center. This allows clients to initiate device authorization.
18
23
  * The output should be persisted for reuse through many authentication requests.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface RegisterClientCommandOutput extends RegisterClientResponse, __M
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param RegisterClientCommandInput - {@link RegisterClientCommandInput}
35
+ * @returns {@link RegisterClientCommandOutput}
29
36
  * @see {@link RegisterClientCommandInput} for command's `input` shape.
30
37
  * @see {@link RegisterClientCommandOutput} for command's `response` shape.
31
38
  * @see {@link SSOOIDCClientResolvedConfig | config} for SSOOIDCClient's `config` shape.
@@ -50,11 +57,20 @@ export interface RegisterClientCommandOutput extends RegisterClientResponse, __M
50
57
  export declare class RegisterClientCommand extends $Command<RegisterClientCommandInput, RegisterClientCommandOutput, SSOOIDCClientResolvedConfig> {
51
58
  readonly input: RegisterClientCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: RegisterClientCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOOIDCClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterClientCommandInput, RegisterClientCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { StartDeviceAuthorizationRequest, StartDeviceAuthorizationResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link StartDeviceAuthorizationCommand}.
8
10
  */
9
11
  export interface StartDeviceAuthorizationCommandInput extends StartDeviceAuthorizationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link StartDeviceAuthorizationCommand}.
13
17
  */
14
18
  export interface StartDeviceAuthorizationCommandOutput extends StartDeviceAuthorizationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Initiates device authorization by requesting a pair of verification codes from the
18
23
  * authorization service.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface StartDeviceAuthorizationCommandOutput extends StartDeviceAuthor
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param StartDeviceAuthorizationCommandInput - {@link StartDeviceAuthorizationCommandInput}
35
+ * @returns {@link StartDeviceAuthorizationCommandOutput}
29
36
  * @see {@link StartDeviceAuthorizationCommandInput} for command's `input` shape.
30
37
  * @see {@link StartDeviceAuthorizationCommandOutput} for command's `response` shape.
31
38
  * @see {@link SSOOIDCClientResolvedConfig | config} for SSOOIDCClient's `config` shape.
@@ -56,11 +63,20 @@ export interface StartDeviceAuthorizationCommandOutput extends StartDeviceAuthor
56
63
  export declare class StartDeviceAuthorizationCommand extends $Command<StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput, SSOOIDCClientResolvedConfig> {
57
64
  readonly input: StartDeviceAuthorizationCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: StartDeviceAuthorizationCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSOOIDCClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from SSOOIDC service.
4
6
  */
5
7
  export declare class SSOOIDCServiceException extends __ServiceException {
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>You do not have sufficient access to perform this action.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -14,6 +15,7 @@ export declare class AccessDeniedException extends __BaseException {
14
15
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
16
  }
16
17
  /**
18
+ * @public
17
19
  * <p>Indicates that a request to authorize a client with an access user session token is
18
20
  * pending.</p>
19
21
  */
@@ -27,6 +29,9 @@ export declare class AuthorizationPendingException extends __BaseException {
27
29
  */
28
30
  constructor(opts: __ExceptionOptionType<AuthorizationPendingException, __BaseException>);
29
31
  }
32
+ /**
33
+ * @public
34
+ */
30
35
  export interface CreateTokenRequest {
31
36
  /**
32
37
  * <p>The unique identifier string for each client. This value should come from the persisted
@@ -81,6 +86,9 @@ export interface CreateTokenRequest {
81
86
  */
82
87
  redirectUri?: string;
83
88
  }
89
+ /**
90
+ * @public
91
+ */
84
92
  export interface CreateTokenResponse {
85
93
  /**
86
94
  * <p>An opaque token to access IAM Identity Center resources assigned to a user.</p>
@@ -114,6 +122,7 @@ export interface CreateTokenResponse {
114
122
  idToken?: string;
115
123
  }
116
124
  /**
125
+ * @public
117
126
  * <p>Indicates that the token issued by the service is expired and is no longer valid.</p>
118
127
  */
119
128
  export declare class ExpiredTokenException extends __BaseException {
@@ -127,6 +136,7 @@ export declare class ExpiredTokenException extends __BaseException {
127
136
  constructor(opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>);
128
137
  }
129
138
  /**
139
+ * @public
130
140
  * <p>Indicates that an error from the service occurred while trying to process a
131
141
  * request.</p>
132
142
  */
@@ -141,6 +151,7 @@ export declare class InternalServerException extends __BaseException {
141
151
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
142
152
  }
143
153
  /**
154
+ * @public
144
155
  * <p>Indicates that the <code>clientId</code> or <code>clientSecret</code> in the request is
145
156
  * invalid. For example, this can occur when a client sends an incorrect <code>clientId</code> or
146
157
  * an expired <code>clientSecret</code>.</p>
@@ -156,6 +167,7 @@ export declare class InvalidClientException extends __BaseException {
156
167
  constructor(opts: __ExceptionOptionType<InvalidClientException, __BaseException>);
157
168
  }
158
169
  /**
170
+ * @public
159
171
  * <p>Indicates that a request contains an invalid grant. This can occur if a client makes a
160
172
  * <a>CreateToken</a> request with an invalid grant type.</p>
161
173
  */
@@ -170,6 +182,7 @@ export declare class InvalidGrantException extends __BaseException {
170
182
  constructor(opts: __ExceptionOptionType<InvalidGrantException, __BaseException>);
171
183
  }
172
184
  /**
185
+ * @public
173
186
  * <p>Indicates that something is wrong with the input to the request. For example, a required
174
187
  * parameter might be missing or out of range.</p>
175
188
  */
@@ -184,6 +197,7 @@ export declare class InvalidRequestException extends __BaseException {
184
197
  constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
185
198
  }
186
199
  /**
200
+ * @public
187
201
  * <p>Indicates that the scope provided in the request is invalid.</p>
188
202
  */
189
203
  export declare class InvalidScopeException extends __BaseException {
@@ -197,6 +211,7 @@ export declare class InvalidScopeException extends __BaseException {
197
211
  constructor(opts: __ExceptionOptionType<InvalidScopeException, __BaseException>);
198
212
  }
199
213
  /**
214
+ * @public
200
215
  * <p>Indicates that the client is making the request too frequently and is more than the
201
216
  * service can handle. </p>
202
217
  */
@@ -211,6 +226,7 @@ export declare class SlowDownException extends __BaseException {
211
226
  constructor(opts: __ExceptionOptionType<SlowDownException, __BaseException>);
212
227
  }
213
228
  /**
229
+ * @public
214
230
  * <p>Indicates that the client is not currently authorized to make the request. This can happen
215
231
  * when a <code>clientId</code> is not issued for a public client.</p>
216
232
  */
@@ -225,6 +241,7 @@ export declare class UnauthorizedClientException extends __BaseException {
225
241
  constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
226
242
  }
227
243
  /**
244
+ * @public
228
245
  * <p>Indicates that the grant type in the request is not supported by the service.</p>
229
246
  */
230
247
  export declare class UnsupportedGrantTypeException extends __BaseException {
@@ -238,6 +255,7 @@ export declare class UnsupportedGrantTypeException extends __BaseException {
238
255
  constructor(opts: __ExceptionOptionType<UnsupportedGrantTypeException, __BaseException>);
239
256
  }
240
257
  /**
258
+ * @public
241
259
  * <p>Indicates that the client information sent in the request during registration is
242
260
  * invalid.</p>
243
261
  */
@@ -251,6 +269,9 @@ export declare class InvalidClientMetadataException extends __BaseException {
251
269
  */
252
270
  constructor(opts: __ExceptionOptionType<InvalidClientMetadataException, __BaseException>);
253
271
  }
272
+ /**
273
+ * @public
274
+ */
254
275
  export interface RegisterClientRequest {
255
276
  /**
256
277
  * <p>The friendly name of the client.</p>
@@ -267,6 +288,9 @@ export interface RegisterClientRequest {
267
288
  */
268
289
  scopes?: string[];
269
290
  }
291
+ /**
292
+ * @public
293
+ */
270
294
  export interface RegisterClientResponse {
271
295
  /**
272
296
  * <p>The unique identifier string for each client. This client uses this identifier to get
@@ -297,6 +321,9 @@ export interface RegisterClientResponse {
297
321
  */
298
322
  tokenEndpoint?: string;
299
323
  }
324
+ /**
325
+ * @public
326
+ */
300
327
  export interface StartDeviceAuthorizationRequest {
301
328
  /**
302
329
  * <p>The unique identifier string for the client that is registered with IAM Identity Center. This value
@@ -315,6 +342,9 @@ export interface StartDeviceAuthorizationRequest {
315
342
  */
316
343
  startUrl: string | undefined;
317
344
  }
345
+ /**
346
+ * @public
347
+ */
318
348
  export interface StartDeviceAuthorizationResponse {
319
349
  /**
320
350
  * <p>The short-lived code that is used by the device when polling for a session token.</p>
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.295.0",
4
+ "version": "3.297.0",
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",
@@ -20,34 +20,34 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/config-resolver": "3.295.0",
24
- "@aws-sdk/fetch-http-handler": "3.295.0",
25
- "@aws-sdk/hash-node": "3.295.0",
26
- "@aws-sdk/invalid-dependency": "3.295.0",
27
- "@aws-sdk/middleware-content-length": "3.295.0",
28
- "@aws-sdk/middleware-endpoint": "3.295.0",
29
- "@aws-sdk/middleware-host-header": "3.295.0",
30
- "@aws-sdk/middleware-logger": "3.295.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.295.0",
32
- "@aws-sdk/middleware-retry": "3.295.0",
33
- "@aws-sdk/middleware-serde": "3.295.0",
34
- "@aws-sdk/middleware-stack": "3.295.0",
35
- "@aws-sdk/middleware-user-agent": "3.295.0",
36
- "@aws-sdk/node-config-provider": "3.295.0",
37
- "@aws-sdk/node-http-handler": "3.295.0",
38
- "@aws-sdk/protocol-http": "3.295.0",
39
- "@aws-sdk/smithy-client": "3.295.0",
40
- "@aws-sdk/types": "3.295.0",
41
- "@aws-sdk/url-parser": "3.295.0",
23
+ "@aws-sdk/config-resolver": "3.296.0",
24
+ "@aws-sdk/fetch-http-handler": "3.296.0",
25
+ "@aws-sdk/hash-node": "3.296.0",
26
+ "@aws-sdk/invalid-dependency": "3.296.0",
27
+ "@aws-sdk/middleware-content-length": "3.296.0",
28
+ "@aws-sdk/middleware-endpoint": "3.296.0",
29
+ "@aws-sdk/middleware-host-header": "3.296.0",
30
+ "@aws-sdk/middleware-logger": "3.296.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.296.0",
32
+ "@aws-sdk/middleware-retry": "3.296.0",
33
+ "@aws-sdk/middleware-serde": "3.296.0",
34
+ "@aws-sdk/middleware-stack": "3.296.0",
35
+ "@aws-sdk/middleware-user-agent": "3.296.0",
36
+ "@aws-sdk/node-config-provider": "3.296.0",
37
+ "@aws-sdk/node-http-handler": "3.296.0",
38
+ "@aws-sdk/protocol-http": "3.296.0",
39
+ "@aws-sdk/smithy-client": "3.296.0",
40
+ "@aws-sdk/types": "3.296.0",
41
+ "@aws-sdk/url-parser": "3.296.0",
42
42
  "@aws-sdk/util-base64": "3.295.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.295.0",
44
44
  "@aws-sdk/util-body-length-node": "3.295.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.295.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.295.0",
47
- "@aws-sdk/util-endpoints": "3.295.0",
48
- "@aws-sdk/util-retry": "3.295.0",
49
- "@aws-sdk/util-user-agent-browser": "3.295.0",
50
- "@aws-sdk/util-user-agent-node": "3.295.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.296.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.296.0",
47
+ "@aws-sdk/util-endpoints": "3.296.0",
48
+ "@aws-sdk/util-retry": "3.296.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.296.0",
50
+ "@aws-sdk/util-user-agent-node": "3.296.0",
51
51
  "@aws-sdk/util-utf8": "3.295.0",
52
52
  "tslib": "^2.5.0"
53
53
  },