@n8n/api-types 1.10.1 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build.tsbuildinfo +1 -1
- package/dist/chat-hub.d.ts +6 -2
- package/dist/dto/ai/ai-build-request.dto.d.ts +3 -3
- package/dist/dto/data-table/list-data-table-query.dto.d.ts +5 -5
- package/dist/dto/data-table/list-data-table-query.dto.js +2 -0
- package/dist/dto/data-table/list-data-table-query.dto.js.map +1 -1
- package/dist/dto/executions/execution-redaction-query.dto.d.ts +9 -0
- package/dist/dto/executions/execution-redaction-query.dto.js +11 -0
- package/dist/dto/executions/execution-redaction-query.dto.js.map +1 -0
- package/dist/dto/index.d.ts +3 -0
- package/dist/dto/index.js +8 -2
- package/dist/dto/index.js.map +1 -1
- package/dist/dto/roles/role-assignments-response.dto.d.ts +89 -0
- package/dist/dto/roles/role-assignments-response.dto.js +24 -0
- package/dist/dto/roles/role-assignments-response.dto.js.map +1 -0
- package/dist/dto/roles/role-project-members-response.dto.d.ts +54 -0
- package/dist/dto/roles/role-project-members-response.dto.js +18 -0
- package/dist/dto/roles/role-project-members-response.dto.js.map +1 -0
- package/dist/dto/source-control/push-work-folder-request.dto.d.ts +6 -6
- package/dist/frontend-settings.d.ts +5 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/instance-registry-types.d.ts +221 -0
- package/dist/instance-registry-types.js +35 -0
- package/dist/instance-registry-types.js.map +1 -0
- package/dist/schemas/breaking-changes.schema.d.ts +1 -0
- package/dist/schemas/breaking-changes.schema.js +2 -1
- package/dist/schemas/breaking-changes.schema.js.map +1 -1
- package/dist/schemas/data-table.schema.d.ts +1 -0
- package/dist/schemas/data-table.schema.js.map +1 -1
- package/dist/schemas/secrets-provider.schema.d.ts +6 -3
- package/dist/schemas/secrets-provider.schema.js.map +1 -1
- package/dist/schemas/source-controlled-file.schema.d.ts +4 -4
- package/package.json +5 -5
package/dist/chat-hub.d.ts
CHANGED
|
@@ -357,9 +357,9 @@ export declare const chatModelsRequestSchema: z.ZodObject<{
|
|
|
357
357
|
credentials: Partial<Record<"openai" | "anthropic" | "google" | "azureOpenAi" | "azureEntraId" | "ollama" | "awsBedrock" | "vercelAiGateway" | "xAiGrok" | "groq" | "openRouter" | "deepSeek" | "cohere" | "mistralCloud" | "n8n" | "custom-agent", string | null>>;
|
|
358
358
|
}>;
|
|
359
359
|
export type ChatModelsRequest = z.infer<typeof chatModelsRequestSchema>;
|
|
360
|
-
export type ChatHubInputModality = 'text' | 'image' | 'audio' | 'video' | 'file';
|
|
361
360
|
export interface ChatModelMetadataDto {
|
|
362
|
-
|
|
361
|
+
allowFileUploads: boolean;
|
|
362
|
+
allowedFilesMimeTypes: string;
|
|
363
363
|
priority?: number;
|
|
364
364
|
capabilities: {
|
|
365
365
|
functionCalling: boolean;
|
|
@@ -377,6 +377,10 @@ export interface ChatModelDto {
|
|
|
377
377
|
metadata: ChatModelMetadataDto;
|
|
378
378
|
groupName: string | null;
|
|
379
379
|
groupIcon: AgentIconOrEmoji | null;
|
|
380
|
+
suggestedPrompts?: Array<{
|
|
381
|
+
text: string;
|
|
382
|
+
icon?: AgentIconOrEmoji;
|
|
383
|
+
}>;
|
|
380
384
|
}
|
|
381
385
|
export type ChatModelsResponse = Record<ChatHubProvider, {
|
|
382
386
|
models: ChatModelDto[];
|
|
@@ -14,9 +14,9 @@ export interface SelectedNodeContext {
|
|
|
14
14
|
declare const AiBuilderChatRequestDto_base: import("../../zod-class").ZodClass<{
|
|
15
15
|
payload: {
|
|
16
16
|
type: "message";
|
|
17
|
-
text: string;
|
|
18
17
|
role: "user";
|
|
19
18
|
id: string;
|
|
19
|
+
text: string;
|
|
20
20
|
workflowContext: {
|
|
21
21
|
currentWorkflow?: Partial<IWorkflowBase> | undefined;
|
|
22
22
|
executionData?: {
|
|
@@ -122,9 +122,9 @@ declare const AiBuilderChatRequestDto_base: import("../../zod-class").ZodClass<{
|
|
|
122
122
|
resumeData: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodArray<z.ZodUnknown, "many">]>>;
|
|
123
123
|
}, "strip", z.ZodTypeAny, {
|
|
124
124
|
type: "message";
|
|
125
|
-
text: string;
|
|
126
125
|
role: "user";
|
|
127
126
|
id: string;
|
|
127
|
+
text: string;
|
|
128
128
|
workflowContext: {
|
|
129
129
|
currentWorkflow?: Partial<IWorkflowBase> | undefined;
|
|
130
130
|
executionData?: {
|
|
@@ -152,9 +152,9 @@ declare const AiBuilderChatRequestDto_base: import("../../zod-class").ZodClass<{
|
|
|
152
152
|
resumeData?: unknown[] | Record<string, unknown> | undefined;
|
|
153
153
|
}, {
|
|
154
154
|
type: "message";
|
|
155
|
-
text: string;
|
|
156
155
|
role: "user";
|
|
157
156
|
id: string;
|
|
157
|
+
text: string;
|
|
158
158
|
workflowContext: {
|
|
159
159
|
currentWorkflow?: Partial<IWorkflowBase> | undefined;
|
|
160
160
|
executionData?: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
declare const VALID_SORT_OPTIONS: readonly ["name:asc", "name:desc", "createdAt:asc", "createdAt:desc", "updatedAt:asc", "updatedAt:desc"];
|
|
2
|
+
declare const VALID_SORT_OPTIONS: readonly ["name:asc", "name:desc", "createdAt:asc", "createdAt:desc", "updatedAt:asc", "updatedAt:desc", "size:asc", "size:desc"];
|
|
3
3
|
export type ListDataTableQuerySortOptions = (typeof VALID_SORT_OPTIONS)[number];
|
|
4
4
|
declare const ListDataTableQueryDto_base: import("../../zod-class").ZodClass<{
|
|
5
5
|
skip: number;
|
|
@@ -9,14 +9,14 @@ declare const ListDataTableQueryDto_base: import("../../zod-class").ZodClass<{
|
|
|
9
9
|
name?: string | string[] | undefined;
|
|
10
10
|
projectId?: string | string[] | undefined;
|
|
11
11
|
} | undefined;
|
|
12
|
-
sortBy?: "name:asc" | "name:desc" | "createdAt:asc" | "createdAt:desc" | "updatedAt:asc" | "updatedAt:desc" | undefined;
|
|
12
|
+
sortBy?: "name:asc" | "name:desc" | "createdAt:asc" | "createdAt:desc" | "updatedAt:asc" | "updatedAt:desc" | "size:asc" | "size:desc" | undefined;
|
|
13
13
|
}, {
|
|
14
14
|
filter: z.ZodEffects<z.ZodOptional<z.ZodString>, {
|
|
15
15
|
id?: string | string[] | undefined;
|
|
16
16
|
name?: string | string[] | undefined;
|
|
17
17
|
projectId?: string | string[] | undefined;
|
|
18
18
|
} | undefined, string | undefined>;
|
|
19
|
-
sortBy: z.ZodOptional<z.ZodEnum<["name:asc", "name:desc", "createdAt:asc", "createdAt:desc", "updatedAt:asc", "updatedAt:desc"]>>;
|
|
19
|
+
sortBy: z.ZodOptional<z.ZodEnum<["name:asc", "name:desc", "createdAt:asc", "createdAt:desc", "updatedAt:asc", "updatedAt:desc", "size:asc", "size:desc"]>>;
|
|
20
20
|
skip: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number, string | undefined>, number, string | undefined>, number, string | undefined>;
|
|
21
21
|
take: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number, string | undefined>, number, string | undefined>, number, string | undefined>, number, string | undefined>;
|
|
22
22
|
}>;
|
|
@@ -30,14 +30,14 @@ declare const PublicApiListDataTableQueryDto_base: import("../../zod-class").Zod
|
|
|
30
30
|
name?: string | string[] | undefined;
|
|
31
31
|
projectId?: string | string[] | undefined;
|
|
32
32
|
} | undefined;
|
|
33
|
-
sortBy?: "name:asc" | "name:desc" | "createdAt:asc" | "createdAt:desc" | "updatedAt:asc" | "updatedAt:desc" | undefined;
|
|
33
|
+
sortBy?: "name:asc" | "name:desc" | "createdAt:asc" | "createdAt:desc" | "updatedAt:asc" | "updatedAt:desc" | "size:asc" | "size:desc" | undefined;
|
|
34
34
|
}, {
|
|
35
35
|
filter: z.ZodEffects<z.ZodOptional<z.ZodString>, {
|
|
36
36
|
id?: string | string[] | undefined;
|
|
37
37
|
name?: string | string[] | undefined;
|
|
38
38
|
projectId?: string | string[] | undefined;
|
|
39
39
|
} | undefined, string | undefined>;
|
|
40
|
-
sortBy: z.ZodOptional<z.ZodEnum<["name:asc", "name:desc", "createdAt:asc", "createdAt:desc", "updatedAt:asc", "updatedAt:desc"]>>;
|
|
40
|
+
sortBy: z.ZodOptional<z.ZodEnum<["name:asc", "name:desc", "createdAt:asc", "createdAt:desc", "updatedAt:asc", "updatedAt:desc", "size:asc", "size:desc"]>>;
|
|
41
41
|
offset: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number, string | undefined>, number, string | undefined>, number, string | undefined>;
|
|
42
42
|
limit: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number, string | undefined>, number, string | undefined>, number, string | undefined>, number, string | undefined>;
|
|
43
43
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-data-table-query.dto.js","sourceRoot":"","sources":["../../../src/dto/data-table/list-data-table-query.dto.ts"],"names":[],"mappings":";;;AAAA,+CAAyC;AACzC,6BAAwB;AAExB,+CAAoC;AACpC,iEAA2F;AAE3F,MAAM,kBAAkB,GAAG;IAC1B,UAAU;IACV,WAAW;IACX,eAAe;IACf,gBAAgB;IAChB,eAAe;IACf,gBAAgB;
|
|
1
|
+
{"version":3,"file":"list-data-table-query.dto.js","sourceRoot":"","sources":["../../../src/dto/data-table/list-data-table-query.dto.ts"],"names":[],"mappings":";;;AAAA,+CAAyC;AACzC,6BAAwB;AAExB,+CAAoC;AACpC,iEAA2F;AAE3F,MAAM,kBAAkB,GAAG;IAC1B,UAAU;IACV,WAAW;IACX,eAAe;IACf,gBAAgB;IAChB,eAAe;IACf,gBAAgB;IAChB,UAAU;IACV,WAAW;CACF,CAAC;AAIX,MAAM,cAAc,GAAG;IACtB,EAAE,EAAE,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACzD,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC3D,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;CAEhE,CAAC;AAGF,MAAM,YAAY,GAAG,OAAC,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,MAAM,EAAE,CAAC;AAMvD,MAAM,eAAe,GAAG,OAAC;KACvB,MAAM,EAAE;KACR,QAAQ,EAAE;KACV,SAAS,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE;IACvB,IAAI,CAAC,GAAG;QAAE,OAAO,SAAS,CAAC;IAC3B,IAAI,CAAC;QACJ,MAAM,MAAM,GAAY,IAAA,wBAAS,EAAC,GAAG,CAAC,CAAC;QACvC,IAAI,CAAC;YACJ,OAAO,YAAY,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QACnC,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACZ,GAAG,CAAC,QAAQ,CAAC;gBACZ,IAAI,EAAE,OAAC,CAAC,YAAY,CAAC,MAAM;gBAC3B,OAAO,EAAE,uBAAuB;gBAChC,IAAI,EAAE,CAAC,QAAQ,CAAC;aAChB,CAAC,CAAC;YACH,OAAO,OAAC,CAAC,KAAK,CAAC;QAChB,CAAC;IACF,CAAC;IAAC,OAAO,CAAC,EAAE,CAAC;QACZ,GAAG,CAAC,QAAQ,CAAC;YACZ,IAAI,EAAE,OAAC,CAAC,YAAY,CAAC,MAAM;YAC3B,OAAO,EAAE,uBAAuB;YAChC,IAAI,EAAE,CAAC,QAAQ,CAAC;SAChB,CAAC,CAAC;QACH,OAAO,OAAC,CAAC,KAAK,CAAC;IAChB,CAAC;AACF,CAAC,CAAC,CAAC;AAGJ,MAAM,eAAe,GAAG,OAAC;KACvB,IAAI,CAAC,kBAAkB,EAAE,EAAE,OAAO,EAAE,0BAA0B,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC;KAChG,QAAQ,EAAE,CAAC;AAEb,MAAa,qBAAsB,SAAQ,aAAC,CAAC,KAAK,CAAC;IAClD,GAAG,iCAAgB;IACnB,MAAM,EAAE,eAAe;IACvB,MAAM,EAAE,eAAe;CACvB,CAAC;CAAG;AAJL,sDAIK;AAEL,MAAa,8BAA+B,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC3D,GAAG,0CAAyB;IAC5B,MAAM,EAAE,eAAe;IACvB,MAAM,EAAE,eAAe;CACvB,CAAC;CAAG;AAJL,wEAIK"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const ExecutionRedactionQueryDtoSchema: z.ZodObject<{
|
|
3
|
+
redactExecutionData: z.ZodOptional<z.ZodEffects<z.ZodEnum<["true", "false"]>, boolean, "true" | "false">>;
|
|
4
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
5
|
+
redactExecutionData: z.ZodOptional<z.ZodEffects<z.ZodEnum<["true", "false"]>, boolean, "true" | "false">>;
|
|
6
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
7
|
+
redactExecutionData: z.ZodOptional<z.ZodEffects<z.ZodEnum<["true", "false"]>, boolean, "true" | "false">>;
|
|
8
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
9
|
+
export type ExecutionRedactionQueryDto = z.output<typeof ExecutionRedactionQueryDtoSchema>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExecutionRedactionQueryDtoSchema = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const boolean_from_string_1 = require("../../schemas/boolean-from-string");
|
|
6
|
+
exports.ExecutionRedactionQueryDtoSchema = zod_1.z
|
|
7
|
+
.object({
|
|
8
|
+
redactExecutionData: boolean_from_string_1.booleanFromString.optional(),
|
|
9
|
+
})
|
|
10
|
+
.passthrough();
|
|
11
|
+
//# sourceMappingURL=execution-redaction-query.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execution-redaction-query.dto.js","sourceRoot":"","sources":["../../../src/dto/executions/execution-redaction-query.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,2EAAsE;AAEzD,QAAA,gCAAgC,GAAG,OAAC;KAC/C,MAAM,CAAC;IACP,mBAAmB,EAAE,uCAAiB,CAAC,QAAQ,EAAE;CACjD,CAAC;KACD,WAAW,EAAE,CAAC"}
|
package/dist/dto/index.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ export { UpdateRoleDto } from './roles/update-role.dto';
|
|
|
78
78
|
export { CreateRoleDto } from './roles/create-role.dto';
|
|
79
79
|
export { RoleListQueryDto } from './roles/role-list-query.dto';
|
|
80
80
|
export { RoleGetQueryDto } from './roles/role-get-query.dto';
|
|
81
|
+
export { RoleAssignmentsResponseDto, type RoleProjectAssignment, type RoleAssignmentsResponse, } from './roles/role-assignments-response.dto';
|
|
82
|
+
export { RoleProjectMembersResponseDto, type RoleProjectMember, type RoleProjectMembersResponse, } from './roles/role-project-members-response.dto';
|
|
81
83
|
export { OidcConfigDto } from './oidc/config.dto';
|
|
82
84
|
export { CreateDataTableDto } from './data-table/create-data-table.dto';
|
|
83
85
|
export { UpdateDataTableDto } from './data-table/update-data-table.dto';
|
|
@@ -102,3 +104,4 @@ export { SetSecretsProviderConnectionIsEnabledDto } from './secrets-provider/set
|
|
|
102
104
|
export { TestSecretsProviderConnectionDto } from './secrets-provider/test-secrets-provider-connection.dto';
|
|
103
105
|
export { UpdateSecretsProviderConnectionDto } from './secrets-provider/update-secrets-provider-connection.dto';
|
|
104
106
|
export { GetQuickConnectApiKeyDto } from './quick-connect/create-quick-connect-credential.dto';
|
|
107
|
+
export { ExecutionRedactionQueryDtoSchema, type ExecutionRedactionQueryDto, } from './executions/execution-redaction-query.dto';
|
package/dist/dto/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
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.
|
|
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;
|
|
4
|
+
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.RoleProjectMembersResponseDto = exports.RoleAssignmentsResponseDto = 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.ExecutionRedactionQueryDtoSchema = 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 = exports.OAuthClientResponseDto = exports.DownloadDataTableCsvQueryDto = 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");
|
|
@@ -165,6 +165,10 @@ var role_list_query_dto_1 = require("./roles/role-list-query.dto");
|
|
|
165
165
|
Object.defineProperty(exports, "RoleListQueryDto", { enumerable: true, get: function () { return role_list_query_dto_1.RoleListQueryDto; } });
|
|
166
166
|
var role_get_query_dto_1 = require("./roles/role-get-query.dto");
|
|
167
167
|
Object.defineProperty(exports, "RoleGetQueryDto", { enumerable: true, get: function () { return role_get_query_dto_1.RoleGetQueryDto; } });
|
|
168
|
+
var role_assignments_response_dto_1 = require("./roles/role-assignments-response.dto");
|
|
169
|
+
Object.defineProperty(exports, "RoleAssignmentsResponseDto", { enumerable: true, get: function () { return role_assignments_response_dto_1.RoleAssignmentsResponseDto; } });
|
|
170
|
+
var role_project_members_response_dto_1 = require("./roles/role-project-members-response.dto");
|
|
171
|
+
Object.defineProperty(exports, "RoleProjectMembersResponseDto", { enumerable: true, get: function () { return role_project_members_response_dto_1.RoleProjectMembersResponseDto; } });
|
|
168
172
|
var config_dto_1 = require("./oidc/config.dto");
|
|
169
173
|
Object.defineProperty(exports, "OidcConfigDto", { enumerable: true, get: function () { return config_dto_1.OidcConfigDto; } });
|
|
170
174
|
var create_data_table_dto_1 = require("./data-table/create-data-table.dto");
|
|
@@ -219,4 +223,6 @@ var update_secrets_provider_connection_dto_1 = require("./secrets-provider/updat
|
|
|
219
223
|
Object.defineProperty(exports, "UpdateSecretsProviderConnectionDto", { enumerable: true, get: function () { return update_secrets_provider_connection_dto_1.UpdateSecretsProviderConnectionDto; } });
|
|
220
224
|
var create_quick_connect_credential_dto_1 = require("./quick-connect/create-quick-connect-credential.dto");
|
|
221
225
|
Object.defineProperty(exports, "GetQuickConnectApiKeyDto", { enumerable: true, get: function () { return create_quick_connect_credential_dto_1.GetQuickConnectApiKeyDto; } });
|
|
226
|
+
var execution_redaction_query_dto_1 = require("./executions/execution-redaction-query.dto");
|
|
227
|
+
Object.defineProperty(exports, "ExecutionRedactionQueryDtoSchema", { enumerable: true, get: function () { return execution_redaction_query_dto_1.ExecutionRedactionQueryDtoSchema; } });
|
|
222
228
|
//# 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":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/dto/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
declare const roleProjectAssignmentSchema: z.ZodObject<{
|
|
3
|
+
projectId: z.ZodString;
|
|
4
|
+
projectName: z.ZodString;
|
|
5
|
+
projectIcon: z.ZodNullable<z.ZodObject<{
|
|
6
|
+
type: z.ZodString;
|
|
7
|
+
value: z.ZodString;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
value: string;
|
|
10
|
+
type: string;
|
|
11
|
+
}, {
|
|
12
|
+
value: string;
|
|
13
|
+
type: string;
|
|
14
|
+
}>>;
|
|
15
|
+
memberCount: z.ZodNumber;
|
|
16
|
+
lastAssigned: z.ZodNullable<z.ZodString>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
projectId: string;
|
|
19
|
+
projectName: string;
|
|
20
|
+
projectIcon: {
|
|
21
|
+
value: string;
|
|
22
|
+
type: string;
|
|
23
|
+
} | null;
|
|
24
|
+
memberCount: number;
|
|
25
|
+
lastAssigned: string | null;
|
|
26
|
+
}, {
|
|
27
|
+
projectId: string;
|
|
28
|
+
projectName: string;
|
|
29
|
+
projectIcon: {
|
|
30
|
+
value: string;
|
|
31
|
+
type: string;
|
|
32
|
+
} | null;
|
|
33
|
+
memberCount: number;
|
|
34
|
+
lastAssigned: string | null;
|
|
35
|
+
}>;
|
|
36
|
+
export type RoleProjectAssignment = z.infer<typeof roleProjectAssignmentSchema>;
|
|
37
|
+
declare const RoleAssignmentsResponseDto_base: import("../../zod-class").ZodClass<{
|
|
38
|
+
projects: {
|
|
39
|
+
projectId: string;
|
|
40
|
+
projectName: string;
|
|
41
|
+
projectIcon: {
|
|
42
|
+
value: string;
|
|
43
|
+
type: string;
|
|
44
|
+
} | null;
|
|
45
|
+
memberCount: number;
|
|
46
|
+
lastAssigned: string | null;
|
|
47
|
+
}[];
|
|
48
|
+
totalProjects: number;
|
|
49
|
+
}, {
|
|
50
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
51
|
+
projectId: z.ZodString;
|
|
52
|
+
projectName: z.ZodString;
|
|
53
|
+
projectIcon: z.ZodNullable<z.ZodObject<{
|
|
54
|
+
type: z.ZodString;
|
|
55
|
+
value: z.ZodString;
|
|
56
|
+
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
value: string;
|
|
58
|
+
type: string;
|
|
59
|
+
}, {
|
|
60
|
+
value: string;
|
|
61
|
+
type: string;
|
|
62
|
+
}>>;
|
|
63
|
+
memberCount: z.ZodNumber;
|
|
64
|
+
lastAssigned: z.ZodNullable<z.ZodString>;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
projectId: string;
|
|
67
|
+
projectName: string;
|
|
68
|
+
projectIcon: {
|
|
69
|
+
value: string;
|
|
70
|
+
type: string;
|
|
71
|
+
} | null;
|
|
72
|
+
memberCount: number;
|
|
73
|
+
lastAssigned: string | null;
|
|
74
|
+
}, {
|
|
75
|
+
projectId: string;
|
|
76
|
+
projectName: string;
|
|
77
|
+
projectIcon: {
|
|
78
|
+
value: string;
|
|
79
|
+
type: string;
|
|
80
|
+
} | null;
|
|
81
|
+
memberCount: number;
|
|
82
|
+
lastAssigned: string | null;
|
|
83
|
+
}>, "many">;
|
|
84
|
+
totalProjects: z.ZodNumber;
|
|
85
|
+
}>;
|
|
86
|
+
export declare class RoleAssignmentsResponseDto extends RoleAssignmentsResponseDto_base {
|
|
87
|
+
}
|
|
88
|
+
export type RoleAssignmentsResponse = InstanceType<typeof RoleAssignmentsResponseDto>;
|
|
89
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RoleAssignmentsResponseDto = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const zod_class_1 = require("../../zod-class");
|
|
6
|
+
const roleProjectAssignmentSchema = zod_1.z.object({
|
|
7
|
+
projectId: zod_1.z.string(),
|
|
8
|
+
projectName: zod_1.z.string(),
|
|
9
|
+
projectIcon: zod_1.z
|
|
10
|
+
.object({
|
|
11
|
+
type: zod_1.z.string(),
|
|
12
|
+
value: zod_1.z.string(),
|
|
13
|
+
})
|
|
14
|
+
.nullable(),
|
|
15
|
+
memberCount: zod_1.z.number(),
|
|
16
|
+
lastAssigned: zod_1.z.string().nullable(),
|
|
17
|
+
});
|
|
18
|
+
class RoleAssignmentsResponseDto extends zod_class_1.Z.class({
|
|
19
|
+
projects: zod_1.z.array(roleProjectAssignmentSchema),
|
|
20
|
+
totalProjects: zod_1.z.number(),
|
|
21
|
+
}) {
|
|
22
|
+
}
|
|
23
|
+
exports.RoleAssignmentsResponseDto = RoleAssignmentsResponseDto;
|
|
24
|
+
//# sourceMappingURL=role-assignments-response.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"role-assignments-response.dto.js","sourceRoot":"","sources":["../../../src/dto/roles/role-assignments-response.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AAEpC,MAAM,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC;SACZ,MAAM,CAAC;QACP,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;KACjB,CAAC;SACD,QAAQ,EAAE;IACZ,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAC;AAIH,MAAa,0BAA2B,SAAQ,aAAC,CAAC,KAAK,CAAC;IACvD,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC;IAC9C,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE;CACzB,CAAC;CAAG;AAHL,gEAGK"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
declare const roleProjectMemberSchema: z.ZodObject<{
|
|
3
|
+
userId: z.ZodString;
|
|
4
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
5
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
6
|
+
email: z.ZodString;
|
|
7
|
+
role: z.ZodString;
|
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
|
9
|
+
role: string;
|
|
10
|
+
email: string;
|
|
11
|
+
userId: string;
|
|
12
|
+
firstName: string | null;
|
|
13
|
+
lastName: string | null;
|
|
14
|
+
}, {
|
|
15
|
+
role: string;
|
|
16
|
+
email: string;
|
|
17
|
+
userId: string;
|
|
18
|
+
firstName: string | null;
|
|
19
|
+
lastName: string | null;
|
|
20
|
+
}>;
|
|
21
|
+
export type RoleProjectMember = z.infer<typeof roleProjectMemberSchema>;
|
|
22
|
+
declare const RoleProjectMembersResponseDto_base: import("../../zod-class").ZodClass<{
|
|
23
|
+
members: {
|
|
24
|
+
role: string;
|
|
25
|
+
email: string;
|
|
26
|
+
userId: string;
|
|
27
|
+
firstName: string | null;
|
|
28
|
+
lastName: string | null;
|
|
29
|
+
}[];
|
|
30
|
+
}, {
|
|
31
|
+
members: z.ZodArray<z.ZodObject<{
|
|
32
|
+
userId: z.ZodString;
|
|
33
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
34
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
35
|
+
email: z.ZodString;
|
|
36
|
+
role: z.ZodString;
|
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
|
+
role: string;
|
|
39
|
+
email: string;
|
|
40
|
+
userId: string;
|
|
41
|
+
firstName: string | null;
|
|
42
|
+
lastName: string | null;
|
|
43
|
+
}, {
|
|
44
|
+
role: string;
|
|
45
|
+
email: string;
|
|
46
|
+
userId: string;
|
|
47
|
+
firstName: string | null;
|
|
48
|
+
lastName: string | null;
|
|
49
|
+
}>, "many">;
|
|
50
|
+
}>;
|
|
51
|
+
export declare class RoleProjectMembersResponseDto extends RoleProjectMembersResponseDto_base {
|
|
52
|
+
}
|
|
53
|
+
export type RoleProjectMembersResponse = InstanceType<typeof RoleProjectMembersResponseDto>;
|
|
54
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RoleProjectMembersResponseDto = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
const zod_class_1 = require("../../zod-class");
|
|
6
|
+
const roleProjectMemberSchema = zod_1.z.object({
|
|
7
|
+
userId: zod_1.z.string(),
|
|
8
|
+
firstName: zod_1.z.string().nullable(),
|
|
9
|
+
lastName: zod_1.z.string().nullable(),
|
|
10
|
+
email: zod_1.z.string(),
|
|
11
|
+
role: zod_1.z.string(),
|
|
12
|
+
});
|
|
13
|
+
class RoleProjectMembersResponseDto extends zod_class_1.Z.class({
|
|
14
|
+
members: zod_1.z.array(roleProjectMemberSchema),
|
|
15
|
+
}) {
|
|
16
|
+
}
|
|
17
|
+
exports.RoleProjectMembersResponseDto = RoleProjectMembersResponseDto;
|
|
18
|
+
//# sourceMappingURL=role-project-members-response.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"role-project-members-response.dto.js","sourceRoot":"","sources":["../../../src/dto/roles/role-project-members-response.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AAEpC,MAAM,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IACxC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;IAClB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAC;AAIH,MAAa,6BAA8B,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC1D,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC;CACzC,CAAC;CAAG;AAFL,sEAEK"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
declare const PushWorkFolderRequestDto_base: import("../../zod-class").ZodClass<{
|
|
3
3
|
fileNames: {
|
|
4
|
-
type: "workflow" | "project" | "credential" | "
|
|
4
|
+
type: "workflow" | "project" | "credential" | "tags" | "variables" | "file" | "folders" | "datatable";
|
|
5
5
|
status: "unknown" | "new" | "modified" | "deleted" | "created" | "renamed" | "conflicted" | "ignored" | "staged";
|
|
6
|
-
file: string;
|
|
7
6
|
id: string;
|
|
8
7
|
name: string;
|
|
9
8
|
updatedAt: string;
|
|
10
9
|
location: "local" | "remote";
|
|
10
|
+
file: string;
|
|
11
11
|
conflict: boolean;
|
|
12
12
|
pushed?: boolean | undefined;
|
|
13
13
|
isLocalPublished?: boolean | undefined;
|
|
@@ -51,13 +51,13 @@ declare const PushWorkFolderRequestDto_base: import("../../zod-class").ZodClass<
|
|
|
51
51
|
}>>;
|
|
52
52
|
publishingError: z.ZodOptional<z.ZodString>;
|
|
53
53
|
}, "strip", z.ZodTypeAny, {
|
|
54
|
-
type: "workflow" | "project" | "credential" | "
|
|
54
|
+
type: "workflow" | "project" | "credential" | "tags" | "variables" | "file" | "folders" | "datatable";
|
|
55
55
|
status: "unknown" | "new" | "modified" | "deleted" | "created" | "renamed" | "conflicted" | "ignored" | "staged";
|
|
56
|
-
file: string;
|
|
57
56
|
id: string;
|
|
58
57
|
name: string;
|
|
59
58
|
updatedAt: string;
|
|
60
59
|
location: "local" | "remote";
|
|
60
|
+
file: string;
|
|
61
61
|
conflict: boolean;
|
|
62
62
|
pushed?: boolean | undefined;
|
|
63
63
|
isLocalPublished?: boolean | undefined;
|
|
@@ -69,13 +69,13 @@ declare const PushWorkFolderRequestDto_base: import("../../zod-class").ZodClass<
|
|
|
69
69
|
} | undefined;
|
|
70
70
|
publishingError?: string | undefined;
|
|
71
71
|
}, {
|
|
72
|
-
type: "workflow" | "project" | "credential" | "
|
|
72
|
+
type: "workflow" | "project" | "credential" | "tags" | "variables" | "file" | "folders" | "datatable";
|
|
73
73
|
status: "unknown" | "new" | "modified" | "deleted" | "created" | "renamed" | "conflicted" | "ignored" | "staged";
|
|
74
|
-
file: string;
|
|
75
74
|
id: string;
|
|
76
75
|
name: string;
|
|
77
76
|
updatedAt: string;
|
|
78
77
|
location: "local" | "remote";
|
|
78
|
+
file: string;
|
|
79
79
|
conflict: boolean;
|
|
80
80
|
pushed?: boolean | undefined;
|
|
81
81
|
isLocalPublished?: boolean | undefined;
|
|
@@ -236,6 +236,11 @@ export type FrontendModuleSettings = {
|
|
|
236
236
|
'quick-connect'?: {
|
|
237
237
|
options: QuickConnectOption[];
|
|
238
238
|
};
|
|
239
|
+
'external-secrets'?: {
|
|
240
|
+
multipleConnections: boolean;
|
|
241
|
+
forProjects: boolean;
|
|
242
|
+
roleBasedAccess: boolean;
|
|
243
|
+
};
|
|
239
244
|
};
|
|
240
245
|
export type N8nEnvFeatFlagValue = boolean | string | number | undefined;
|
|
241
246
|
export type N8nEnvFeatFlags = Record<`N8N_ENV_FEAT_${Uppercase<string>}`, N8nEnvFeatFlagValue>;
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,8 @@ 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
|
|
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
13
|
export type { ChatHubPushMessage, ChatHubStreamEvent, ChatHubStreamBegin, ChatHubStreamChunk, ChatHubStreamEnd, ChatHubStreamError, ChatHubStreamMetadata, ChatHubExecutionEvent, ChatHubExecutionBegin, ChatHubExecutionEnd, ChatHubHumanMessageCreated, ChatHubMessageEdited, ChatHubAttachmentInfo, } from './push/chat-hub';
|
|
13
14
|
export type { Collaborator } from './push/collaboration';
|
|
14
15
|
export type { HeartbeatMessage } from './push/heartbeat';
|
|
@@ -23,11 +24,12 @@ export type { ProjectType, ProjectIcon, ProjectRelation, } from './schemas/proje
|
|
|
23
24
|
export { isSourceControlledFileStatus, type SourceControlledFileStatus, type SourceControlledFile, SOURCE_CONTROL_FILE_LOCATION, SOURCE_CONTROL_FILE_STATUS, SOURCE_CONTROL_FILE_TYPE, } from './schemas/source-controlled-file.schema';
|
|
24
25
|
export { type InsightsSummaryType, type InsightsSummaryUnit, type InsightsSummary, type InsightsByWorkflow, type InsightsByTime, type InsightsDateRange, type RestrictedInsightsByTime, } from './schemas/insights.schema';
|
|
25
26
|
export { ROLE, type Role, type User, type UsersList, usersListSchema, userBaseSchema, userDetailSchema, } from './schemas/user.schema';
|
|
26
|
-
export { DATA_TABLE_COLUMN_REGEX, DATA_TABLE_COLUMN_MAX_LENGTH, DATA_TABLE_COLUMN_ERROR_MESSAGE, type DataTable, type DataTableColumn, type DataTableCreateColumnSchema, type DataTableListFilter, type DataTableListOptions, dateTimeSchema, dataTableColumnNameSchema, } from './schemas/data-table.schema';
|
|
27
|
+
export { DATA_TABLE_COLUMN_REGEX, DATA_TABLE_COLUMN_MAX_LENGTH, DATA_TABLE_COLUMN_ERROR_MESSAGE, type DataTable, type DataTableColumn, type DataTableCreateColumnSchema, type DataTableListFilter, type DataTableListOptions, type DataTableListSortBy, dateTimeSchema, dataTableColumnNameSchema, } from './schemas/data-table.schema';
|
|
27
28
|
export type { DataTableFilter, DataTableFilterConditionType, } from './schemas/data-table-filter.schema';
|
|
28
29
|
export type { ExternalSecretsProvider, ExternalSecretsProviderSecret, ExternalSecretsProviderData, ExternalSecretsProviderProperty, ExternalSecretsProviderState, } from './schemas/external-secrets.schema';
|
|
29
30
|
export { WorkflowExecutionStatusSchema, type WorkflowExecutionStatus, } from './schemas/workflow-execution-status.schema';
|
|
30
31
|
export type { UsageState } from './schemas/usage.schema';
|
|
31
32
|
export type { BreakingChangeRuleSeverity, BreakingChangeRecommendation, BreakingChangeAffectedWorkflow, BreakingChangeInstanceIssue, BreakingChangeWorkflowIssue, BreakingChangeInstanceRuleResult, BreakingChangeWorkflowRuleResult, BreakingChangeReportResult, BreakingChangeLightReportResult, BreakingChangeVersion, } from './schemas/breaking-changes.schema';
|
|
32
|
-
export
|
|
33
|
+
export { MIGRATION_REPORT_TARGET_VERSION } from './schemas/breaking-changes.schema';
|
|
34
|
+
export type { SecretsProviderType, SecretsProviderState, SecretsProviderConnectionTestState, SecretProviderConnectionListItem, SecretProviderConnection, SecretProviderTypeResponse, SecretCompletionsResponse, TestSecretProviderConnectionResponse, ReloadSecretProviderConnectionResponse, } from './schemas/secrets-provider.schema';
|
|
33
35
|
export { testSecretProviderConnectionResponseSchema, reloadSecretProviderConnectionResponseSchema, } from './schemas/secrets-provider.schema';
|
package/dist/index.js
CHANGED
|
@@ -14,10 +14,11 @@ 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.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;
|
|
17
|
+
exports.reloadSecretProviderConnectionResponseSchema = exports.testSecretProviderConnectionResponseSchema = exports.MIGRATION_REPORT_TARGET_VERSION = 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);
|
|
21
|
+
__exportStar(require("./instance-registry-types"), exports);
|
|
21
22
|
var chat_hub_1 = require("./chat-hub");
|
|
22
23
|
Object.defineProperty(exports, "chatHubConversationModelSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubConversationModelSchema; } });
|
|
23
24
|
Object.defineProperty(exports, "chatHubProviderSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubProviderSchema; } });
|
|
@@ -74,6 +75,8 @@ Object.defineProperty(exports, "dateTimeSchema", { enumerable: true, get: functi
|
|
|
74
75
|
Object.defineProperty(exports, "dataTableColumnNameSchema", { enumerable: true, get: function () { return data_table_schema_1.dataTableColumnNameSchema; } });
|
|
75
76
|
var workflow_execution_status_schema_1 = require("./schemas/workflow-execution-status.schema");
|
|
76
77
|
Object.defineProperty(exports, "WorkflowExecutionStatusSchema", { enumerable: true, get: function () { return workflow_execution_status_schema_1.WorkflowExecutionStatusSchema; } });
|
|
78
|
+
var breaking_changes_schema_1 = require("./schemas/breaking-changes.schema");
|
|
79
|
+
Object.defineProperty(exports, "MIGRATION_REPORT_TARGET_VERSION", { enumerable: true, get: function () { return breaking_changes_schema_1.MIGRATION_REPORT_TARGET_VERSION; } });
|
|
77
80
|
var secrets_provider_schema_1 = require("./schemas/secrets-provider.schema");
|
|
78
81
|
Object.defineProperty(exports, "testSecretProviderConnectionResponseSchema", { enumerable: true, get: function () { return secrets_provider_schema_1.testSecretProviderConnectionResponseSchema; } });
|
|
79
82
|
Object.defineProperty(exports, "reloadSecretProviderConnectionResponseSchema", { enumerable: true, get: function () { return secrets_provider_schema_1.reloadSecretProviderConnectionResponseSchema; } });
|
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,4DAA0C;AAC1C,uCA4DoB;AA3DnB,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;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,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"}
|