@n8n/api-types 1.11.0 → 1.12.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 +228 -2
- package/dist/chat-hub.js +28 -3
- package/dist/chat-hub.js.map +1 -1
- package/dist/dto/ai/ai-build-request.dto.d.ts +7 -0
- package/dist/dto/log-streaming/create-destination.dto.d.ts +74 -22
- package/dist/dto/secrets-provider/create-secrets-provider-connection.dto.d.ts +2 -2
- package/dist/dto/secrets-provider/update-secrets-provider-connection.dto.d.ts +4 -2
- package/dist/dto/secrets-provider/update-secrets-provider-connection.dto.js +1 -0
- package/dist/dto/secrets-provider/update-secrets-provider-connection.dto.js.map +1 -1
- package/dist/frontend-settings.d.ts +2 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/quick-connect.d.ts +1 -0
- package/dist/schemas/secrets-provider.schema.d.ts +8 -10
- package/dist/schemas/secrets-provider.schema.js +1 -0
- package/dist/schemas/secrets-provider.schema.js.map +1 -1
- package/dist/schemas/workflow-execution-status.schema.d.ts +5 -5
- package/dist/schemas/workflow-execution-status.schema.js +1 -1
- package/dist/schemas/workflow-execution-status.schema.js.map +1 -1
- package/package.json +5 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-secrets-provider-connection.dto.js","sourceRoot":"","sources":["../../../src/dto/secrets-provider/update-secrets-provider-connection.dto.ts"],"names":[],"mappings":";;;AACA,6BAAwB;AAExB,mFAAkF;AAClF,+CAAoC;AAEpC,MAAa,kCAAmC,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC/D,IAAI,EAAE,mDAAyB,CAAC,QAAQ,EAAE;IAC1C,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACjD,QAAQ,EAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,OAAC,CAAC,GAAG,EAAE,CAAmC,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"update-secrets-provider-connection.dto.js","sourceRoot":"","sources":["../../../src/dto/secrets-provider/update-secrets-provider-connection.dto.ts"],"names":[],"mappings":";;;AACA,6BAAwB;AAExB,mFAAkF;AAClF,+CAAoC;AAEpC,MAAa,kCAAmC,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC/D,IAAI,EAAE,mDAAyB,CAAC,QAAQ,EAAE;IAC1C,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACjD,QAAQ,EAAG,OAAC,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,OAAC,CAAC,GAAG,EAAE,CAAmC,CAAC,QAAQ,EAAE;IACtF,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC;CAAG;AALL,gFAKK"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { LogLevel, WorkflowSettings } from 'n8n-workflow';
|
|
2
|
-
import type { ChatHubLLMProvider, ChatProviderSettingsDto } from './chat-hub';
|
|
2
|
+
import type { ChatHubLLMProvider, ChatHubSemanticSearchSettings, ChatProviderSettingsDto } from './chat-hub';
|
|
3
3
|
import type { QuickConnectOption } from './quick-connect';
|
|
4
4
|
import type { InsightsDateRange } from './schemas/insights.schema';
|
|
5
5
|
export interface IVersionNotificationSettings {
|
|
@@ -232,6 +232,7 @@ export type FrontendModuleSettings = {
|
|
|
232
232
|
'chat-hub'?: {
|
|
233
233
|
enabled: boolean;
|
|
234
234
|
providers: Record<ChatHubLLMProvider, ChatProviderSettingsDto>;
|
|
235
|
+
semanticSearch: ChatHubSemanticSearchSettings;
|
|
235
236
|
};
|
|
236
237
|
'quick-connect'?: {
|
|
237
238
|
options: QuickConnectOption[];
|
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export type * from './api-keys';
|
|
|
9
9
|
export type * from './community-node-types';
|
|
10
10
|
export type * from './quick-connect';
|
|
11
11
|
export * from './instance-registry-types';
|
|
12
|
-
export { chatHubConversationModelSchema, type ChatModelDto, type ChatModelMetadataDto, type ChatHubOpenAIModel, type ChatHubAnthropicModel, type ChatHubGoogleModel, type ChatHubBaseLLMModel, type ChatHubN8nModel, type ChatHubCustomAgentModel, type ChatHubConversationModel, type ChatHubModuleSettings, chatHubProviderSchema, chatHubLLMProviderSchema, type ChatHubProvider, type ChatHubLLMProvider, type ChatHubMessageType, type ChatHubMessageStatus, PROVIDER_CREDENTIAL_TYPE_MAP, chatModelsRequestSchema, emptyChatModelsResponse, type ChatModelsRequest, type ChatModelsResponse, chatAttachmentSchema, type ChatAttachment, ChatHubSendMessageRequest, ChatHubRegenerateMessageRequest, ChatHubEditMessageRequest, ChatHubUpdateConversationRequest, ChatHubConversationsRequest, type ChatMessageId, type ChatSessionId, type ChatHubMessageDto, type ChatHubSessionDto, type ChatHubConversationDto, type ChatHubConversationResponse, type ChatHubConversationsResponse, type ChatHubAgentDto, ChatHubCreateAgentRequest, ChatHubUpdateAgentRequest, type AgentIconOrEmoji, agentIconOrEmojiSchema, type MessageChunk, UpdateChatSettingsRequest, type ChatProviderSettingsDto, type ChatSendMessageResponse, type ChatReconnectResponse, ChatReconnectRequest, type ChatArtifact, type ChatArtifactCreateCommand, type ChatArtifactEditCommand, type ChatMessageContentChunk, type ChatHubMessageButton, chatHubMessageWithButtonsSchema, type ChatHubMessageWithButtons, type ChatHubToolDto, ChatHubCreateToolRequest, ChatHubUpdateToolRequest, ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES, CHAT_USER_BLOCKED_CHAT_HUB_TOOL_TYPES, } from './chat-hub';
|
|
12
|
+
export { chatHubConversationModelSchema, type ChatModelDto, type ChatModelMetadataDto, type ChatHubOpenAIModel, type ChatHubAnthropicModel, type ChatHubGoogleModel, type ChatHubBaseLLMModel, type ChatHubN8nModel, type ChatHubCustomAgentModel, type ChatHubConversationModel, type ChatHubModuleSettings, chatHubProviderSchema, chatHubLLMProviderSchema, type ChatHubProvider, type ChatHubLLMProvider, type ChatHubMessageType, type ChatHubMessageStatus, PROVIDER_CREDENTIAL_TYPE_MAP, chatModelsRequestSchema, emptyChatModelsResponse, type ChatModelsRequest, type ChatModelsResponse, chatAttachmentSchema, type ChatAttachment, ChatHubSendMessageRequest, ChatHubRegenerateMessageRequest, ChatHubEditMessageRequest, ChatHubUpdateConversationRequest, ChatHubConversationsRequest, type ChatMessageId, type ChatSessionId, type ChatHubMessageDto, type ChatHubSessionDto, type ChatHubConversationDto, type ChatHubConversationResponse, type ChatHubConversationsResponse, type ChatHubAgentDto, type ChatHubAgentKnowledgeItem, ChatHubCreateAgentRequest, ChatHubUpdateAgentRequest, type AgentIconOrEmoji, agentIconOrEmojiSchema, type SuggestedPrompt, suggestedPromptsSchema, type MessageChunk, UpdateChatSettingsRequest, ChatHubSemanticSearchSettings, type ChatProviderSettingsDto, type ChatSendMessageResponse, type ChatReconnectResponse, ChatReconnectRequest, type ChatArtifact, type ChatArtifactCreateCommand, type ChatArtifactEditCommand, type ChatMessageContentChunk, type ChatHubMessageButton, chatHubMessageWithButtonsSchema, type ChatHubMessageWithButtons, type ChatHubToolDto, ChatHubCreateToolRequest, ChatHubUpdateToolRequest, ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES, CHAT_USER_BLOCKED_CHAT_HUB_TOOL_TYPES, chatHubVectorStoreProviderSchema, type ChatHubVectorStoreProvider, VECTOR_STORE_PROVIDER_CREDENTIAL_TYPE_MAP, } from './chat-hub';
|
|
13
13
|
export type { ChatHubPushMessage, ChatHubStreamEvent, ChatHubStreamBegin, ChatHubStreamChunk, ChatHubStreamEnd, ChatHubStreamError, ChatHubStreamMetadata, ChatHubExecutionEvent, ChatHubExecutionBegin, ChatHubExecutionEnd, ChatHubHumanMessageCreated, ChatHubMessageEdited, ChatHubAttachmentInfo, } from './push/chat-hub';
|
|
14
14
|
export type { Collaborator } from './push/collaboration';
|
|
15
15
|
export type { HeartbeatMessage } from './push/heartbeat';
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.
|
|
17
|
+
exports.dataTableColumnNameSchema = exports.dateTimeSchema = exports.DATA_TABLE_COLUMN_ERROR_MESSAGE = exports.DATA_TABLE_COLUMN_MAX_LENGTH = exports.DATA_TABLE_COLUMN_REGEX = exports.userDetailSchema = exports.userBaseSchema = exports.usersListSchema = exports.ROLE = exports.SOURCE_CONTROL_FILE_TYPE = exports.SOURCE_CONTROL_FILE_STATUS = exports.SOURCE_CONTROL_FILE_LOCATION = exports.isSourceControlledFileStatus = exports.WORKFLOW_VERSION_DESCRIPTION_MAX_LENGTH = exports.WORKFLOW_VERSION_NAME_MAX_LENGTH = exports.credentialResolverTypesSchema = exports.credentialResolverTypeSchema = exports.credentialResolversSchema = exports.credentialResolverSchema = exports.passwordSchema = exports.ViewableMimeTypes = exports.heartbeatMessageSchema = exports.createHeartbeatMessage = exports.VECTOR_STORE_PROVIDER_CREDENTIAL_TYPE_MAP = exports.chatHubVectorStoreProviderSchema = exports.CHAT_USER_BLOCKED_CHAT_HUB_TOOL_TYPES = exports.ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES = exports.ChatHubUpdateToolRequest = exports.ChatHubCreateToolRequest = exports.chatHubMessageWithButtonsSchema = exports.ChatReconnectRequest = exports.ChatHubSemanticSearchSettings = exports.UpdateChatSettingsRequest = exports.suggestedPromptsSchema = exports.agentIconOrEmojiSchema = exports.ChatHubUpdateAgentRequest = exports.ChatHubCreateAgentRequest = exports.ChatHubConversationsRequest = exports.ChatHubUpdateConversationRequest = exports.ChatHubEditMessageRequest = exports.ChatHubRegenerateMessageRequest = exports.ChatHubSendMessageRequest = exports.chatAttachmentSchema = exports.emptyChatModelsResponse = exports.chatModelsRequestSchema = exports.PROVIDER_CREDENTIAL_TYPE_MAP = exports.chatHubLLMProviderSchema = exports.chatHubProviderSchema = exports.chatHubConversationModelSchema = exports.Z = void 0;
|
|
18
|
+
exports.reloadSecretProviderConnectionResponseSchema = exports.testSecretProviderConnectionResponseSchema = exports.MIGRATION_REPORT_TARGET_VERSION = exports.WorkflowExecutionStatusSchema = void 0;
|
|
18
19
|
var zod_class_1 = require("./zod-class");
|
|
19
20
|
Object.defineProperty(exports, "Z", { enumerable: true, get: function () { return zod_class_1.Z; } });
|
|
20
21
|
__exportStar(require("./dto"), exports);
|
|
@@ -35,13 +36,17 @@ Object.defineProperty(exports, "ChatHubConversationsRequest", { enumerable: true
|
|
|
35
36
|
Object.defineProperty(exports, "ChatHubCreateAgentRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubCreateAgentRequest; } });
|
|
36
37
|
Object.defineProperty(exports, "ChatHubUpdateAgentRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubUpdateAgentRequest; } });
|
|
37
38
|
Object.defineProperty(exports, "agentIconOrEmojiSchema", { enumerable: true, get: function () { return chat_hub_1.agentIconOrEmojiSchema; } });
|
|
39
|
+
Object.defineProperty(exports, "suggestedPromptsSchema", { enumerable: true, get: function () { return chat_hub_1.suggestedPromptsSchema; } });
|
|
38
40
|
Object.defineProperty(exports, "UpdateChatSettingsRequest", { enumerable: true, get: function () { return chat_hub_1.UpdateChatSettingsRequest; } });
|
|
41
|
+
Object.defineProperty(exports, "ChatHubSemanticSearchSettings", { enumerable: true, get: function () { return chat_hub_1.ChatHubSemanticSearchSettings; } });
|
|
39
42
|
Object.defineProperty(exports, "ChatReconnectRequest", { enumerable: true, get: function () { return chat_hub_1.ChatReconnectRequest; } });
|
|
40
43
|
Object.defineProperty(exports, "chatHubMessageWithButtonsSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubMessageWithButtonsSchema; } });
|
|
41
44
|
Object.defineProperty(exports, "ChatHubCreateToolRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubCreateToolRequest; } });
|
|
42
45
|
Object.defineProperty(exports, "ChatHubUpdateToolRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubUpdateToolRequest; } });
|
|
43
46
|
Object.defineProperty(exports, "ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES", { enumerable: true, get: function () { return chat_hub_1.ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES; } });
|
|
44
47
|
Object.defineProperty(exports, "CHAT_USER_BLOCKED_CHAT_HUB_TOOL_TYPES", { enumerable: true, get: function () { return chat_hub_1.CHAT_USER_BLOCKED_CHAT_HUB_TOOL_TYPES; } });
|
|
48
|
+
Object.defineProperty(exports, "chatHubVectorStoreProviderSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubVectorStoreProviderSchema; } });
|
|
49
|
+
Object.defineProperty(exports, "VECTOR_STORE_PROVIDER_CREDENTIAL_TYPE_MAP", { enumerable: true, get: function () { return chat_hub_1.VECTOR_STORE_PROVIDER_CREDENTIAL_TYPE_MAP; } });
|
|
45
50
|
var heartbeat_1 = require("./push/heartbeat");
|
|
46
51
|
Object.defineProperty(exports, "createHeartbeatMessage", { enumerable: true, get: function () { return heartbeat_1.createHeartbeatMessage; } });
|
|
47
52
|
Object.defineProperty(exports, "heartbeatMessageSchema", { enumerable: true, get: function () { return heartbeat_1.heartbeatMessageSchema; } });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,yCAA+C;AAAtC,8FAAA,CAAC,OAAA;AAEV,wCAAsB;AAQtB,4DAA0C;AAC1C,uCAmEoB;AAlEnB,0HAAA,8BAA8B,OAAA;AAW9B,iHAAA,qBAAqB,OAAA;AACrB,oHAAA,wBAAwB,OAAA;AAKxB,wHAAA,4BAA4B,OAAA;AAC5B,mHAAA,uBAAuB,OAAA;AACvB,mHAAA,uBAAuB,OAAA;AAGvB,gHAAA,oBAAoB,OAAA;AAEpB,qHAAA,yBAAyB,OAAA;AACzB,2HAAA,+BAA+B,OAAA;AAC/B,qHAAA,yBAAyB,OAAA;AACzB,4HAAA,gCAAgC,OAAA;AAChC,uHAAA,2BAA2B,OAAA;AAU3B,qHAAA,yBAAyB,OAAA;AACzB,qHAAA,yBAAyB,OAAA;AAEzB,kHAAA,sBAAsB,OAAA;AAEtB,kHAAA,sBAAsB,OAAA;AAEtB,qHAAA,yBAAyB,OAAA;AACzB,yHAAA,6BAA6B,OAAA;AAI7B,gHAAA,oBAAoB,OAAA;AAMpB,2HAAA,+BAA+B,OAAA;AAG/B,oHAAA,wBAAwB,OAAA;AACxB,oHAAA,wBAAwB,OAAA;AACxB,8HAAA,kCAAkC,OAAA;AAClC,iIAAA,qCAAqC,OAAA;AACrC,4HAAA,gCAAgC,OAAA;AAEhC,qIAAA,yCAAyC,OAAA;AAqB1C,8CAAkF;AAAzE,mHAAA,sBAAsB,OAAA;AAAE,mHAAA,sBAAsB,OAAA;AAIvD,mEAAiE;AAAxD,uHAAA,iBAAiB,OAAA;AAC1B,6DAA2D;AAAlD,iHAAA,cAAc,OAAA;AACvB,mFAO8C;AAN7C,sIAAA,wBAAwB,OAAA;AACxB,uIAAA,yBAAyB,OAAA;AACzB,0IAAA,4BAA4B,OAAA;AAC5B,2IAAA,6BAA6B,OAAA;AAI9B,6EAG2C;AAF1C,2IAAA,gCAAgC,OAAA;AAChC,kJAAA,uCAAuC,OAAA;AASxC,yFAOiD;AANhD,6IAAA,4BAA4B,OAAA;AAG5B,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,iEAYqC;AAXpC,4HAAA,uBAAuB,OAAA;AACvB,iIAAA,4BAA4B,OAAA;AAC5B,oIAAA,+BAA+B,OAAA;AAO/B,mHAAA,cAAc,OAAA;AACd,8HAAA,yBAAyB,OAAA;AAgB1B,+FAGoD;AAFnD,iJAAA,6BAA6B,OAAA;AAmB9B,6EAAoF;AAA3E,0IAAA,+BAA+B,OAAA;AAcxC,6EAG2C;AAF1C,qJAAA,0CAA0C,OAAA;AAC1C,uJAAA,4CAA4C,OAAA"}
|
package/dist/quick-connect.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const secretsProviderTypeSchema: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical"]>;
|
|
2
|
+
export declare const secretsProviderTypeSchema: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical", "onePassword"]>;
|
|
3
3
|
export type SecretsProviderType = z.infer<typeof secretsProviderTypeSchema>;
|
|
4
4
|
export declare const secretsProviderStateSchema: z.ZodEnum<["initializing", "initialized", "connecting", "connected", "error", "retrying"]>;
|
|
5
5
|
export type SecretsProviderState = z.infer<typeof secretsProviderStateSchema>;
|
|
@@ -8,7 +8,7 @@ export type SecretsProviderConnectionTestState = z.infer<typeof secretsProviderC
|
|
|
8
8
|
export declare const secretProviderConnectionSchema: z.ZodObject<{
|
|
9
9
|
id: z.ZodString;
|
|
10
10
|
name: z.ZodString;
|
|
11
|
-
type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical"]>;
|
|
11
|
+
type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical", "onePassword"]>;
|
|
12
12
|
state: z.ZodEnum<["initializing", "initialized", "connecting", "connected", "error", "retrying"]>;
|
|
13
13
|
isEnabled: z.ZodBoolean;
|
|
14
14
|
projects: z.ZodArray<z.ZodObject<{
|
|
@@ -36,7 +36,7 @@ export declare const secretProviderConnectionSchema: z.ZodObject<{
|
|
|
36
36
|
createdAt: z.ZodString;
|
|
37
37
|
updatedAt: z.ZodString;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
-
type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
|
|
39
|
+
type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
|
|
40
40
|
id: string;
|
|
41
41
|
name: string;
|
|
42
42
|
createdAt: string;
|
|
@@ -56,7 +56,7 @@ export declare const secretProviderConnectionSchema: z.ZodObject<{
|
|
|
56
56
|
credentialsCount?: number | undefined;
|
|
57
57
|
}[] | undefined;
|
|
58
58
|
}, {
|
|
59
|
-
type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
|
|
59
|
+
type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
|
|
60
60
|
id: string;
|
|
61
61
|
name: string;
|
|
62
62
|
createdAt: string;
|
|
@@ -76,21 +76,20 @@ export declare const secretProviderConnectionSchema: z.ZodObject<{
|
|
|
76
76
|
credentialsCount?: number | undefined;
|
|
77
77
|
}[] | undefined;
|
|
78
78
|
}>;
|
|
79
|
-
type
|
|
80
|
-
export type SecretProviderConnection = Omit<SecretProviderConnectionWithIsEnabled, 'isEnabled'>;
|
|
79
|
+
export type SecretProviderConnection = z.infer<typeof secretProviderConnectionSchema>;
|
|
81
80
|
export type SecretProviderConnectionListItem = Omit<SecretProviderConnection, 'settings' | 'secrets'>;
|
|
82
81
|
export declare const secretProviderTypeResponseSchema: z.ZodObject<{
|
|
83
|
-
type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical"]>;
|
|
82
|
+
type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical", "onePassword"]>;
|
|
84
83
|
displayName: z.ZodString;
|
|
85
84
|
icon: z.ZodString;
|
|
86
85
|
properties: z.ZodArray<z.ZodAny, "many">;
|
|
87
86
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
-
type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
|
|
87
|
+
type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
|
|
89
88
|
icon: string;
|
|
90
89
|
displayName: string;
|
|
91
90
|
properties: any[];
|
|
92
91
|
}, {
|
|
93
|
-
type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
|
|
92
|
+
type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
|
|
94
93
|
icon: string;
|
|
95
94
|
displayName: string;
|
|
96
95
|
properties: any[];
|
|
@@ -133,4 +132,3 @@ export declare const reloadSecretProviderConnectionResponseSchema: z.ZodObject<{
|
|
|
133
132
|
}> | undefined;
|
|
134
133
|
}>;
|
|
135
134
|
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;
|
|
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;IACX,aAAa;CACb,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;AAUU,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"}
|
|
@@ -5,21 +5,21 @@ export declare const WorkflowExecutionStatusSchema: z.ZodObject<{
|
|
|
5
5
|
credentialId: z.ZodString;
|
|
6
6
|
credentialName: z.ZodString;
|
|
7
7
|
credentialType: z.ZodString;
|
|
8
|
-
credentialStatus: z.ZodEnum<["missing", "configured"]>;
|
|
8
|
+
credentialStatus: z.ZodEnum<["missing", "configured", "resolver_missing"]>;
|
|
9
9
|
authorizationUrl: z.ZodOptional<z.ZodString>;
|
|
10
10
|
revokeUrl: z.ZodOptional<z.ZodString>;
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
credentialId: string;
|
|
13
13
|
credentialType: string;
|
|
14
14
|
credentialName: string;
|
|
15
|
-
credentialStatus: "missing" | "configured";
|
|
15
|
+
credentialStatus: "missing" | "configured" | "resolver_missing";
|
|
16
16
|
authorizationUrl?: string | undefined;
|
|
17
17
|
revokeUrl?: string | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
credentialId: string;
|
|
20
20
|
credentialType: string;
|
|
21
21
|
credentialName: string;
|
|
22
|
-
credentialStatus: "missing" | "configured";
|
|
22
|
+
credentialStatus: "missing" | "configured" | "resolver_missing";
|
|
23
23
|
authorizationUrl?: string | undefined;
|
|
24
24
|
revokeUrl?: string | undefined;
|
|
25
25
|
}>, "many">>;
|
|
@@ -31,7 +31,7 @@ export declare const WorkflowExecutionStatusSchema: z.ZodObject<{
|
|
|
31
31
|
credentialId: string;
|
|
32
32
|
credentialType: string;
|
|
33
33
|
credentialName: string;
|
|
34
|
-
credentialStatus: "missing" | "configured";
|
|
34
|
+
credentialStatus: "missing" | "configured" | "resolver_missing";
|
|
35
35
|
authorizationUrl?: string | undefined;
|
|
36
36
|
revokeUrl?: string | undefined;
|
|
37
37
|
}[] | undefined;
|
|
@@ -42,7 +42,7 @@ export declare const WorkflowExecutionStatusSchema: z.ZodObject<{
|
|
|
42
42
|
credentialId: string;
|
|
43
43
|
credentialType: string;
|
|
44
44
|
credentialName: string;
|
|
45
|
-
credentialStatus: "missing" | "configured";
|
|
45
|
+
credentialStatus: "missing" | "configured" | "resolver_missing";
|
|
46
46
|
authorizationUrl?: string | undefined;
|
|
47
47
|
revokeUrl?: string | undefined;
|
|
48
48
|
}[] | undefined;
|
|
@@ -9,7 +9,7 @@ exports.WorkflowExecutionStatusSchema = zod_1.z.object({
|
|
|
9
9
|
credentialId: zod_1.z.string(),
|
|
10
10
|
credentialName: zod_1.z.string(),
|
|
11
11
|
credentialType: zod_1.z.string(),
|
|
12
|
-
credentialStatus: zod_1.z.enum(['missing', 'configured']),
|
|
12
|
+
credentialStatus: zod_1.z.enum(['missing', 'configured', 'resolver_missing']),
|
|
13
13
|
authorizationUrl: zod_1.z.string().optional(),
|
|
14
14
|
revokeUrl: zod_1.z.string().optional(),
|
|
15
15
|
}))
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-execution-status.schema.js","sourceRoot":"","sources":["../../src/schemas/workflow-execution-status.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,OAAC;SACZ,KAAK,CACL,OAAC,CAAC,MAAM,CAAC;QACR,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;QACxB,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE;QAC1B,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE;QAC1B,gBAAgB,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"workflow-execution-status.schema.js","sourceRoot":"","sources":["../../src/schemas/workflow-execution-status.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,OAAC;SACZ,KAAK,CACL,OAAC,CAAC,MAAM,CAAC;QACR,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;QACxB,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE;QAC1B,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE;QAC1B,gBAAgB,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,YAAY,EAAE,kBAAkB,CAAC,CAAC;QACvE,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACvC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KAChC,CAAC,CACF;SACA,QAAQ,EAAE;IACZ,cAAc,EAAE,OAAC,CAAC,OAAO,EAAE;CAC3B,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/api-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.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": "
|
|
14
|
-
"@n8n/
|
|
13
|
+
"@n8n/typescript-config": "1.3.0",
|
|
14
|
+
"@n8n/config": "2.11.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.12.0",
|
|
20
|
+
"@n8n/permissions": "0.53.0"
|
|
21
21
|
},
|
|
22
22
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
23
23
|
"homepage": "https://n8n.io",
|