@aws-sdk/client-sso-oidc 3.300.0 → 3.301.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.
@@ -28,14 +28,14 @@ export interface CreateTokenCommandOutput extends CreateTokenResponse, __Metadat
28
28
  * import { SSOOIDCClient, CreateTokenCommand } from "@aws-sdk/client-sso-oidc"; // ES Modules import
29
29
  * // const { SSOOIDCClient, CreateTokenCommand } = require("@aws-sdk/client-sso-oidc"); // CommonJS import
30
30
  * const client = new SSOOIDCClient(config);
31
- * const input = {
31
+ * const input = { // CreateTokenRequest
32
32
  * clientId: "STRING_VALUE", // required
33
33
  * clientSecret: "STRING_VALUE", // required
34
34
  * grantType: "STRING_VALUE", // required
35
35
  * deviceCode: "STRING_VALUE",
36
36
  * code: "STRING_VALUE",
37
37
  * refreshToken: "STRING_VALUE",
38
- * scope: [
38
+ * scope: [ // Scopes
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * redirectUri: "STRING_VALUE",
@@ -27,10 +27,10 @@ export interface RegisterClientCommandOutput extends RegisterClientResponse, __M
27
27
  * import { SSOOIDCClient, RegisterClientCommand } from "@aws-sdk/client-sso-oidc"; // ES Modules import
28
28
  * // const { SSOOIDCClient, RegisterClientCommand } = require("@aws-sdk/client-sso-oidc"); // CommonJS import
29
29
  * const client = new SSOOIDCClient(config);
30
- * const input = {
30
+ * const input = { // RegisterClientRequest
31
31
  * clientName: "STRING_VALUE", // required
32
32
  * clientType: "STRING_VALUE", // required
33
- * scopes: [
33
+ * scopes: [ // Scopes
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * };
@@ -27,7 +27,7 @@ export interface StartDeviceAuthorizationCommandOutput extends StartDeviceAuthor
27
27
  * import { SSOOIDCClient, StartDeviceAuthorizationCommand } from "@aws-sdk/client-sso-oidc"; // ES Modules import
28
28
  * // const { SSOOIDCClient, StartDeviceAuthorizationCommand } = require("@aws-sdk/client-sso-oidc"); // CommonJS import
29
29
  * const client = new SSOOIDCClient(config);
30
- * const input = {
30
+ * const input = { // StartDeviceAuthorizationRequest
31
31
  * clientId: "STRING_VALUE", // required
32
32
  * clientSecret: "STRING_VALUE", // required
33
33
  * startUrl: "STRING_VALUE", // required
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.300.0",
4
+ "version": "3.301.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",