@n8n/api-types 1.29.4 → 1.30.0
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/agent-builder-interactive.d.ts +6 -6
- package/dist/agents/agent-files.constants.d.ts +1 -1
- package/dist/agents/agent-files.constants.js +1 -1
- package/dist/agents/agent-files.constants.js.map +1 -1
- package/dist/agents/agent-json-config.schema.d.ts +685 -302
- package/dist/agents/agent-json-config.schema.js +45 -1
- package/dist/agents/agent-json-config.schema.js.map +1 -1
- package/dist/agents/dto.d.ts +8 -1
- package/dist/agents/dto.js +6 -1
- package/dist/agents/dto.js.map +1 -1
- package/dist/agents/model-providers.d.ts +22 -0
- package/dist/agents/provider-capabilities.d.ts +7 -0
- package/dist/agents/provider-capabilities.js +21 -8
- package/dist/agents/provider-capabilities.js.map +1 -1
- package/dist/agents/rich-card.schema.d.ts +158 -158
- package/dist/build.tsbuildinfo +1 -1
- package/dist/chat-hub.d.ts +24 -24
- package/dist/dto/api-keys/list-api-keys-query.dto.d.ts +1 -1
- package/dist/dto/breaking-changes/breaking-change-report-query.dto.d.ts +8 -0
- package/dist/dto/breaking-changes/breaking-change-report-query.dto.js +11 -0
- package/dist/dto/breaking-changes/breaking-change-report-query.dto.js.map +1 -0
- package/dist/dto/data-table/add-data-table-rows.dto.d.ts +1 -1
- package/dist/dto/data-table/list-data-table-query.dto.d.ts +4 -4
- package/dist/dto/evaluations/evaluation-config.dto.d.ts +78 -78
- package/dist/dto/evaluations/index.d.ts +1 -0
- package/dist/dto/evaluations/public-api-test-run.dto.d.ts +28 -0
- package/dist/dto/evaluations/public-api-test-run.dto.js +3 -0
- package/dist/dto/evaluations/public-api-test-run.dto.js.map +1 -0
- package/dist/dto/folders/list-folder-query.dto.d.ts +2 -2
- package/dist/dto/index.d.ts +2 -1
- package/dist/dto/index.js +8 -6
- package/dist/dto/index.js.map +1 -1
- package/dist/dto/instance-ai/instance-ai-confirm-request.dto.d.ts +9 -0
- package/dist/dto/instance-ai/instance-ai-confirm-request.dto.js +5 -0
- package/dist/dto/instance-ai/instance-ai-confirm-request.dto.js.map +1 -1
- package/dist/dto/instance-version-history/version-query.dto.d.ts +1 -1
- package/dist/dto/log-streaming/create-destination.dto.d.ts +102 -102
- package/dist/dto/oauth/oauth-client.dto.d.ts +4 -4
- package/dist/dto/owner/owner-setup-request.dto.d.ts +1 -1
- package/dist/dto/packages/export-package-request.dto.d.ts +13 -0
- package/dist/dto/packages/export-package-request.dto.js +13 -0
- package/dist/dto/packages/export-package-request.dto.js.map +1 -0
- package/dist/dto/roles/role-member.schema.d.ts +2 -2
- package/dist/dto/roles/role-members-response.dto.d.ts +3 -3
- package/dist/dto/roles/role-project-members-response.dto.d.ts +3 -3
- package/dist/dto/saml/saml-preferences.dto.d.ts +5 -5
- package/dist/dto/security-settings/security-settings.dto.d.ts +6 -6
- package/dist/dto/source-control/push-work-folder-request.dto.d.ts +6 -6
- package/dist/dto/user/users-list-filter.dto.d.ts +3 -3
- package/dist/dto/variables/update-variable-request.dto.d.ts +1 -1
- package/dist/dto/workflows/base-workflow.dto.d.ts +7 -7
- package/dist/dto/workflows/create-workflow.dto.d.ts +6 -6
- package/dist/dto/workflows/update-workflow.dto.d.ts +6 -6
- package/dist/frontend-settings.d.ts +2 -0
- package/dist/index.d.ts +4 -3
- package/dist/index.js +12 -3
- package/dist/index.js.map +1 -1
- package/dist/instance-registry-types.d.ts +22 -22
- package/dist/schemas/agent-run-reducer.d.ts +2 -0
- package/dist/schemas/agent-run-reducer.js +40 -1
- package/dist/schemas/agent-run-reducer.js.map +1 -1
- package/dist/schemas/breaking-changes.schema.d.ts +65 -65
- package/dist/schemas/breaking-changes.schema.js +2 -2
- package/dist/schemas/breaking-changes.schema.js.map +1 -1
- package/dist/schemas/credential-resolver.schema.d.ts +12 -12
- package/dist/schemas/credential-response.schema.d.ts +2 -2
- package/dist/schemas/data-table.schema.d.ts +2 -2
- package/dist/schemas/encryption-key.schema.d.ts +6 -6
- package/dist/schemas/instance-ai.schema.d.ts +337 -199
- package/dist/schemas/instance-ai.schema.js +34 -3
- package/dist/schemas/instance-ai.schema.js.map +1 -1
- package/dist/schemas/secrets-provider.schema.d.ts +12 -12
- package/dist/schemas/source-controlled-file.schema.d.ts +4 -4
- package/dist/schemas/usage.schema.d.ts +14 -14
- package/dist/schemas/user.schema.d.ts +18 -18
- package/dist/schemas/workflow-publication-status.schema.d.ts +38 -0
- package/dist/schemas/workflow-publication-status.schema.js +15 -0
- package/dist/schemas/workflow-publication-status.schema.js.map +1 -0
- package/package.json +9 -8
- package/dist/dto/packages/export-workflows-request.dto.d.ts +0 -9
- package/dist/dto/packages/export-workflows-request.dto.js +0 -11
- package/dist/dto/packages/export-workflows-request.dto.js.map +0 -1
|
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const breakingChangeRuleSeveritySchema: z.ZodEnum<["low", "medium", "critical"]>;
|
|
3
3
|
export type BreakingChangeRuleSeverity = z.infer<typeof breakingChangeRuleSeveritySchema>;
|
|
4
4
|
export declare const breakingChangeIssueLevelSchema: z.ZodEnum<["info", "warning", "error"]>;
|
|
5
|
-
declare const breakingChangeVersionSchema: z.ZodEnum<["v2"]>;
|
|
5
|
+
export declare const breakingChangeVersionSchema: z.ZodEnum<["v2", "v3"]>;
|
|
6
6
|
export type BreakingChangeVersion = z.infer<typeof breakingChangeVersionSchema>;
|
|
7
7
|
export declare const MIGRATION_REPORT_TARGET_VERSION: BreakingChangeVersion | null;
|
|
8
8
|
declare const recommendationSchema: z.ZodObject<{
|
|
@@ -23,11 +23,11 @@ declare const instanceIssueSchema: z.ZodObject<{
|
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
description: string;
|
|
25
25
|
title: string;
|
|
26
|
-
level: "
|
|
26
|
+
level: "error" | "info" | "warning";
|
|
27
27
|
}, {
|
|
28
28
|
description: string;
|
|
29
29
|
title: string;
|
|
30
|
-
level: "
|
|
30
|
+
level: "error" | "info" | "warning";
|
|
31
31
|
}>;
|
|
32
32
|
export type BreakingChangeInstanceIssue = z.infer<typeof instanceIssueSchema>;
|
|
33
33
|
declare const workflowIssueSchema: z.ZodObject<{
|
|
@@ -40,13 +40,13 @@ declare const workflowIssueSchema: z.ZodObject<{
|
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
41
|
description: string;
|
|
42
42
|
title: string;
|
|
43
|
-
level: "
|
|
43
|
+
level: "error" | "info" | "warning";
|
|
44
44
|
nodeName?: string | undefined;
|
|
45
45
|
nodeId?: string | undefined;
|
|
46
46
|
}, {
|
|
47
47
|
description: string;
|
|
48
48
|
title: string;
|
|
49
|
-
level: "
|
|
49
|
+
level: "error" | "info" | "warning";
|
|
50
50
|
nodeName?: string | undefined;
|
|
51
51
|
nodeId?: string | undefined;
|
|
52
52
|
}>;
|
|
@@ -68,13 +68,13 @@ declare const affectedWorkflowSchema: z.ZodObject<{
|
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
69
|
description: string;
|
|
70
70
|
title: string;
|
|
71
|
-
level: "
|
|
71
|
+
level: "error" | "info" | "warning";
|
|
72
72
|
nodeName?: string | undefined;
|
|
73
73
|
nodeId?: string | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
description: string;
|
|
76
76
|
title: string;
|
|
77
|
-
level: "
|
|
77
|
+
level: "error" | "info" | "warning";
|
|
78
78
|
nodeName?: string | undefined;
|
|
79
79
|
nodeId?: string | undefined;
|
|
80
80
|
}>, "many">;
|
|
@@ -82,12 +82,12 @@ declare const affectedWorkflowSchema: z.ZodObject<{
|
|
|
82
82
|
issues: {
|
|
83
83
|
description: string;
|
|
84
84
|
title: string;
|
|
85
|
-
level: "
|
|
85
|
+
level: "error" | "info" | "warning";
|
|
86
86
|
nodeName?: string | undefined;
|
|
87
87
|
nodeId?: string | undefined;
|
|
88
88
|
}[];
|
|
89
|
-
id: string;
|
|
90
89
|
name: string;
|
|
90
|
+
id: string;
|
|
91
91
|
active: boolean;
|
|
92
92
|
numberOfExecutions: number;
|
|
93
93
|
lastUpdatedAt: Date;
|
|
@@ -96,12 +96,12 @@ declare const affectedWorkflowSchema: z.ZodObject<{
|
|
|
96
96
|
issues: {
|
|
97
97
|
description: string;
|
|
98
98
|
title: string;
|
|
99
|
-
level: "
|
|
99
|
+
level: "error" | "info" | "warning";
|
|
100
100
|
nodeName?: string | undefined;
|
|
101
101
|
nodeId?: string | undefined;
|
|
102
102
|
}[];
|
|
103
|
-
id: string;
|
|
104
103
|
name: string;
|
|
104
|
+
id: string;
|
|
105
105
|
active: boolean;
|
|
106
106
|
numberOfExecutions: number;
|
|
107
107
|
lastUpdatedAt: Date;
|
|
@@ -132,11 +132,11 @@ declare const instanceRuleResultsSchema: z.ZodObject<{
|
|
|
132
132
|
}, "strip", z.ZodTypeAny, {
|
|
133
133
|
description: string;
|
|
134
134
|
title: string;
|
|
135
|
-
level: "
|
|
135
|
+
level: "error" | "info" | "warning";
|
|
136
136
|
}, {
|
|
137
137
|
description: string;
|
|
138
138
|
title: string;
|
|
139
|
-
level: "
|
|
139
|
+
level: "error" | "info" | "warning";
|
|
140
140
|
}>, "many">;
|
|
141
141
|
}, "strip", z.ZodTypeAny, {
|
|
142
142
|
ruleId: string;
|
|
@@ -150,7 +150,7 @@ declare const instanceRuleResultsSchema: z.ZodObject<{
|
|
|
150
150
|
instanceIssues: {
|
|
151
151
|
description: string;
|
|
152
152
|
title: string;
|
|
153
|
-
level: "
|
|
153
|
+
level: "error" | "info" | "warning";
|
|
154
154
|
}[];
|
|
155
155
|
ruleDocumentationUrl?: string | undefined;
|
|
156
156
|
}, {
|
|
@@ -165,7 +165,7 @@ declare const instanceRuleResultsSchema: z.ZodObject<{
|
|
|
165
165
|
instanceIssues: {
|
|
166
166
|
description: string;
|
|
167
167
|
title: string;
|
|
168
|
-
level: "
|
|
168
|
+
level: "error" | "info" | "warning";
|
|
169
169
|
}[];
|
|
170
170
|
ruleDocumentationUrl?: string | undefined;
|
|
171
171
|
}>;
|
|
@@ -204,13 +204,13 @@ declare const workflowRuleResultsSchema: z.ZodObject<{
|
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
205
|
description: string;
|
|
206
206
|
title: string;
|
|
207
|
-
level: "
|
|
207
|
+
level: "error" | "info" | "warning";
|
|
208
208
|
nodeName?: string | undefined;
|
|
209
209
|
nodeId?: string | undefined;
|
|
210
210
|
}, {
|
|
211
211
|
description: string;
|
|
212
212
|
title: string;
|
|
213
|
-
level: "
|
|
213
|
+
level: "error" | "info" | "warning";
|
|
214
214
|
nodeName?: string | undefined;
|
|
215
215
|
nodeId?: string | undefined;
|
|
216
216
|
}>, "many">;
|
|
@@ -218,12 +218,12 @@ declare const workflowRuleResultsSchema: z.ZodObject<{
|
|
|
218
218
|
issues: {
|
|
219
219
|
description: string;
|
|
220
220
|
title: string;
|
|
221
|
-
level: "
|
|
221
|
+
level: "error" | "info" | "warning";
|
|
222
222
|
nodeName?: string | undefined;
|
|
223
223
|
nodeId?: string | undefined;
|
|
224
224
|
}[];
|
|
225
|
-
id: string;
|
|
226
225
|
name: string;
|
|
226
|
+
id: string;
|
|
227
227
|
active: boolean;
|
|
228
228
|
numberOfExecutions: number;
|
|
229
229
|
lastUpdatedAt: Date;
|
|
@@ -232,12 +232,12 @@ declare const workflowRuleResultsSchema: z.ZodObject<{
|
|
|
232
232
|
issues: {
|
|
233
233
|
description: string;
|
|
234
234
|
title: string;
|
|
235
|
-
level: "
|
|
235
|
+
level: "error" | "info" | "warning";
|
|
236
236
|
nodeName?: string | undefined;
|
|
237
237
|
nodeId?: string | undefined;
|
|
238
238
|
}[];
|
|
239
|
-
id: string;
|
|
240
239
|
name: string;
|
|
240
|
+
id: string;
|
|
241
241
|
active: boolean;
|
|
242
242
|
numberOfExecutions: number;
|
|
243
243
|
lastUpdatedAt: Date;
|
|
@@ -256,12 +256,12 @@ declare const workflowRuleResultsSchema: z.ZodObject<{
|
|
|
256
256
|
issues: {
|
|
257
257
|
description: string;
|
|
258
258
|
title: string;
|
|
259
|
-
level: "
|
|
259
|
+
level: "error" | "info" | "warning";
|
|
260
260
|
nodeName?: string | undefined;
|
|
261
261
|
nodeId?: string | undefined;
|
|
262
262
|
}[];
|
|
263
|
-
id: string;
|
|
264
263
|
name: string;
|
|
264
|
+
id: string;
|
|
265
265
|
active: boolean;
|
|
266
266
|
numberOfExecutions: number;
|
|
267
267
|
lastUpdatedAt: Date;
|
|
@@ -281,12 +281,12 @@ declare const workflowRuleResultsSchema: z.ZodObject<{
|
|
|
281
281
|
issues: {
|
|
282
282
|
description: string;
|
|
283
283
|
title: string;
|
|
284
|
-
level: "
|
|
284
|
+
level: "error" | "info" | "warning";
|
|
285
285
|
nodeName?: string | undefined;
|
|
286
286
|
nodeId?: string | undefined;
|
|
287
287
|
}[];
|
|
288
|
-
id: string;
|
|
289
288
|
name: string;
|
|
289
|
+
id: string;
|
|
290
290
|
active: boolean;
|
|
291
291
|
numberOfExecutions: number;
|
|
292
292
|
lastUpdatedAt: Date;
|
|
@@ -324,11 +324,11 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
324
324
|
}, "strip", z.ZodTypeAny, {
|
|
325
325
|
description: string;
|
|
326
326
|
title: string;
|
|
327
|
-
level: "
|
|
327
|
+
level: "error" | "info" | "warning";
|
|
328
328
|
}, {
|
|
329
329
|
description: string;
|
|
330
330
|
title: string;
|
|
331
|
-
level: "
|
|
331
|
+
level: "error" | "info" | "warning";
|
|
332
332
|
}>, "many">;
|
|
333
333
|
}, "strip", z.ZodTypeAny, {
|
|
334
334
|
ruleId: string;
|
|
@@ -342,7 +342,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
342
342
|
instanceIssues: {
|
|
343
343
|
description: string;
|
|
344
344
|
title: string;
|
|
345
|
-
level: "
|
|
345
|
+
level: "error" | "info" | "warning";
|
|
346
346
|
}[];
|
|
347
347
|
ruleDocumentationUrl?: string | undefined;
|
|
348
348
|
}, {
|
|
@@ -357,7 +357,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
357
357
|
instanceIssues: {
|
|
358
358
|
description: string;
|
|
359
359
|
title: string;
|
|
360
|
-
level: "
|
|
360
|
+
level: "error" | "info" | "warning";
|
|
361
361
|
}[];
|
|
362
362
|
ruleDocumentationUrl?: string | undefined;
|
|
363
363
|
}>, "many">;
|
|
@@ -395,13 +395,13 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
395
395
|
}, "strip", z.ZodTypeAny, {
|
|
396
396
|
description: string;
|
|
397
397
|
title: string;
|
|
398
|
-
level: "
|
|
398
|
+
level: "error" | "info" | "warning";
|
|
399
399
|
nodeName?: string | undefined;
|
|
400
400
|
nodeId?: string | undefined;
|
|
401
401
|
}, {
|
|
402
402
|
description: string;
|
|
403
403
|
title: string;
|
|
404
|
-
level: "
|
|
404
|
+
level: "error" | "info" | "warning";
|
|
405
405
|
nodeName?: string | undefined;
|
|
406
406
|
nodeId?: string | undefined;
|
|
407
407
|
}>, "many">;
|
|
@@ -409,12 +409,12 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
409
409
|
issues: {
|
|
410
410
|
description: string;
|
|
411
411
|
title: string;
|
|
412
|
-
level: "
|
|
412
|
+
level: "error" | "info" | "warning";
|
|
413
413
|
nodeName?: string | undefined;
|
|
414
414
|
nodeId?: string | undefined;
|
|
415
415
|
}[];
|
|
416
|
-
id: string;
|
|
417
416
|
name: string;
|
|
417
|
+
id: string;
|
|
418
418
|
active: boolean;
|
|
419
419
|
numberOfExecutions: number;
|
|
420
420
|
lastUpdatedAt: Date;
|
|
@@ -423,12 +423,12 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
423
423
|
issues: {
|
|
424
424
|
description: string;
|
|
425
425
|
title: string;
|
|
426
|
-
level: "
|
|
426
|
+
level: "error" | "info" | "warning";
|
|
427
427
|
nodeName?: string | undefined;
|
|
428
428
|
nodeId?: string | undefined;
|
|
429
429
|
}[];
|
|
430
|
-
id: string;
|
|
431
430
|
name: string;
|
|
431
|
+
id: string;
|
|
432
432
|
active: boolean;
|
|
433
433
|
numberOfExecutions: number;
|
|
434
434
|
lastUpdatedAt: Date;
|
|
@@ -447,12 +447,12 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
447
447
|
issues: {
|
|
448
448
|
description: string;
|
|
449
449
|
title: string;
|
|
450
|
-
level: "
|
|
450
|
+
level: "error" | "info" | "warning";
|
|
451
451
|
nodeName?: string | undefined;
|
|
452
452
|
nodeId?: string | undefined;
|
|
453
453
|
}[];
|
|
454
|
-
id: string;
|
|
455
454
|
name: string;
|
|
455
|
+
id: string;
|
|
456
456
|
active: boolean;
|
|
457
457
|
numberOfExecutions: number;
|
|
458
458
|
lastUpdatedAt: Date;
|
|
@@ -472,12 +472,12 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
472
472
|
issues: {
|
|
473
473
|
description: string;
|
|
474
474
|
title: string;
|
|
475
|
-
level: "
|
|
475
|
+
level: "error" | "info" | "warning";
|
|
476
476
|
nodeName?: string | undefined;
|
|
477
477
|
nodeId?: string | undefined;
|
|
478
478
|
}[];
|
|
479
|
-
id: string;
|
|
480
479
|
name: string;
|
|
480
|
+
id: string;
|
|
481
481
|
active: boolean;
|
|
482
482
|
numberOfExecutions: number;
|
|
483
483
|
lastUpdatedAt: Date;
|
|
@@ -501,7 +501,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
501
501
|
instanceIssues: {
|
|
502
502
|
description: string;
|
|
503
503
|
title: string;
|
|
504
|
-
level: "
|
|
504
|
+
level: "error" | "info" | "warning";
|
|
505
505
|
}[];
|
|
506
506
|
ruleDocumentationUrl?: string | undefined;
|
|
507
507
|
}[];
|
|
@@ -518,12 +518,12 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
518
518
|
issues: {
|
|
519
519
|
description: string;
|
|
520
520
|
title: string;
|
|
521
|
-
level: "
|
|
521
|
+
level: "error" | "info" | "warning";
|
|
522
522
|
nodeName?: string | undefined;
|
|
523
523
|
nodeId?: string | undefined;
|
|
524
524
|
}[];
|
|
525
|
-
id: string;
|
|
526
525
|
name: string;
|
|
526
|
+
id: string;
|
|
527
527
|
active: boolean;
|
|
528
528
|
numberOfExecutions: number;
|
|
529
529
|
lastUpdatedAt: Date;
|
|
@@ -547,7 +547,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
547
547
|
instanceIssues: {
|
|
548
548
|
description: string;
|
|
549
549
|
title: string;
|
|
550
|
-
level: "
|
|
550
|
+
level: "error" | "info" | "warning";
|
|
551
551
|
}[];
|
|
552
552
|
ruleDocumentationUrl?: string | undefined;
|
|
553
553
|
}[];
|
|
@@ -564,12 +564,12 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
564
564
|
issues: {
|
|
565
565
|
description: string;
|
|
566
566
|
title: string;
|
|
567
|
-
level: "
|
|
567
|
+
level: "error" | "info" | "warning";
|
|
568
568
|
nodeName?: string | undefined;
|
|
569
569
|
nodeId?: string | undefined;
|
|
570
570
|
}[];
|
|
571
|
-
id: string;
|
|
572
571
|
name: string;
|
|
572
|
+
id: string;
|
|
573
573
|
active: boolean;
|
|
574
574
|
numberOfExecutions: number;
|
|
575
575
|
lastUpdatedAt: Date;
|
|
@@ -597,7 +597,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
597
597
|
instanceIssues: {
|
|
598
598
|
description: string;
|
|
599
599
|
title: string;
|
|
600
|
-
level: "
|
|
600
|
+
level: "error" | "info" | "warning";
|
|
601
601
|
}[];
|
|
602
602
|
ruleDocumentationUrl?: string | undefined;
|
|
603
603
|
}[];
|
|
@@ -614,12 +614,12 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
614
614
|
issues: {
|
|
615
615
|
description: string;
|
|
616
616
|
title: string;
|
|
617
|
-
level: "
|
|
617
|
+
level: "error" | "info" | "warning";
|
|
618
618
|
nodeName?: string | undefined;
|
|
619
619
|
nodeId?: string | undefined;
|
|
620
620
|
}[];
|
|
621
|
-
id: string;
|
|
622
621
|
name: string;
|
|
622
|
+
id: string;
|
|
623
623
|
active: boolean;
|
|
624
624
|
numberOfExecutions: number;
|
|
625
625
|
lastUpdatedAt: Date;
|
|
@@ -647,7 +647,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
647
647
|
instanceIssues: {
|
|
648
648
|
description: string;
|
|
649
649
|
title: string;
|
|
650
|
-
level: "
|
|
650
|
+
level: "error" | "info" | "warning";
|
|
651
651
|
}[];
|
|
652
652
|
ruleDocumentationUrl?: string | undefined;
|
|
653
653
|
}[];
|
|
@@ -664,12 +664,12 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
664
664
|
issues: {
|
|
665
665
|
description: string;
|
|
666
666
|
title: string;
|
|
667
|
-
level: "
|
|
667
|
+
level: "error" | "info" | "warning";
|
|
668
668
|
nodeName?: string | undefined;
|
|
669
669
|
nodeId?: string | undefined;
|
|
670
670
|
}[];
|
|
671
|
-
id: string;
|
|
672
671
|
name: string;
|
|
672
|
+
id: string;
|
|
673
673
|
active: boolean;
|
|
674
674
|
numberOfExecutions: number;
|
|
675
675
|
lastUpdatedAt: Date;
|
|
@@ -711,11 +711,11 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
711
711
|
}, "strip", z.ZodTypeAny, {
|
|
712
712
|
description: string;
|
|
713
713
|
title: string;
|
|
714
|
-
level: "
|
|
714
|
+
level: "error" | "info" | "warning";
|
|
715
715
|
}, {
|
|
716
716
|
description: string;
|
|
717
717
|
title: string;
|
|
718
|
-
level: "
|
|
718
|
+
level: "error" | "info" | "warning";
|
|
719
719
|
}>, "many">;
|
|
720
720
|
}, "strip", z.ZodTypeAny, {
|
|
721
721
|
ruleId: string;
|
|
@@ -729,7 +729,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
729
729
|
instanceIssues: {
|
|
730
730
|
description: string;
|
|
731
731
|
title: string;
|
|
732
|
-
level: "
|
|
732
|
+
level: "error" | "info" | "warning";
|
|
733
733
|
}[];
|
|
734
734
|
ruleDocumentationUrl?: string | undefined;
|
|
735
735
|
}, {
|
|
@@ -744,7 +744,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
744
744
|
instanceIssues: {
|
|
745
745
|
description: string;
|
|
746
746
|
title: string;
|
|
747
|
-
level: "
|
|
747
|
+
level: "error" | "info" | "warning";
|
|
748
748
|
}[];
|
|
749
749
|
ruleDocumentationUrl?: string | undefined;
|
|
750
750
|
}>, "many">;
|
|
@@ -782,13 +782,13 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
782
782
|
}, "strip", z.ZodTypeAny, {
|
|
783
783
|
description: string;
|
|
784
784
|
title: string;
|
|
785
|
-
level: "
|
|
785
|
+
level: "error" | "info" | "warning";
|
|
786
786
|
nodeName?: string | undefined;
|
|
787
787
|
nodeId?: string | undefined;
|
|
788
788
|
}, {
|
|
789
789
|
description: string;
|
|
790
790
|
title: string;
|
|
791
|
-
level: "
|
|
791
|
+
level: "error" | "info" | "warning";
|
|
792
792
|
nodeName?: string | undefined;
|
|
793
793
|
nodeId?: string | undefined;
|
|
794
794
|
}>, "many">;
|
|
@@ -796,12 +796,12 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
796
796
|
issues: {
|
|
797
797
|
description: string;
|
|
798
798
|
title: string;
|
|
799
|
-
level: "
|
|
799
|
+
level: "error" | "info" | "warning";
|
|
800
800
|
nodeName?: string | undefined;
|
|
801
801
|
nodeId?: string | undefined;
|
|
802
802
|
}[];
|
|
803
|
-
id: string;
|
|
804
803
|
name: string;
|
|
804
|
+
id: string;
|
|
805
805
|
active: boolean;
|
|
806
806
|
numberOfExecutions: number;
|
|
807
807
|
lastUpdatedAt: Date;
|
|
@@ -810,12 +810,12 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
810
810
|
issues: {
|
|
811
811
|
description: string;
|
|
812
812
|
title: string;
|
|
813
|
-
level: "
|
|
813
|
+
level: "error" | "info" | "warning";
|
|
814
814
|
nodeName?: string | undefined;
|
|
815
815
|
nodeId?: string | undefined;
|
|
816
816
|
}[];
|
|
817
|
-
id: string;
|
|
818
817
|
name: string;
|
|
818
|
+
id: string;
|
|
819
819
|
active: boolean;
|
|
820
820
|
numberOfExecutions: number;
|
|
821
821
|
lastUpdatedAt: Date;
|
|
@@ -862,7 +862,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
862
862
|
instanceIssues: {
|
|
863
863
|
description: string;
|
|
864
864
|
title: string;
|
|
865
|
-
level: "
|
|
865
|
+
level: "error" | "info" | "warning";
|
|
866
866
|
}[];
|
|
867
867
|
ruleDocumentationUrl?: string | undefined;
|
|
868
868
|
}[];
|
|
@@ -894,7 +894,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
894
894
|
instanceIssues: {
|
|
895
895
|
description: string;
|
|
896
896
|
title: string;
|
|
897
|
-
level: "
|
|
897
|
+
level: "error" | "info" | "warning";
|
|
898
898
|
}[];
|
|
899
899
|
ruleDocumentationUrl?: string | undefined;
|
|
900
900
|
}[];
|
|
@@ -930,7 +930,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
930
930
|
instanceIssues: {
|
|
931
931
|
description: string;
|
|
932
932
|
title: string;
|
|
933
|
-
level: "
|
|
933
|
+
level: "error" | "info" | "warning";
|
|
934
934
|
}[];
|
|
935
935
|
ruleDocumentationUrl?: string | undefined;
|
|
936
936
|
}[];
|
|
@@ -966,7 +966,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
966
966
|
instanceIssues: {
|
|
967
967
|
description: string;
|
|
968
968
|
title: string;
|
|
969
|
-
level: "
|
|
969
|
+
level: "error" | "info" | "warning";
|
|
970
970
|
}[];
|
|
971
971
|
ruleDocumentationUrl?: string | undefined;
|
|
972
972
|
}[];
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MIGRATION_REPORT_TARGET_VERSION = exports.breakingChangeIssueLevelSchema = exports.breakingChangeRuleSeveritySchema = void 0;
|
|
3
|
+
exports.MIGRATION_REPORT_TARGET_VERSION = exports.breakingChangeVersionSchema = exports.breakingChangeIssueLevelSchema = exports.breakingChangeRuleSeveritySchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
exports.breakingChangeRuleSeveritySchema = zod_1.z.enum(['low', 'medium', 'critical']);
|
|
6
6
|
exports.breakingChangeIssueLevelSchema = zod_1.z.enum(['info', 'warning', 'error']);
|
|
7
|
-
|
|
7
|
+
exports.breakingChangeVersionSchema = zod_1.z.enum(['v2', 'v3']);
|
|
8
8
|
exports.MIGRATION_REPORT_TARGET_VERSION = null;
|
|
9
9
|
const recommendationSchema = zod_1.z.object({
|
|
10
10
|
action: zod_1.z.string(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"breaking-changes.schema.js","sourceRoot":"","sources":["../../src/schemas/breaking-changes.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAGX,QAAA,gCAAgC,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC,CAAC;AAGzE,QAAA,8BAA8B,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"breaking-changes.schema.js","sourceRoot":"","sources":["../../src/schemas/breaking-changes.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,16 +14,16 @@ export declare const credentialResolverSchema: z.ZodObject<{
|
|
|
14
14
|
updatedAt: z.ZodDate;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
type: string;
|
|
17
|
-
id: string;
|
|
18
17
|
name: string;
|
|
18
|
+
id: string;
|
|
19
19
|
config: string;
|
|
20
20
|
createdAt: Date;
|
|
21
21
|
updatedAt: Date;
|
|
22
22
|
decryptedConfig?: Record<string, unknown> | undefined;
|
|
23
23
|
}, {
|
|
24
24
|
type: string;
|
|
25
|
-
id: string;
|
|
26
25
|
name: string;
|
|
26
|
+
id: string;
|
|
27
27
|
config: string;
|
|
28
28
|
createdAt: Date;
|
|
29
29
|
updatedAt: Date;
|
|
@@ -37,13 +37,13 @@ export declare const credentialResolverTypeSchema: z.ZodObject<{
|
|
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
|
38
38
|
name: string;
|
|
39
39
|
displayName: string;
|
|
40
|
-
description?: string | undefined;
|
|
41
40
|
options?: Record<string, unknown>[] | undefined;
|
|
41
|
+
description?: string | undefined;
|
|
42
42
|
}, {
|
|
43
43
|
name: string;
|
|
44
44
|
displayName: string;
|
|
45
|
-
description?: string | undefined;
|
|
46
45
|
options?: Record<string, unknown>[] | undefined;
|
|
46
|
+
description?: string | undefined;
|
|
47
47
|
}>;
|
|
48
48
|
export declare const credentialResolverTypesSchema: z.ZodArray<z.ZodObject<{
|
|
49
49
|
name: z.ZodString;
|
|
@@ -53,13 +53,13 @@ export declare const credentialResolverTypesSchema: z.ZodArray<z.ZodObject<{
|
|
|
53
53
|
}, "strip", z.ZodTypeAny, {
|
|
54
54
|
name: string;
|
|
55
55
|
displayName: string;
|
|
56
|
-
description?: string | undefined;
|
|
57
56
|
options?: Record<string, unknown>[] | undefined;
|
|
57
|
+
description?: string | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
name: string;
|
|
60
60
|
displayName: string;
|
|
61
|
-
description?: string | undefined;
|
|
62
61
|
options?: Record<string, unknown>[] | undefined;
|
|
62
|
+
description?: string | undefined;
|
|
63
63
|
}>, "many">;
|
|
64
64
|
export type CredentialResolverType = z.infer<typeof credentialResolverTypeSchema>;
|
|
65
65
|
export declare const credentialResolversSchema: z.ZodArray<z.ZodObject<{
|
|
@@ -72,16 +72,16 @@ export declare const credentialResolversSchema: z.ZodArray<z.ZodObject<{
|
|
|
72
72
|
updatedAt: z.ZodDate;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
74
|
type: string;
|
|
75
|
-
id: string;
|
|
76
75
|
name: string;
|
|
76
|
+
id: string;
|
|
77
77
|
config: string;
|
|
78
78
|
createdAt: Date;
|
|
79
79
|
updatedAt: Date;
|
|
80
80
|
decryptedConfig?: Record<string, unknown> | undefined;
|
|
81
81
|
}, {
|
|
82
82
|
type: string;
|
|
83
|
-
id: string;
|
|
84
83
|
name: string;
|
|
84
|
+
id: string;
|
|
85
85
|
config: string;
|
|
86
86
|
createdAt: Date;
|
|
87
87
|
updatedAt: Date;
|
|
@@ -92,20 +92,20 @@ export declare const credentialResolverAffectedWorkflowSchema: z.ZodObject<{
|
|
|
92
92
|
id: z.ZodString;
|
|
93
93
|
name: z.ZodString;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
|
-
id: string;
|
|
96
95
|
name: string;
|
|
97
|
-
}, {
|
|
98
96
|
id: string;
|
|
97
|
+
}, {
|
|
99
98
|
name: string;
|
|
99
|
+
id: string;
|
|
100
100
|
}>;
|
|
101
101
|
export declare const credentialResolverAffectedWorkflowsSchema: z.ZodArray<z.ZodObject<{
|
|
102
102
|
id: z.ZodString;
|
|
103
103
|
name: z.ZodString;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
|
-
id: string;
|
|
106
105
|
name: string;
|
|
107
|
-
}, {
|
|
108
106
|
id: string;
|
|
107
|
+
}, {
|
|
109
108
|
name: string;
|
|
109
|
+
id: string;
|
|
110
110
|
}>, "many">;
|
|
111
111
|
export type CredentialResolverAffectedWorkflow = z.infer<typeof credentialResolverAffectedWorkflowSchema>;
|
|
@@ -12,8 +12,8 @@ export declare const publicApiCredentialResponseSchema: z.ZodObject<{
|
|
|
12
12
|
updatedAt: z.ZodDate;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
14
|
type: string;
|
|
15
|
-
id: string;
|
|
16
15
|
name: string;
|
|
16
|
+
id: string;
|
|
17
17
|
createdAt: Date;
|
|
18
18
|
updatedAt: Date;
|
|
19
19
|
isGlobal: boolean;
|
|
@@ -23,8 +23,8 @@ export declare const publicApiCredentialResponseSchema: z.ZodObject<{
|
|
|
23
23
|
resolverId?: string | null | undefined;
|
|
24
24
|
}, {
|
|
25
25
|
type: string;
|
|
26
|
-
id: string;
|
|
27
26
|
name: string;
|
|
27
|
+
id: string;
|
|
28
28
|
createdAt: Date;
|
|
29
29
|
updatedAt: Date;
|
|
30
30
|
isGlobal: boolean;
|
|
@@ -62,8 +62,8 @@ export declare const dataTableSchema: z.ZodObject<{
|
|
|
62
62
|
createdAt: z.ZodString;
|
|
63
63
|
updatedAt: z.ZodString;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
|
-
id: string;
|
|
66
65
|
name: string;
|
|
66
|
+
id: string;
|
|
67
67
|
createdAt: string;
|
|
68
68
|
updatedAt: string;
|
|
69
69
|
columns: {
|
|
@@ -73,8 +73,8 @@ export declare const dataTableSchema: z.ZodObject<{
|
|
|
73
73
|
index?: number | undefined;
|
|
74
74
|
}[];
|
|
75
75
|
}, {
|
|
76
|
-
id: string;
|
|
77
76
|
name: string;
|
|
77
|
+
id: string;
|
|
78
78
|
createdAt: string;
|
|
79
79
|
updatedAt: string;
|
|
80
80
|
columns: {
|