@atom8n/n8n 2.3.0 → 2.3.1
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/build.tsbuildinfo +1 -1
- package/dist/commands/export/credentials.d.ts +4 -4
- package/dist/commands/export/workflow.d.ts +4 -4
- package/dist/commands/import/credentials.d.ts +3 -3
- package/dist/commands/import/workflow.d.ts +3 -3
- package/dist/commands/ttwf/generate.d.ts +1 -1
- package/dist/load-nodes-and-credentials.d.ts +1 -0
- package/dist/load-nodes-and-credentials.js +54 -11
- package/dist/modules/mcp/tools/execute-workflow.tool.d.ts +12 -12
- package/dist/sso.ee/saml/routes/saml.controller.ee.d.ts +3 -3
- package/dist/workflows/workflow.service.d.ts +2 -2
- package/dist/workflows/workflows.controller.d.ts +20 -20
- package/package.json +1 -1
|
@@ -10,19 +10,19 @@ declare const flagsSchema: z.ZodObject<{
|
|
|
10
10
|
decrypted: z.ZodOptional<z.ZodBoolean>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
id?: string | undefined;
|
|
13
|
-
|
|
13
|
+
output?: string | undefined;
|
|
14
14
|
all?: boolean | undefined;
|
|
15
15
|
backup?: boolean | undefined;
|
|
16
|
-
output?: string | undefined;
|
|
17
16
|
pretty?: boolean | undefined;
|
|
17
|
+
separate?: boolean | undefined;
|
|
18
18
|
decrypted?: boolean | undefined;
|
|
19
19
|
}, {
|
|
20
20
|
id?: string | undefined;
|
|
21
|
-
|
|
21
|
+
output?: string | undefined;
|
|
22
22
|
all?: boolean | undefined;
|
|
23
23
|
backup?: boolean | undefined;
|
|
24
|
-
output?: string | undefined;
|
|
25
24
|
pretty?: boolean | undefined;
|
|
25
|
+
separate?: boolean | undefined;
|
|
26
26
|
decrypted?: boolean | undefined;
|
|
27
27
|
}>;
|
|
28
28
|
export declare class ExportCredentialsCommand extends BaseCommand<z.infer<typeof flagsSchema>> {
|
|
@@ -9,18 +9,18 @@ declare const flagsSchema: z.ZodObject<{
|
|
|
9
9
|
separate: z.ZodOptional<z.ZodBoolean>;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
11
|
id?: string | undefined;
|
|
12
|
-
|
|
12
|
+
output?: string | undefined;
|
|
13
13
|
all?: boolean | undefined;
|
|
14
14
|
backup?: boolean | undefined;
|
|
15
|
-
output?: string | undefined;
|
|
16
15
|
pretty?: boolean | undefined;
|
|
16
|
+
separate?: boolean | undefined;
|
|
17
17
|
}, {
|
|
18
18
|
id?: string | undefined;
|
|
19
|
-
|
|
19
|
+
output?: string | undefined;
|
|
20
20
|
all?: boolean | undefined;
|
|
21
21
|
backup?: boolean | undefined;
|
|
22
|
-
output?: string | undefined;
|
|
23
22
|
pretty?: boolean | undefined;
|
|
23
|
+
separate?: boolean | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
export declare class ExportWorkflowsCommand extends BaseCommand<z.infer<typeof flagsSchema>> {
|
|
26
26
|
run(): Promise<void>;
|
|
@@ -7,14 +7,14 @@ declare const flagsSchema: z.ZodObject<{
|
|
|
7
7
|
projectId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
9
|
separate: boolean;
|
|
10
|
-
input?: string | undefined;
|
|
11
10
|
userId?: string | undefined;
|
|
11
|
+
input?: string | undefined;
|
|
12
12
|
projectId?: string | undefined;
|
|
13
13
|
}, {
|
|
14
|
-
input?: string | undefined;
|
|
15
|
-
separate?: boolean | undefined;
|
|
16
14
|
userId?: string | undefined;
|
|
15
|
+
input?: string | undefined;
|
|
17
16
|
projectId?: string | undefined;
|
|
17
|
+
separate?: boolean | undefined;
|
|
18
18
|
}>;
|
|
19
19
|
export declare class ImportCredentialsCommand extends BaseCommand<z.infer<typeof flagsSchema>> {
|
|
20
20
|
private transactionManager;
|
|
@@ -7,14 +7,14 @@ declare const flagsSchema: z.ZodObject<{
|
|
|
7
7
|
projectId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
9
|
separate: boolean;
|
|
10
|
-
input?: string | undefined;
|
|
11
10
|
userId?: string | undefined;
|
|
11
|
+
input?: string | undefined;
|
|
12
12
|
projectId?: string | undefined;
|
|
13
13
|
}, {
|
|
14
|
-
input?: string | undefined;
|
|
15
|
-
separate?: boolean | undefined;
|
|
16
14
|
userId?: string | undefined;
|
|
15
|
+
input?: string | undefined;
|
|
17
16
|
projectId?: string | undefined;
|
|
17
|
+
separate?: boolean | undefined;
|
|
18
18
|
}>;
|
|
19
19
|
export declare class ImportWorkflowsCommand extends BaseCommand<z.infer<typeof flagsSchema>> {
|
|
20
20
|
run(): Promise<void>;
|
|
@@ -13,9 +13,9 @@ declare const flagsSchema: z.ZodObject<{
|
|
|
13
13
|
input?: string | undefined;
|
|
14
14
|
prompt?: string | undefined;
|
|
15
15
|
}, {
|
|
16
|
-
input?: string | undefined;
|
|
17
16
|
output?: string | undefined;
|
|
18
17
|
concurrency?: number | undefined;
|
|
18
|
+
input?: string | undefined;
|
|
19
19
|
limit?: number | undefined;
|
|
20
20
|
prompt?: string | undefined;
|
|
21
21
|
}>;
|
|
@@ -214,6 +214,7 @@ export declare class LoadNodesAndCredentials {
|
|
|
214
214
|
private runDirectoryLoader;
|
|
215
215
|
createAiTools(): void;
|
|
216
216
|
postProcessLoaders(): Promise<void>;
|
|
217
|
+
private getPackageNameAliases;
|
|
217
218
|
recognizesNode(fullNodeType: string): boolean;
|
|
218
219
|
getNode(fullNodeType: string): LoadedClass<INodeType | IVersionedNodeType>;
|
|
219
220
|
getCredential(credentialType: string): LoadedClass<ICredentialType>;
|
|
@@ -325,6 +325,19 @@ let LoadNodesAndCredentials = class LoadNodesAndCredentials {
|
|
|
325
325
|
}
|
|
326
326
|
await loader.loadAll();
|
|
327
327
|
this.loaders[loader.packageName] = loader;
|
|
328
|
+
if (loader instanceof n8n_core_1.PackageDirectoryLoader) {
|
|
329
|
+
const packageName = loader.packageName;
|
|
330
|
+
if (packageName.startsWith('@') && packageName.includes('/')) {
|
|
331
|
+
const parts = packageName.split('/');
|
|
332
|
+
if (parts.length === 2) {
|
|
333
|
+
const unscopedName = parts[1];
|
|
334
|
+
if ((unscopedName.startsWith('n8n-') || unscopedName === 'n8n') &&
|
|
335
|
+
!(unscopedName in this.loaders)) {
|
|
336
|
+
this.loaders[unscopedName] = loader;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
}
|
|
328
341
|
return loader;
|
|
329
342
|
}
|
|
330
343
|
createAiTools() {
|
|
@@ -410,25 +423,55 @@ let LoadNodesAndCredentials = class LoadNodesAndCredentials {
|
|
|
410
423
|
await postProcessor();
|
|
411
424
|
}
|
|
412
425
|
}
|
|
426
|
+
getPackageNameAliases(packageName) {
|
|
427
|
+
const aliases = [packageName];
|
|
428
|
+
if (packageName.startsWith('@') && packageName.includes('/')) {
|
|
429
|
+
const parts = packageName.split('/');
|
|
430
|
+
if (parts.length === 2) {
|
|
431
|
+
const unscopedName = parts[1];
|
|
432
|
+
if (unscopedName.startsWith('n8n-') || unscopedName === 'n8n') {
|
|
433
|
+
aliases.push(unscopedName);
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
else if (packageName.startsWith('n8n-') || packageName === 'n8n') {
|
|
438
|
+
for (const loadedPackageName of Object.keys(this.loaders)) {
|
|
439
|
+
if (loadedPackageName.startsWith('@') && loadedPackageName.endsWith(`/${packageName}`)) {
|
|
440
|
+
aliases.push(loadedPackageName);
|
|
441
|
+
break;
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
return aliases;
|
|
446
|
+
}
|
|
413
447
|
recognizesNode(fullNodeType) {
|
|
414
448
|
const [packageName, nodeType] = fullNodeType.split('.');
|
|
415
449
|
const { loaders } = this;
|
|
416
|
-
const
|
|
417
|
-
|
|
450
|
+
const aliases = this.getPackageNameAliases(packageName);
|
|
451
|
+
for (const alias of aliases) {
|
|
452
|
+
const loader = loaders[alias];
|
|
453
|
+
if (loader && nodeType in loader.known.nodes) {
|
|
454
|
+
return true;
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
return false;
|
|
418
458
|
}
|
|
419
459
|
getNode(fullNodeType) {
|
|
420
460
|
const [packageName, nodeType] = fullNodeType.split('.');
|
|
421
461
|
const { loaders } = this;
|
|
422
|
-
const
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
462
|
+
const aliases = this.getPackageNameAliases(packageName);
|
|
463
|
+
for (const alias of aliases) {
|
|
464
|
+
const loader = loaders[alias];
|
|
465
|
+
if (loader) {
|
|
466
|
+
const loadedNode = loader.getNode(nodeType);
|
|
467
|
+
if (this.shouldInjectContextEstablishmentHooks() &&
|
|
468
|
+
'properties' in loadedNode.type.description) {
|
|
469
|
+
this.augmentNodeTypeDescription(loadedNode.type.description);
|
|
470
|
+
}
|
|
471
|
+
return loadedNode;
|
|
472
|
+
}
|
|
430
473
|
}
|
|
431
|
-
|
|
474
|
+
throw new n8n_core_1.UnrecognizedNodeTypeError(packageName, nodeType);
|
|
432
475
|
}
|
|
433
476
|
getCredential(credentialType) {
|
|
434
477
|
const { loadedCredentials } = this;
|
|
@@ -34,31 +34,31 @@ declare const inputSchema: z.ZodObject<{
|
|
|
34
34
|
body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
35
35
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
36
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
-
method: "GET" | "
|
|
37
|
+
method: "GET" | "DELETE" | "HEAD" | "OPTIONS" | "POST" | "PUT" | "PATCH";
|
|
38
|
+
headers?: Record<string, string> | undefined;
|
|
38
39
|
body?: Record<string, unknown> | undefined;
|
|
39
40
|
query?: Record<string, string> | undefined;
|
|
40
|
-
headers?: Record<string, string> | undefined;
|
|
41
41
|
}, {
|
|
42
|
+
method?: "GET" | "DELETE" | "HEAD" | "OPTIONS" | "POST" | "PUT" | "PATCH" | undefined;
|
|
43
|
+
headers?: Record<string, string> | undefined;
|
|
42
44
|
body?: Record<string, unknown> | undefined;
|
|
43
|
-
method?: "GET" | "HEAD" | "DELETE" | "OPTIONS" | "POST" | "PUT" | "PATCH" | undefined;
|
|
44
45
|
query?: Record<string, string> | undefined;
|
|
45
|
-
headers?: Record<string, string> | undefined;
|
|
46
46
|
}>;
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
48
|
type: "webhook";
|
|
49
49
|
webhookData: {
|
|
50
|
-
method: "GET" | "
|
|
50
|
+
method: "GET" | "DELETE" | "HEAD" | "OPTIONS" | "POST" | "PUT" | "PATCH";
|
|
51
|
+
headers?: Record<string, string> | undefined;
|
|
51
52
|
body?: Record<string, unknown> | undefined;
|
|
52
53
|
query?: Record<string, string> | undefined;
|
|
53
|
-
headers?: Record<string, string> | undefined;
|
|
54
54
|
};
|
|
55
55
|
}, {
|
|
56
56
|
type: "webhook";
|
|
57
57
|
webhookData: {
|
|
58
|
+
method?: "GET" | "DELETE" | "HEAD" | "OPTIONS" | "POST" | "PUT" | "PATCH" | undefined;
|
|
59
|
+
headers?: Record<string, string> | undefined;
|
|
58
60
|
body?: Record<string, unknown> | undefined;
|
|
59
|
-
method?: "GET" | "HEAD" | "DELETE" | "OPTIONS" | "POST" | "PUT" | "PATCH" | undefined;
|
|
60
61
|
query?: Record<string, string> | undefined;
|
|
61
|
-
headers?: Record<string, string> | undefined;
|
|
62
62
|
};
|
|
63
63
|
}>]>>;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -72,10 +72,10 @@ declare const inputSchema: z.ZodObject<{
|
|
|
72
72
|
} | {
|
|
73
73
|
type: "webhook";
|
|
74
74
|
webhookData: {
|
|
75
|
-
method: "GET" | "
|
|
75
|
+
method: "GET" | "DELETE" | "HEAD" | "OPTIONS" | "POST" | "PUT" | "PATCH";
|
|
76
|
+
headers?: Record<string, string> | undefined;
|
|
76
77
|
body?: Record<string, unknown> | undefined;
|
|
77
78
|
query?: Record<string, string> | undefined;
|
|
78
|
-
headers?: Record<string, string> | undefined;
|
|
79
79
|
};
|
|
80
80
|
} | undefined;
|
|
81
81
|
}, {
|
|
@@ -89,10 +89,10 @@ declare const inputSchema: z.ZodObject<{
|
|
|
89
89
|
} | {
|
|
90
90
|
type: "webhook";
|
|
91
91
|
webhookData: {
|
|
92
|
+
method?: "GET" | "DELETE" | "HEAD" | "OPTIONS" | "POST" | "PUT" | "PATCH" | undefined;
|
|
93
|
+
headers?: Record<string, string> | undefined;
|
|
92
94
|
body?: Record<string, unknown> | undefined;
|
|
93
|
-
method?: "GET" | "HEAD" | "DELETE" | "OPTIONS" | "POST" | "PUT" | "PATCH" | undefined;
|
|
94
95
|
query?: Record<string, string> | undefined;
|
|
95
|
-
headers?: Record<string, string> | undefined;
|
|
96
96
|
};
|
|
97
97
|
} | undefined;
|
|
98
98
|
}>;
|
|
@@ -17,11 +17,11 @@ export declare class SamlController {
|
|
|
17
17
|
entityID: string;
|
|
18
18
|
returnUrl: string;
|
|
19
19
|
ignoreSSL: boolean;
|
|
20
|
-
loginBinding: "
|
|
20
|
+
loginBinding: "redirect" | "post";
|
|
21
21
|
authnRequestsSigned: boolean;
|
|
22
22
|
wantAssertionsSigned: boolean;
|
|
23
23
|
wantMessageSigned: boolean;
|
|
24
|
-
acsBinding: "
|
|
24
|
+
acsBinding: "redirect" | "post";
|
|
25
25
|
signatureConfig: {
|
|
26
26
|
prefix: string;
|
|
27
27
|
location: {
|
|
@@ -31,8 +31,8 @@ export declare class SamlController {
|
|
|
31
31
|
};
|
|
32
32
|
relayState: string;
|
|
33
33
|
metadata?: string | undefined;
|
|
34
|
-
loginLabel?: string | undefined;
|
|
35
34
|
loginEnabled?: boolean | undefined;
|
|
35
|
+
loginLabel?: string | undefined;
|
|
36
36
|
mapping?: import("@n8n/api-types").SamlPreferencesAttributeMapping | undefined;
|
|
37
37
|
metadataUrl?: string | undefined;
|
|
38
38
|
}>;
|
|
@@ -43,7 +43,7 @@ export declare class WorkflowService {
|
|
|
43
43
|
private readonly nodeTypes;
|
|
44
44
|
constructor(logger: Logger, sharedWorkflowRepository: SharedWorkflowRepository, workflowRepository: WorkflowRepository, workflowTagMappingRepository: WorkflowTagMappingRepository, binaryDataService: BinaryDataService, ownershipService: OwnershipService, tagService: TagService, workflowHistoryService: WorkflowHistoryService, externalHooks: ExternalHooks, activeWorkflowManager: ActiveWorkflowManager, roleService: RoleService, workflowSharingService: WorkflowSharingService, projectService: ProjectService, executionRepository: ExecutionRepository, eventService: EventService, globalConfig: GlobalConfig, folderRepository: FolderRepository, workflowFinderService: WorkflowFinderService, workflowPublishHistoryRepository: WorkflowPublishHistoryRepository, workflowValidationService: WorkflowValidationService, nodeTypes: NodeTypes);
|
|
45
45
|
getMany(user: User, options?: ListQuery.Options, includeScopes?: boolean, includeFolders?: boolean, onlySharedWithMe?: boolean, requiredScopes?: Scope[]): Promise<{
|
|
46
|
-
workflows: ((Pick<WorkflowEntity, "id"> & Partial<Pick<WorkflowEntity, "
|
|
46
|
+
workflows: ((Pick<WorkflowEntity, "id"> & Partial<Pick<WorkflowEntity, "description" | "tags" | "createdAt" | "updatedAt" | "name" | "active" | "versionId" | "activeVersionId">>) | (import("@n8n/db").Folder & {
|
|
47
47
|
workflowCount?: boolean;
|
|
48
48
|
subFolderCount?: number;
|
|
49
49
|
} & {
|
|
@@ -82,11 +82,11 @@ export declare class WorkflowService {
|
|
|
82
82
|
getWorkflowsWithNodesIncluded(user: User, nodeTypes: string[], includeNodes?: boolean): Promise<{
|
|
83
83
|
nodes?: INode[] | undefined;
|
|
84
84
|
id: string;
|
|
85
|
+
description?: string | null | undefined;
|
|
85
86
|
tags?: import("@n8n/db").TagEntity[] | undefined;
|
|
86
87
|
createdAt?: Date | undefined;
|
|
87
88
|
updatedAt?: Date | undefined;
|
|
88
89
|
name?: string | undefined;
|
|
89
|
-
description?: string | null | undefined;
|
|
90
90
|
active?: boolean | undefined;
|
|
91
91
|
versionId?: string | undefined;
|
|
92
92
|
activeVersionId?: string | null | undefined;
|
|
@@ -51,30 +51,30 @@ export declare class WorkflowsController {
|
|
|
51
51
|
sharedWithProjects: import("@n8n/db").SlimProject[];
|
|
52
52
|
usedCredentials?: import("@n8n/db").CredentialUsedByWorkflow[];
|
|
53
53
|
id: string;
|
|
54
|
+
description: string | null;
|
|
54
55
|
tags?: import("@n8n/db").TagEntity[] | undefined;
|
|
55
|
-
|
|
56
|
-
pinData?: import("@n8n/db").ISimplifiedPinData | undefined;
|
|
56
|
+
nodes: import("n8n-workflow").INode[];
|
|
57
57
|
createdAt: Date;
|
|
58
58
|
updatedAt: Date;
|
|
59
|
-
|
|
59
|
+
setUpdateDate: () => void;
|
|
60
60
|
name: string;
|
|
61
|
-
|
|
61
|
+
generateId: () => void;
|
|
62
62
|
active: boolean;
|
|
63
63
|
isArchived: boolean;
|
|
64
|
-
nodes: import("n8n-workflow").INode[];
|
|
65
64
|
connections: import("n8n-workflow").IConnections;
|
|
66
65
|
settings?: import("n8n-workflow").IWorkflowSettings | undefined;
|
|
67
|
-
|
|
68
|
-
activeVersionId: string | null;
|
|
69
|
-
versionCounter: number;
|
|
66
|
+
staticData?: import("n8n-workflow").IDataObject | undefined;
|
|
70
67
|
meta?: import("n8n-workflow").WorkflowFEMeta | undefined;
|
|
71
68
|
tagMappings: import("@n8n/db").WorkflowTagMapping[];
|
|
72
69
|
statistics: import("@n8n/db").WorkflowStatistics[];
|
|
70
|
+
pinData?: import("@n8n/db").ISimplifiedPinData | undefined;
|
|
71
|
+
versionId: string;
|
|
72
|
+
activeVersionId: string | null;
|
|
73
|
+
activeVersion: import("@n8n/db").WorkflowHistory | null;
|
|
74
|
+
versionCounter: number;
|
|
73
75
|
triggerCount: number;
|
|
74
76
|
parentFolder: import("@n8n/db").Folder | null;
|
|
75
77
|
testRuns: import("@n8n/db").TestRun[];
|
|
76
|
-
generateId: () => void;
|
|
77
|
-
setUpdateDate: () => void;
|
|
78
78
|
}>;
|
|
79
79
|
getAll(req: WorkflowRequest.GetMany, res: express.Response): Promise<void>;
|
|
80
80
|
getNewName(req: WorkflowRequest.NewName): Promise<{
|
|
@@ -88,30 +88,30 @@ export declare class WorkflowsController {
|
|
|
88
88
|
sharedWithProjects: import("@n8n/db").SlimProject[];
|
|
89
89
|
usedCredentials?: import("@n8n/db").CredentialUsedByWorkflow[];
|
|
90
90
|
id: string;
|
|
91
|
+
description: string | null;
|
|
91
92
|
tags?: import("@n8n/db").TagEntity[] | undefined;
|
|
92
|
-
|
|
93
|
-
pinData?: import("@n8n/db").ISimplifiedPinData | undefined;
|
|
93
|
+
nodes: import("n8n-workflow").INode[];
|
|
94
94
|
createdAt: Date;
|
|
95
95
|
updatedAt: Date;
|
|
96
|
-
|
|
96
|
+
setUpdateDate: () => void;
|
|
97
97
|
name: string;
|
|
98
|
-
|
|
98
|
+
generateId: () => void;
|
|
99
99
|
active: boolean;
|
|
100
100
|
isArchived: boolean;
|
|
101
|
-
nodes: import("n8n-workflow").INode[];
|
|
102
101
|
connections: import("n8n-workflow").IConnections;
|
|
103
102
|
settings?: import("n8n-workflow").IWorkflowSettings | undefined;
|
|
104
|
-
|
|
105
|
-
activeVersionId: string | null;
|
|
106
|
-
versionCounter: number;
|
|
103
|
+
staticData?: import("n8n-workflow").IDataObject | undefined;
|
|
107
104
|
meta?: import("n8n-workflow").WorkflowFEMeta | undefined;
|
|
108
105
|
tagMappings: import("@n8n/db").WorkflowTagMapping[];
|
|
109
106
|
statistics: import("@n8n/db").WorkflowStatistics[];
|
|
107
|
+
pinData?: import("@n8n/db").ISimplifiedPinData | undefined;
|
|
108
|
+
versionId: string;
|
|
109
|
+
activeVersionId: string | null;
|
|
110
|
+
activeVersion: import("@n8n/db").WorkflowHistory | null;
|
|
111
|
+
versionCounter: number;
|
|
110
112
|
triggerCount: number;
|
|
111
113
|
parentFolder: import("@n8n/db").Folder | null;
|
|
112
114
|
testRuns: import("@n8n/db").TestRun[];
|
|
113
|
-
generateId: () => void;
|
|
114
|
-
setUpdateDate: () => void;
|
|
115
115
|
} | {
|
|
116
116
|
scopes: import("@n8n/permissions").Scope[];
|
|
117
117
|
checksum: string;
|