@n8n/api-types 0.53.0 → 0.54.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/build.tsbuildinfo +1 -1
- package/dist/dto/index.d.ts +2 -0
- package/dist/dto/index.js +8 -2
- package/dist/dto/index.js.map +1 -1
- package/dist/dto/oauth/index.d.ts +1 -0
- package/dist/dto/oauth/index.js +18 -0
- package/dist/dto/oauth/index.js.map +1 -0
- package/dist/dto/oauth/oauth-client.dto.d.ts +50 -0
- package/dist/dto/oauth/oauth-client.dto.js +37 -0
- package/dist/dto/oauth/oauth-client.dto.js.map +1 -0
- package/dist/dto/provisioning/config.dto.d.ts +0 -2
- package/dist/dto/provisioning/config.dto.js +0 -5
- package/dist/dto/provisioning/config.dto.js.map +1 -1
- package/dist/dto/saml/saml-preferences.dto.d.ts +11 -19
- package/dist/dto/saml/saml-preferences.dto.js +12 -10
- package/dist/dto/saml/saml-preferences.dto.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/schemas/breaking-changes.schema.d.ts +981 -0
- package/dist/schemas/breaking-changes.schema.js +69 -0
- package/dist/schemas/breaking-changes.schema.js.map +1 -0
- package/package.json +4 -4
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.breakingChangeIssueLevelSchema = exports.breakingChangeRuleSeveritySchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.breakingChangeRuleSeveritySchema = zod_1.z.enum(['low', 'medium', 'high', 'critical']);
|
|
6
|
+
exports.breakingChangeIssueLevelSchema = zod_1.z.enum(['info', 'warning', 'error']);
|
|
7
|
+
const recommendationSchema = zod_1.z.object({
|
|
8
|
+
action: zod_1.z.string(),
|
|
9
|
+
description: zod_1.z.string(),
|
|
10
|
+
});
|
|
11
|
+
const instanceIssueSchema = zod_1.z.object({
|
|
12
|
+
title: zod_1.z.string(),
|
|
13
|
+
description: zod_1.z.string(),
|
|
14
|
+
level: exports.breakingChangeIssueLevelSchema,
|
|
15
|
+
});
|
|
16
|
+
const workflowIssueSchema = instanceIssueSchema.extend({
|
|
17
|
+
nodeId: zod_1.z.string().optional(),
|
|
18
|
+
nodeName: zod_1.z.string().optional(),
|
|
19
|
+
});
|
|
20
|
+
const affectedWorkflowSchema = zod_1.z.object({
|
|
21
|
+
id: zod_1.z.string(),
|
|
22
|
+
name: zod_1.z.string(),
|
|
23
|
+
active: zod_1.z.boolean(),
|
|
24
|
+
numberOfExecutions: zod_1.z.number(),
|
|
25
|
+
lastUpdatedAt: zod_1.z.date(),
|
|
26
|
+
lastExecutedAt: zod_1.z.date().nullable(),
|
|
27
|
+
issues: zod_1.z.array(workflowIssueSchema),
|
|
28
|
+
});
|
|
29
|
+
const ruleResultBaseSchema = zod_1.z.object({
|
|
30
|
+
ruleId: zod_1.z.string(),
|
|
31
|
+
ruleTitle: zod_1.z.string(),
|
|
32
|
+
ruleDescription: zod_1.z.string(),
|
|
33
|
+
ruleSeverity: exports.breakingChangeRuleSeveritySchema,
|
|
34
|
+
ruleDocumentationUrl: zod_1.z.string().optional(),
|
|
35
|
+
recommendations: zod_1.z.array(recommendationSchema),
|
|
36
|
+
});
|
|
37
|
+
const instanceRuleResultsSchema = ruleResultBaseSchema.extend({
|
|
38
|
+
instanceIssues: zod_1.z.array(instanceIssueSchema),
|
|
39
|
+
});
|
|
40
|
+
const workflowRuleResultsSchema = ruleResultBaseSchema.extend({
|
|
41
|
+
affectedWorkflows: zod_1.z.array(affectedWorkflowSchema),
|
|
42
|
+
});
|
|
43
|
+
const breakingChangeReportDataSchema = {
|
|
44
|
+
generatedAt: zod_1.z.date(),
|
|
45
|
+
targetVersion: zod_1.z.string(),
|
|
46
|
+
currentVersion: zod_1.z.string(),
|
|
47
|
+
instanceResults: zod_1.z.array(instanceRuleResultsSchema),
|
|
48
|
+
workflowResults: zod_1.z.array(workflowRuleResultsSchema),
|
|
49
|
+
};
|
|
50
|
+
const breakingChangeReportSchema = zod_1.z.object(breakingChangeReportDataSchema).strict();
|
|
51
|
+
const breakingChangeLightReportDataSchema = {
|
|
52
|
+
generatedAt: zod_1.z.date(),
|
|
53
|
+
targetVersion: zod_1.z.string(),
|
|
54
|
+
currentVersion: zod_1.z.string(),
|
|
55
|
+
instanceResults: zod_1.z.array(instanceRuleResultsSchema),
|
|
56
|
+
workflowResults: zod_1.z.array(workflowRuleResultsSchema.omit({ affectedWorkflows: true }).extend({
|
|
57
|
+
nbAffectedWorkflows: zod_1.z.number(),
|
|
58
|
+
})),
|
|
59
|
+
};
|
|
60
|
+
const breakingChangeLightReportSchema = zod_1.z.object(breakingChangeLightReportDataSchema).strict();
|
|
61
|
+
const breakingChangeReportResultDataSchema = zod_1.z.object({
|
|
62
|
+
report: breakingChangeReportSchema,
|
|
63
|
+
shouldCache: zod_1.z.boolean(),
|
|
64
|
+
});
|
|
65
|
+
const breakingChangeLightReportResultDataSchema = zod_1.z.object({
|
|
66
|
+
report: breakingChangeLightReportSchema,
|
|
67
|
+
shouldCache: zod_1.z.boolean(),
|
|
68
|
+
});
|
|
69
|
+
//# sourceMappingURL=breaking-changes.schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"breaking-changes.schema.js","sourceRoot":"","sources":["../../src/schemas/breaking-changes.schema.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/api-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.54.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
"LICENSE_EE.md"
|
|
11
11
|
],
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@n8n/config": "1.
|
|
13
|
+
"@n8n/config": "1.62.0",
|
|
14
14
|
"@n8n/typescript-config": "1.3.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"xss": "1.0.15",
|
|
18
18
|
"zod": "3.25.67",
|
|
19
19
|
"zod-class": "0.0.16",
|
|
20
|
-
"n8n-workflow": "1.
|
|
21
|
-
"@n8n/permissions": "0.
|
|
20
|
+
"n8n-workflow": "1.117.0",
|
|
21
|
+
"@n8n/permissions": "0.42.0"
|
|
22
22
|
},
|
|
23
23
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
24
24
|
"homepage": "https://n8n.io",
|