@unito/integration-cli 0.61.1 → 0.61.3

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.
@@ -164,8 +164,8 @@
164
164
  "grantType": {
165
165
  "type": "string",
166
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"]
167
+ "enum": ["authorization_code", "password", "client_credentials", "urn:ietf:params:oauth:grant-type:jwt-bearer"],
168
+ "tsEnumNames": ["AUTHORIZATION_CODE", "PASSWORD", "CLIENT_CREDENTIALS", "JWT_BEARER"]
169
169
  },
170
170
  "scopes": {
171
171
  "type": "array",
@@ -195,7 +195,8 @@ export declare enum Method {
195
195
  export declare enum GrantType {
196
196
  AUTHORIZATION_CODE = "authorization_code",
197
197
  PASSWORD = "password",
198
- CLIENT_CREDENTIALS = "client_credentials"
198
+ CLIENT_CREDENTIALS = "client_credentials",
199
+ JWT_BEARER = "urn:ietf:params:oauth:grant-type:jwt-bearer"
199
200
  }
200
201
  /**
201
202
  * The content type of exchanged information with the provider
@@ -23,6 +23,7 @@ var GrantType;
23
23
  GrantType["AUTHORIZATION_CODE"] = "authorization_code";
24
24
  GrantType["PASSWORD"] = "password";
25
25
  GrantType["CLIENT_CREDENTIALS"] = "client_credentials";
26
+ GrantType["JWT_BEARER"] = "urn:ietf:params:oauth:grant-type:jwt-bearer";
26
27
  })(GrantType || (exports.GrantType = GrantType = {}));
27
28
  /**
28
29
  * The content type of exchanged information with the provider
@@ -0,0 +1 @@
1
+ {"root":["../src/baseCommand.ts","../src/configurationTypes.ts","../src/errors.ts","../src/index.ts","../src/commands/activity.ts","../src/commands/dev.ts","../src/commands/encrypt.ts","../src/commands/init.ts","../src/commands/invite.ts","../src/commands/login.ts","../src/commands/oauth2.ts","../src/commands/publish.ts","../src/commands/test.ts","../src/commands/upgrade.ts","../src/hooks/init/displayLogo.ts","../src/resources/configuration.ts","../src/resources/credentials.ts","../src/resources/decryption.ts","../src/resources/fileSystem.ts","../src/resources/globalConfiguration.ts","../src/resources/integrations.ts","../src/resources/integrationsPlatform.ts","../src/resources/oauth2.ts","../src/resources/template.ts","../src/services/integrationsPlatform.ts","../src/services/integrationsPlatformClient.ts","../src/services/oauth2.ts","../test/errors.test.ts","../test/commands/activity.test.ts","../test/commands/dev.test.ts","../test/commands/encrypt.test.ts","../test/commands/init.test.ts","../test/commands/invite.test.ts","../test/commands/login.test.ts","../test/commands/oauth2.test.ts","../test/commands/publish.test.ts","../test/commands/test.test.ts","../test/commands/upgrade.test.ts","../test/helpers/init.js","../test/helpers/integrations.ts","../test/helpers/styles.ts","../test/resources/configuration.test.ts","../test/resources/decryption.test.ts","../test/resources/globalConfiguration.test.ts","../test/resources/integrations.test.ts","../test/resources/oauth2.test.ts","../test/resources/template.test.ts","../test/services/integrationsPlatform.test.ts","../test/services/oauth2.test.ts","../scripts/generateTypes.ts","../.eslintrc.js"],"version":"5.6.3"}
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.61.1",
2
+ "version": "0.61.3",
3
3
  "commands": {
4
4
  "activity": {
5
5
  "id": "activity",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unito/integration-cli",
3
- "version": "0.61.1",
3
+ "version": "0.61.3",
4
4
  "description": "Integration CLI",
5
5
  "bin": {
6
6
  "integration-cli": "./bin/run"
@@ -37,7 +37,7 @@
37
37
  ],
38
38
  "dependencies": {
39
39
  "@oclif/core": "3.x",
40
- "@unito/integration-debugger": "0.28.0",
40
+ "@unito/integration-debugger": "0.28.1",
41
41
  "@oazapfts/runtime": "1.x",
42
42
  "ajv": "8.x",
43
43
  "ajv-formats": "2.x",