@n8n/api-types 1.8.1 → 1.10.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 +31 -12
- package/dist/chat-hub.js +20 -5
- package/dist/chat-hub.js.map +1 -1
- package/dist/dto/ai/ai-build-request.dto.d.ts +42 -0
- package/dist/dto/ai/ai-build-request.dto.js +21 -0
- package/dist/dto/ai/ai-build-request.dto.js.map +1 -1
- package/dist/dto/ai/ai-clear-session-request.dto.d.ts +9 -0
- package/dist/dto/ai/ai-clear-session-request.dto.js +11 -0
- package/dist/dto/ai/ai-clear-session-request.dto.js.map +1 -0
- package/dist/dto/ai/ai-session-retrieval-request.dto.d.ts +2 -0
- package/dist/dto/ai/ai-session-retrieval-request.dto.js +1 -0
- package/dist/dto/ai/ai-session-retrieval-request.dto.js.map +1 -1
- package/dist/dto/ai/ai-truncate-messages-request.dto.d.ts +2 -0
- package/dist/dto/ai/ai-truncate-messages-request.dto.js +1 -0
- package/dist/dto/ai/ai-truncate-messages-request.dto.js.map +1 -1
- package/dist/dto/credentials/credentials-get-many-request.dto.d.ts +7 -4
- package/dist/dto/credentials/credentials-get-many-request.dto.js +5 -0
- package/dist/dto/credentials/credentials-get-many-request.dto.js.map +1 -1
- package/dist/dto/data-table/create-data-table-column.dto.d.ts +5 -2
- package/dist/dto/data-table/create-data-table-column.dto.js +2 -0
- package/dist/dto/data-table/create-data-table-column.dto.js.map +1 -1
- package/dist/dto/data-table/create-data-table.dto.d.ts +4 -0
- package/dist/dto/data-table/download-data-table-csv-query.dto.d.ts +9 -0
- package/dist/dto/data-table/download-data-table-csv-query.dto.js +20 -0
- package/dist/dto/data-table/download-data-table-csv-query.dto.js.map +1 -0
- package/dist/dto/index.d.ts +5 -3
- package/dist/dto/index.js +9 -4
- package/dist/dto/index.js.map +1 -1
- package/dist/dto/quick-connect/create-quick-connect-credential.dto.d.ts +4 -6
- package/dist/dto/quick-connect/create-quick-connect-credential.dto.js +4 -5
- package/dist/dto/quick-connect/create-quick-connect-credential.dto.js.map +1 -1
- package/dist/dto/quick-connect/index.d.ts +1 -1
- package/dist/dto/quick-connect/index.js +2 -2
- package/dist/dto/quick-connect/index.js.map +1 -1
- package/dist/dto/variables/base.dto.d.ts +1 -5
- package/dist/dto/variables/base.dto.js +2 -9
- package/dist/dto/variables/base.dto.js.map +1 -1
- package/dist/dto/variables/create-variable-request.dto.d.ts +4 -2
- package/dist/dto/variables/create-variable-request.dto.js +8 -1
- package/dist/dto/variables/create-variable-request.dto.js.map +1 -1
- package/dist/dto/variables/update-variable-request.dto.js +7 -1
- package/dist/dto/variables/update-variable-request.dto.js.map +1 -1
- package/dist/frontend-settings.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/push/collaboration.d.ts +1 -0
- package/dist/quick-connect.d.ts +10 -2
- package/dist/schemas/secrets-provider.schema.d.ts +13 -0
- package/dist/schemas/secrets-provider.schema.js +1 -0
- package/dist/schemas/secrets-provider.schema.js.map +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"download-data-table-csv-query.dto.js","sourceRoot":"","sources":["../../../src/dto/data-table/download-data-table-csv-query.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AAEpC,MAAM,gBAAgB,GAAG,OAAC;KACxB,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,CAAC;KAChC,QAAQ,EAAE;KACV,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE;IAClB,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE,CAAC;QAC7B,OAAO,GAAG,KAAK,MAAM,CAAC;IACvB,CAAC;IACD,OAAO,GAAG,IAAI,IAAI,CAAC;AACpB,CAAC,CAAC,CAAC;AAEJ,MAAa,4BAA6B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACzD,oBAAoB,EAAE,gBAAgB;CACtC,CAAC;CAAG;AAFL,oEAEK"}
|
package/dist/dto/index.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
export { GetNodeTypesByIdentifierRequestDto } from './node-types/get-node-types-by-identifier.dto';
|
|
2
2
|
export { AiAskRequestDto } from './ai/ai-ask-request.dto';
|
|
3
3
|
export { AiChatRequestDto } from './ai/ai-chat-request.dto';
|
|
4
|
-
export { AiBuilderChatRequestDto } from './ai/ai-build-request.dto';
|
|
4
|
+
export { AiBuilderChatRequestDto, type SelectedNodeContext } from './ai/ai-build-request.dto';
|
|
5
5
|
export { AiApplySuggestionRequestDto } from './ai/ai-apply-suggestion-request.dto';
|
|
6
6
|
export { AiFreeCreditsRequestDto } from './ai/ai-free-credits-request.dto';
|
|
7
7
|
export { AiSessionRetrievalRequestDto } from './ai/ai-session-retrieval-request.dto';
|
|
8
8
|
export { AiUsageSettingsRequestDto } from './ai/ai-usage-settings-request.dto';
|
|
9
9
|
export { AiTruncateMessagesRequestDto } from './ai/ai-truncate-messages-request.dto';
|
|
10
|
+
export { AiClearSessionRequestDto } from './ai/ai-clear-session-request.dto';
|
|
10
11
|
export { BinaryDataQueryDto } from './binary-data/binary-data-query.dto';
|
|
11
12
|
export { BinaryDataSignedQueryDto } from './binary-data/binary-data-signed-query.dto';
|
|
12
13
|
export { LoginRequestDto } from './auth/login-request.dto';
|
|
@@ -44,7 +45,7 @@ export { PushWorkFolderRequestDto } from './source-control/push-work-folder-requ
|
|
|
44
45
|
export { type GitCommitInfo } from './source-control/push-work-folder-response.dto';
|
|
45
46
|
export { CreateCredentialDto } from './credentials/create-credential.dto';
|
|
46
47
|
export { VariableListRequestDto } from './variables/variables-list-request.dto';
|
|
47
|
-
export { CreateVariableRequestDto } from './variables/create-variable-request.dto';
|
|
48
|
+
export { CreateVariableRequestDto, NEW_VARIABLE_KEY_REGEX, } from './variables/create-variable-request.dto';
|
|
48
49
|
export { UpdateVariableRequestDto } from './variables/update-variable-request.dto';
|
|
49
50
|
export { CredentialsGetOneRequestQuery } from './credentials/credentials-get-one-request.dto';
|
|
50
51
|
export { CredentialsGetManyRequestQuery } from './credentials/credentials-get-many-request.dto';
|
|
@@ -90,6 +91,7 @@ export { AddDataTableRowsDto } from './data-table/add-data-table-rows.dto';
|
|
|
90
91
|
export { AddDataTableColumnDto } from './data-table/add-data-table-column.dto';
|
|
91
92
|
export { MoveDataTableColumnDto } from './data-table/move-data-table-column.dto';
|
|
92
93
|
export { RenameDataTableColumnDto } from './data-table/rename-data-table-column.dto';
|
|
94
|
+
export { DownloadDataTableCsvQueryDto } from './data-table/download-data-table-csv-query.dto';
|
|
93
95
|
export { OAuthClientResponseDto, ListOAuthClientsResponseDto, DeleteOAuthClientResponseDto, } from './oauth/oauth-client.dto';
|
|
94
96
|
export { ProvisioningConfigDto, ProvisioningConfigPatchDto } from './provisioning/config.dto';
|
|
95
97
|
export { SecuritySettingsDto, UpdateSecuritySettingsDto, } from './security-settings/security-settings.dto';
|
|
@@ -99,4 +101,4 @@ export { CreateSecretsProviderConnectionDto } from './secrets-provider/create-se
|
|
|
99
101
|
export { SetSecretsProviderConnectionIsEnabledDto } from './secrets-provider/set-secrets-provider-connection-is-enabled.dto';
|
|
100
102
|
export { TestSecretsProviderConnectionDto } from './secrets-provider/test-secrets-provider-connection.dto';
|
|
101
103
|
export { UpdateSecretsProviderConnectionDto } from './secrets-provider/update-secrets-provider-connection.dto';
|
|
102
|
-
export {
|
|
104
|
+
export { GetQuickConnectApiKeyDto } from './quick-connect/create-quick-connect-credential.dto';
|
package/dist/dto/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
3
|
+
exports.NEW_VARIABLE_KEY_REGEX = exports.CreateVariableRequestDto = exports.VariableListRequestDto = exports.CreateCredentialDto = exports.PushWorkFolderRequestDto = exports.AUTO_PUBLISH_MODE = exports.PullWorkFolderRequestDto = exports.CommunityRegisteredRequestDto = exports.UserUpdateRequestDto = exports.UserSelfSettingsUpdateRequestDto = exports.SettingsUpdateRequestDto = exports.RoleChangeRequestDto = exports.PasswordUpdateRequestDto = exports.SamlToggleDto = exports.SamlPreferencesAttributeMapping = exports.SamlPreferences = exports.SamlAcsDto = exports.ChangeUserRoleInProject = exports.AddUsersToProjectDto = exports.DeleteProjectDto = exports.UpdateProjectWithRelationsDto = exports.UpdateProjectDto = exports.CreateProjectDto = exports.ChangePasswordRequestDto = exports.ResolvePasswordTokenQueryDto = exports.ForgotPasswordRequestDto = exports.DismissBannerRequestDto = exports.OwnerSetupRequestDto = exports.AcceptInvitationRequestDto = exports.InviteUsersRequestDto = exports.ActionResultRequestDto = exports.ResourceMapperFieldsRequestDto = exports.ResourceLocatorRequestDto = exports.OptionsRequestDto = exports.UpdateCredentialResolverDto = exports.CreateCredentialResolverDto = exports.ResolveSignupTokenQueryDto = exports.LoginRequestDto = exports.BinaryDataSignedQueryDto = exports.BinaryDataQueryDto = exports.AiClearSessionRequestDto = exports.AiTruncateMessagesRequestDto = exports.AiUsageSettingsRequestDto = exports.AiSessionRetrievalRequestDto = exports.AiFreeCreditsRequestDto = exports.AiApplySuggestionRequestDto = exports.AiBuilderChatRequestDto = exports.AiChatRequestDto = exports.AiAskRequestDto = exports.GetNodeTypesByIdentifierRequestDto = void 0;
|
|
4
|
+
exports.OAuthClientResponseDto = exports.DownloadDataTableCsvQueryDto = exports.RenameDataTableColumnDto = exports.MoveDataTableColumnDto = exports.AddDataTableColumnDto = exports.AddDataTableRowsDto = exports.CreateDataTableColumnDto = exports.PublicApiListDataTableContentQueryDto = exports.ListDataTableContentQueryDto = exports.PublicApiListDataTableQueryDto = exports.ListDataTableQueryDto = exports.UpsertDataTableRowDto = exports.DeleteDataTableRowsDto = exports.UpdateDataTableRowDto = exports.UpdateDataTableDto = exports.CreateDataTableDto = exports.OidcConfigDto = exports.RoleGetQueryDto = exports.RoleListQueryDto = exports.CreateRoleDto = exports.UpdateRoleDto = exports.USERS_LIST_SORT_OPTIONS = exports.UsersListFilterDto = exports.PaginationDto = exports.DeleteDestinationQueryDto = exports.TestDestinationQueryDto = exports.CreateDestinationDto = exports.GetDestinationQueryDto = exports.InsightsDateFilterDto = exports.ListInsightsWorkflowQueryDto = exports.TransferFolderBodyDto = exports.ListFolderQueryDto = exports.DeleteFolderDto = exports.UpdateFolderDto = exports.CreateFolderDto = exports.CreateApiKeyRequestDto = exports.UpdateApiKeyRequestDto = exports.RetrieveTagQueryDto = exports.CreateOrUpdateTagRequestDto = exports.ArchiveWorkflowDto = exports.DeactivateWorkflowDto = exports.ActivateWorkflowDto = exports.TransferWorkflowBodyDto = exports.ImportWorkflowFromUrlDto = exports.UpdateWorkflowDto = exports.CreateWorkflowDto = exports.GenerateCredentialNameRequestQuery = exports.CredentialsGetManyRequestQuery = exports.CredentialsGetOneRequestQuery = exports.UpdateVariableRequestDto = void 0;
|
|
5
|
+
exports.GetQuickConnectApiKeyDto = exports.UpdateSecretsProviderConnectionDto = exports.TestSecretsProviderConnectionDto = exports.SetSecretsProviderConnectionIsEnabledDto = exports.CreateSecretsProviderConnectionDto = exports.UpdateWorkflowHistoryVersionDto = exports.WorkflowHistoryVersionsByIdsDto = exports.UpdateSecuritySettingsDto = exports.SecuritySettingsDto = exports.ProvisioningConfigPatchDto = exports.ProvisioningConfigDto = exports.DeleteOAuthClientResponseDto = exports.ListOAuthClientsResponseDto = void 0;
|
|
6
6
|
var get_node_types_by_identifier_dto_1 = require("./node-types/get-node-types-by-identifier.dto");
|
|
7
7
|
Object.defineProperty(exports, "GetNodeTypesByIdentifierRequestDto", { enumerable: true, get: function () { return get_node_types_by_identifier_dto_1.GetNodeTypesByIdentifierRequestDto; } });
|
|
8
8
|
var ai_ask_request_dto_1 = require("./ai/ai-ask-request.dto");
|
|
@@ -21,6 +21,8 @@ var ai_usage_settings_request_dto_1 = require("./ai/ai-usage-settings-request.dt
|
|
|
21
21
|
Object.defineProperty(exports, "AiUsageSettingsRequestDto", { enumerable: true, get: function () { return ai_usage_settings_request_dto_1.AiUsageSettingsRequestDto; } });
|
|
22
22
|
var ai_truncate_messages_request_dto_1 = require("./ai/ai-truncate-messages-request.dto");
|
|
23
23
|
Object.defineProperty(exports, "AiTruncateMessagesRequestDto", { enumerable: true, get: function () { return ai_truncate_messages_request_dto_1.AiTruncateMessagesRequestDto; } });
|
|
24
|
+
var ai_clear_session_request_dto_1 = require("./ai/ai-clear-session-request.dto");
|
|
25
|
+
Object.defineProperty(exports, "AiClearSessionRequestDto", { enumerable: true, get: function () { return ai_clear_session_request_dto_1.AiClearSessionRequestDto; } });
|
|
24
26
|
var binary_data_query_dto_1 = require("./binary-data/binary-data-query.dto");
|
|
25
27
|
Object.defineProperty(exports, "BinaryDataQueryDto", { enumerable: true, get: function () { return binary_data_query_dto_1.BinaryDataQueryDto; } });
|
|
26
28
|
var binary_data_signed_query_dto_1 = require("./binary-data/binary-data-signed-query.dto");
|
|
@@ -97,6 +99,7 @@ var variables_list_request_dto_1 = require("./variables/variables-list-request.d
|
|
|
97
99
|
Object.defineProperty(exports, "VariableListRequestDto", { enumerable: true, get: function () { return variables_list_request_dto_1.VariableListRequestDto; } });
|
|
98
100
|
var create_variable_request_dto_1 = require("./variables/create-variable-request.dto");
|
|
99
101
|
Object.defineProperty(exports, "CreateVariableRequestDto", { enumerable: true, get: function () { return create_variable_request_dto_1.CreateVariableRequestDto; } });
|
|
102
|
+
Object.defineProperty(exports, "NEW_VARIABLE_KEY_REGEX", { enumerable: true, get: function () { return create_variable_request_dto_1.NEW_VARIABLE_KEY_REGEX; } });
|
|
100
103
|
var update_variable_request_dto_1 = require("./variables/update-variable-request.dto");
|
|
101
104
|
Object.defineProperty(exports, "UpdateVariableRequestDto", { enumerable: true, get: function () { return update_variable_request_dto_1.UpdateVariableRequestDto; } });
|
|
102
105
|
var credentials_get_one_request_dto_1 = require("./credentials/credentials-get-one-request.dto");
|
|
@@ -190,6 +193,8 @@ var move_data_table_column_dto_1 = require("./data-table/move-data-table-column.
|
|
|
190
193
|
Object.defineProperty(exports, "MoveDataTableColumnDto", { enumerable: true, get: function () { return move_data_table_column_dto_1.MoveDataTableColumnDto; } });
|
|
191
194
|
var rename_data_table_column_dto_1 = require("./data-table/rename-data-table-column.dto");
|
|
192
195
|
Object.defineProperty(exports, "RenameDataTableColumnDto", { enumerable: true, get: function () { return rename_data_table_column_dto_1.RenameDataTableColumnDto; } });
|
|
196
|
+
var download_data_table_csv_query_dto_1 = require("./data-table/download-data-table-csv-query.dto");
|
|
197
|
+
Object.defineProperty(exports, "DownloadDataTableCsvQueryDto", { enumerable: true, get: function () { return download_data_table_csv_query_dto_1.DownloadDataTableCsvQueryDto; } });
|
|
193
198
|
var oauth_client_dto_1 = require("./oauth/oauth-client.dto");
|
|
194
199
|
Object.defineProperty(exports, "OAuthClientResponseDto", { enumerable: true, get: function () { return oauth_client_dto_1.OAuthClientResponseDto; } });
|
|
195
200
|
Object.defineProperty(exports, "ListOAuthClientsResponseDto", { enumerable: true, get: function () { return oauth_client_dto_1.ListOAuthClientsResponseDto; } });
|
|
@@ -213,5 +218,5 @@ Object.defineProperty(exports, "TestSecretsProviderConnectionDto", { enumerable:
|
|
|
213
218
|
var update_secrets_provider_connection_dto_1 = require("./secrets-provider/update-secrets-provider-connection.dto");
|
|
214
219
|
Object.defineProperty(exports, "UpdateSecretsProviderConnectionDto", { enumerable: true, get: function () { return update_secrets_provider_connection_dto_1.UpdateSecretsProviderConnectionDto; } });
|
|
215
220
|
var create_quick_connect_credential_dto_1 = require("./quick-connect/create-quick-connect-credential.dto");
|
|
216
|
-
Object.defineProperty(exports, "
|
|
221
|
+
Object.defineProperty(exports, "GetQuickConnectApiKeyDto", { enumerable: true, get: function () { return create_quick_connect_credential_dto_1.GetQuickConnectApiKeyDto; } });
|
|
217
222
|
//# sourceMappingURL=index.js.map
|
package/dist/dto/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":";;;;;AAAA,kGAAmG;AAA1F,sJAAA,kCAAkC,OAAA;AAE3C,8DAA0D;AAAjD,qHAAA,eAAe,OAAA;AACxB,gEAA4D;AAAnD,uHAAA,gBAAgB,OAAA;AACzB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
declare const
|
|
3
|
-
|
|
4
|
-
projectId?: string | undefined;
|
|
2
|
+
declare const GetQuickConnectApiKeyDto_base: import("../../zod-class").ZodClass<{
|
|
3
|
+
quickConnectType: string;
|
|
5
4
|
}, {
|
|
6
|
-
|
|
7
|
-
projectId: z.ZodOptional<z.ZodString>;
|
|
5
|
+
quickConnectType: z.ZodString;
|
|
8
6
|
}>;
|
|
9
|
-
export declare class
|
|
7
|
+
export declare class GetQuickConnectApiKeyDto extends GetQuickConnectApiKeyDto_base {
|
|
10
8
|
}
|
|
11
9
|
export {};
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.GetQuickConnectApiKeyDto = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const zod_class_1 = require("../../zod-class");
|
|
6
|
-
class
|
|
7
|
-
|
|
8
|
-
projectId: zod_1.z.string().optional(),
|
|
6
|
+
class GetQuickConnectApiKeyDto extends zod_class_1.Z.class({
|
|
7
|
+
quickConnectType: zod_1.z.string().min(1).max(128),
|
|
9
8
|
}) {
|
|
10
9
|
}
|
|
11
|
-
exports.
|
|
10
|
+
exports.GetQuickConnectApiKeyDto = GetQuickConnectApiKeyDto;
|
|
12
11
|
//# sourceMappingURL=create-quick-connect-credential.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-quick-connect-credential.dto.js","sourceRoot":"","sources":["../../../src/dto/quick-connect/create-quick-connect-credential.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AAEpC,MAAa
|
|
1
|
+
{"version":3,"file":"create-quick-connect-credential.dto.js","sourceRoot":"","sources":["../../../src/dto/quick-connect/create-quick-connect-credential.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AAEpC,MAAa,wBAAyB,SAAQ,aAAC,CAAC,KAAK,CAAC;IACrD,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;CAC5C,CAAC;CAAG;AAFL,4DAEK"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { GetQuickConnectApiKeyDto } from './create-quick-connect-credential.dto';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.GetQuickConnectApiKeyDto = void 0;
|
|
4
4
|
var create_quick_connect_credential_dto_1 = require("./create-quick-connect-credential.dto");
|
|
5
|
-
Object.defineProperty(exports, "
|
|
5
|
+
Object.defineProperty(exports, "GetQuickConnectApiKeyDto", { enumerable: true, get: function () { return create_quick_connect_credential_dto_1.GetQuickConnectApiKeyDto; } });
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/dto/quick-connect/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/dto/quick-connect/index.ts"],"names":[],"mappings":";;;AAAA,6FAAiF;AAAxE,+IAAA,wBAAwB,OAAA"}
|
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const KEY_MAX_LENGTH = 50;
|
|
2
|
+
export declare const VARIABLE_KEY_MAX_LENGTH = 50;
|
|
4
3
|
export declare const VALUE_MAX_LENGTH = 1000;
|
|
5
4
|
export declare const TYPE_ENUM: readonly ["string"];
|
|
6
5
|
export declare const TYPE_DEFAULT: (typeof TYPE_ENUM)[number];
|
|
7
|
-
export declare const variableKeySchema: z.ZodString;
|
|
8
6
|
export declare const variableValueSchema: z.ZodString;
|
|
9
7
|
export declare const variableTypeSchema: z.ZodDefault<z.ZodEnum<["string"]>>;
|
|
10
8
|
declare const BaseVariableRequestDto_base: import("../../zod-class").ZodClass<{
|
|
11
9
|
value: string;
|
|
12
10
|
type: "string";
|
|
13
|
-
key: string;
|
|
14
11
|
}, {
|
|
15
|
-
key: z.ZodString;
|
|
16
12
|
type: z.ZodDefault<z.ZodEnum<["string"]>>;
|
|
17
13
|
value: z.ZodString;
|
|
18
14
|
}>;
|
|
@@ -1,24 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BaseVariableRequestDto = exports.variableTypeSchema = exports.variableValueSchema = exports.
|
|
3
|
+
exports.BaseVariableRequestDto = exports.variableTypeSchema = exports.variableValueSchema = exports.TYPE_DEFAULT = exports.TYPE_ENUM = exports.VALUE_MAX_LENGTH = exports.VARIABLE_KEY_MAX_LENGTH = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const zod_class_1 = require("../../zod-class");
|
|
6
|
-
exports.
|
|
7
|
-
exports.KEY_MAX_LENGTH = 50;
|
|
6
|
+
exports.VARIABLE_KEY_MAX_LENGTH = 50;
|
|
8
7
|
exports.VALUE_MAX_LENGTH = 1000;
|
|
9
8
|
exports.TYPE_ENUM = ['string'];
|
|
10
9
|
exports.TYPE_DEFAULT = 'string';
|
|
11
|
-
exports.variableKeySchema = zod_1.z
|
|
12
|
-
.string()
|
|
13
|
-
.min(1, 'key must be at least 1 character long')
|
|
14
|
-
.max(exports.KEY_MAX_LENGTH, 'key cannot be longer than 50 characters')
|
|
15
|
-
.regex(exports.KEY_NAME_REGEX, 'key can only contain characters A-Za-z0-9_');
|
|
16
10
|
exports.variableValueSchema = zod_1.z
|
|
17
11
|
.string()
|
|
18
12
|
.max(exports.VALUE_MAX_LENGTH, `value cannot be longer than ${exports.VALUE_MAX_LENGTH} characters`);
|
|
19
13
|
exports.variableTypeSchema = zod_1.z.enum(exports.TYPE_ENUM).default(exports.TYPE_DEFAULT);
|
|
20
14
|
class BaseVariableRequestDto extends zod_class_1.Z.class({
|
|
21
|
-
key: exports.variableKeySchema,
|
|
22
15
|
type: exports.variableTypeSchema,
|
|
23
16
|
value: exports.variableValueSchema,
|
|
24
17
|
}) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.dto.js","sourceRoot":"","sources":["../../../src/dto/variables/base.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AAEvB,QAAA,
|
|
1
|
+
{"version":3,"file":"base.dto.js","sourceRoot":"","sources":["../../../src/dto/variables/base.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AAEvB,QAAA,uBAAuB,GAAG,EAAE,CAAC;AAC7B,QAAA,gBAAgB,GAAG,IAAI,CAAC;AACxB,QAAA,SAAS,GAAG,CAAC,QAAQ,CAAU,CAAC;AAChC,QAAA,YAAY,GAA+B,QAAQ,CAAC;AAEpD,QAAA,mBAAmB,GAAG,OAAC;KAClC,MAAM,EAAE;KACR,GAAG,CAAC,wBAAgB,EAAE,+BAA+B,wBAAgB,aAAa,CAAC,CAAC;AAEzE,QAAA,kBAAkB,GAAG,OAAC,CAAC,IAAI,CAAC,iBAAS,CAAC,CAAC,OAAO,CAAC,oBAAY,CAAC,CAAC;AAE1E,MAAa,sBAAuB,SAAQ,aAAC,CAAC,KAAK,CAAC;IACnD,IAAI,EAAE,0BAAkB;IACxB,KAAK,EAAE,2BAAmB;CAC1B,CAAC;CAAG;AAHL,wDAGK"}
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const NEW_VARIABLE_KEY_REGEX: RegExp;
|
|
3
|
+
export declare const strictVariableKeySchema: z.ZodString;
|
|
2
4
|
declare const CreateVariableRequestDto_base: import("../..").ZodClass<{
|
|
3
5
|
value: string;
|
|
4
6
|
type: "string";
|
|
5
|
-
key: string;
|
|
6
7
|
} & {
|
|
8
|
+
key: string;
|
|
7
9
|
projectId?: string | undefined;
|
|
8
10
|
}, {
|
|
9
|
-
key: z.ZodString;
|
|
10
11
|
type: z.ZodDefault<z.ZodEnum<["string"]>>;
|
|
11
12
|
value: z.ZodString;
|
|
12
13
|
} & {
|
|
14
|
+
key: z.ZodString;
|
|
13
15
|
projectId: z.ZodOptional<z.ZodString>;
|
|
14
16
|
}>;
|
|
15
17
|
export declare class CreateVariableRequestDto extends CreateVariableRequestDto_base {
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateVariableRequestDto = void 0;
|
|
3
|
+
exports.CreateVariableRequestDto = exports.strictVariableKeySchema = exports.NEW_VARIABLE_KEY_REGEX = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const base_dto_1 = require("./base.dto");
|
|
6
|
+
exports.NEW_VARIABLE_KEY_REGEX = /^[A-Za-z_][A-Za-z0-9_]*$/;
|
|
7
|
+
exports.strictVariableKeySchema = zod_1.z
|
|
8
|
+
.string()
|
|
9
|
+
.min(1, 'key must be at least 1 character long')
|
|
10
|
+
.max(base_dto_1.VARIABLE_KEY_MAX_LENGTH, 'key cannot be longer than 50 characters')
|
|
11
|
+
.regex(exports.NEW_VARIABLE_KEY_REGEX, 'key can only contain letters, numbers (not as first character), and underscores (A-Za-z0-9_)');
|
|
6
12
|
class CreateVariableRequestDto extends base_dto_1.BaseVariableRequestDto.extend({
|
|
13
|
+
key: exports.strictVariableKeySchema,
|
|
7
14
|
projectId: zod_1.z.string().max(36).optional(),
|
|
8
15
|
}) {
|
|
9
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-variable-request.dto.js","sourceRoot":"","sources":["../../../src/dto/variables/create-variable-request.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,
|
|
1
|
+
{"version":3,"file":"create-variable-request.dto.js","sourceRoot":"","sources":["../../../src/dto/variables/create-variable-request.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,yCAA6E;AAEhE,QAAA,sBAAsB,GAAG,0BAA0B,CAAC;AAEpD,QAAA,uBAAuB,GAAG,OAAC;KACtC,MAAM,EAAE;KACR,GAAG,CAAC,CAAC,EAAE,uCAAuC,CAAC;KAC/C,GAAG,CAAC,kCAAuB,EAAE,yCAAyC,CAAC;KACvE,KAAK,CACL,8BAAsB,EACtB,8FAA8F,CAC9F,CAAC;AAEH,MAAa,wBAAyB,SAAQ,iCAAsB,CAAC,MAAM,CAAC;IAC3E,GAAG,EAAE,+BAAuB;IAC5B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;CACxC,CAAC;CAAG;AAHL,4DAGK"}
|
|
@@ -4,8 +4,14 @@ exports.UpdateVariableRequestDto = void 0;
|
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const base_dto_1 = require("./base.dto");
|
|
6
6
|
const zod_class_1 = require("../../zod-class");
|
|
7
|
+
const VARIABLE_KEY_REGEX = /^[A-Za-z0-9_]+$/;
|
|
8
|
+
const variableKeySchema = zod_1.z
|
|
9
|
+
.string()
|
|
10
|
+
.min(1, 'key must be at least 1 character long')
|
|
11
|
+
.max(base_dto_1.VARIABLE_KEY_MAX_LENGTH, 'key cannot be longer than 50 characters')
|
|
12
|
+
.regex(VARIABLE_KEY_REGEX, 'key can only contain characters A-Za-z0-9_');
|
|
7
13
|
class UpdateVariableRequestDto extends zod_class_1.Z.class({
|
|
8
|
-
key:
|
|
14
|
+
key: variableKeySchema.optional(),
|
|
9
15
|
type: base_dto_1.variableTypeSchema.optional(),
|
|
10
16
|
value: base_dto_1.variableValueSchema.optional(),
|
|
11
17
|
projectId: zod_1.z.string().max(36).optional().nullable(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-variable-request.dto.js","sourceRoot":"","sources":["../../../src/dto/variables/update-variable-request.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,
|
|
1
|
+
{"version":3,"file":"update-variable-request.dto.js","sourceRoot":"","sources":["../../../src/dto/variables/update-variable-request.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,yCAA8F;AAC9F,+CAAoC;AAOpC,MAAM,kBAAkB,GAAG,iBAAiB,CAAC;AAE7C,MAAM,iBAAiB,GAAG,OAAC;KACzB,MAAM,EAAE;KACR,GAAG,CAAC,CAAC,EAAE,uCAAuC,CAAC;KAC/C,GAAG,CAAC,kCAAuB,EAAE,yCAAyC,CAAC;KACvE,KAAK,CAAC,kBAAkB,EAAE,4CAA4C,CAAC,CAAC;AAE1E,MAAa,wBAAyB,SAAQ,aAAC,CAAC,KAAK,CAAC;IACrD,GAAG,EAAE,iBAAiB,CAAC,QAAQ,EAAE;IACjC,IAAI,EAAE,6BAAkB,CAAC,QAAQ,EAAE;IACnC,KAAK,EAAE,8BAAmB,CAAC,QAAQ,EAAE;IACrC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACnD,CAAC;CAAG;AALL,4DAKK"}
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export type * from './user';
|
|
|
8
8
|
export type * from './api-keys';
|
|
9
9
|
export type * from './community-node-types';
|
|
10
10
|
export type * from './quick-connect';
|
|
11
|
-
export { chatHubConversationModelSchema, type ChatModelDto, type ChatModelMetadataDto, type ChatHubInputModality, 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,
|
|
11
|
+
export { chatHubConversationModelSchema, type ChatModelDto, type ChatModelMetadataDto, type ChatHubInputModality, 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
12
|
export type { ChatHubPushMessage, ChatHubStreamEvent, ChatHubStreamBegin, ChatHubStreamChunk, ChatHubStreamEnd, ChatHubStreamError, ChatHubStreamMetadata, ChatHubExecutionEvent, ChatHubExecutionBegin, ChatHubExecutionEnd, ChatHubHumanMessageCreated, ChatHubMessageEdited, ChatHubAttachmentInfo, } from './push/chat-hub';
|
|
13
13
|
export type { Collaborator } from './push/collaboration';
|
|
14
14
|
export type { HeartbeatMessage } from './push/heartbeat';
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ 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.reloadSecretProviderConnectionResponseSchema = exports.testSecretProviderConnectionResponseSchema = exports.WorkflowExecutionStatusSchema = 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.chatHubMessageWithButtonsSchema = exports.ChatReconnectRequest = exports.UpdateChatSettingsRequest = 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;
|
|
17
|
+
exports.reloadSecretProviderConnectionResponseSchema = exports.testSecretProviderConnectionResponseSchema = exports.WorkflowExecutionStatusSchema = 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.CHAT_USER_BLOCKED_CHAT_HUB_TOOL_TYPES = exports.ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES = exports.ChatHubUpdateToolRequest = exports.ChatHubCreateToolRequest = exports.chatHubMessageWithButtonsSchema = exports.ChatReconnectRequest = exports.UpdateChatSettingsRequest = 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
18
|
var zod_class_1 = require("./zod-class");
|
|
19
19
|
Object.defineProperty(exports, "Z", { enumerable: true, get: function () { return zod_class_1.Z; } });
|
|
20
20
|
__exportStar(require("./dto"), exports);
|
|
@@ -37,6 +37,10 @@ Object.defineProperty(exports, "agentIconOrEmojiSchema", { enumerable: true, get
|
|
|
37
37
|
Object.defineProperty(exports, "UpdateChatSettingsRequest", { enumerable: true, get: function () { return chat_hub_1.UpdateChatSettingsRequest; } });
|
|
38
38
|
Object.defineProperty(exports, "ChatReconnectRequest", { enumerable: true, get: function () { return chat_hub_1.ChatReconnectRequest; } });
|
|
39
39
|
Object.defineProperty(exports, "chatHubMessageWithButtonsSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubMessageWithButtonsSchema; } });
|
|
40
|
+
Object.defineProperty(exports, "ChatHubCreateToolRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubCreateToolRequest; } });
|
|
41
|
+
Object.defineProperty(exports, "ChatHubUpdateToolRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubUpdateToolRequest; } });
|
|
42
|
+
Object.defineProperty(exports, "ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES", { enumerable: true, get: function () { return chat_hub_1.ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES; } });
|
|
43
|
+
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; } });
|
|
40
44
|
var heartbeat_1 = require("./push/heartbeat");
|
|
41
45
|
Object.defineProperty(exports, "createHeartbeatMessage", { enumerable: true, get: function () { return heartbeat_1.createHeartbeatMessage; } });
|
|
42
46
|
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":";;;;;;;;;;;;;;;;;AAAA,yCAA+C;AAAtC,8FAAA,CAAC,OAAA;AAEV,wCAAsB;AAQtB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,yCAA+C;AAAtC,8FAAA,CAAC,OAAA;AAEV,wCAAsB;AAQtB,uCA6DoB;AA5DnB,0HAAA,8BAA8B,OAAA;AAY9B,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;AAS3B,qHAAA,yBAAyB,OAAA;AACzB,qHAAA,yBAAyB,OAAA;AAEzB,kHAAA,sBAAsB,OAAA;AAEtB,qHAAA,yBAAyB,OAAA;AAIzB,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;AAqBtC,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,iEAWqC;AAVpC,4HAAA,uBAAuB,OAAA;AACvB,iIAAA,4BAA4B,OAAA;AAC5B,oIAAA,+BAA+B,OAAA;AAM/B,mHAAA,cAAc,OAAA;AACd,8HAAA,yBAAyB,OAAA;AAgB1B,+FAGoD;AAFnD,iJAAA,6BAA6B,OAAA;AA8B9B,6EAG2C;AAF1C,qJAAA,0CAA0C,OAAA;AAC1C,uJAAA,4CAA4C,OAAA"}
|
package/dist/quick-connect.d.ts
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
-
|
|
1
|
+
type QuickConnectGenericOption = {
|
|
2
2
|
packageName: string;
|
|
3
3
|
credentialType: string;
|
|
4
4
|
text: string;
|
|
5
5
|
quickConnectType: string;
|
|
6
|
-
serviceName: string;
|
|
7
6
|
consentText?: string;
|
|
7
|
+
config?: never;
|
|
8
8
|
};
|
|
9
|
+
export type QuickConnectPineconeOption = Omit<QuickConnectGenericOption, 'config'> & {
|
|
10
|
+
quickConnectType: 'pinecone';
|
|
11
|
+
config: {
|
|
12
|
+
integrationId: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
export type QuickConnectOption = QuickConnectGenericOption | QuickConnectPineconeOption;
|
|
16
|
+
export {};
|
|
@@ -112,9 +112,22 @@ export declare const testSecretProviderConnectionResponseSchema: z.ZodObject<{
|
|
|
112
112
|
export type TestSecretProviderConnectionResponse = z.infer<typeof testSecretProviderConnectionResponseSchema>;
|
|
113
113
|
export declare const reloadSecretProviderConnectionResponseSchema: z.ZodObject<{
|
|
114
114
|
success: z.ZodBoolean;
|
|
115
|
+
providers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
116
|
+
success: z.ZodBoolean;
|
|
117
|
+
}, "strip", z.ZodTypeAny, {
|
|
118
|
+
success: boolean;
|
|
119
|
+
}, {
|
|
120
|
+
success: boolean;
|
|
121
|
+
}>>>;
|
|
115
122
|
}, "strip", z.ZodTypeAny, {
|
|
116
123
|
success: boolean;
|
|
124
|
+
providers?: Record<string, {
|
|
125
|
+
success: boolean;
|
|
126
|
+
}> | undefined;
|
|
117
127
|
}, {
|
|
118
128
|
success: boolean;
|
|
129
|
+
providers?: Record<string, {
|
|
130
|
+
success: boolean;
|
|
131
|
+
}> | undefined;
|
|
119
132
|
}>;
|
|
120
133
|
export type ReloadSecretProviderConnectionResponse = z.infer<typeof reloadSecretProviderConnectionResponseSchema>;
|
|
@@ -53,5 +53,6 @@ exports.testSecretProviderConnectionResponseSchema = zod_1.z.object({
|
|
|
53
53
|
});
|
|
54
54
|
exports.reloadSecretProviderConnectionResponseSchema = zod_1.z.object({
|
|
55
55
|
success: zod_1.z.boolean(),
|
|
56
|
+
providers: zod_1.z.record(zod_1.z.string(), zod_1.z.object({ success: zod_1.z.boolean() })).optional(),
|
|
56
57
|
});
|
|
57
58
|
//# sourceMappingURL=secrets-provider.schema.js.map
|
|
@@ -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;AAMU,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;
|
|
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;AAMU,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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/api-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
],
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@n8n/typescript-config": "1.3.0",
|
|
14
|
-
"@n8n/config": "2.
|
|
14
|
+
"@n8n/config": "2.9.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.10.0",
|
|
20
|
+
"@n8n/permissions": "0.51.0"
|
|
21
21
|
},
|
|
22
22
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
23
23
|
"homepage": "https://n8n.io",
|