@unito/integration-cli 0.62.8 → 0.62.9

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.
@@ -10,7 +10,7 @@ WORKDIR /build
10
10
 
11
11
  COPY . .
12
12
 
13
- RUN --mount=type=secret,id=npmrc,target=.npmrc npm ci
13
+ RUN --mount=type=secret,id=npmrc,target=.npmrc npm --no-audit --no-fund ci
14
14
 
15
15
  RUN npm install
16
16
  RUN npm run compile
@@ -30,7 +30,7 @@ COPY --from=build \
30
30
  /build/dist \
31
31
  .
32
32
 
33
- RUN --mount=type=secret,id=npmrc,target=.npmrc npm ci --omit=dev
33
+ RUN --mount=type=secret,id=npmrc,target=.npmrc npm --no-audit --no-fund ci --omit=dev
34
34
 
35
35
  RUN npm install --omit=dev
36
36
 
@@ -161,6 +161,11 @@
161
161
  "description": "The URL to obtain or refresh an access token.",
162
162
  "format": "uri-template"
163
163
  },
164
+ "legacyRedirectUrl": {
165
+ "type": "string",
166
+ "description": "The legacy redirect callback URL used for specific connectors where an existing app definition with a predefined redirect URL must be reused.",
167
+ "format": "uri-template"
168
+ },
164
169
  "grantType": {
165
170
  "type": "string",
166
171
  "description": "The type of grant of the OAuth 2 authorization.",
@@ -149,6 +149,10 @@ export interface Oauth2 {
149
149
  * The URL to obtain or refresh an access token.
150
150
  */
151
151
  tokenUrl: string;
152
+ /**
153
+ * The legacy redirect callback URL used for specific connectors where an existing app definition with a predefined redirect URL must be reused.
154
+ */
155
+ legacyRedirectUrl?: string;
152
156
  grantType?: GrantType;
153
157
  scopes: {
154
158
  /**
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.62.8",
2
+ "version": "0.62.9",
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.62.8",
3
+ "version": "0.62.9",
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.4",
40
+ "@unito/integration-debugger": "0.28.5",
41
41
  "@oazapfts/runtime": "1.x",
42
42
  "ajv": "8.x",
43
43
  "ajv-formats": "2.x",