@unito/integration-cli 0.58.9 → 0.59.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.
|
@@ -163,15 +163,15 @@
|
|
|
163
163
|
},
|
|
164
164
|
"grantType": {
|
|
165
165
|
"type": "string",
|
|
166
|
-
"description": "The type of grant of the OAuth 2 authorization",
|
|
167
|
-
"enum": ["authorization_code", "password"],
|
|
168
|
-
"tsEnumNames": ["AUTHORIZATION_CODE", "PASSWORD"]
|
|
166
|
+
"description": "The type of grant of the OAuth 2 authorization.",
|
|
167
|
+
"enum": ["authorization_code", "password", "client_credentials"],
|
|
168
|
+
"tsEnumNames": ["AUTHORIZATION_CODE", "PASSWORD", "CLIENT_CREDENTIALS"]
|
|
169
169
|
},
|
|
170
170
|
"scopes": {
|
|
171
171
|
"type": "array",
|
|
172
172
|
"items": {
|
|
173
173
|
"type": "object",
|
|
174
|
-
"description": "The requested scope of access to the user account",
|
|
174
|
+
"description": "The requested scope of access to the user account.",
|
|
175
175
|
"additionalProperties": false,
|
|
176
176
|
"required": ["name"],
|
|
177
177
|
"properties": {
|
|
@@ -180,11 +180,12 @@ export declare enum Method {
|
|
|
180
180
|
OAUTH2 = "oauth2"
|
|
181
181
|
}
|
|
182
182
|
/**
|
|
183
|
-
* The type of grant of the OAuth 2 authorization
|
|
183
|
+
* The type of grant of the OAuth 2 authorization.
|
|
184
184
|
*/
|
|
185
185
|
export declare enum GrantType {
|
|
186
186
|
AUTHORIZATION_CODE = "authorization_code",
|
|
187
|
-
PASSWORD = "password"
|
|
187
|
+
PASSWORD = "password",
|
|
188
|
+
CLIENT_CREDENTIALS = "client_credentials"
|
|
188
189
|
}
|
|
189
190
|
/**
|
|
190
191
|
* The content type of exchanged information with the provider
|
|
@@ -16,12 +16,13 @@ var Method;
|
|
|
16
16
|
Method["OAUTH2"] = "oauth2";
|
|
17
17
|
})(Method || (exports.Method = Method = {}));
|
|
18
18
|
/**
|
|
19
|
-
* The type of grant of the OAuth 2 authorization
|
|
19
|
+
* The type of grant of the OAuth 2 authorization.
|
|
20
20
|
*/
|
|
21
21
|
var GrantType;
|
|
22
22
|
(function (GrantType) {
|
|
23
23
|
GrantType["AUTHORIZATION_CODE"] = "authorization_code";
|
|
24
24
|
GrantType["PASSWORD"] = "password";
|
|
25
|
+
GrantType["CLIENT_CREDENTIALS"] = "client_credentials";
|
|
25
26
|
})(GrantType || (exports.GrantType = GrantType = {}));
|
|
26
27
|
/**
|
|
27
28
|
* The content type of exchanged information with the provider
|
package/oclif.manifest.json
CHANGED