@aws-sdk/client-sso-oidc 3.130.0 → 3.141.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/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.141.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.140.0...v3.141.0) (2022-08-01)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** update client endpoints as of 2022-08-01 ([aaf49f2](https://github.com/aws/aws-sdk-js-v3/commit/aaf49f21b371412e6ea7e00890b71a7b31991b66))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
18
+
19
+
20
+ ### Features
21
+
22
+ * **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
23
+
24
+
25
+
26
+
27
+
28
+ # [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
29
+
30
+ **Note:** Version bump only for package @aws-sdk/client-sso-oidc
31
+
32
+
33
+
34
+
35
+
6
36
  # [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
7
37
 
8
38
 
package/README.md CHANGED
@@ -182,7 +182,7 @@ try {
182
182
  const data = await client.send(command);
183
183
  // process data.
184
184
  } catch (error) {
185
- const { requestId, cfId, extendedRequestId } = error.$metadata;
185
+ const { requestId, cfId, extendedRequestId } = error.$$metadata;
186
186
  console.log({ requestId, cfId, extendedRequestId });
187
187
  /**
188
188
  * The keys within exceptions are also parsed.
@@ -20,8 +20,8 @@ class CreateTokenCommand extends smithy_client_1.Command {
20
20
  logger,
21
21
  clientName,
22
22
  commandName,
23
- inputFilterSensitiveLog: models_0_1.CreateTokenRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: models_0_1.CreateTokenResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: models_0_1.CreateTokenRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.CreateTokenResponseFilterSensitiveLog,
25
25
  };
26
26
  const { requestHandler } = configuration;
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -20,8 +20,8 @@ class RegisterClientCommand extends smithy_client_1.Command {
20
20
  logger,
21
21
  clientName,
22
22
  commandName,
23
- inputFilterSensitiveLog: models_0_1.RegisterClientRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: models_0_1.RegisterClientResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: models_0_1.RegisterClientRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.RegisterClientResponseFilterSensitiveLog,
25
25
  };
26
26
  const { requestHandler } = configuration;
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -20,8 +20,8 @@ class StartDeviceAuthorizationCommand extends smithy_client_1.Command {
20
20
  logger,
21
21
  clientName,
22
22
  commandName,
23
- inputFilterSensitiveLog: models_0_1.StartDeviceAuthorizationRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: models_0_1.StartDeviceAuthorizationResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: models_0_1.StartDeviceAuthorizationRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: models_0_1.StartDeviceAuthorizationResponseFilterSensitiveLog,
25
25
  };
26
26
  const { requestHandler } = configuration;
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StartDeviceAuthorizationResponse = exports.StartDeviceAuthorizationRequest = exports.RegisterClientResponse = exports.RegisterClientRequest = exports.InvalidClientMetadataException = exports.UnsupportedGrantTypeException = exports.UnauthorizedClientException = exports.SlowDownException = exports.InvalidScopeException = exports.InvalidRequestException = exports.InvalidGrantException = exports.InvalidClientException = exports.InternalServerException = exports.ExpiredTokenException = exports.CreateTokenResponse = exports.CreateTokenRequest = exports.AuthorizationPendingException = exports.AccessDeniedException = void 0;
3
+ exports.StartDeviceAuthorizationResponseFilterSensitiveLog = exports.StartDeviceAuthorizationRequestFilterSensitiveLog = exports.RegisterClientResponseFilterSensitiveLog = exports.RegisterClientRequestFilterSensitiveLog = exports.CreateTokenResponseFilterSensitiveLog = exports.CreateTokenRequestFilterSensitiveLog = exports.InvalidClientMetadataException = exports.UnsupportedGrantTypeException = exports.UnauthorizedClientException = exports.SlowDownException = exports.InvalidScopeException = exports.InvalidRequestException = exports.InvalidGrantException = exports.InvalidClientException = exports.InternalServerException = exports.ExpiredTokenException = exports.AuthorizationPendingException = exports.AccessDeniedException = void 0;
4
4
  const SSOOIDCServiceException_1 = require("./SSOOIDCServiceException");
5
5
  class AccessDeniedException extends SSOOIDCServiceException_1.SSOOIDCServiceException {
6
6
  constructor(opts) {
@@ -32,18 +32,6 @@ class AuthorizationPendingException extends SSOOIDCServiceException_1.SSOOIDCSer
32
32
  }
33
33
  }
34
34
  exports.AuthorizationPendingException = AuthorizationPendingException;
35
- var CreateTokenRequest;
36
- (function (CreateTokenRequest) {
37
- CreateTokenRequest.filterSensitiveLog = (obj) => ({
38
- ...obj,
39
- });
40
- })(CreateTokenRequest = exports.CreateTokenRequest || (exports.CreateTokenRequest = {}));
41
- var CreateTokenResponse;
42
- (function (CreateTokenResponse) {
43
- CreateTokenResponse.filterSensitiveLog = (obj) => ({
44
- ...obj,
45
- });
46
- })(CreateTokenResponse = exports.CreateTokenResponse || (exports.CreateTokenResponse = {}));
47
35
  class ExpiredTokenException extends SSOOIDCServiceException_1.SSOOIDCServiceException {
48
36
  constructor(opts) {
49
37
  super({
@@ -194,27 +182,27 @@ class InvalidClientMetadataException extends SSOOIDCServiceException_1.SSOOIDCSe
194
182
  }
195
183
  }
196
184
  exports.InvalidClientMetadataException = InvalidClientMetadataException;
197
- var RegisterClientRequest;
198
- (function (RegisterClientRequest) {
199
- RegisterClientRequest.filterSensitiveLog = (obj) => ({
200
- ...obj,
201
- });
202
- })(RegisterClientRequest = exports.RegisterClientRequest || (exports.RegisterClientRequest = {}));
203
- var RegisterClientResponse;
204
- (function (RegisterClientResponse) {
205
- RegisterClientResponse.filterSensitiveLog = (obj) => ({
206
- ...obj,
207
- });
208
- })(RegisterClientResponse = exports.RegisterClientResponse || (exports.RegisterClientResponse = {}));
209
- var StartDeviceAuthorizationRequest;
210
- (function (StartDeviceAuthorizationRequest) {
211
- StartDeviceAuthorizationRequest.filterSensitiveLog = (obj) => ({
212
- ...obj,
213
- });
214
- })(StartDeviceAuthorizationRequest = exports.StartDeviceAuthorizationRequest || (exports.StartDeviceAuthorizationRequest = {}));
215
- var StartDeviceAuthorizationResponse;
216
- (function (StartDeviceAuthorizationResponse) {
217
- StartDeviceAuthorizationResponse.filterSensitiveLog = (obj) => ({
218
- ...obj,
219
- });
220
- })(StartDeviceAuthorizationResponse = exports.StartDeviceAuthorizationResponse || (exports.StartDeviceAuthorizationResponse = {}));
185
+ const CreateTokenRequestFilterSensitiveLog = (obj) => ({
186
+ ...obj,
187
+ });
188
+ exports.CreateTokenRequestFilterSensitiveLog = CreateTokenRequestFilterSensitiveLog;
189
+ const CreateTokenResponseFilterSensitiveLog = (obj) => ({
190
+ ...obj,
191
+ });
192
+ exports.CreateTokenResponseFilterSensitiveLog = CreateTokenResponseFilterSensitiveLog;
193
+ const RegisterClientRequestFilterSensitiveLog = (obj) => ({
194
+ ...obj,
195
+ });
196
+ exports.RegisterClientRequestFilterSensitiveLog = RegisterClientRequestFilterSensitiveLog;
197
+ const RegisterClientResponseFilterSensitiveLog = (obj) => ({
198
+ ...obj,
199
+ });
200
+ exports.RegisterClientResponseFilterSensitiveLog = RegisterClientResponseFilterSensitiveLog;
201
+ const StartDeviceAuthorizationRequestFilterSensitiveLog = (obj) => ({
202
+ ...obj,
203
+ });
204
+ exports.StartDeviceAuthorizationRequestFilterSensitiveLog = StartDeviceAuthorizationRequestFilterSensitiveLog;
205
+ const StartDeviceAuthorizationResponseFilterSensitiveLog = (obj) => ({
206
+ ...obj,
207
+ });
208
+ exports.StartDeviceAuthorizationResponseFilterSensitiveLog = StartDeviceAuthorizationResponseFilterSensitiveLog;
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
4
+ import { CreateTokenRequestFilterSensitiveLog, CreateTokenResponseFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_restJson1CreateTokenCommand, serializeAws_restJson1CreateTokenCommand, } from "../protocols/Aws_restJson1";
6
6
  var CreateTokenCommand = (function (_super) {
7
7
  __extends(CreateTokenCommand, _super);
@@ -20,8 +20,8 @@ var CreateTokenCommand = (function (_super) {
20
20
  logger: logger,
21
21
  clientName: clientName,
22
22
  commandName: commandName,
23
- inputFilterSensitiveLog: CreateTokenRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: CreateTokenResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: CreateTokenRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: CreateTokenResponseFilterSensitiveLog,
25
25
  };
26
26
  var requestHandler = configuration.requestHandler;
27
27
  return stack.resolve(function (request) {
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { RegisterClientRequest, RegisterClientResponse } from "../models/models_0";
4
+ import { RegisterClientRequestFilterSensitiveLog, RegisterClientResponseFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_restJson1RegisterClientCommand, serializeAws_restJson1RegisterClientCommand, } from "../protocols/Aws_restJson1";
6
6
  var RegisterClientCommand = (function (_super) {
7
7
  __extends(RegisterClientCommand, _super);
@@ -20,8 +20,8 @@ var RegisterClientCommand = (function (_super) {
20
20
  logger: logger,
21
21
  clientName: clientName,
22
22
  commandName: commandName,
23
- inputFilterSensitiveLog: RegisterClientRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: RegisterClientResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: RegisterClientRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: RegisterClientResponseFilterSensitiveLog,
25
25
  };
26
26
  var requestHandler = configuration.requestHandler;
27
27
  return stack.resolve(function (request) {
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { StartDeviceAuthorizationRequest, StartDeviceAuthorizationResponse } from "../models/models_0";
4
+ import { StartDeviceAuthorizationRequestFilterSensitiveLog, StartDeviceAuthorizationResponseFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_restJson1StartDeviceAuthorizationCommand, serializeAws_restJson1StartDeviceAuthorizationCommand, } from "../protocols/Aws_restJson1";
6
6
  var StartDeviceAuthorizationCommand = (function (_super) {
7
7
  __extends(StartDeviceAuthorizationCommand, _super);
@@ -20,8 +20,8 @@ var StartDeviceAuthorizationCommand = (function (_super) {
20
20
  logger: logger,
21
21
  clientName: clientName,
22
22
  commandName: commandName,
23
- inputFilterSensitiveLog: StartDeviceAuthorizationRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: StartDeviceAuthorizationResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: StartDeviceAuthorizationRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: StartDeviceAuthorizationResponseFilterSensitiveLog,
25
25
  };
26
26
  var requestHandler = configuration.requestHandler;
27
27
  return stack.resolve(function (request) {
@@ -28,14 +28,6 @@ var AuthorizationPendingException = (function (_super) {
28
28
  return AuthorizationPendingException;
29
29
  }(__BaseException));
30
30
  export { AuthorizationPendingException };
31
- export var CreateTokenRequest;
32
- (function (CreateTokenRequest) {
33
- CreateTokenRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
34
- })(CreateTokenRequest || (CreateTokenRequest = {}));
35
- export var CreateTokenResponse;
36
- (function (CreateTokenResponse) {
37
- CreateTokenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
38
- })(CreateTokenResponse || (CreateTokenResponse = {}));
39
31
  var ExpiredTokenException = (function (_super) {
40
32
  __extends(ExpiredTokenException, _super);
41
33
  function ExpiredTokenException(opts) {
@@ -176,19 +168,9 @@ var InvalidClientMetadataException = (function (_super) {
176
168
  return InvalidClientMetadataException;
177
169
  }(__BaseException));
178
170
  export { InvalidClientMetadataException };
179
- export var RegisterClientRequest;
180
- (function (RegisterClientRequest) {
181
- RegisterClientRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
- })(RegisterClientRequest || (RegisterClientRequest = {}));
183
- export var RegisterClientResponse;
184
- (function (RegisterClientResponse) {
185
- RegisterClientResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
- })(RegisterClientResponse || (RegisterClientResponse = {}));
187
- export var StartDeviceAuthorizationRequest;
188
- (function (StartDeviceAuthorizationRequest) {
189
- StartDeviceAuthorizationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
- })(StartDeviceAuthorizationRequest || (StartDeviceAuthorizationRequest = {}));
191
- export var StartDeviceAuthorizationResponse;
192
- (function (StartDeviceAuthorizationResponse) {
193
- StartDeviceAuthorizationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
194
- })(StartDeviceAuthorizationResponse || (StartDeviceAuthorizationResponse = {}));
171
+ export var CreateTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
172
+ export var CreateTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
173
+ export var RegisterClientRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
+ export var RegisterClientResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
+ export var StartDeviceAuthorizationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
+ export var StartDeviceAuthorizationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -64,12 +64,6 @@ export interface CreateTokenRequest {
64
64
  */
65
65
  redirectUri?: string;
66
66
  }
67
- export declare namespace CreateTokenRequest {
68
- /**
69
- * @internal
70
- */
71
- const filterSensitiveLog: (obj: CreateTokenRequest) => any;
72
- }
73
67
  export interface CreateTokenResponse {
74
68
  /**
75
69
  * <p>An opaque token to access AWS SSO resources assigned to a user.</p>
@@ -94,12 +88,6 @@ export interface CreateTokenResponse {
94
88
  */
95
89
  idToken?: string;
96
90
  }
97
- export declare namespace CreateTokenResponse {
98
- /**
99
- * @internal
100
- */
101
- const filterSensitiveLog: (obj: CreateTokenResponse) => any;
102
- }
103
91
  /**
104
92
  * <p>Indicates that the token issued by the service is expired and is no longer valid.</p>
105
93
  */
@@ -249,12 +237,6 @@ export interface RegisterClientRequest {
249
237
  */
250
238
  scopes?: string[];
251
239
  }
252
- export declare namespace RegisterClientRequest {
253
- /**
254
- * @internal
255
- */
256
- const filterSensitiveLog: (obj: RegisterClientRequest) => any;
257
- }
258
240
  export interface RegisterClientResponse {
259
241
  /**
260
242
  * <p>The unique identifier string for each client. This client uses this identifier to get
@@ -283,12 +265,6 @@ export interface RegisterClientResponse {
283
265
  */
284
266
  tokenEndpoint?: string;
285
267
  }
286
- export declare namespace RegisterClientResponse {
287
- /**
288
- * @internal
289
- */
290
- const filterSensitiveLog: (obj: RegisterClientResponse) => any;
291
- }
292
268
  export interface StartDeviceAuthorizationRequest {
293
269
  /**
294
270
  * <p>The unique identifier string for the client that is registered with AWS SSO. This value
@@ -307,12 +283,6 @@ export interface StartDeviceAuthorizationRequest {
307
283
  */
308
284
  startUrl: string | undefined;
309
285
  }
310
- export declare namespace StartDeviceAuthorizationRequest {
311
- /**
312
- * @internal
313
- */
314
- const filterSensitiveLog: (obj: StartDeviceAuthorizationRequest) => any;
315
- }
316
286
  export interface StartDeviceAuthorizationResponse {
317
287
  /**
318
288
  * <p>The short-lived code that is used by the device when polling for a session token.</p>
@@ -341,9 +311,27 @@ export interface StartDeviceAuthorizationResponse {
341
311
  */
342
312
  interval?: number;
343
313
  }
344
- export declare namespace StartDeviceAuthorizationResponse {
345
- /**
346
- * @internal
347
- */
348
- const filterSensitiveLog: (obj: StartDeviceAuthorizationResponse) => any;
349
- }
314
+ /**
315
+ * @internal
316
+ */
317
+ export declare const CreateTokenRequestFilterSensitiveLog: (obj: CreateTokenRequest) => any;
318
+ /**
319
+ * @internal
320
+ */
321
+ export declare const CreateTokenResponseFilterSensitiveLog: (obj: CreateTokenResponse) => any;
322
+ /**
323
+ * @internal
324
+ */
325
+ export declare const RegisterClientRequestFilterSensitiveLog: (obj: RegisterClientRequest) => any;
326
+ /**
327
+ * @internal
328
+ */
329
+ export declare const RegisterClientResponseFilterSensitiveLog: (obj: RegisterClientResponse) => any;
330
+ /**
331
+ * @internal
332
+ */
333
+ export declare const StartDeviceAuthorizationRequestFilterSensitiveLog: (obj: StartDeviceAuthorizationRequest) => any;
334
+ /**
335
+ * @internal
336
+ */
337
+ export declare const StartDeviceAuthorizationResponseFilterSensitiveLog: (obj: StartDeviceAuthorizationResponse) => any;
@@ -36,10 +36,6 @@ export interface CreateTokenRequest {
36
36
 
37
37
  redirectUri?: string;
38
38
  }
39
- export declare namespace CreateTokenRequest {
40
-
41
- const filterSensitiveLog: (obj: CreateTokenRequest) => any;
42
- }
43
39
  export interface CreateTokenResponse {
44
40
 
45
41
  accessToken?: string;
@@ -52,10 +48,6 @@ export interface CreateTokenResponse {
52
48
 
53
49
  idToken?: string;
54
50
  }
55
- export declare namespace CreateTokenResponse {
56
-
57
- const filterSensitiveLog: (obj: CreateTokenResponse) => any;
58
- }
59
51
 
60
52
  export declare class ExpiredTokenException extends __BaseException {
61
53
  readonly name: "ExpiredTokenException";
@@ -154,10 +146,6 @@ export interface RegisterClientRequest {
154
146
 
155
147
  scopes?: string[];
156
148
  }
157
- export declare namespace RegisterClientRequest {
158
-
159
- const filterSensitiveLog: (obj: RegisterClientRequest) => any;
160
- }
161
149
  export interface RegisterClientResponse {
162
150
 
163
151
  clientId?: string;
@@ -172,10 +160,6 @@ export interface RegisterClientResponse {
172
160
 
173
161
  tokenEndpoint?: string;
174
162
  }
175
- export declare namespace RegisterClientResponse {
176
-
177
- const filterSensitiveLog: (obj: RegisterClientResponse) => any;
178
- }
179
163
  export interface StartDeviceAuthorizationRequest {
180
164
 
181
165
  clientId: string | undefined;
@@ -184,10 +168,6 @@ export interface StartDeviceAuthorizationRequest {
184
168
 
185
169
  startUrl: string | undefined;
186
170
  }
187
- export declare namespace StartDeviceAuthorizationRequest {
188
-
189
- const filterSensitiveLog: (obj: StartDeviceAuthorizationRequest) => any;
190
- }
191
171
  export interface StartDeviceAuthorizationResponse {
192
172
 
193
173
  deviceCode?: string;
@@ -202,7 +182,15 @@ export interface StartDeviceAuthorizationResponse {
202
182
 
203
183
  interval?: number;
204
184
  }
205
- export declare namespace StartDeviceAuthorizationResponse {
206
-
207
- const filterSensitiveLog: (obj: StartDeviceAuthorizationResponse) => any;
208
- }
185
+
186
+ export declare const CreateTokenRequestFilterSensitiveLog: (obj: CreateTokenRequest) => any;
187
+
188
+ export declare const CreateTokenResponseFilterSensitiveLog: (obj: CreateTokenResponse) => any;
189
+
190
+ export declare const RegisterClientRequestFilterSensitiveLog: (obj: RegisterClientRequest) => any;
191
+
192
+ export declare const RegisterClientResponseFilterSensitiveLog: (obj: RegisterClientResponse) => any;
193
+
194
+ export declare const StartDeviceAuthorizationRequestFilterSensitiveLog: (obj: StartDeviceAuthorizationRequest) => any;
195
+
196
+ export declare const StartDeviceAuthorizationResponseFilterSensitiveLog: (obj: StartDeviceAuthorizationResponse) => any;
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.130.0",
4
+ "version": "3.141.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",
@@ -19,7 +19,7 @@
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
21
  "@aws-sdk/config-resolver": "3.130.0",
22
- "@aws-sdk/fetch-http-handler": "3.127.0",
22
+ "@aws-sdk/fetch-http-handler": "3.131.0",
23
23
  "@aws-sdk/hash-node": "3.127.0",
24
24
  "@aws-sdk/invalid-dependency": "3.127.0",
25
25
  "@aws-sdk/middleware-content-length": "3.127.0",
@@ -33,15 +33,15 @@
33
33
  "@aws-sdk/node-config-provider": "3.127.0",
34
34
  "@aws-sdk/node-http-handler": "3.127.0",
35
35
  "@aws-sdk/protocol-http": "3.127.0",
36
- "@aws-sdk/smithy-client": "3.127.0",
36
+ "@aws-sdk/smithy-client": "3.137.0",
37
37
  "@aws-sdk/types": "3.127.0",
38
38
  "@aws-sdk/url-parser": "3.127.0",
39
39
  "@aws-sdk/util-base64-browser": "3.109.0",
40
40
  "@aws-sdk/util-base64-node": "3.55.0",
41
41
  "@aws-sdk/util-body-length-browser": "3.55.0",
42
42
  "@aws-sdk/util-body-length-node": "3.55.0",
43
- "@aws-sdk/util-defaults-mode-browser": "3.127.0",
44
- "@aws-sdk/util-defaults-mode-node": "3.130.0",
43
+ "@aws-sdk/util-defaults-mode-browser": "3.137.0",
44
+ "@aws-sdk/util-defaults-mode-node": "3.137.0",
45
45
  "@aws-sdk/util-user-agent-browser": "3.127.0",
46
46
  "@aws-sdk/util-user-agent-node": "3.127.0",
47
47
  "@aws-sdk/util-utf8-browser": "3.109.0",