@n8n/api-types 1.10.1 → 1.11.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/chat-hub.d.ts +6 -2
- package/dist/dto/ai/ai-build-request.dto.d.ts +3 -3
- package/dist/dto/data-table/list-data-table-query.dto.d.ts +5 -5
- package/dist/dto/data-table/list-data-table-query.dto.js +2 -0
- package/dist/dto/data-table/list-data-table-query.dto.js.map +1 -1
- package/dist/dto/executions/execution-redaction-query.dto.d.ts +9 -0
- package/dist/dto/executions/execution-redaction-query.dto.js +11 -0
- package/dist/dto/executions/execution-redaction-query.dto.js.map +1 -0
- package/dist/dto/index.d.ts +3 -0
- package/dist/dto/index.js +8 -2
- package/dist/dto/index.js.map +1 -1
- package/dist/dto/roles/role-assignments-response.dto.d.ts +89 -0
- package/dist/dto/roles/role-assignments-response.dto.js +24 -0
- package/dist/dto/roles/role-assignments-response.dto.js.map +1 -0
- package/dist/dto/roles/role-project-members-response.dto.d.ts +54 -0
- package/dist/dto/roles/role-project-members-response.dto.js +18 -0
- package/dist/dto/roles/role-project-members-response.dto.js.map +1 -0
- package/dist/dto/source-control/push-work-folder-request.dto.d.ts +6 -6
- package/dist/frontend-settings.d.ts +5 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/instance-registry-types.d.ts +221 -0
- package/dist/instance-registry-types.js +35 -0
- package/dist/instance-registry-types.js.map +1 -0
- package/dist/schemas/breaking-changes.schema.d.ts +1 -0
- package/dist/schemas/breaking-changes.schema.js +2 -1
- package/dist/schemas/breaking-changes.schema.js.map +1 -1
- package/dist/schemas/data-table.schema.d.ts +1 -0
- package/dist/schemas/data-table.schema.js.map +1 -1
- package/dist/schemas/secrets-provider.schema.d.ts +6 -3
- package/dist/schemas/secrets-provider.schema.js.map +1 -1
- package/dist/schemas/source-controlled-file.schema.d.ts +4 -4
- package/package.json +5 -5
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const instanceRegistrationSchema: z.ZodDiscriminatedUnion<"schemaVersion", [z.ZodObject<{
|
|
3
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
4
|
+
instanceKey: z.ZodString;
|
|
5
|
+
hostId: z.ZodString;
|
|
6
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
7
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
8
|
+
version: z.ZodString;
|
|
9
|
+
registeredAt: z.ZodNumber;
|
|
10
|
+
lastSeen: z.ZodNumber;
|
|
11
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
12
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
13
|
+
instanceKey: z.ZodString;
|
|
14
|
+
hostId: z.ZodString;
|
|
15
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
16
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
17
|
+
version: z.ZodString;
|
|
18
|
+
registeredAt: z.ZodNumber;
|
|
19
|
+
lastSeen: z.ZodNumber;
|
|
20
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
21
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
22
|
+
instanceKey: z.ZodString;
|
|
23
|
+
hostId: z.ZodString;
|
|
24
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
25
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
26
|
+
version: z.ZodString;
|
|
27
|
+
registeredAt: z.ZodNumber;
|
|
28
|
+
lastSeen: z.ZodNumber;
|
|
29
|
+
}, z.ZodTypeAny, "passthrough">>]>;
|
|
30
|
+
export type InstanceRegistration = z.infer<typeof instanceRegistrationSchema>;
|
|
31
|
+
declare const ClusterVersionMismatchSchema: z.ZodObject<{
|
|
32
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
33
|
+
version: z.ZodString;
|
|
34
|
+
instances: z.ZodArray<z.ZodObject<{
|
|
35
|
+
instanceKey: z.ZodString;
|
|
36
|
+
hostId: z.ZodString;
|
|
37
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
38
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
39
|
+
}, "strip", z.ZodTypeAny, {
|
|
40
|
+
instanceKey: string;
|
|
41
|
+
hostId: string;
|
|
42
|
+
instanceType: "webhook" | "main" | "worker";
|
|
43
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
44
|
+
}, {
|
|
45
|
+
instanceKey: string;
|
|
46
|
+
hostId: string;
|
|
47
|
+
instanceType: "webhook" | "main" | "worker";
|
|
48
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
49
|
+
}>, "many">;
|
|
50
|
+
}, "strip", z.ZodTypeAny, {
|
|
51
|
+
version: string;
|
|
52
|
+
instances: {
|
|
53
|
+
instanceKey: string;
|
|
54
|
+
hostId: string;
|
|
55
|
+
instanceType: "webhook" | "main" | "worker";
|
|
56
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
57
|
+
}[];
|
|
58
|
+
}, {
|
|
59
|
+
version: string;
|
|
60
|
+
instances: {
|
|
61
|
+
instanceKey: string;
|
|
62
|
+
hostId: string;
|
|
63
|
+
instanceType: "webhook" | "main" | "worker";
|
|
64
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
65
|
+
}[];
|
|
66
|
+
}>, "many">;
|
|
67
|
+
}, "strip", z.ZodTypeAny, {
|
|
68
|
+
versions: {
|
|
69
|
+
version: string;
|
|
70
|
+
instances: {
|
|
71
|
+
instanceKey: string;
|
|
72
|
+
hostId: string;
|
|
73
|
+
instanceType: "webhook" | "main" | "worker";
|
|
74
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
75
|
+
}[];
|
|
76
|
+
}[];
|
|
77
|
+
}, {
|
|
78
|
+
versions: {
|
|
79
|
+
version: string;
|
|
80
|
+
instances: {
|
|
81
|
+
instanceKey: string;
|
|
82
|
+
hostId: string;
|
|
83
|
+
instanceType: "webhook" | "main" | "worker";
|
|
84
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
85
|
+
}[];
|
|
86
|
+
}[];
|
|
87
|
+
}>;
|
|
88
|
+
export type ClusterVersionMismatch = z.infer<typeof ClusterVersionMismatchSchema>;
|
|
89
|
+
declare const ClusterInfoResponseSchema: z.ZodObject<{
|
|
90
|
+
instances: z.ZodArray<z.ZodDiscriminatedUnion<"schemaVersion", [z.ZodObject<{
|
|
91
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
92
|
+
instanceKey: z.ZodString;
|
|
93
|
+
hostId: z.ZodString;
|
|
94
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
95
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
96
|
+
version: z.ZodString;
|
|
97
|
+
registeredAt: z.ZodNumber;
|
|
98
|
+
lastSeen: z.ZodNumber;
|
|
99
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
100
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
101
|
+
instanceKey: z.ZodString;
|
|
102
|
+
hostId: z.ZodString;
|
|
103
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
104
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
105
|
+
version: z.ZodString;
|
|
106
|
+
registeredAt: z.ZodNumber;
|
|
107
|
+
lastSeen: z.ZodNumber;
|
|
108
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
109
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
110
|
+
instanceKey: z.ZodString;
|
|
111
|
+
hostId: z.ZodString;
|
|
112
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
113
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
114
|
+
version: z.ZodString;
|
|
115
|
+
registeredAt: z.ZodNumber;
|
|
116
|
+
lastSeen: z.ZodNumber;
|
|
117
|
+
}, z.ZodTypeAny, "passthrough">>]>, "many">;
|
|
118
|
+
versionMismatch: z.ZodNullable<z.ZodObject<{
|
|
119
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
120
|
+
version: z.ZodString;
|
|
121
|
+
instances: z.ZodArray<z.ZodObject<{
|
|
122
|
+
instanceKey: z.ZodString;
|
|
123
|
+
hostId: z.ZodString;
|
|
124
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
125
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
126
|
+
}, "strip", z.ZodTypeAny, {
|
|
127
|
+
instanceKey: string;
|
|
128
|
+
hostId: string;
|
|
129
|
+
instanceType: "webhook" | "main" | "worker";
|
|
130
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
131
|
+
}, {
|
|
132
|
+
instanceKey: string;
|
|
133
|
+
hostId: string;
|
|
134
|
+
instanceType: "webhook" | "main" | "worker";
|
|
135
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
136
|
+
}>, "many">;
|
|
137
|
+
}, "strip", z.ZodTypeAny, {
|
|
138
|
+
version: string;
|
|
139
|
+
instances: {
|
|
140
|
+
instanceKey: string;
|
|
141
|
+
hostId: string;
|
|
142
|
+
instanceType: "webhook" | "main" | "worker";
|
|
143
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
144
|
+
}[];
|
|
145
|
+
}, {
|
|
146
|
+
version: string;
|
|
147
|
+
instances: {
|
|
148
|
+
instanceKey: string;
|
|
149
|
+
hostId: string;
|
|
150
|
+
instanceType: "webhook" | "main" | "worker";
|
|
151
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
152
|
+
}[];
|
|
153
|
+
}>, "many">;
|
|
154
|
+
}, "strip", z.ZodTypeAny, {
|
|
155
|
+
versions: {
|
|
156
|
+
version: string;
|
|
157
|
+
instances: {
|
|
158
|
+
instanceKey: string;
|
|
159
|
+
hostId: string;
|
|
160
|
+
instanceType: "webhook" | "main" | "worker";
|
|
161
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
162
|
+
}[];
|
|
163
|
+
}[];
|
|
164
|
+
}, {
|
|
165
|
+
versions: {
|
|
166
|
+
version: string;
|
|
167
|
+
instances: {
|
|
168
|
+
instanceKey: string;
|
|
169
|
+
hostId: string;
|
|
170
|
+
instanceType: "webhook" | "main" | "worker";
|
|
171
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
172
|
+
}[];
|
|
173
|
+
}[];
|
|
174
|
+
}>>;
|
|
175
|
+
}, "strip", z.ZodTypeAny, {
|
|
176
|
+
instances: z.objectOutputType<{
|
|
177
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
178
|
+
instanceKey: z.ZodString;
|
|
179
|
+
hostId: z.ZodString;
|
|
180
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
181
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
182
|
+
version: z.ZodString;
|
|
183
|
+
registeredAt: z.ZodNumber;
|
|
184
|
+
lastSeen: z.ZodNumber;
|
|
185
|
+
}, z.ZodTypeAny, "passthrough">[];
|
|
186
|
+
versionMismatch: {
|
|
187
|
+
versions: {
|
|
188
|
+
version: string;
|
|
189
|
+
instances: {
|
|
190
|
+
instanceKey: string;
|
|
191
|
+
hostId: string;
|
|
192
|
+
instanceType: "webhook" | "main" | "worker";
|
|
193
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
194
|
+
}[];
|
|
195
|
+
}[];
|
|
196
|
+
} | null;
|
|
197
|
+
}, {
|
|
198
|
+
instances: z.objectInputType<{
|
|
199
|
+
schemaVersion: z.ZodLiteral<1>;
|
|
200
|
+
instanceKey: z.ZodString;
|
|
201
|
+
hostId: z.ZodString;
|
|
202
|
+
instanceType: z.ZodEnum<["main", "worker", "webhook"]>;
|
|
203
|
+
instanceRole: z.ZodEnum<["leader", "follower", "unset"]>;
|
|
204
|
+
version: z.ZodString;
|
|
205
|
+
registeredAt: z.ZodNumber;
|
|
206
|
+
lastSeen: z.ZodNumber;
|
|
207
|
+
}, z.ZodTypeAny, "passthrough">[];
|
|
208
|
+
versionMismatch: {
|
|
209
|
+
versions: {
|
|
210
|
+
version: string;
|
|
211
|
+
instances: {
|
|
212
|
+
instanceKey: string;
|
|
213
|
+
hostId: string;
|
|
214
|
+
instanceType: "webhook" | "main" | "worker";
|
|
215
|
+
instanceRole: "leader" | "follower" | "unset";
|
|
216
|
+
}[];
|
|
217
|
+
}[];
|
|
218
|
+
} | null;
|
|
219
|
+
}>;
|
|
220
|
+
export type ClusterInfoResponse = z.infer<typeof ClusterInfoResponseSchema>;
|
|
221
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.instanceRegistrationSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const InstanceRegistrationSchemaV1 = zod_1.z
|
|
6
|
+
.object({
|
|
7
|
+
schemaVersion: zod_1.z.literal(1),
|
|
8
|
+
instanceKey: zod_1.z.string(),
|
|
9
|
+
hostId: zod_1.z.string(),
|
|
10
|
+
instanceType: zod_1.z.enum(['main', 'worker', 'webhook']),
|
|
11
|
+
instanceRole: zod_1.z.enum(['leader', 'follower', 'unset']),
|
|
12
|
+
version: zod_1.z.string(),
|
|
13
|
+
registeredAt: zod_1.z.number(),
|
|
14
|
+
lastSeen: zod_1.z.number(),
|
|
15
|
+
})
|
|
16
|
+
.passthrough();
|
|
17
|
+
exports.instanceRegistrationSchema = zod_1.z.discriminatedUnion('schemaVersion', [
|
|
18
|
+
InstanceRegistrationSchemaV1,
|
|
19
|
+
]);
|
|
20
|
+
const ClusterVersionMismatchSchema = zod_1.z.object({
|
|
21
|
+
versions: zod_1.z.array(zod_1.z.object({
|
|
22
|
+
version: zod_1.z.string(),
|
|
23
|
+
instances: zod_1.z.array(zod_1.z.object({
|
|
24
|
+
instanceKey: zod_1.z.string(),
|
|
25
|
+
hostId: zod_1.z.string(),
|
|
26
|
+
instanceType: zod_1.z.enum(['main', 'worker', 'webhook']),
|
|
27
|
+
instanceRole: zod_1.z.enum(['leader', 'follower', 'unset']),
|
|
28
|
+
})),
|
|
29
|
+
})),
|
|
30
|
+
});
|
|
31
|
+
const ClusterInfoResponseSchema = zod_1.z.object({
|
|
32
|
+
instances: zod_1.z.array(exports.instanceRegistrationSchema),
|
|
33
|
+
versionMismatch: ClusterVersionMismatchSchema.nullable(),
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=instance-registry-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"instance-registry-types.js","sourceRoot":"","sources":["../src/instance-registry-types.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAGxB,MAAM,4BAA4B,GAAG,OAAC;KACpC,MAAM,CAAC;IACP,aAAa,EAAE,OAAC,CAAC,OAAO,CAAC,CAAC,CAAC;IAC3B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;IAClB,YAAY,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC;IACnD,YAAY,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,UAAU,EAAE,OAAO,CAAC,CAAC;IACrD,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;IACnB,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;IACxB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;CACpB,CAAC;KACD,WAAW,EAAE,CAAC;AAGH,QAAA,0BAA0B,GAAG,OAAC,CAAC,kBAAkB,CAAC,eAAe,EAAE;IAC/E,4BAA4B;CAC5B,CAAC,CAAC;AAIH,MAAM,4BAA4B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,QAAQ,EAAE,OAAC,CAAC,KAAK,CAChB,OAAC,CAAC,MAAM,CAAC;QACR,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;QACnB,SAAS,EAAE,OAAC,CAAC,KAAK,CACjB,OAAC,CAAC,MAAM,CAAC;YACR,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;YACvB,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;YAClB,YAAY,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC;YACnD,YAAY,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,UAAU,EAAE,OAAO,CAAC,CAAC;SACrD,CAAC,CACF;KACD,CAAC,CACF;CACD,CAAC,CAAC;AAKH,MAAM,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1C,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,kCAA0B,CAAC;IAC9C,eAAe,EAAE,4BAA4B,CAAC,QAAQ,EAAE;CACxD,CAAC,CAAC"}
|
|
@@ -4,6 +4,7 @@ export type BreakingChangeRuleSeverity = z.infer<typeof breakingChangeRuleSeveri
|
|
|
4
4
|
export declare const breakingChangeIssueLevelSchema: z.ZodEnum<["info", "warning", "error"]>;
|
|
5
5
|
declare const breakingChangeVersionSchema: z.ZodEnum<["v2"]>;
|
|
6
6
|
export type BreakingChangeVersion = z.infer<typeof breakingChangeVersionSchema>;
|
|
7
|
+
export declare const MIGRATION_REPORT_TARGET_VERSION: BreakingChangeVersion | null;
|
|
7
8
|
declare const recommendationSchema: z.ZodObject<{
|
|
8
9
|
action: z.ZodString;
|
|
9
10
|
description: z.ZodString;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.breakingChangeIssueLevelSchema = exports.breakingChangeRuleSeveritySchema = void 0;
|
|
3
|
+
exports.MIGRATION_REPORT_TARGET_VERSION = 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
|
const breakingChangeVersionSchema = zod_1.z.enum(['v2']);
|
|
8
|
+
exports.MIGRATION_REPORT_TARGET_VERSION = null;
|
|
8
9
|
const recommendationSchema = zod_1.z.object({
|
|
9
10
|
action: zod_1.z.string(),
|
|
10
11
|
description: 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;AAEnF,MAAM,2BAA2B,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,IAAI,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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"}
|
|
@@ -96,5 +96,6 @@ export type DataTableListOptions = Partial<ListDataTableQueryDto> & {
|
|
|
96
96
|
projectId: string;
|
|
97
97
|
};
|
|
98
98
|
};
|
|
99
|
+
export type DataTableListSortBy = ListDataTableQueryDto['sortBy'];
|
|
99
100
|
export declare const dateTimeSchema: z.ZodPipeline<z.ZodEffects<z.ZodString, Date, string>, z.ZodDate>;
|
|
100
101
|
export declare const dataTableColumnValueSchema: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodDate]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-table.schema.js","sourceRoot":"","sources":["../../src/schemas/data-table.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAIX,QAAA,mBAAmB,GAAG,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,OAAC,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,OAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAEvF,QAAA,mBAAmB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;AACxD,QAAA,iBAAiB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AAGvC,QAAA,uBAAuB,GAAG,yBAAyB,CAAC;AACpD,QAAA,4BAA4B,GAAG,EAAE,CAAC;AAClC,QAAA,+BAA+B,GAC3C,6IAA6I,CAAC;AAElI,QAAA,yBAAyB,GAAG,OAAC;KACxC,MAAM,EAAE;KACR,IAAI,EAAE;KACN,GAAG,CAAC,CAAC,CAAC;KACN,GAAG,CAAC,oCAA4B,CAAC;KACjC,KAAK,CAAC,+BAAuB,EAAE,uCAA+B,CAAC,CAAC;AACrD,QAAA,yBAAyB,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC,CAAC;AAE5E,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IACnD,IAAI,EAAE,iCAAyB;IAC/B,IAAI,EAAE,iCAAyB;IAC/B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC5B,CAAC,CAAC;AAGU,QAAA,qBAAqB,GAAG,mCAA2B,CAAC,MAAM,CAAC;IACvE,WAAW,EAAE,yBAAiB;CAC9B,CAAC,CAAC;AAEU,QAAA,eAAe,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,EAAE,EAAE,yBAAiB;IACrB,IAAI,EAAE,2BAAmB;IACzB,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,6BAAqB,CAAC;IACvC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"data-table.schema.js","sourceRoot":"","sources":["../../src/schemas/data-table.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAIX,QAAA,mBAAmB,GAAG,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,OAAC,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,OAAC,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAEvF,QAAA,mBAAmB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;AACxD,QAAA,iBAAiB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AAGvC,QAAA,uBAAuB,GAAG,yBAAyB,CAAC;AACpD,QAAA,4BAA4B,GAAG,EAAE,CAAC;AAClC,QAAA,+BAA+B,GAC3C,6IAA6I,CAAC;AAElI,QAAA,yBAAyB,GAAG,OAAC;KACxC,MAAM,EAAE;KACR,IAAI,EAAE;KACN,GAAG,CAAC,CAAC,CAAC;KACN,GAAG,CAAC,oCAA4B,CAAC;KACjC,KAAK,CAAC,+BAAuB,EAAE,uCAA+B,CAAC,CAAC;AACrD,QAAA,yBAAyB,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC,CAAC;AAE5E,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IACnD,IAAI,EAAE,iCAAyB;IAC/B,IAAI,EAAE,iCAAyB;IAC/B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC5B,CAAC,CAAC;AAGU,QAAA,qBAAqB,GAAG,mCAA2B,CAAC,MAAM,CAAC;IACvE,WAAW,EAAE,yBAAiB;CAC9B,CAAC,CAAC;AAEU,QAAA,eAAe,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,EAAE,EAAE,yBAAiB;IACrB,IAAI,EAAE,2BAAmB;IACzB,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,6BAAqB,CAAC;IACvC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC;AAgBU,QAAA,cAAc,GAAG,OAAC;KAC7B,MAAM,EAAE;KACR,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;KAC1B,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC;KAC7B,IAAI,CAAC,OAAC,CAAC,IAAI,EAAE,CAAC,CAAC;AAEJ,QAAA,0BAA0B,GAAG,OAAC,CAAC,KAAK,CAAC;IACjD,OAAC,CAAC,MAAM,EAAE;IACV,OAAC,CAAC,MAAM,EAAE;IACV,OAAC,CAAC,OAAO,EAAE;IACX,OAAC,CAAC,IAAI,EAAE;IACR,OAAC,CAAC,IAAI,EAAE;CACR,CAAC,CAAC"}
|
|
@@ -45,11 +45,11 @@ export declare const secretProviderConnectionSchema: z.ZodObject<{
|
|
|
45
45
|
[k: string]: any;
|
|
46
46
|
};
|
|
47
47
|
state: "error" | "initializing" | "initialized" | "connecting" | "connected" | "retrying";
|
|
48
|
-
isEnabled: boolean;
|
|
49
48
|
projects: {
|
|
50
49
|
id: string;
|
|
51
50
|
name: string;
|
|
52
51
|
}[];
|
|
52
|
+
isEnabled: boolean;
|
|
53
53
|
secretsCount: number;
|
|
54
54
|
secrets?: {
|
|
55
55
|
name: string;
|
|
@@ -65,18 +65,20 @@ export declare const secretProviderConnectionSchema: z.ZodObject<{
|
|
|
65
65
|
[k: string]: any;
|
|
66
66
|
};
|
|
67
67
|
state: "error" | "initializing" | "initialized" | "connecting" | "connected" | "retrying";
|
|
68
|
-
isEnabled: boolean;
|
|
69
68
|
projects: {
|
|
70
69
|
id: string;
|
|
71
70
|
name: string;
|
|
72
71
|
}[];
|
|
72
|
+
isEnabled: boolean;
|
|
73
73
|
secretsCount: number;
|
|
74
74
|
secrets?: {
|
|
75
75
|
name: string;
|
|
76
76
|
credentialsCount?: number | undefined;
|
|
77
77
|
}[] | undefined;
|
|
78
78
|
}>;
|
|
79
|
-
|
|
79
|
+
type SecretProviderConnectionWithIsEnabled = z.infer<typeof secretProviderConnectionSchema>;
|
|
80
|
+
export type SecretProviderConnection = Omit<SecretProviderConnectionWithIsEnabled, 'isEnabled'>;
|
|
81
|
+
export type SecretProviderConnectionListItem = Omit<SecretProviderConnection, 'settings' | 'secrets'>;
|
|
80
82
|
export declare const secretProviderTypeResponseSchema: z.ZodObject<{
|
|
81
83
|
type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical"]>;
|
|
82
84
|
displayName: z.ZodString;
|
|
@@ -131,3 +133,4 @@ export declare const reloadSecretProviderConnectionResponseSchema: z.ZodObject<{
|
|
|
131
133
|
}> | undefined;
|
|
132
134
|
}>;
|
|
133
135
|
export type ReloadSecretProviderConnectionResponse = z.infer<typeof reloadSecretProviderConnectionResponseSchema>;
|
|
136
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"secrets-provider.schema.js","sourceRoot":"","sources":["../../src/schemas/secrets-provider.schema.ts"],"names":[],"mappings":";;;AACA,6BAAwB;AAKX,QAAA,yBAAyB,GAAG,OAAC,CAAC,IAAI,CAAC;IAC/C,mBAAmB;IACnB,mBAAmB;IACnB,OAAO;IACP,eAAe;IACf,WAAW;CACX,CAAC,CAAC;AAGU,QAAA,0BAA0B,GAAG,OAAC,CAAC,IAAI,CAAC;IAChD,cAAc;IACd,aAAa;IACb,YAAY;IACZ,WAAW;IACX,OAAO;IACP,UAAU;CACV,CAAC,CAAC;AAMU,QAAA,wCAAwC,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC;AAejG,MAAM,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAC;AAKH,MAAM,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC;AAYU,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACtD,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,iCAAyB;IAC/B,KAAK,EAAE,kCAA0B;IACjC,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE;IACtB,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC;IACvC,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,OAAC,CAAC,GAAG,EAAE,CAAkC;IACzE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;IACxB,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,QAAQ,EAAE;IAChD,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;CACrB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"secrets-provider.schema.js","sourceRoot":"","sources":["../../src/schemas/secrets-provider.schema.ts"],"names":[],"mappings":";;;AACA,6BAAwB;AAKX,QAAA,yBAAyB,GAAG,OAAC,CAAC,IAAI,CAAC;IAC/C,mBAAmB;IACnB,mBAAmB;IACnB,OAAO;IACP,eAAe;IACf,WAAW;CACX,CAAC,CAAC;AAGU,QAAA,0BAA0B,GAAG,OAAC,CAAC,IAAI,CAAC;IAChD,cAAc;IACd,aAAa;IACb,YAAY;IACZ,WAAW;IACX,OAAO;IACP,UAAU;CACV,CAAC,CAAC;AAMU,QAAA,wCAAwC,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC;AAejG,MAAM,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAC;AAKH,MAAM,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACvC,CAAC,CAAC;AAYU,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACtD,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,iCAAyB;IAC/B,KAAK,EAAE,kCAA0B;IACjC,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE;IACtB,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC;IACvC,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,OAAC,CAAC,GAAG,EAAE,CAAkC;IACzE,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;IACxB,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,QAAQ,EAAE;IAChD,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;CACrB,CAAC,CAAC;AAWU,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACxD,IAAI,EAAE,iCAAyB;IAC/B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAwC;CACnE,CAAC,CAAC;AAOU,QAAA,+BAA+B,GAAG,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;AAM5E,QAAA,0CAA0C,GAAG,OAAC,CAAC,MAAM,CAAC;IAClE,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;IACpB,SAAS,EAAE,gDAAwC;IACnD,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC5B,CAAC,CAAC;AAQU,QAAA,4CAA4C,GAAG,OAAC,CAAC,MAAM,CAAC;IACpE,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;IACpB,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC9E,CAAC,CAAC"}
|
|
@@ -32,13 +32,13 @@ export declare const SourceControlledFileSchema: z.ZodObject<{
|
|
|
32
32
|
}>>;
|
|
33
33
|
publishingError: z.ZodOptional<z.ZodString>;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
35
|
-
type: "workflow" | "project" | "credential" | "
|
|
35
|
+
type: "workflow" | "project" | "credential" | "tags" | "variables" | "file" | "folders" | "datatable";
|
|
36
36
|
status: "unknown" | "new" | "modified" | "deleted" | "created" | "renamed" | "conflicted" | "ignored" | "staged";
|
|
37
|
-
file: string;
|
|
38
37
|
id: string;
|
|
39
38
|
name: string;
|
|
40
39
|
updatedAt: string;
|
|
41
40
|
location: "local" | "remote";
|
|
41
|
+
file: string;
|
|
42
42
|
conflict: boolean;
|
|
43
43
|
pushed?: boolean | undefined;
|
|
44
44
|
isLocalPublished?: boolean | undefined;
|
|
@@ -50,13 +50,13 @@ export declare const SourceControlledFileSchema: z.ZodObject<{
|
|
|
50
50
|
} | undefined;
|
|
51
51
|
publishingError?: string | undefined;
|
|
52
52
|
}, {
|
|
53
|
-
type: "workflow" | "project" | "credential" | "
|
|
53
|
+
type: "workflow" | "project" | "credential" | "tags" | "variables" | "file" | "folders" | "datatable";
|
|
54
54
|
status: "unknown" | "new" | "modified" | "deleted" | "created" | "renamed" | "conflicted" | "ignored" | "staged";
|
|
55
|
-
file: string;
|
|
56
55
|
id: string;
|
|
57
56
|
name: string;
|
|
58
57
|
updatedAt: string;
|
|
59
58
|
location: "local" | "remote";
|
|
59
|
+
file: string;
|
|
60
60
|
conflict: boolean;
|
|
61
61
|
pushed?: boolean | undefined;
|
|
62
62
|
isLocalPublished?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/api-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"LICENSE_EE.md"
|
|
11
11
|
],
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@n8n/
|
|
14
|
-
"@n8n/config": "
|
|
13
|
+
"@n8n/config": "2.10.0",
|
|
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
|
-
"n8n-workflow": "2.
|
|
20
|
-
"@n8n/permissions": "0.
|
|
19
|
+
"n8n-workflow": "2.11.0",
|
|
20
|
+
"@n8n/permissions": "0.52.0"
|
|
21
21
|
},
|
|
22
22
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
23
23
|
"homepage": "https://n8n.io",
|