@unito/integration-cli 0.63.4 → 0.64.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.
- package/dist/boilerplate/package-lock.json +458 -458
- package/dist/src/commands/dev.d.ts +2 -1
- package/dist/src/commands/dev.js +7 -3
- package/dist/src/commands/init.js +4 -4
- package/dist/src/commands/login.js +1 -0
- package/dist/src/commands/test.js +1 -1
- package/dist/src/index.js +1 -0
- package/dist/src/resources/credentials.d.ts +1 -1
- package/dist/src/services/integrationsPlatform.d.ts +1 -1
- package/dist/src/services/integrationsPlatformClient.d.ts +26 -10
- package/dist/src/services/integrationsPlatformClient.js +27 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +418 -226
- package/package.json +5 -8
|
@@ -8,7 +8,7 @@ export default class Dev extends BaseCommand<typeof Dev> {
|
|
|
8
8
|
environment: import("@oclif/core/lib/interfaces").OptionFlag<GlobalConfiguration.Environment, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
9
9
|
verbose: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
10
10
|
'credential-payload': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
11
|
-
'credential-id': import("@oclif/core/lib/interfaces").OptionFlag<
|
|
11
|
+
'credential-id': import("@oclif/core/lib/interfaces").OptionFlag<string | 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
14
|
timeout: import("@oclif/core/lib/interfaces").OptionFlag<number, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
@@ -16,6 +16,7 @@ export default class Dev extends BaseCommand<typeof Dev> {
|
|
|
16
16
|
checks: import("@oclif/core/lib/interfaces").OptionFlag<string[], import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
17
17
|
'config-path': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
18
18
|
'skip-install': import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
19
|
+
port: import("@oclif/core/lib/interfaces").OptionFlag<number, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
19
20
|
};
|
|
20
21
|
run(): Promise<void>;
|
|
21
22
|
}
|
package/dist/src/commands/dev.js
CHANGED
|
@@ -35,7 +35,7 @@ class Dev extends baseCommand_1.BaseCommand {
|
|
|
35
35
|
description: '(advanced) credential payload to use.',
|
|
36
36
|
exclusive: ['credential-id'],
|
|
37
37
|
}),
|
|
38
|
-
'credential-id': core_1.Flags.
|
|
38
|
+
'credential-id': core_1.Flags.string({
|
|
39
39
|
description: '(advanced) credential to use.',
|
|
40
40
|
exclusive: ['credential-payload'],
|
|
41
41
|
}),
|
|
@@ -77,6 +77,10 @@ class Dev extends baseCommand_1.BaseCommand {
|
|
|
77
77
|
allowNo: true,
|
|
78
78
|
default: false,
|
|
79
79
|
}),
|
|
80
|
+
port: core_1.Flags.integer({
|
|
81
|
+
description: 'port to run the integration on',
|
|
82
|
+
default: 9200,
|
|
83
|
+
}),
|
|
80
84
|
};
|
|
81
85
|
async run() {
|
|
82
86
|
(0, integrations_1.validateIsIntegrationDirectory)();
|
|
@@ -141,7 +145,7 @@ class Dev extends baseCommand_1.BaseCommand {
|
|
|
141
145
|
// Launch the debugger.
|
|
142
146
|
const commandArguments = [
|
|
143
147
|
`${process.env.NODE_MODULES_FOLDER}/@unito/integration-debugger/dist/src/index.js`,
|
|
144
|
-
|
|
148
|
+
`--integration-url=http://localhost:${flags.port}`,
|
|
145
149
|
`--spawn-process=npm run dev`,
|
|
146
150
|
`--credential-payload=${credentialPayload}`,
|
|
147
151
|
`--secrets-payload=${JSON.stringify(secrets)}`,
|
|
@@ -185,7 +189,7 @@ class Dev extends baseCommand_1.BaseCommand {
|
|
|
185
189
|
const child = child_process_1.default.spawn('node', commandArguments, {
|
|
186
190
|
detached: true,
|
|
187
191
|
stdio: 'inherit',
|
|
188
|
-
env: { ...process.env, ...environmentVariables, NODE_ENV: 'development', PORT:
|
|
192
|
+
env: { ...process.env, ...environmentVariables, NODE_ENV: 'development', PORT: `${flags.port}` },
|
|
189
193
|
});
|
|
190
194
|
// istanbul ignore next
|
|
191
195
|
child.on('exit', (code) => {
|
|
@@ -26,15 +26,15 @@ class Init extends baseCommand_1.BaseCommand {
|
|
|
26
26
|
const name = nameFromFlag ??
|
|
27
27
|
(await inquirer_1.default.prompt([
|
|
28
28
|
{
|
|
29
|
+
type: 'input',
|
|
29
30
|
name: 'name',
|
|
30
|
-
|
|
31
|
+
message: [
|
|
31
32
|
chalk_1.default.gray('Choose a name for your integration.'),
|
|
32
33
|
chalk_1.default.gray('A folder will be created with the value provided.'),
|
|
33
34
|
chalk_1.default.gray('Note that "My Integration" will become "my_integration".'),
|
|
34
|
-
chalk_1.default.
|
|
35
|
+
chalk_1.default.yellowBright('What is the name of your integration?'),
|
|
35
36
|
].join('\n'),
|
|
36
|
-
|
|
37
|
-
filter: name => name
|
|
37
|
+
filter: (name) => name
|
|
38
38
|
.toLowerCase()
|
|
39
39
|
.replace(/ /g, '_')
|
|
40
40
|
.replace(/[^a-z0-9_-]*/g, ''),
|
|
@@ -41,7 +41,7 @@ class Test extends baseCommand_1.BaseCommand {
|
|
|
41
41
|
description: '(advanced) credential payload to use.',
|
|
42
42
|
exclusive: ['credential-id'],
|
|
43
43
|
}),
|
|
44
|
-
'credential-id': core_1.Flags.
|
|
44
|
+
'credential-id': core_1.Flags.string({
|
|
45
45
|
description: '(advanced) credential to use.',
|
|
46
46
|
exclusive: ['credential-payload'],
|
|
47
47
|
}),
|
package/dist/src/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import * as GlobalConfiguration from './globalConfiguration';
|
|
2
2
|
import { Credential } from '../services/integrationsPlatform';
|
|
3
|
-
export declare function fetchCredential(environment: GlobalConfiguration.Environment, configDir: string, credentialId:
|
|
3
|
+
export declare function fetchCredential(environment: GlobalConfiguration.Environment, configDir: string, credentialId: string): Promise<Credential>;
|
|
@@ -40,4 +40,4 @@ export declare function getIntegrationEvents(integrationId: number, options?: {
|
|
|
40
40
|
export declare function updateIntegration(integrationId: number, configuration: Configuration & {
|
|
41
41
|
archived?: boolean;
|
|
42
42
|
}): Promise<Integration>;
|
|
43
|
-
export declare function getCredential(credentialId:
|
|
43
|
+
export declare function getCredential(credentialId: string): Promise<Credential>;
|
|
@@ -66,7 +66,7 @@ export type Error = {
|
|
|
66
66
|
stack?: string[];
|
|
67
67
|
};
|
|
68
68
|
export type AuthorizationMethod = 'custom' | 'oauth2';
|
|
69
|
-
export type AuthorizationGrantType = 'authorization_code' | 'password' | 'client_credentials';
|
|
69
|
+
export type AuthorizationGrantType = 'authorization_code' | 'password' | 'client_credentials' | 'urn:ietf:params:oauth:grant-type:jwt-bearer';
|
|
70
70
|
export type AuthorizationScope = {
|
|
71
71
|
/** The name of the scope. */
|
|
72
72
|
name: string;
|
|
@@ -93,6 +93,8 @@ export type AuthorizationOAuth2 = {
|
|
|
93
93
|
authorizationUrl?: string;
|
|
94
94
|
/** The URL to obtain or refresh an access token. */
|
|
95
95
|
tokenUrl: string;
|
|
96
|
+
/** The callback URL which the provider will redirect the user after granting or denying access. */
|
|
97
|
+
legacyRedirectUrl?: string;
|
|
96
98
|
grantType: AuthorizationGrantType;
|
|
97
99
|
scopes: AuthorizationScope[];
|
|
98
100
|
requestContentType: AuthorizationOAuth2ContentType;
|
|
@@ -143,7 +145,7 @@ export type IntegrationEvent = {
|
|
|
143
145
|
};
|
|
144
146
|
export type Credential = Base & {
|
|
145
147
|
/** The id of the credential. */
|
|
146
|
-
id:
|
|
148
|
+
id: string;
|
|
147
149
|
/** The id of the integration. */
|
|
148
150
|
integrationId: number;
|
|
149
151
|
/** The name of the integration. */
|
|
@@ -319,7 +321,7 @@ export declare function getCredentials({ pagination, filters, }?: {
|
|
|
319
321
|
/** The integration id of the credential. */
|
|
320
322
|
integrationId?: number;
|
|
321
323
|
/** List of credential ids. */
|
|
322
|
-
id?:
|
|
324
|
+
id?: string[];
|
|
323
325
|
/** The scope of the credential. */
|
|
324
326
|
credentialScope?: 'development' | 'compliance' | 'production' | 'service';
|
|
325
327
|
/** The id of the Unito User for which this credential belongs to. */
|
|
@@ -350,11 +352,11 @@ export declare function createCredential(body?: {
|
|
|
350
352
|
/**
|
|
351
353
|
* Get a credential
|
|
352
354
|
*/
|
|
353
|
-
export declare function getCredentialById(credentialId:
|
|
355
|
+
export declare function getCredentialById(credentialId: string, opts?: Oazapfts.RequestOpts): Promise<Credential>;
|
|
354
356
|
/**
|
|
355
357
|
* Update a credential
|
|
356
358
|
*/
|
|
357
|
-
export declare function updateCredential(credentialId:
|
|
359
|
+
export declare function updateCredential(credentialId: string, body?: {
|
|
358
360
|
payload?: {
|
|
359
361
|
[key: string]: any;
|
|
360
362
|
};
|
|
@@ -366,7 +368,7 @@ export declare function updateCredential(credentialId: number, body?: {
|
|
|
366
368
|
/**
|
|
367
369
|
* Delete a credential
|
|
368
370
|
*/
|
|
369
|
-
export declare function deleteCredential(credentialId:
|
|
371
|
+
export declare function deleteCredential(credentialId: string, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
370
372
|
/**
|
|
371
373
|
* Returns the credentialAccount either from the integration's /me endpoint, if available, or the credential's latestCredentialAccount
|
|
372
374
|
*/
|
|
@@ -444,33 +446,47 @@ export declare function updateWebhookSubscription(xUnitoCredentialId: string, bo
|
|
|
444
446
|
/**
|
|
445
447
|
* Call an integration's graph
|
|
446
448
|
*/
|
|
447
|
-
export declare function getProxyGraph(xUnitoCredentialId: string, path: string, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, accept, }?: {
|
|
449
|
+
export declare function getProxyGraph(xUnitoCredentialId: string, path: string, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, accept, xUnitoOperationDeadline, }?: {
|
|
448
450
|
xUnitoCorrelationId?: string;
|
|
449
451
|
xUnitoAdditionalLoggingContext?: string;
|
|
450
452
|
accept?: string;
|
|
453
|
+
xUnitoOperationDeadline?: string;
|
|
451
454
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
452
455
|
/**
|
|
453
456
|
* Call an integration's graph
|
|
454
457
|
*/
|
|
455
|
-
export declare function patchProxyGraph(xUnitoCredentialId: string, path: string, body?: object, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, contentType, }?: {
|
|
458
|
+
export declare function patchProxyGraph(xUnitoCredentialId: string, path: string, body?: object, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, contentType, xUnitoOperationDeadline, }?: {
|
|
456
459
|
xUnitoCorrelationId?: string;
|
|
457
460
|
xUnitoAdditionalLoggingContext?: string;
|
|
458
461
|
contentType?: string;
|
|
462
|
+
xUnitoOperationDeadline?: string;
|
|
459
463
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
460
464
|
/**
|
|
461
465
|
* Call an integration's graph
|
|
462
466
|
*/
|
|
463
|
-
export declare function postProxyGraph(xUnitoCredentialId: string, path: string, body?: object, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, contentType, }?: {
|
|
467
|
+
export declare function postProxyGraph(xUnitoCredentialId: string, path: string, body?: object, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, contentType, xUnitoOperationDeadline, }?: {
|
|
464
468
|
xUnitoCorrelationId?: string;
|
|
465
469
|
xUnitoAdditionalLoggingContext?: string;
|
|
466
470
|
contentType?: string;
|
|
471
|
+
xUnitoOperationDeadline?: string;
|
|
467
472
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
468
473
|
/**
|
|
469
474
|
* Call an integration's graph
|
|
470
475
|
*/
|
|
471
|
-
export declare function deleteProxyGraph(xUnitoCredentialId: string, path: string, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, }?: {
|
|
476
|
+
export declare function deleteProxyGraph(xUnitoCredentialId: string, path: string, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, xUnitoOperationDeadline, }?: {
|
|
477
|
+
xUnitoCorrelationId?: string;
|
|
478
|
+
xUnitoAdditionalLoggingContext?: string;
|
|
479
|
+
xUnitoOperationDeadline?: string;
|
|
480
|
+
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
481
|
+
/**
|
|
482
|
+
* Call an integration's graph with multipart/form-data
|
|
483
|
+
*/
|
|
484
|
+
export declare function postProxyGraphMultipart(xUnitoCredentialId: string, path: string, body?: {
|
|
485
|
+
[key: string]: any;
|
|
486
|
+
}, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, xUnitoOperationDeadline, }?: {
|
|
472
487
|
xUnitoCorrelationId?: string;
|
|
473
488
|
xUnitoAdditionalLoggingContext?: string;
|
|
489
|
+
xUnitoOperationDeadline?: string;
|
|
474
490
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
475
491
|
/**
|
|
476
492
|
* Get all the users
|
|
@@ -30,6 +30,7 @@ exports.getProxyGraph = getProxyGraph;
|
|
|
30
30
|
exports.patchProxyGraph = patchProxyGraph;
|
|
31
31
|
exports.postProxyGraph = postProxyGraph;
|
|
32
32
|
exports.deleteProxyGraph = deleteProxyGraph;
|
|
33
|
+
exports.postProxyGraphMultipart = postProxyGraphMultipart;
|
|
33
34
|
exports.getUsers = getUsers;
|
|
34
35
|
exports.createUser = createUser;
|
|
35
36
|
exports.getUserById = getUserById;
|
|
@@ -314,7 +315,7 @@ function updateWebhookSubscription(xUnitoCredentialId, body, { xUnitoCorrelation
|
|
|
314
315
|
/**
|
|
315
316
|
* Call an integration's graph
|
|
316
317
|
*/
|
|
317
|
-
function getProxyGraph(xUnitoCredentialId, path, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, accept, } = {}, opts) {
|
|
318
|
+
function getProxyGraph(xUnitoCredentialId, path, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, accept, xUnitoOperationDeadline, } = {}, opts) {
|
|
318
319
|
return oazapfts.ok(oazapfts.fetchJson(`/proxy/graph${QS.query(QS.explode({
|
|
319
320
|
path,
|
|
320
321
|
}))}`, {
|
|
@@ -324,13 +325,14 @@ function getProxyGraph(xUnitoCredentialId, path, { xUnitoCorrelationId, xUnitoAd
|
|
|
324
325
|
'X-Unito-Correlation-Id': xUnitoCorrelationId,
|
|
325
326
|
'X-Unito-Additional-Logging-Context': xUnitoAdditionalLoggingContext,
|
|
326
327
|
Accept: accept,
|
|
328
|
+
'X-Unito-Operation-Deadline': xUnitoOperationDeadline,
|
|
327
329
|
}),
|
|
328
330
|
}));
|
|
329
331
|
}
|
|
330
332
|
/**
|
|
331
333
|
* Call an integration's graph
|
|
332
334
|
*/
|
|
333
|
-
function patchProxyGraph(xUnitoCredentialId, path, body, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, contentType, } = {}, opts) {
|
|
335
|
+
function patchProxyGraph(xUnitoCredentialId, path, body, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, contentType, xUnitoOperationDeadline, } = {}, opts) {
|
|
334
336
|
return oazapfts.ok(oazapfts.fetchJson(`/proxy/graph${QS.query(QS.explode({
|
|
335
337
|
path,
|
|
336
338
|
}))}`, oazapfts.json({
|
|
@@ -342,13 +344,14 @@ function patchProxyGraph(xUnitoCredentialId, path, body, { xUnitoCorrelationId,
|
|
|
342
344
|
'X-Unito-Correlation-Id': xUnitoCorrelationId,
|
|
343
345
|
'X-Unito-Additional-Logging-Context': xUnitoAdditionalLoggingContext,
|
|
344
346
|
'Content-Type': contentType,
|
|
347
|
+
'X-Unito-Operation-Deadline': xUnitoOperationDeadline,
|
|
345
348
|
}),
|
|
346
349
|
})));
|
|
347
350
|
}
|
|
348
351
|
/**
|
|
349
352
|
* Call an integration's graph
|
|
350
353
|
*/
|
|
351
|
-
function postProxyGraph(xUnitoCredentialId, path, body, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, contentType, } = {}, opts) {
|
|
354
|
+
function postProxyGraph(xUnitoCredentialId, path, body, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, contentType, xUnitoOperationDeadline, } = {}, opts) {
|
|
352
355
|
return oazapfts.ok(oazapfts.fetchJson(`/proxy/graph${QS.query(QS.explode({
|
|
353
356
|
path,
|
|
354
357
|
}))}`, oazapfts.json({
|
|
@@ -360,13 +363,14 @@ function postProxyGraph(xUnitoCredentialId, path, body, { xUnitoCorrelationId, x
|
|
|
360
363
|
'X-Unito-Correlation-Id': xUnitoCorrelationId,
|
|
361
364
|
'X-Unito-Additional-Logging-Context': xUnitoAdditionalLoggingContext,
|
|
362
365
|
'Content-Type': contentType,
|
|
366
|
+
'X-Unito-Operation-Deadline': xUnitoOperationDeadline,
|
|
363
367
|
}),
|
|
364
368
|
})));
|
|
365
369
|
}
|
|
366
370
|
/**
|
|
367
371
|
* Call an integration's graph
|
|
368
372
|
*/
|
|
369
|
-
function deleteProxyGraph(xUnitoCredentialId, path, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, } = {}, opts) {
|
|
373
|
+
function deleteProxyGraph(xUnitoCredentialId, path, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, xUnitoOperationDeadline, } = {}, opts) {
|
|
370
374
|
return oazapfts.ok(oazapfts.fetchJson(`/proxy/graph${QS.query(QS.explode({
|
|
371
375
|
path,
|
|
372
376
|
}))}`, {
|
|
@@ -376,9 +380,28 @@ function deleteProxyGraph(xUnitoCredentialId, path, { xUnitoCorrelationId, xUnit
|
|
|
376
380
|
'X-Unito-Credential-Id': xUnitoCredentialId,
|
|
377
381
|
'X-Unito-Correlation-Id': xUnitoCorrelationId,
|
|
378
382
|
'X-Unito-Additional-Logging-Context': xUnitoAdditionalLoggingContext,
|
|
383
|
+
'X-Unito-Operation-Deadline': xUnitoOperationDeadline,
|
|
379
384
|
}),
|
|
380
385
|
}));
|
|
381
386
|
}
|
|
387
|
+
/**
|
|
388
|
+
* Call an integration's graph with multipart/form-data
|
|
389
|
+
*/
|
|
390
|
+
function postProxyGraphMultipart(xUnitoCredentialId, path, body, { xUnitoCorrelationId, xUnitoAdditionalLoggingContext, xUnitoOperationDeadline, } = {}, opts) {
|
|
391
|
+
return oazapfts.ok(oazapfts.fetchJson(`/proxy/graph/multipart${QS.query(QS.explode({
|
|
392
|
+
path,
|
|
393
|
+
}))}`, oazapfts.multipart({
|
|
394
|
+
...opts,
|
|
395
|
+
method: 'POST',
|
|
396
|
+
body,
|
|
397
|
+
headers: oazapfts.mergeHeaders(opts?.headers, {
|
|
398
|
+
'X-Unito-Credential-Id': xUnitoCredentialId,
|
|
399
|
+
'X-Unito-Correlation-Id': xUnitoCorrelationId,
|
|
400
|
+
'X-Unito-Additional-Logging-Context': xUnitoAdditionalLoggingContext,
|
|
401
|
+
'X-Unito-Operation-Deadline': xUnitoOperationDeadline,
|
|
402
|
+
}),
|
|
403
|
+
})));
|
|
404
|
+
}
|
|
382
405
|
/**
|
|
383
406
|
* Get all the users
|
|
384
407
|
*/
|
|
@@ -1 +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.
|
|
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.9.3"}
|