@unito/integration-cli 0.60.11 → 0.60.13
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.
|
@@ -11,6 +11,7 @@ export default class Dev extends BaseCommand<typeof Dev> {
|
|
|
11
11
|
'credential-id': import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
12
12
|
'test-account': import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
13
13
|
'read-only': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
14
|
+
timeout: import("@oclif/core/lib/interfaces").OptionFlag<number, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
14
15
|
crawlMode: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
15
16
|
checks: import("@oclif/core/lib/interfaces").OptionFlag<string[], import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
16
17
|
'config-path': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
package/dist/src/commands/dev.js
CHANGED
|
@@ -48,6 +48,10 @@ class Dev extends baseCommand_1.BaseCommand {
|
|
|
48
48
|
description: 'whether or not to only perform read operations',
|
|
49
49
|
allowNo: true,
|
|
50
50
|
}),
|
|
51
|
+
timeout: core_1.Flags.integer({
|
|
52
|
+
description: `timeout in seconds passed as 'X-Unito-Operation-Deadline' header to the integration. Set to 0 for no timeout.`,
|
|
53
|
+
default: 0, // Dev mode has no timeout by default.
|
|
54
|
+
}),
|
|
51
55
|
crawlMode: core_1.Flags.string({
|
|
52
56
|
description: 'mode to use while crawling the integration graph',
|
|
53
57
|
options: Object.values(configuration_1.CrawlMode),
|
|
@@ -137,6 +141,9 @@ class Dev extends baseCommand_1.BaseCommand {
|
|
|
137
141
|
if (readOnly) {
|
|
138
142
|
commandArguments.push('--read-only');
|
|
139
143
|
}
|
|
144
|
+
if (flags.timeout) {
|
|
145
|
+
commandArguments.push(`--timeout=${flags.timeout}`);
|
|
146
|
+
}
|
|
140
147
|
if (configuration.graphRelativeUrl) {
|
|
141
148
|
commandArguments.push(`--graph-relative-url=${configuration.graphRelativeUrl}`);
|
|
142
149
|
}
|
|
@@ -76,6 +76,7 @@ class Oauth2 extends core_1.Command {
|
|
|
76
76
|
oauth2 = decryptedEntries.successful;
|
|
77
77
|
const testAccount = flags['test-account'];
|
|
78
78
|
const testAccountCredentials = configuration.testAccounts?.[testAccount];
|
|
79
|
+
const testAccountsToRefresh = new Set([testAccount]);
|
|
79
80
|
let credentials;
|
|
80
81
|
if (!testAccountCredentials?.accessToken || flags.reauth) {
|
|
81
82
|
core_1.ux.log(`Starting Oauth2 flow for test account: ${testAccount}`);
|
|
@@ -87,6 +88,14 @@ class Oauth2 extends core_1.Command {
|
|
|
87
88
|
core_1.ux.log(chalk_1.default.redBright('No refresh token found, nothing to do.'));
|
|
88
89
|
return;
|
|
89
90
|
}
|
|
91
|
+
// Figure out if we want to refresh other test account at the same time (like if they currently have the same values)
|
|
92
|
+
for (const [account, accountCredentials] of Object.entries(configuration.testAccounts ?? {})) {
|
|
93
|
+
if (!testAccountsToRefresh.has(account) &&
|
|
94
|
+
accountCredentials?.accessToken === testAccountCredentials.accessToken &&
|
|
95
|
+
accountCredentials?.refreshToken === testAccountCredentials.refreshToken) {
|
|
96
|
+
testAccountsToRefresh.add(account);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
90
99
|
const decryptionResult = await (0, decryption_1.decryptEntries)(configuration.name, environment, this.config.configDir, testAccountCredentials);
|
|
91
100
|
const refreshToken = decryptionResult.successful.refreshToken;
|
|
92
101
|
core_1.ux.action.start(`Refreshing test account ${testAccount}`, undefined, { stdout: true });
|
|
@@ -103,9 +112,11 @@ class Oauth2 extends core_1.Command {
|
|
|
103
112
|
}
|
|
104
113
|
core_1.ux.action.stop();
|
|
105
114
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
115
|
+
for (const account of testAccountsToRefresh) {
|
|
116
|
+
core_1.ux.action.start(`Saving credentials for account: ${account}`, undefined, { stdout: true });
|
|
117
|
+
await (0, configuration_1.writeTestAccount)(configuration, environment, customConfigPath, credentials, account);
|
|
118
|
+
core_1.ux.action.stop();
|
|
119
|
+
}
|
|
109
120
|
return;
|
|
110
121
|
}
|
|
111
122
|
}
|
|
@@ -54,6 +54,10 @@ class Test extends baseCommand_1.BaseCommand {
|
|
|
54
54
|
description: 'whether or not to only perform read operations',
|
|
55
55
|
allowNo: true,
|
|
56
56
|
}),
|
|
57
|
+
timeout: core_1.Flags.integer({
|
|
58
|
+
description: `timeout in seconds passed as 'X-Unito-Operation-Deadline' header to the integration. Set to 0 for no timeout.`,
|
|
59
|
+
default: 20, // Test mode has a default timeout of 20 seconds.
|
|
60
|
+
}),
|
|
57
61
|
crawlMode: core_1.Flags.string({
|
|
58
62
|
description: 'mode to use while crawling the integration graph',
|
|
59
63
|
options: Object.values(configuration_1.CrawlMode),
|
|
@@ -80,7 +84,7 @@ class Test extends baseCommand_1.BaseCommand {
|
|
|
80
84
|
Usage: <%= config.bin %> <%= command.id %> --config-path=/myCustomConfig.json`,
|
|
81
85
|
}),
|
|
82
86
|
'skip-install': core_1.Flags.boolean({
|
|
83
|
-
description: 'whether or not to run npm install before starting the integration',
|
|
87
|
+
description: 'whether or not to run npm install before starting the integration. Useful when npx linking modules to the integration.',
|
|
84
88
|
allowNo: true,
|
|
85
89
|
default: false,
|
|
86
90
|
}),
|
|
@@ -158,6 +162,9 @@ class Test extends baseCommand_1.BaseCommand {
|
|
|
158
162
|
if (readOnly) {
|
|
159
163
|
commandArguments.push('--read-only');
|
|
160
164
|
}
|
|
165
|
+
if (flags.timeout) {
|
|
166
|
+
commandArguments.push(`--timeout=${flags.timeout}`);
|
|
167
|
+
}
|
|
161
168
|
if (configuration.graphRelativeUrl) {
|
|
162
169
|
commandArguments.push(`--graph-relative-url=${configuration.graphRelativeUrl}`);
|
|
163
170
|
}
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.60.
|
|
2
|
+
"version": "0.60.13",
|
|
3
3
|
"commands": {
|
|
4
4
|
"activity": {
|
|
5
5
|
"id": "activity",
|
|
@@ -111,6 +111,13 @@
|
|
|
111
111
|
"description": "whether or not to only perform read operations",
|
|
112
112
|
"allowNo": true
|
|
113
113
|
},
|
|
114
|
+
"timeout": {
|
|
115
|
+
"name": "timeout",
|
|
116
|
+
"type": "option",
|
|
117
|
+
"description": "timeout in seconds passed as 'X-Unito-Operation-Deadline' header to the integration. Set to 0 for no timeout.",
|
|
118
|
+
"multiple": false,
|
|
119
|
+
"default": 0
|
|
120
|
+
},
|
|
114
121
|
"crawlMode": {
|
|
115
122
|
"name": "crawlMode",
|
|
116
123
|
"type": "option",
|
|
@@ -485,6 +492,13 @@
|
|
|
485
492
|
"description": "whether or not to only perform read operations",
|
|
486
493
|
"allowNo": true
|
|
487
494
|
},
|
|
495
|
+
"timeout": {
|
|
496
|
+
"name": "timeout",
|
|
497
|
+
"type": "option",
|
|
498
|
+
"description": "timeout in seconds passed as 'X-Unito-Operation-Deadline' header to the integration. Set to 0 for no timeout.",
|
|
499
|
+
"multiple": false,
|
|
500
|
+
"default": 20
|
|
501
|
+
},
|
|
488
502
|
"crawlMode": {
|
|
489
503
|
"name": "crawlMode",
|
|
490
504
|
"type": "option",
|
|
@@ -521,7 +535,7 @@
|
|
|
521
535
|
"skip-install": {
|
|
522
536
|
"name": "skip-install",
|
|
523
537
|
"type": "boolean",
|
|
524
|
-
"description": "whether or not to run npm install before starting the integration",
|
|
538
|
+
"description": "whether or not to run npm install before starting the integration. Useful when npx linking modules to the integration.",
|
|
525
539
|
"allowNo": true
|
|
526
540
|
}
|
|
527
541
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unito/integration-cli",
|
|
3
|
-
"version": "0.60.
|
|
3
|
+
"version": "0.60.13",
|
|
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.26.
|
|
40
|
+
"@unito/integration-debugger": "0.26.9",
|
|
41
41
|
"@oazapfts/runtime": "1.x",
|
|
42
42
|
"ajv": "8.x",
|
|
43
43
|
"ajv-formats": "2.x",
|