@aws-sdk/client-sso-oidc 3.142.0 → 3.158.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,33 @@
|
|
|
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.158.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.157.0...v3.158.0) (2022-08-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-sso-oidc:** Updated required request parameters on IAM Identity Center's OIDC CreateToken action. ([ab82210](https://github.com/aws/aws-sdk-js-v3/commit/ab82210186cfaaddb6130c28153d3ac3f0fb8389))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.154.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.153.0...v3.154.0) (2022-08-19)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-sso-oidc
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.145.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.144.0...v3.145.0) (2022-08-08)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-sso-oidc
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.142.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.141.0...v3.142.0) (2022-08-02)
|
|
7
34
|
|
|
8
35
|
|
|
@@ -44,7 +44,7 @@ export interface CreateTokenRequest {
|
|
|
44
44
|
* used to identify this authentication attempt. This should come from an in-memory reference to
|
|
45
45
|
* the result of the <a>StartDeviceAuthorization</a> API.</p>
|
|
46
46
|
*/
|
|
47
|
-
deviceCode
|
|
47
|
+
deviceCode?: string;
|
|
48
48
|
/**
|
|
49
49
|
* <p>The authorization code received from the authorization service. This parameter is required to perform an authorization grant request to get access to a token.</p>
|
|
50
50
|
*/
|
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.
|
|
4
|
+
"version": "3.158.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",
|
|
@@ -38,7 +38,7 @@
|
|
|
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
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
41
|
+
"@aws-sdk/util-body-length-browser": "3.154.0",
|
|
42
42
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
44
44
|
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
@@ -58,6 +58,11 @@
|
|
|
58
58
|
"typedoc": "0.19.2",
|
|
59
59
|
"typescript": "~4.6.2"
|
|
60
60
|
},
|
|
61
|
+
"overrides": {
|
|
62
|
+
"typedoc": {
|
|
63
|
+
"typescript": "~4.6.2"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
61
66
|
"engines": {
|
|
62
67
|
"node": ">=12.0.0"
|
|
63
68
|
},
|