@n8n/api-types 0.54.0 → 0.55.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 +8 -1
- package/dist/chat-hub.js +5 -0
- package/dist/chat-hub.js.map +1 -1
- package/dist/dto/data-table/list-data-table-content-query.dto.d.ts +1 -0
- package/dist/dto/data-table/list-data-table-content-query.dto.js +1 -0
- package/dist/dto/data-table/list-data-table-content-query.dto.js.map +1 -1
- package/dist/dto/oidc/config.dto.d.ts +1 -0
- package/dist/dto/oidc/config.dto.js +1 -0
- package/dist/dto/oidc/config.dto.js.map +1 -1
- package/dist/frontend-settings.d.ts +0 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js.map +1 -1
- package/dist/schemas/breaking-changes.schema.d.ts +43 -35
- package/dist/schemas/breaking-changes.schema.js +4 -1
- package/dist/schemas/breaking-changes.schema.js.map +1 -1
- package/package.json +4 -4
package/dist/chat-hub.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type StructuredChunk, type JINA_AI_TOOL_NODE_TYPE, type SEAR_XNG_TOOL_NODE_TYPE, type INode } from 'n8n-workflow';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { Z } from 'zod-class';
|
|
4
4
|
export declare const chatHubLLMProviderSchema: z.ZodEnum<["openai", "anthropic", "google"]>;
|
|
@@ -6,6 +6,7 @@ export type ChatHubLLMProvider = z.infer<typeof chatHubLLMProviderSchema>;
|
|
|
6
6
|
export declare const chatHubProviderSchema: z.ZodEnum<["openai", "anthropic", "google", "n8n", "custom-agent"]>;
|
|
7
7
|
export type ChatHubProvider = z.infer<typeof chatHubProviderSchema>;
|
|
8
8
|
export declare const PROVIDER_CREDENTIAL_TYPE_MAP: Record<Exclude<ChatHubProvider, 'n8n' | 'custom-agent'>, string>;
|
|
9
|
+
export type ChatHubAgentTool = typeof JINA_AI_TOOL_NODE_TYPE | typeof SEAR_XNG_TOOL_NODE_TYPE;
|
|
9
10
|
declare const openAIModelSchema: z.ZodObject<{
|
|
10
11
|
provider: z.ZodLiteral<"openai">;
|
|
11
12
|
model: z.ZodString;
|
|
@@ -190,6 +191,7 @@ declare const ChatHubSendMessageRequest_base: Z.Class<{
|
|
|
190
191
|
id: string;
|
|
191
192
|
name: string;
|
|
192
193
|
}>>;
|
|
194
|
+
tools: z.ZodArray<z.ZodType<INode, z.ZodTypeDef, INode>, "many">;
|
|
193
195
|
}>;
|
|
194
196
|
export declare class ChatHubSendMessageRequest extends ChatHubSendMessageRequest_base {
|
|
195
197
|
}
|
|
@@ -322,6 +324,7 @@ declare const ChatHubUpdateConversationRequest_base: Z.Class<{
|
|
|
322
324
|
model: z.ZodOptional<z.ZodString>;
|
|
323
325
|
workflowId: z.ZodOptional<z.ZodString>;
|
|
324
326
|
agentId: z.ZodOptional<z.ZodString>;
|
|
327
|
+
tools: z.ZodOptional<z.ZodArray<z.ZodType<INode, z.ZodTypeDef, INode>, "many">>;
|
|
325
328
|
}>;
|
|
326
329
|
export declare class ChatHubUpdateConversationRequest extends ChatHubUpdateConversationRequest_base {
|
|
327
330
|
}
|
|
@@ -342,6 +345,7 @@ export interface ChatHubSessionDto {
|
|
|
342
345
|
agentName: string | null;
|
|
343
346
|
createdAt: string;
|
|
344
347
|
updatedAt: string;
|
|
348
|
+
tools: INode[];
|
|
345
349
|
}
|
|
346
350
|
export interface ChatHubMessageDto {
|
|
347
351
|
id: ChatMessageId;
|
|
@@ -378,6 +382,7 @@ export interface ChatHubAgentDto {
|
|
|
378
382
|
credentialId: string | null;
|
|
379
383
|
provider: ChatHubLLMProvider;
|
|
380
384
|
model: string;
|
|
385
|
+
tools: INode[];
|
|
381
386
|
createdAt: string;
|
|
382
387
|
updatedAt: string;
|
|
383
388
|
}
|
|
@@ -388,6 +393,7 @@ declare const ChatHubCreateAgentRequest_base: Z.Class<{
|
|
|
388
393
|
credentialId: z.ZodString;
|
|
389
394
|
provider: z.ZodEnum<["openai", "anthropic", "google"]>;
|
|
390
395
|
model: z.ZodString;
|
|
396
|
+
tools: z.ZodArray<z.ZodType<INode, z.ZodTypeDef, INode>, "many">;
|
|
391
397
|
}>;
|
|
392
398
|
export declare class ChatHubCreateAgentRequest extends ChatHubCreateAgentRequest_base {
|
|
393
399
|
}
|
|
@@ -398,6 +404,7 @@ declare const ChatHubUpdateAgentRequest_base: Z.Class<{
|
|
|
398
404
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
399
405
|
provider: z.ZodOptional<z.ZodEnum<["openai", "anthropic", "google", "n8n", "custom-agent"]>>;
|
|
400
406
|
model: z.ZodOptional<z.ZodString>;
|
|
407
|
+
tools: z.ZodOptional<z.ZodArray<z.ZodType<INode, z.ZodTypeDef, INode>, "many">>;
|
|
401
408
|
}>;
|
|
402
409
|
export declare class ChatHubUpdateAgentRequest extends ChatHubUpdateAgentRequest_base {
|
|
403
410
|
}
|
package/dist/chat-hub.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ChatHubUpdateAgentRequest = exports.ChatHubCreateAgentRequest = exports.ChatHubUpdateConversationRequest = exports.ChatHubEditMessageRequest = exports.ChatHubRegenerateMessageRequest = exports.ChatHubSendMessageRequest = exports.emptyChatModelsResponse = exports.chatModelsRequestSchema = exports.chatHubConversationModelSchema = exports.PROVIDER_CREDENTIAL_TYPE_MAP = exports.chatHubProviderSchema = exports.chatHubLLMProviderSchema = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
4
5
|
const zod_1 = require("zod");
|
|
5
6
|
const zod_class_1 = require("zod-class");
|
|
6
7
|
exports.chatHubLLMProviderSchema = zod_1.z.enum(['openai', 'anthropic', 'google']);
|
|
@@ -61,6 +62,7 @@ class ChatHubSendMessageRequest extends zod_class_1.Z.class({
|
|
|
61
62
|
id: zod_1.z.string(),
|
|
62
63
|
name: zod_1.z.string(),
|
|
63
64
|
})),
|
|
65
|
+
tools: zod_1.z.array(n8n_workflow_1.INodeSchema),
|
|
64
66
|
}) {
|
|
65
67
|
}
|
|
66
68
|
exports.ChatHubSendMessageRequest = ChatHubSendMessageRequest;
|
|
@@ -91,6 +93,7 @@ class ChatHubUpdateConversationRequest extends zod_class_1.Z.class({
|
|
|
91
93
|
model: zod_1.z.string().max(64).optional(),
|
|
92
94
|
workflowId: zod_1.z.string().max(36).optional(),
|
|
93
95
|
agentId: zod_1.z.string().uuid().optional(),
|
|
96
|
+
tools: zod_1.z.array(n8n_workflow_1.INodeSchema).optional(),
|
|
94
97
|
}) {
|
|
95
98
|
}
|
|
96
99
|
exports.ChatHubUpdateConversationRequest = ChatHubUpdateConversationRequest;
|
|
@@ -101,6 +104,7 @@ class ChatHubCreateAgentRequest extends zod_class_1.Z.class({
|
|
|
101
104
|
credentialId: zod_1.z.string(),
|
|
102
105
|
provider: exports.chatHubProviderSchema.exclude(['n8n', 'custom-agent']),
|
|
103
106
|
model: zod_1.z.string().max(64),
|
|
107
|
+
tools: zod_1.z.array(n8n_workflow_1.INodeSchema),
|
|
104
108
|
}) {
|
|
105
109
|
}
|
|
106
110
|
exports.ChatHubCreateAgentRequest = ChatHubCreateAgentRequest;
|
|
@@ -111,6 +115,7 @@ class ChatHubUpdateAgentRequest extends zod_class_1.Z.class({
|
|
|
111
115
|
credentialId: zod_1.z.string().optional(),
|
|
112
116
|
provider: exports.chatHubProviderSchema.optional(),
|
|
113
117
|
model: zod_1.z.string().max(64).optional(),
|
|
118
|
+
tools: zod_1.z.array(n8n_workflow_1.INodeSchema).optional(),
|
|
114
119
|
}) {
|
|
115
120
|
}
|
|
116
121
|
exports.ChatHubUpdateAgentRequest = ChatHubUpdateAgentRequest;
|
package/dist/chat-hub.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat-hub.js","sourceRoot":"","sources":["../src/chat-hub.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"chat-hub.js","sourceRoot":"","sources":["../src/chat-hub.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,6 +12,7 @@ declare const ListDataTableContentQueryDto_base: Z.Class<{
|
|
|
12
12
|
}[];
|
|
13
13
|
} | undefined, string | undefined>>;
|
|
14
14
|
sortBy: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodString>, readonly [string, "ASC" | "DESC"] | undefined, string | undefined>>;
|
|
15
|
+
search: z.ZodOptional<z.ZodString>;
|
|
15
16
|
}>;
|
|
16
17
|
export declare class ListDataTableContentQueryDto extends ListDataTableContentQueryDto_base {
|
|
17
18
|
}
|
|
@@ -78,6 +78,7 @@ class ListDataTableContentQueryDto extends zod_class_1.Z.class({
|
|
|
78
78
|
skip: pagination_dto_1.paginationSchema.skip.optional(),
|
|
79
79
|
filter: filterValidator.optional(),
|
|
80
80
|
sortBy: sortByValidator.optional(),
|
|
81
|
+
search: zod_1.z.string().optional(),
|
|
81
82
|
}) {
|
|
82
83
|
}
|
|
83
84
|
exports.ListDataTableContentQueryDto = ListDataTableContentQueryDto;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-data-table-content-query.dto.js","sourceRoot":"","sources":["../../../src/dto/data-table/list-data-table-content-query.dto.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"list-data-table-content-query.dto.js","sourceRoot":"","sources":["../../../src/dto/data-table/list-data-table-content-query.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,6 +6,7 @@ declare const OidcConfigDto_base: Z.Class<{
|
|
|
6
6
|
discoveryEndpoint: z.ZodString;
|
|
7
7
|
loginEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8
8
|
prompt: z.ZodDefault<z.ZodOptional<z.ZodEnum<["none", "login", "consent", "select_account", "create"]>>>;
|
|
9
|
+
authenticationContextClassReference: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
9
10
|
}>;
|
|
10
11
|
export declare class OidcConfigDto extends OidcConfigDto_base {
|
|
11
12
|
}
|
|
@@ -12,6 +12,7 @@ class OidcConfigDto extends zod_class_1.Z.class({
|
|
|
12
12
|
.enum(['none', 'login', 'consent', 'select_account', 'create'])
|
|
13
13
|
.optional()
|
|
14
14
|
.default('select_account'),
|
|
15
|
+
authenticationContextClassReference: zod_1.z.array(zod_1.z.string()).default([]),
|
|
15
16
|
}) {
|
|
16
17
|
}
|
|
17
18
|
exports.OidcConfigDto = OidcConfigDto;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.dto.js","sourceRoot":"","sources":["../../../src/dto/oidc/config.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,yCAA8B;AAE9B,MAAa,aAAc,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC1C,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACnC,YAAY,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;IACnD,MAAM,EAAE,OAAC;SACP,IAAI,CAAC,CAAC,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,QAAQ,CAAC,CAAC;SAC9D,QAAQ,EAAE;SACV,OAAO,CAAC,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"config.dto.js","sourceRoot":"","sources":["../../../src/dto/oidc/config.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,yCAA8B;AAE9B,MAAa,aAAc,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC1C,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACnC,YAAY,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;IACnD,MAAM,EAAE,OAAC;SACP,IAAI,CAAC,CAAC,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,QAAQ,CAAC,CAAC;SAC9D,QAAQ,EAAE;SACV,OAAO,CAAC,gBAAgB,CAAC;IAC3B,mCAAmC,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,CAAC;CACpE,CAAC;CAAG;AAVL,sCAUK"}
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export type * from './frontend-settings';
|
|
|
6
6
|
export type * from './user';
|
|
7
7
|
export type * from './api-keys';
|
|
8
8
|
export type * from './community-node-types';
|
|
9
|
-
export { chatHubConversationModelSchema, type ChatModelDto, type ChatHubOpenAIModel, type ChatHubAnthropicModel, type ChatHubGoogleModel, type ChatHubBaseLLMModel, type ChatHubN8nModel, type ChatHubCustomAgentModel, type ChatHubConversationModel, chatHubProviderSchema, chatHubLLMProviderSchema, type ChatHubProvider, type ChatHubLLMProvider, type ChatHubMessageType, type ChatHubMessageStatus, PROVIDER_CREDENTIAL_TYPE_MAP, chatModelsRequestSchema, emptyChatModelsResponse, type ChatModelsRequest, type ChatModelsResponse, ChatHubSendMessageRequest, ChatHubRegenerateMessageRequest, ChatHubEditMessageRequest, ChatHubUpdateConversationRequest, type ChatMessageId, type ChatSessionId, type ChatHubMessageDto, type ChatHubSessionDto, type ChatHubConversationDto, type ChatHubConversationResponse, type ChatHubConversationsResponse, type ChatHubAgentDto, ChatHubCreateAgentRequest, ChatHubUpdateAgentRequest, type EnrichedStructuredChunk, } from './chat-hub';
|
|
9
|
+
export { chatHubConversationModelSchema, type ChatModelDto, type ChatHubOpenAIModel, type ChatHubAnthropicModel, type ChatHubGoogleModel, type ChatHubBaseLLMModel, type ChatHubN8nModel, type ChatHubCustomAgentModel, type ChatHubConversationModel, chatHubProviderSchema, chatHubLLMProviderSchema, type ChatHubProvider, type ChatHubLLMProvider, type ChatHubMessageType, type ChatHubMessageStatus, PROVIDER_CREDENTIAL_TYPE_MAP, chatModelsRequestSchema, emptyChatModelsResponse, type ChatModelsRequest, type ChatModelsResponse, ChatHubSendMessageRequest, ChatHubRegenerateMessageRequest, ChatHubEditMessageRequest, ChatHubUpdateConversationRequest, type ChatMessageId, type ChatSessionId, type ChatHubMessageDto, type ChatHubSessionDto, type ChatHubConversationDto, type ChatHubConversationResponse, type ChatHubConversationsResponse, type ChatHubAgentDto, ChatHubCreateAgentRequest, ChatHubUpdateAgentRequest, type EnrichedStructuredChunk, type ChatHubAgentTool, } from './chat-hub';
|
|
10
10
|
export type { Collaborator } from './push/collaboration';
|
|
11
11
|
export type { HeartbeatMessage } from './push/heartbeat';
|
|
12
12
|
export { createHeartbeatMessage, heartbeatMessageSchema } from './push/heartbeat';
|
|
@@ -22,4 +22,4 @@ export { DATA_TABLE_COLUMN_REGEX, DATA_TABLE_COLUMN_MAX_LENGTH, DATA_TABLE_COLUM
|
|
|
22
22
|
export type { DataTableFilter, DataTableFilterConditionType, } from './schemas/data-table-filter.schema';
|
|
23
23
|
export type { ExternalSecretsProvider, ExternalSecretsProviderSecret, ExternalSecretsProviderData, ExternalSecretsProviderProperty, ExternalSecretsProviderState, } from './schemas/external-secrets.schema';
|
|
24
24
|
export type { UsageState } from './schemas/usage.schema';
|
|
25
|
-
export type { BreakingChangeRuleSeverity, BreakingChangeRecommendation, BreakingChangeAffectedWorkflow, BreakingChangeInstanceIssue, BreakingChangeWorkflowIssue, BreakingChangeInstanceRuleResult, BreakingChangeWorkflowRuleResult, BreakingChangeReportResult, BreakingChangeLightReportResult, } from './schemas/breaking-changes.schema';
|
|
25
|
+
export type { BreakingChangeRuleSeverity, BreakingChangeRecommendation, BreakingChangeAffectedWorkflow, BreakingChangeInstanceIssue, BreakingChangeWorkflowIssue, BreakingChangeInstanceRuleResult, BreakingChangeWorkflowRuleResult, BreakingChangeReportResult, BreakingChangeLightReportResult, BreakingChangeVersion, } from './schemas/breaking-changes.schema';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACA,wCAAsB;AAOtB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACA,wCAAsB;AAOtB,uCAqCoB;AApCnB,0HAAA,8BAA8B,OAAA;AAS9B,iHAAA,qBAAqB,OAAA;AACrB,oHAAA,wBAAwB,OAAA;AAKxB,wHAAA,4BAA4B,OAAA;AAC5B,mHAAA,uBAAuB,OAAA;AACvB,mHAAA,uBAAuB,OAAA;AAGvB,qHAAA,yBAAyB,OAAA;AACzB,2HAAA,+BAA+B,OAAA;AAC/B,qHAAA,yBAAyB,OAAA;AACzB,4HAAA,gCAAgC,OAAA;AAShC,qHAAA,yBAAyB,OAAA;AACzB,qHAAA,yBAAyB,OAAA;AAO1B,8CAAkF;AAAzE,mHAAA,sBAAsB,OAAA;AAAE,mHAAA,sBAAsB,OAAA;AAIvD,mEAAiE;AAAxD,uHAAA,iBAAiB,OAAA;AAC1B,6DAA2D;AAAlD,iHAAA,cAAc,OAAA;AAQvB,yFAKiD;AAHhD,6IAAA,4BAA4B,OAAA;AAC5B,2IAAA,0BAA0B,OAAA;AAC1B,yIAAA,wBAAwB,OAAA;AAazB,qDAQ+B;AAP9B,mGAAA,IAAI,OAAA;AAIJ,8GAAA,eAAe,OAAA;AACf,6GAAA,cAAc,OAAA;AACd,+GAAA,gBAAgB,OAAA;AAGjB,iEAWqC;AAVpC,4HAAA,uBAAuB,OAAA;AACvB,iIAAA,4BAA4B,OAAA;AAC5B,oIAAA,+BAA+B,OAAA;AAM/B,mHAAA,cAAc,OAAA;AACd,8HAAA,yBAAyB,OAAA"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const breakingChangeRuleSeveritySchema: z.ZodEnum<["low", "medium", "
|
|
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"]>;
|
|
6
|
+
export type BreakingChangeVersion = z.infer<typeof breakingChangeVersionSchema>;
|
|
5
7
|
declare const recommendationSchema: z.ZodObject<{
|
|
6
8
|
action: z.ZodString;
|
|
7
9
|
description: z.ZodString;
|
|
@@ -109,7 +111,7 @@ declare const instanceRuleResultsSchema: z.ZodObject<{
|
|
|
109
111
|
ruleId: z.ZodString;
|
|
110
112
|
ruleTitle: z.ZodString;
|
|
111
113
|
ruleDescription: z.ZodString;
|
|
112
|
-
ruleSeverity: z.ZodEnum<["low", "medium", "
|
|
114
|
+
ruleSeverity: z.ZodEnum<["low", "medium", "critical"]>;
|
|
113
115
|
ruleDocumentationUrl: z.ZodOptional<z.ZodString>;
|
|
114
116
|
recommendations: z.ZodArray<z.ZodObject<{
|
|
115
117
|
action: z.ZodString;
|
|
@@ -139,7 +141,7 @@ declare const instanceRuleResultsSchema: z.ZodObject<{
|
|
|
139
141
|
ruleId: string;
|
|
140
142
|
ruleTitle: string;
|
|
141
143
|
ruleDescription: string;
|
|
142
|
-
ruleSeverity: "low" | "medium" | "
|
|
144
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
143
145
|
recommendations: {
|
|
144
146
|
description: string;
|
|
145
147
|
action: string;
|
|
@@ -154,7 +156,7 @@ declare const instanceRuleResultsSchema: z.ZodObject<{
|
|
|
154
156
|
ruleId: string;
|
|
155
157
|
ruleTitle: string;
|
|
156
158
|
ruleDescription: string;
|
|
157
|
-
ruleSeverity: "low" | "medium" | "
|
|
159
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
158
160
|
recommendations: {
|
|
159
161
|
description: string;
|
|
160
162
|
action: string;
|
|
@@ -171,7 +173,7 @@ declare const workflowRuleResultsSchema: z.ZodObject<{
|
|
|
171
173
|
ruleId: z.ZodString;
|
|
172
174
|
ruleTitle: z.ZodString;
|
|
173
175
|
ruleDescription: z.ZodString;
|
|
174
|
-
ruleSeverity: z.ZodEnum<["low", "medium", "
|
|
176
|
+
ruleSeverity: z.ZodEnum<["low", "medium", "critical"]>;
|
|
175
177
|
ruleDocumentationUrl: z.ZodOptional<z.ZodString>;
|
|
176
178
|
recommendations: z.ZodArray<z.ZodObject<{
|
|
177
179
|
action: z.ZodString;
|
|
@@ -244,7 +246,7 @@ declare const workflowRuleResultsSchema: z.ZodObject<{
|
|
|
244
246
|
ruleId: string;
|
|
245
247
|
ruleTitle: string;
|
|
246
248
|
ruleDescription: string;
|
|
247
|
-
ruleSeverity: "low" | "medium" | "
|
|
249
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
248
250
|
recommendations: {
|
|
249
251
|
description: string;
|
|
250
252
|
action: string;
|
|
@@ -269,7 +271,7 @@ declare const workflowRuleResultsSchema: z.ZodObject<{
|
|
|
269
271
|
ruleId: string;
|
|
270
272
|
ruleTitle: string;
|
|
271
273
|
ruleDescription: string;
|
|
272
|
-
ruleSeverity: "low" | "medium" | "
|
|
274
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
273
275
|
recommendations: {
|
|
274
276
|
description: string;
|
|
275
277
|
action: string;
|
|
@@ -301,7 +303,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
301
303
|
ruleId: z.ZodString;
|
|
302
304
|
ruleTitle: z.ZodString;
|
|
303
305
|
ruleDescription: z.ZodString;
|
|
304
|
-
ruleSeverity: z.ZodEnum<["low", "medium", "
|
|
306
|
+
ruleSeverity: z.ZodEnum<["low", "medium", "critical"]>;
|
|
305
307
|
ruleDocumentationUrl: z.ZodOptional<z.ZodString>;
|
|
306
308
|
recommendations: z.ZodArray<z.ZodObject<{
|
|
307
309
|
action: z.ZodString;
|
|
@@ -331,7 +333,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
331
333
|
ruleId: string;
|
|
332
334
|
ruleTitle: string;
|
|
333
335
|
ruleDescription: string;
|
|
334
|
-
ruleSeverity: "low" | "medium" | "
|
|
336
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
335
337
|
recommendations: {
|
|
336
338
|
description: string;
|
|
337
339
|
action: string;
|
|
@@ -346,7 +348,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
346
348
|
ruleId: string;
|
|
347
349
|
ruleTitle: string;
|
|
348
350
|
ruleDescription: string;
|
|
349
|
-
ruleSeverity: "low" | "medium" | "
|
|
351
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
350
352
|
recommendations: {
|
|
351
353
|
description: string;
|
|
352
354
|
action: string;
|
|
@@ -362,7 +364,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
362
364
|
ruleId: z.ZodString;
|
|
363
365
|
ruleTitle: z.ZodString;
|
|
364
366
|
ruleDescription: z.ZodString;
|
|
365
|
-
ruleSeverity: z.ZodEnum<["low", "medium", "
|
|
367
|
+
ruleSeverity: z.ZodEnum<["low", "medium", "critical"]>;
|
|
366
368
|
ruleDocumentationUrl: z.ZodOptional<z.ZodString>;
|
|
367
369
|
recommendations: z.ZodArray<z.ZodObject<{
|
|
368
370
|
action: z.ZodString;
|
|
@@ -435,7 +437,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
435
437
|
ruleId: string;
|
|
436
438
|
ruleTitle: string;
|
|
437
439
|
ruleDescription: string;
|
|
438
|
-
ruleSeverity: "low" | "medium" | "
|
|
440
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
439
441
|
recommendations: {
|
|
440
442
|
description: string;
|
|
441
443
|
action: string;
|
|
@@ -460,7 +462,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
460
462
|
ruleId: string;
|
|
461
463
|
ruleTitle: string;
|
|
462
464
|
ruleDescription: string;
|
|
463
|
-
ruleSeverity: "low" | "medium" | "
|
|
465
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
464
466
|
recommendations: {
|
|
465
467
|
description: string;
|
|
466
468
|
action: string;
|
|
@@ -490,7 +492,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
490
492
|
ruleId: string;
|
|
491
493
|
ruleTitle: string;
|
|
492
494
|
ruleDescription: string;
|
|
493
|
-
ruleSeverity: "low" | "medium" | "
|
|
495
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
494
496
|
recommendations: {
|
|
495
497
|
description: string;
|
|
496
498
|
action: string;
|
|
@@ -506,7 +508,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
506
508
|
ruleId: string;
|
|
507
509
|
ruleTitle: string;
|
|
508
510
|
ruleDescription: string;
|
|
509
|
-
ruleSeverity: "low" | "medium" | "
|
|
511
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
510
512
|
recommendations: {
|
|
511
513
|
description: string;
|
|
512
514
|
action: string;
|
|
@@ -536,7 +538,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
536
538
|
ruleId: string;
|
|
537
539
|
ruleTitle: string;
|
|
538
540
|
ruleDescription: string;
|
|
539
|
-
ruleSeverity: "low" | "medium" | "
|
|
541
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
540
542
|
recommendations: {
|
|
541
543
|
description: string;
|
|
542
544
|
action: string;
|
|
@@ -552,7 +554,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
552
554
|
ruleId: string;
|
|
553
555
|
ruleTitle: string;
|
|
554
556
|
ruleDescription: string;
|
|
555
|
-
ruleSeverity: "low" | "medium" | "
|
|
557
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
556
558
|
recommendations: {
|
|
557
559
|
description: string;
|
|
558
560
|
action: string;
|
|
@@ -575,6 +577,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
575
577
|
ruleDocumentationUrl?: string | undefined;
|
|
576
578
|
}[];
|
|
577
579
|
}>;
|
|
580
|
+
totalWorkflows: z.ZodNumber;
|
|
578
581
|
shouldCache: z.ZodBoolean;
|
|
579
582
|
}, "strip", z.ZodTypeAny, {
|
|
580
583
|
report: {
|
|
@@ -585,7 +588,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
585
588
|
ruleId: string;
|
|
586
589
|
ruleTitle: string;
|
|
587
590
|
ruleDescription: string;
|
|
588
|
-
ruleSeverity: "low" | "medium" | "
|
|
591
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
589
592
|
recommendations: {
|
|
590
593
|
description: string;
|
|
591
594
|
action: string;
|
|
@@ -601,7 +604,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
601
604
|
ruleId: string;
|
|
602
605
|
ruleTitle: string;
|
|
603
606
|
ruleDescription: string;
|
|
604
|
-
ruleSeverity: "low" | "medium" | "
|
|
607
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
605
608
|
recommendations: {
|
|
606
609
|
description: string;
|
|
607
610
|
action: string;
|
|
@@ -624,6 +627,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
624
627
|
ruleDocumentationUrl?: string | undefined;
|
|
625
628
|
}[];
|
|
626
629
|
};
|
|
630
|
+
totalWorkflows: number;
|
|
627
631
|
shouldCache: boolean;
|
|
628
632
|
}, {
|
|
629
633
|
report: {
|
|
@@ -634,7 +638,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
634
638
|
ruleId: string;
|
|
635
639
|
ruleTitle: string;
|
|
636
640
|
ruleDescription: string;
|
|
637
|
-
ruleSeverity: "low" | "medium" | "
|
|
641
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
638
642
|
recommendations: {
|
|
639
643
|
description: string;
|
|
640
644
|
action: string;
|
|
@@ -650,7 +654,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
650
654
|
ruleId: string;
|
|
651
655
|
ruleTitle: string;
|
|
652
656
|
ruleDescription: string;
|
|
653
|
-
ruleSeverity: "low" | "medium" | "
|
|
657
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
654
658
|
recommendations: {
|
|
655
659
|
description: string;
|
|
656
660
|
action: string;
|
|
@@ -673,6 +677,7 @@ declare const breakingChangeReportResultDataSchema: z.ZodObject<{
|
|
|
673
677
|
ruleDocumentationUrl?: string | undefined;
|
|
674
678
|
}[];
|
|
675
679
|
};
|
|
680
|
+
totalWorkflows: number;
|
|
676
681
|
shouldCache: boolean;
|
|
677
682
|
}>;
|
|
678
683
|
export type BreakingChangeReportResult = z.infer<typeof breakingChangeReportResultDataSchema>;
|
|
@@ -685,7 +690,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
685
690
|
ruleId: z.ZodString;
|
|
686
691
|
ruleTitle: z.ZodString;
|
|
687
692
|
ruleDescription: z.ZodString;
|
|
688
|
-
ruleSeverity: z.ZodEnum<["low", "medium", "
|
|
693
|
+
ruleSeverity: z.ZodEnum<["low", "medium", "critical"]>;
|
|
689
694
|
ruleDocumentationUrl: z.ZodOptional<z.ZodString>;
|
|
690
695
|
recommendations: z.ZodArray<z.ZodObject<{
|
|
691
696
|
action: z.ZodString;
|
|
@@ -715,7 +720,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
715
720
|
ruleId: string;
|
|
716
721
|
ruleTitle: string;
|
|
717
722
|
ruleDescription: string;
|
|
718
|
-
ruleSeverity: "low" | "medium" | "
|
|
723
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
719
724
|
recommendations: {
|
|
720
725
|
description: string;
|
|
721
726
|
action: string;
|
|
@@ -730,7 +735,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
730
735
|
ruleId: string;
|
|
731
736
|
ruleTitle: string;
|
|
732
737
|
ruleDescription: string;
|
|
733
|
-
ruleSeverity: "low" | "medium" | "
|
|
738
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
734
739
|
recommendations: {
|
|
735
740
|
description: string;
|
|
736
741
|
action: string;
|
|
@@ -746,7 +751,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
746
751
|
ruleId: z.ZodString;
|
|
747
752
|
ruleTitle: z.ZodString;
|
|
748
753
|
ruleDescription: z.ZodString;
|
|
749
|
-
ruleSeverity: z.ZodEnum<["low", "medium", "
|
|
754
|
+
ruleSeverity: z.ZodEnum<["low", "medium", "critical"]>;
|
|
750
755
|
ruleDocumentationUrl: z.ZodOptional<z.ZodString>;
|
|
751
756
|
recommendations: z.ZodArray<z.ZodObject<{
|
|
752
757
|
action: z.ZodString;
|
|
@@ -821,7 +826,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
821
826
|
ruleId: string;
|
|
822
827
|
ruleTitle: string;
|
|
823
828
|
ruleDescription: string;
|
|
824
|
-
ruleSeverity: "low" | "medium" | "
|
|
829
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
825
830
|
recommendations: {
|
|
826
831
|
description: string;
|
|
827
832
|
action: string;
|
|
@@ -832,7 +837,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
832
837
|
ruleId: string;
|
|
833
838
|
ruleTitle: string;
|
|
834
839
|
ruleDescription: string;
|
|
835
|
-
ruleSeverity: "low" | "medium" | "
|
|
840
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
836
841
|
recommendations: {
|
|
837
842
|
description: string;
|
|
838
843
|
action: string;
|
|
@@ -848,7 +853,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
848
853
|
ruleId: string;
|
|
849
854
|
ruleTitle: string;
|
|
850
855
|
ruleDescription: string;
|
|
851
|
-
ruleSeverity: "low" | "medium" | "
|
|
856
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
852
857
|
recommendations: {
|
|
853
858
|
description: string;
|
|
854
859
|
action: string;
|
|
@@ -864,7 +869,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
864
869
|
ruleId: string;
|
|
865
870
|
ruleTitle: string;
|
|
866
871
|
ruleDescription: string;
|
|
867
|
-
ruleSeverity: "low" | "medium" | "
|
|
872
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
868
873
|
recommendations: {
|
|
869
874
|
description: string;
|
|
870
875
|
action: string;
|
|
@@ -880,7 +885,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
880
885
|
ruleId: string;
|
|
881
886
|
ruleTitle: string;
|
|
882
887
|
ruleDescription: string;
|
|
883
|
-
ruleSeverity: "low" | "medium" | "
|
|
888
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
884
889
|
recommendations: {
|
|
885
890
|
description: string;
|
|
886
891
|
action: string;
|
|
@@ -896,7 +901,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
896
901
|
ruleId: string;
|
|
897
902
|
ruleTitle: string;
|
|
898
903
|
ruleDescription: string;
|
|
899
|
-
ruleSeverity: "low" | "medium" | "
|
|
904
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
900
905
|
recommendations: {
|
|
901
906
|
description: string;
|
|
902
907
|
action: string;
|
|
@@ -905,6 +910,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
905
910
|
ruleDocumentationUrl?: string | undefined;
|
|
906
911
|
}[];
|
|
907
912
|
}>;
|
|
913
|
+
totalWorkflows: z.ZodNumber;
|
|
908
914
|
shouldCache: z.ZodBoolean;
|
|
909
915
|
}, "strip", z.ZodTypeAny, {
|
|
910
916
|
report: {
|
|
@@ -915,7 +921,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
915
921
|
ruleId: string;
|
|
916
922
|
ruleTitle: string;
|
|
917
923
|
ruleDescription: string;
|
|
918
|
-
ruleSeverity: "low" | "medium" | "
|
|
924
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
919
925
|
recommendations: {
|
|
920
926
|
description: string;
|
|
921
927
|
action: string;
|
|
@@ -931,7 +937,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
931
937
|
ruleId: string;
|
|
932
938
|
ruleTitle: string;
|
|
933
939
|
ruleDescription: string;
|
|
934
|
-
ruleSeverity: "low" | "medium" | "
|
|
940
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
935
941
|
recommendations: {
|
|
936
942
|
description: string;
|
|
937
943
|
action: string;
|
|
@@ -940,6 +946,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
940
946
|
ruleDocumentationUrl?: string | undefined;
|
|
941
947
|
}[];
|
|
942
948
|
};
|
|
949
|
+
totalWorkflows: number;
|
|
943
950
|
shouldCache: boolean;
|
|
944
951
|
}, {
|
|
945
952
|
report: {
|
|
@@ -950,7 +957,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
950
957
|
ruleId: string;
|
|
951
958
|
ruleTitle: string;
|
|
952
959
|
ruleDescription: string;
|
|
953
|
-
ruleSeverity: "low" | "medium" | "
|
|
960
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
954
961
|
recommendations: {
|
|
955
962
|
description: string;
|
|
956
963
|
action: string;
|
|
@@ -966,7 +973,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
966
973
|
ruleId: string;
|
|
967
974
|
ruleTitle: string;
|
|
968
975
|
ruleDescription: string;
|
|
969
|
-
ruleSeverity: "low" | "medium" | "
|
|
976
|
+
ruleSeverity: "low" | "medium" | "critical";
|
|
970
977
|
recommendations: {
|
|
971
978
|
description: string;
|
|
972
979
|
action: string;
|
|
@@ -975,6 +982,7 @@ declare const breakingChangeLightReportResultDataSchema: z.ZodObject<{
|
|
|
975
982
|
ruleDocumentationUrl?: string | undefined;
|
|
976
983
|
}[];
|
|
977
984
|
};
|
|
985
|
+
totalWorkflows: number;
|
|
978
986
|
shouldCache: boolean;
|
|
979
987
|
}>;
|
|
980
988
|
export type BreakingChangeLightReportResult = z.infer<typeof breakingChangeLightReportResultDataSchema>;
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.breakingChangeIssueLevelSchema = exports.breakingChangeRuleSeveritySchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
|
-
exports.breakingChangeRuleSeveritySchema = zod_1.z.enum(['low', 'medium', '
|
|
5
|
+
exports.breakingChangeRuleSeveritySchema = zod_1.z.enum(['low', 'medium', 'critical']);
|
|
6
6
|
exports.breakingChangeIssueLevelSchema = zod_1.z.enum(['info', 'warning', 'error']);
|
|
7
|
+
const breakingChangeVersionSchema = zod_1.z.enum(['v2']);
|
|
7
8
|
const recommendationSchema = zod_1.z.object({
|
|
8
9
|
action: zod_1.z.string(),
|
|
9
10
|
description: zod_1.z.string(),
|
|
@@ -60,10 +61,12 @@ const breakingChangeLightReportDataSchema = {
|
|
|
60
61
|
const breakingChangeLightReportSchema = zod_1.z.object(breakingChangeLightReportDataSchema).strict();
|
|
61
62
|
const breakingChangeReportResultDataSchema = zod_1.z.object({
|
|
62
63
|
report: breakingChangeReportSchema,
|
|
64
|
+
totalWorkflows: zod_1.z.number(),
|
|
63
65
|
shouldCache: zod_1.z.boolean(),
|
|
64
66
|
});
|
|
65
67
|
const breakingChangeLightReportResultDataSchema = zod_1.z.object({
|
|
66
68
|
report: breakingChangeLightReportSchema,
|
|
69
|
+
totalWorkflows: zod_1.z.number(),
|
|
67
70
|
shouldCache: zod_1.z.boolean(),
|
|
68
71
|
});
|
|
69
72
|
//# sourceMappingURL=breaking-changes.schema.js.map
|
|
@@ -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,
|
|
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.55.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/config": "1.
|
|
14
|
-
"@n8n/
|
|
13
|
+
"@n8n/typescript-config": "1.3.0",
|
|
14
|
+
"@n8n/config": "1.63.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.
|
|
20
|
+
"n8n-workflow": "1.118.0",
|
|
21
21
|
"@n8n/permissions": "0.42.0"
|
|
22
22
|
},
|
|
23
23
|
"license": "SEE LICENSE IN LICENSE.md",
|