@n8n/api-types 1.11.1 → 1.13.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.
Files changed (36) hide show
  1. package/dist/build.tsbuildinfo +1 -1
  2. package/dist/chat-hub.d.ts +312 -2
  3. package/dist/chat-hub.js +55 -3
  4. package/dist/chat-hub.js.map +1 -1
  5. package/dist/dto/ai/ai-build-request.dto.d.ts +7 -0
  6. package/dist/dto/data-table/list-data-table-content-query.dto.d.ts +2 -2
  7. package/dist/dto/index.d.ts +2 -0
  8. package/dist/dto/index.js +7 -3
  9. package/dist/dto/index.js.map +1 -1
  10. package/dist/dto/project/list-projects-query.dto.d.ts +17 -0
  11. package/dist/dto/project/list-projects-query.dto.js +43 -0
  12. package/dist/dto/project/list-projects-query.dto.js.map +1 -0
  13. package/dist/dto/secrets-provider/create-secrets-provider-connection.dto.d.ts +2 -2
  14. package/dist/dto/secrets-provider/update-external-secrets-settings.dto.d.ts +9 -0
  15. package/dist/dto/secrets-provider/update-external-secrets-settings.dto.js +11 -0
  16. package/dist/dto/secrets-provider/update-external-secrets-settings.dto.js.map +1 -0
  17. package/dist/dto/secrets-provider/update-secrets-provider-connection.dto.d.ts +4 -2
  18. package/dist/dto/secrets-provider/update-secrets-provider-connection.dto.js +1 -0
  19. package/dist/dto/secrets-provider/update-secrets-provider-connection.dto.js.map +1 -1
  20. package/dist/dto/source-control/push-work-folder-request.dto.d.ts +8 -0
  21. package/dist/dto/workflows/create-workflow.dto.d.ts +1 -1
  22. package/dist/dto/workflows/update-workflow.dto.d.ts +1 -1
  23. package/dist/frontend-settings.d.ts +4 -1
  24. package/dist/index.d.ts +2 -2
  25. package/dist/index.js +10 -1
  26. package/dist/index.js.map +1 -1
  27. package/dist/schemas/secrets-provider.schema.d.ts +32 -9
  28. package/dist/schemas/secrets-provider.schema.js +10 -3
  29. package/dist/schemas/secrets-provider.schema.js.map +1 -1
  30. package/dist/schemas/source-controlled-file.schema.d.ts +6 -0
  31. package/dist/schemas/source-controlled-file.schema.js +2 -0
  32. package/dist/schemas/source-controlled-file.schema.js.map +1 -1
  33. package/dist/schemas/workflow-execution-status.schema.d.ts +5 -5
  34. package/dist/schemas/workflow-execution-status.schema.js +1 -1
  35. package/dist/schemas/workflow-execution-status.schema.js.map +1 -1
  36. package/package.json +7 -7
@@ -10,8 +10,8 @@ declare const ListDataTableContentQueryDto_base: import("../../zod-class").ZodCl
10
10
  } | undefined;
11
11
  skip?: number | undefined;
12
12
  take?: number | undefined;
13
- sortBy?: readonly [string, "ASC" | "DESC"] | undefined;
14
13
  search?: string | undefined;
14
+ sortBy?: readonly [string, "ASC" | "DESC"] | undefined;
15
15
  }, {
16
16
  take: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number, string | undefined>, number, string | undefined>, number, string | undefined>, number, string | undefined>>;
17
17
  skip: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number, string | undefined>, number, string | undefined>, number, string | undefined>>;
@@ -39,8 +39,8 @@ declare const PublicApiListDataTableContentQueryDto_base: import("../../zod-clas
39
39
  condition: "eq" | "neq" | "like" | "ilike" | "gt" | "gte" | "lt" | "lte";
40
40
  }[];
41
41
  } | undefined;
42
- sortBy?: readonly [string, "ASC" | "DESC"] | undefined;
43
42
  search?: string | undefined;
43
+ sortBy?: readonly [string, "ASC" | "DESC"] | undefined;
44
44
  }, {
45
45
  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>;
46
46
  offset: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number, string | undefined>, number, string | undefined>, number, string | undefined>;
@@ -30,6 +30,7 @@ export { UpdateProjectDto, UpdateProjectWithRelationsDto } from './project/updat
30
30
  export { DeleteProjectDto } from './project/delete-project.dto';
31
31
  export { AddUsersToProjectDto } from './project/add-users-to-project.dto';
32
32
  export { ChangeUserRoleInProject } from './project/change-user-role-in-project.dto';
33
+ export { ListProjectsQueryDto } from './project/list-projects-query.dto';
33
34
  export { SamlAcsDto } from './saml/saml-acs.dto';
34
35
  export { SamlPreferences } from './saml/saml-preferences.dto';
35
36
  export { SamlPreferencesAttributeMapping } from './saml/saml-preferences.dto';
@@ -99,6 +100,7 @@ export { ProvisioningConfigDto, ProvisioningConfigPatchDto } from './provisionin
99
100
  export { SecuritySettingsDto, UpdateSecuritySettingsDto, } from './security-settings/security-settings.dto';
100
101
  export { WorkflowHistoryVersionsByIdsDto } from './workflow-history/workflow-history-versions-by-ids.dto';
101
102
  export { UpdateWorkflowHistoryVersionDto } from './workflow-history/update-workflow-history-version.dto';
103
+ export { UpdateExternalSecretsSettingsDto } from './secrets-provider/update-external-secrets-settings.dto';
102
104
  export { CreateSecretsProviderConnectionDto } from './secrets-provider/create-secrets-provider-connection.dto';
103
105
  export { SetSecretsProviderConnectionIsEnabledDto } from './secrets-provider/set-secrets-provider-connection-is-enabled.dto';
104
106
  export { TestSecretsProviderConnectionDto } from './secrets-provider/test-secrets-provider-connection.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.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.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;
3
+ 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.ListProjectsQueryDto = 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.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 = exports.NEW_VARIABLE_KEY_REGEX = void 0;
5
+ exports.ExecutionRedactionQueryDtoSchema = exports.GetQuickConnectApiKeyDto = exports.UpdateSecretsProviderConnectionDto = exports.TestSecretsProviderConnectionDto = exports.SetSecretsProviderConnectionIsEnabledDto = exports.CreateSecretsProviderConnectionDto = exports.UpdateExternalSecretsSettingsDto = exports.UpdateWorkflowHistoryVersionDto = exports.WorkflowHistoryVersionsByIdsDto = exports.UpdateSecuritySettingsDto = exports.SecuritySettingsDto = exports.ProvisioningConfigPatchDto = exports.ProvisioningConfigDto = exports.DeleteOAuthClientResponseDto = exports.ListOAuthClientsResponseDto = exports.OAuthClientResponseDto = exports.DownloadDataTableCsvQueryDto = exports.RenameDataTableColumnDto = 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");
@@ -68,6 +68,8 @@ var add_users_to_project_dto_1 = require("./project/add-users-to-project.dto");
68
68
  Object.defineProperty(exports, "AddUsersToProjectDto", { enumerable: true, get: function () { return add_users_to_project_dto_1.AddUsersToProjectDto; } });
69
69
  var change_user_role_in_project_dto_1 = require("./project/change-user-role-in-project.dto");
70
70
  Object.defineProperty(exports, "ChangeUserRoleInProject", { enumerable: true, get: function () { return change_user_role_in_project_dto_1.ChangeUserRoleInProject; } });
71
+ var list_projects_query_dto_1 = require("./project/list-projects-query.dto");
72
+ Object.defineProperty(exports, "ListProjectsQueryDto", { enumerable: true, get: function () { return list_projects_query_dto_1.ListProjectsQueryDto; } });
71
73
  var saml_acs_dto_1 = require("./saml/saml-acs.dto");
72
74
  Object.defineProperty(exports, "SamlAcsDto", { enumerable: true, get: function () { return saml_acs_dto_1.SamlAcsDto; } });
73
75
  var saml_preferences_dto_1 = require("./saml/saml-preferences.dto");
@@ -213,6 +215,8 @@ var workflow_history_versions_by_ids_dto_1 = require("./workflow-history/workflo
213
215
  Object.defineProperty(exports, "WorkflowHistoryVersionsByIdsDto", { enumerable: true, get: function () { return workflow_history_versions_by_ids_dto_1.WorkflowHistoryVersionsByIdsDto; } });
214
216
  var update_workflow_history_version_dto_1 = require("./workflow-history/update-workflow-history-version.dto");
215
217
  Object.defineProperty(exports, "UpdateWorkflowHistoryVersionDto", { enumerable: true, get: function () { return update_workflow_history_version_dto_1.UpdateWorkflowHistoryVersionDto; } });
218
+ var update_external_secrets_settings_dto_1 = require("./secrets-provider/update-external-secrets-settings.dto");
219
+ Object.defineProperty(exports, "UpdateExternalSecretsSettingsDto", { enumerable: true, get: function () { return update_external_secrets_settings_dto_1.UpdateExternalSecretsSettingsDto; } });
216
220
  var create_secrets_provider_connection_dto_1 = require("./secrets-provider/create-secrets-provider-connection.dto");
217
221
  Object.defineProperty(exports, "CreateSecretsProviderConnectionDto", { enumerable: true, get: function () { return create_secrets_provider_connection_dto_1.CreateSecretsProviderConnectionDto; } });
218
222
  var set_secrets_provider_connection_is_enabled_dto_1 = require("./secrets-provider/set-secrets-provider-connection-is-enabled.dto");
@@ -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":";;;;;AAAA,kGAAmG;AAA1F,sJAAA,kCAAkC,OAAA;AAE3C,8DAA0D;AAAjD,qHAAA,eAAe,OAAA;AACxB,gEAA4D;AAAnD,uHAAA,gBAAgB,OAAA;AACzB,kEAA8F;AAArF,+HAAA,uBAAuB,OAAA;AAChC,wFAAmF;AAA1E,8IAAA,2BAA2B,OAAA;AACpC,gFAA2E;AAAlE,sIAAA,uBAAuB,OAAA;AAChC,0FAAqF;AAA5E,gJAAA,4BAA4B,OAAA;AACrC,oFAA+E;AAAtE,0IAAA,yBAAyB,OAAA;AAClC,0FAAqF;AAA5E,gJAAA,4BAA4B,OAAA;AACrC,kFAA6E;AAApE,wIAAA,wBAAwB,OAAA;AAEjC,6EAAyE;AAAhE,2HAAA,kBAAkB,OAAA;AAC3B,2FAAsF;AAA7E,wIAAA,wBAAwB,OAAA;AAEjC,8DAA2D;AAAlD,oHAAA,eAAe,OAAA;AACxB,wFAAmF;AAA1E,4IAAA,0BAA0B,OAAA;AAEnC,uGAAmG;AAA1F,6IAAA,2BAA2B,OAAA;AACpC,uGAAmG;AAA1F,6IAAA,2BAA2B,OAAA;AAEpC,qFAAkF;AAAzE,wHAAA,iBAAiB,OAAA;AAC1B,uGAAmG;AAA1F,yIAAA,yBAAyB,OAAA;AAClC,mHAA8G;AAArG,oJAAA,8BAA8B,OAAA;AACvC,iGAA6F;AAApF,mIAAA,sBAAsB,OAAA;AAE/B,kFAA8E;AAArE,iIAAA,qBAAqB,OAAA;AAC9B,4FAAwF;AAA/E,2IAAA,0BAA0B,OAAA;AAEnC,2EAAuE;AAA9D,+HAAA,oBAAoB,OAAA;AAC7B,iFAA6E;AAApE,qIAAA,uBAAuB,OAAA;AAEhC,4FAAwF;AAA/E,uIAAA,wBAAwB,OAAA;AACjC,sGAAiG;AAAxF,gJAAA,4BAA4B,OAAA;AACrC,4FAAwF;AAA/E,uIAAA,wBAAwB,OAAA;AAEjC,mEAAgE;AAAvD,sHAAA,gBAAgB,OAAA;AACzB,mEAA+F;AAAtF,sHAAA,gBAAgB,OAAA;AAAE,mIAAA,6BAA6B,OAAA;AACxD,mEAAgE;AAAvD,sHAAA,gBAAgB,OAAA;AACzB,+EAA0E;AAAjE,gIAAA,oBAAoB,OAAA;AAC7B,6FAAoF;AAA3E,0IAAA,uBAAuB,OAAA;AAChC,6EAAyE;AAAhE,+HAAA,oBAAoB,OAAA;AAE7B,oDAAiD;AAAxC,0GAAA,UAAU,OAAA;AACnB,oEAA8D;AAArD,uHAAA,eAAe,OAAA;AACxB,oEAA8E;AAArE,uIAAA,+BAA+B,OAAA;AACxC,0DAAuD;AAA9C,gHAAA,aAAa,OAAA;AAEtB,kFAA8E;AAArE,uIAAA,wBAAwB,OAAA;AACjC,0EAAsE;AAA7D,+HAAA,oBAAoB,OAAA;AAC7B,kFAA8E;AAArE,uIAAA,wBAAwB,OAAA;AACjC,sGAAgG;AAAvF,yJAAA,gCAAgC,OAAA;AACzC,0EAAsE;AAA7D,+HAAA,oBAAoB,OAAA;AAE7B,+FAA2F;AAAlF,iJAAA,6BAA6B,OAAA;AAEtC,8FAGuD;AAFtD,wIAAA,wBAAwB,OAAA;AACxB,iIAAA,iBAAiB,OAAA;AAElB,8FAAyF;AAAhF,wIAAA,wBAAwB,OAAA;AAGjC,6EAA0E;AAAjE,4HAAA,mBAAmB,OAAA;AAC5B,qFAAgF;AAAvE,oIAAA,sBAAsB,OAAA;AAC/B,uFAGiD;AAFhD,uIAAA,wBAAwB,OAAA;AACxB,qIAAA,sBAAsB,OAAA;AAEvB,uFAAmF;AAA1E,uIAAA,wBAAwB,OAAA;AACjC,iGAA8F;AAArF,gJAAA,6BAA6B,OAAA;AACtC,mGAAgG;AAAvF,kJAAA,8BAA8B,OAAA;AACvC,2FAAgG;AAAvF,kJAAA,kCAAkC,OAAA;AAE3C,uEAAoE;AAA3D,wHAAA,iBAAiB,OAAA;AAC1B,uEAAoE;AAA3D,wHAAA,iBAAiB,OAAA;AAC1B,yFAAoF;AAA3E,wIAAA,wBAAwB,OAAA;AACjC,yDAAmE;AAA1D,uHAAA,uBAAuB,OAAA;AAChC,2EAAwE;AAA/D,4HAAA,mBAAmB,OAAA;AAC5B,+EAA4E;AAAnE,gIAAA,qBAAqB,OAAA;AAC9B,yEAAsE;AAA7D,0HAAA,kBAAkB,OAAA;AAE3B,2FAAqF;AAA5E,+IAAA,2BAA2B,OAAA;AACpC,uEAAmE;AAA1D,6HAAA,mBAAmB,OAAA;AAE5B,oFAA+E;AAAtE,oIAAA,sBAAsB,OAAA;AAC/B,oFAA+E;AAAtE,oIAAA,sBAAsB,OAAA;AAE/B,iEAA8D;AAArD,oHAAA,eAAe,OAAA;AACxB,iEAA8D;AAArD,oHAAA,eAAe,OAAA;AACxB,iEAA8D;AAArD,oHAAA,eAAe,OAAA;AACxB,yEAAqE;AAA5D,2HAAA,kBAAkB,OAAA;AAC3B,qEAAsE;AAA7D,4HAAA,qBAAqB,OAAA;AAE9B,8EAAkF;AAAzE,uIAAA,4BAA4B,OAAA;AACrC,8DAAmE;AAA1D,wHAAA,qBAAqB,OAAA;AAE9B,uFAAmF;AAA1E,mIAAA,sBAAsB,OAAA;AAC/B,iFAKgD;AAJ/C,8HAAA,oBAAoB,OAAA;AAKrB,yFAAqF;AAA5E,qIAAA,uBAAuB,OAAA;AAChC,6FAAyF;AAAhF,yIAAA,yBAAyB,OAAA;AAElC,8DAA4D;AAAnD,+GAAA,aAAa,OAAA;AACtB,sEAIsC;AAHrC,2HAAA,kBAAkB,OAAA;AAElB,gIAAA,uBAAuB,OAAA;AAGxB,2DAAwD;AAA/C,gHAAA,aAAa,OAAA;AACtB,2DAAwD;AAA/C,gHAAA,aAAa,OAAA;AACtB,mEAA+D;AAAtD,uHAAA,gBAAgB,OAAA;AACzB,iEAA6D;AAApD,qHAAA,eAAe,OAAA;AACxB,uFAI+C;AAH9C,2IAAA,0BAA0B,OAAA;AAI3B,+FAImD;AAHlD,kJAAA,6BAA6B,OAAA;AAK9B,gDAAkD;AAAzC,2GAAA,aAAa,OAAA;AAEtB,4EAAwE;AAA/D,2HAAA,kBAAkB,OAAA;AAC3B,4EAAwE;AAA/D,2HAAA,kBAAkB,OAAA;AAC3B,oFAA+E;AAAtE,kIAAA,qBAAqB,OAAA;AAC9B,sFAAiF;AAAxE,oIAAA,sBAAsB,OAAA;AAC/B,oFAA+E;AAAtE,kIAAA,qBAAqB,OAAA;AAC9B,oFAGgD;AAF/C,kIAAA,qBAAqB,OAAA;AACrB,2IAAA,8BAA8B,OAAA;AAE/B,oGAGwD;AAFvD,iJAAA,4BAA4B,OAAA;AAC5B,0JAAA,qCAAqC,OAAA;AAEtC,0FAAqF;AAA5E,wIAAA,wBAAwB,OAAA;AACjC,gFAA2E;AAAlE,8HAAA,mBAAmB,OAAA;AAC5B,oFAA+E;AAAtE,kIAAA,qBAAqB,OAAA;AAC9B,sFAAiF;AAAxE,oIAAA,sBAAsB,OAAA;AAC/B,0FAAqF;AAA5E,wIAAA,wBAAwB,OAAA;AACjC,oGAA8F;AAArF,iJAAA,4BAA4B,OAAA;AAErC,6DAIkC;AAHjC,0HAAA,sBAAsB,OAAA;AACtB,+HAAA,2BAA2B,OAAA;AAC3B,gIAAA,4BAA4B,OAAA;AAE7B,wDAA8F;AAArF,mHAAA,qBAAqB,OAAA;AAAE,wHAAA,0BAA0B,OAAA;AAE1D,mFAGmD;AAFlD,4HAAA,mBAAmB,OAAA;AACnB,kIAAA,yBAAyB,OAAA;AAG1B,gHAA0G;AAAjG,uJAAA,+BAA+B,OAAA;AACxC,8GAAyG;AAAhG,sJAAA,+BAA+B,OAAA;AAExC,gHAA2G;AAAlG,wJAAA,gCAAgC,OAAA;AACzC,oHAA+G;AAAtG,4JAAA,kCAAkC,OAAA;AAC3C,oIAA6H;AAApH,0KAAA,wCAAwC,OAAA;AACjD,gHAA2G;AAAlG,wJAAA,gCAAgC,OAAA;AACzC,oHAA+G;AAAtG,4JAAA,kCAAkC,OAAA;AAE3C,2GAA+F;AAAtF,+IAAA,wBAAwB,OAAA;AAEjC,4FAGoD;AAFnD,iJAAA,gCAAgC,OAAA"}
@@ -0,0 +1,17 @@
1
+ import { z } from 'zod';
2
+ declare const ListProjectsQueryDto_base: import("../../zod-class").ZodClass<{
3
+ type?: "personal" | "team" | undefined;
4
+ skip?: number | undefined;
5
+ take?: number | undefined;
6
+ search?: string | undefined;
7
+ activated?: boolean | undefined;
8
+ }, {
9
+ skip: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number | undefined, string | undefined>, number | undefined, string | undefined>, number | undefined, string | undefined>;
10
+ take: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, number | undefined, string | undefined>, number | undefined, string | undefined>, number | undefined, string | undefined>, number | undefined, string | undefined>;
11
+ search: z.ZodOptional<z.ZodString>;
12
+ type: z.ZodOptional<z.ZodEnum<["personal", "team"]>>;
13
+ activated: z.ZodEffects<z.ZodOptional<z.ZodEnum<["true", "false"]>>, boolean | undefined, "true" | "false" | undefined>;
14
+ }>;
15
+ export declare class ListProjectsQueryDto extends ListProjectsQueryDto_base {
16
+ }
17
+ export {};
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ListProjectsQueryDto = void 0;
4
+ const zod_1 = require("zod");
5
+ const zod_class_1 = require("../../zod-class");
6
+ const pagination_dto_1 = require("../pagination/pagination.dto");
7
+ const searchValidator = zod_1.z.string().trim().optional();
8
+ const skipValidator = zod_1.z
9
+ .string()
10
+ .optional()
11
+ .transform((val) => (val ? parseInt(val, 10) : undefined))
12
+ .refine((val) => val === undefined || (!isNaN(val) && Number.isInteger(val)), {
13
+ message: 'Param `skip` must be a valid integer',
14
+ })
15
+ .refine((val) => val === undefined || val >= 0, {
16
+ message: 'Param `skip` must be a non-negative integer',
17
+ });
18
+ const typeValidator = zod_1.z.enum(['personal', 'team']).optional();
19
+ const activatedValidator = zod_1.z
20
+ .enum(['true', 'false'])
21
+ .optional()
22
+ .transform((val) => (val === undefined ? undefined : val === 'true'));
23
+ const takeValidator = zod_1.z
24
+ .string()
25
+ .optional()
26
+ .transform((val) => (val ? parseInt(val, 10) : undefined))
27
+ .refine((val) => val === undefined || (!isNaN(val) && Number.isInteger(val)), {
28
+ message: 'Param `take` must be a valid integer',
29
+ })
30
+ .refine((val) => val === undefined || val >= 0, {
31
+ message: 'Param `take` must be a non-negative integer',
32
+ })
33
+ .transform((val) => (val !== undefined ? Math.min(val, pagination_dto_1.MAX_ITEMS_PER_PAGE) : undefined));
34
+ class ListProjectsQueryDto extends zod_class_1.Z.class({
35
+ skip: skipValidator,
36
+ take: takeValidator,
37
+ search: searchValidator,
38
+ type: typeValidator,
39
+ activated: activatedValidator,
40
+ }) {
41
+ }
42
+ exports.ListProjectsQueryDto = ListProjectsQueryDto;
43
+ //# sourceMappingURL=list-projects-query.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects-query.dto.js","sourceRoot":"","sources":["../../../src/dto/project/list-projects-query.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AACpC,iEAAkE;AAElE,MAAM,eAAe,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,CAAC;AAIrD,MAAM,aAAa,GAAG,OAAC;KACrB,MAAM,EAAE;KACR,QAAQ,EAAE;KACV,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;KACzD,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,KAAK,SAAS,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,EAAE;IAC7E,OAAO,EAAE,sCAAsC;CAC/C,CAAC;KACD,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,KAAK,SAAS,IAAI,GAAG,IAAI,CAAC,EAAE;IAC/C,OAAO,EAAE,6CAA6C;CACtD,CAAC,CAAC;AAEJ,MAAM,aAAa,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC;AAE9D,MAAM,kBAAkB,GAAG,OAAC;KAC1B,IAAI,CAAC,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACvB,QAAQ,EAAE;KACV,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,KAAK,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,KAAK,MAAM,CAAC,CAAC,CAAC;AAKvE,MAAM,aAAa,GAAG,OAAC;KACrB,MAAM,EAAE;KACR,QAAQ,EAAE;KACV,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;KACzD,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,KAAK,SAAS,IAAI,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC,EAAE;IAC7E,OAAO,EAAE,sCAAsC;CAC/C,CAAC;KACD,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,KAAK,SAAS,IAAI,GAAG,IAAI,CAAC,EAAE;IAC/C,OAAO,EAAE,6CAA6C;CACtD,CAAC;KACD,SAAS,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,mCAAkB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC;AAE1F,MAAa,oBAAqB,SAAQ,aAAC,CAAC,KAAK,CAAC;IACjD,IAAI,EAAE,aAAa;IACnB,IAAI,EAAE,aAAa;IACnB,MAAM,EAAE,eAAe;IACvB,IAAI,EAAE,aAAa;IACnB,SAAS,EAAE,kBAAkB;CAC7B,CAAC;CAAG;AANL,oDAMK"}
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  declare const CreateSecretsProviderConnectionDto_base: import("../../zod-class").ZodClass<{
3
- type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
3
+ type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
4
4
  settings: {} & {
5
5
  [k: string]: any;
6
6
  };
@@ -8,7 +8,7 @@ declare const CreateSecretsProviderConnectionDto_base: import("../../zod-class")
8
8
  projectIds: string[];
9
9
  }, {
10
10
  providerKey: z.ZodString;
11
- type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical"]>;
11
+ type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical", "onePassword"]>;
12
12
  projectIds: z.ZodArray<z.ZodString, "many">;
13
13
  settings: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
14
14
  }>;
@@ -0,0 +1,9 @@
1
+ import { z } from 'zod';
2
+ declare const UpdateExternalSecretsSettingsDto_base: import("../../zod-class").ZodClass<{
3
+ systemRolesEnabled: boolean;
4
+ }, {
5
+ systemRolesEnabled: z.ZodBoolean;
6
+ }>;
7
+ export declare class UpdateExternalSecretsSettingsDto extends UpdateExternalSecretsSettingsDto_base {
8
+ }
9
+ export {};
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateExternalSecretsSettingsDto = void 0;
4
+ const zod_1 = require("zod");
5
+ const zod_class_1 = require("../../zod-class");
6
+ class UpdateExternalSecretsSettingsDto extends zod_class_1.Z.class({
7
+ systemRolesEnabled: zod_1.z.boolean(),
8
+ }) {
9
+ }
10
+ exports.UpdateExternalSecretsSettingsDto = UpdateExternalSecretsSettingsDto;
11
+ //# sourceMappingURL=update-external-secrets-settings.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-external-secrets-settings.dto.js","sourceRoot":"","sources":["../../../src/dto/secrets-provider/update-external-secrets-settings.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+CAAoC;AAEpC,MAAa,gCAAiC,SAAQ,aAAC,CAAC,KAAK,CAAC;IAC7D,kBAAkB,EAAE,OAAC,CAAC,OAAO,EAAE;CAC/B,CAAC;CAAG;AAFL,4EAEK"}
@@ -1,12 +1,14 @@
1
1
  import { z } from 'zod';
2
2
  declare const UpdateSecretsProviderConnectionDto_base: import("../../zod-class").ZodClass<{
3
- type?: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | undefined;
3
+ type?: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword" | undefined;
4
4
  settings?: z.objectOutputType<{}, z.ZodAny, "strip"> | undefined;
5
+ isEnabled?: boolean | undefined;
5
6
  projectIds?: string[] | undefined;
6
7
  }, {
7
- type: z.ZodOptional<z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical"]>>;
8
+ type: z.ZodOptional<z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical", "onePassword"]>>;
8
9
  projectIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9
10
  settings: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>>;
11
+ isEnabled: z.ZodOptional<z.ZodBoolean>;
10
12
  }>;
11
13
  export declare class UpdateSecretsProviderConnectionDto extends UpdateSecretsProviderConnectionDto_base {
12
14
  }
@@ -8,6 +8,7 @@ class UpdateSecretsProviderConnectionDto extends zod_class_1.Z.class({
8
8
  type: secrets_provider_schema_1.secretsProviderTypeSchema.optional(),
9
9
  projectIds: zod_1.z.array(zod_1.z.string().min(1)).optional(),
10
10
  settings: zod_1.z.object({}).catchall(zod_1.z.any()).optional(),
11
+ isEnabled: zod_1.z.boolean().optional(),
11
12
  }) {
12
13
  }
13
14
  exports.UpdateSecretsProviderConnectionDto = UpdateSecretsProviderConnectionDto;
@@ -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;CACtF,CAAC;CAAG;AAJL,gFAIK"}
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"}
@@ -12,6 +12,8 @@ declare const PushWorkFolderRequestDto_base: import("../../zod-class").ZodClass<
12
12
  pushed?: boolean | undefined;
13
13
  isLocalPublished?: boolean | undefined;
14
14
  isRemoteArchived?: boolean | undefined;
15
+ parentFolderId?: string | null | undefined;
16
+ folderPath?: string[] | undefined;
15
17
  owner?: {
16
18
  type: "personal" | "team";
17
19
  projectId: string;
@@ -36,6 +38,8 @@ declare const PushWorkFolderRequestDto_base: import("../../zod-class").ZodClass<
36
38
  pushed: z.ZodOptional<z.ZodBoolean>;
37
39
  isLocalPublished: z.ZodOptional<z.ZodBoolean>;
38
40
  isRemoteArchived: z.ZodOptional<z.ZodBoolean>;
41
+ parentFolderId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
42
+ folderPath: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
39
43
  owner: z.ZodOptional<z.ZodObject<{
40
44
  type: z.ZodEnum<["personal", "team"]>;
41
45
  projectId: z.ZodString;
@@ -62,6 +66,8 @@ declare const PushWorkFolderRequestDto_base: import("../../zod-class").ZodClass<
62
66
  pushed?: boolean | undefined;
63
67
  isLocalPublished?: boolean | undefined;
64
68
  isRemoteArchived?: boolean | undefined;
69
+ parentFolderId?: string | null | undefined;
70
+ folderPath?: string[] | undefined;
65
71
  owner?: {
66
72
  type: "personal" | "team";
67
73
  projectId: string;
@@ -80,6 +86,8 @@ declare const PushWorkFolderRequestDto_base: import("../../zod-class").ZodClass<
80
86
  pushed?: boolean | undefined;
81
87
  isLocalPublished?: boolean | undefined;
82
88
  isRemoteArchived?: boolean | undefined;
89
+ parentFolderId?: string | null | undefined;
90
+ folderPath?: string[] | undefined;
83
91
  owner?: {
84
92
  type: "personal" | "team";
85
93
  projectId: string;
@@ -13,8 +13,8 @@ declare const CreateWorkflowDto_base: import("../../zod-class").ZodClass<{
13
13
  meta?: Record<string, unknown> | null | undefined;
14
14
  uiContext?: string | undefined;
15
15
  tags?: string[] | undefined;
16
- hash?: string | undefined;
17
16
  parentFolderId?: string | undefined;
17
+ hash?: string | undefined;
18
18
  parentFolder?: {
19
19
  id: string;
20
20
  name: string;
@@ -10,8 +10,8 @@ declare const UpdateWorkflowDto_base: import("../../zod-class").ZodClass<{
10
10
  meta?: Record<string, unknown> | null | undefined;
11
11
  uiContext?: string | undefined;
12
12
  tags?: string[] | undefined;
13
- hash?: string | undefined;
14
13
  parentFolderId?: string | undefined;
14
+ hash?: string | undefined;
15
15
  parentFolder?: {
16
16
  id: string;
17
17
  name: string;
@@ -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,8 @@ export type FrontendModuleSettings = {
232
232
  'chat-hub'?: {
233
233
  enabled: boolean;
234
234
  providers: Record<ChatHubLLMProvider, ChatProviderSettingsDto>;
235
+ semanticSearch: ChatHubSemanticSearchSettings;
236
+ agentUploadMaxSizeMb: number;
235
237
  };
236
238
  'quick-connect'?: {
237
239
  options: QuickConnectOption[];
@@ -240,6 +242,7 @@ export type FrontendModuleSettings = {
240
242
  multipleConnections: boolean;
241
243
  forProjects: boolean;
242
244
  roleBasedAccess: boolean;
245
+ systemRolesEnabled: boolean;
243
246
  };
244
247
  };
245
248
  export type N8nEnvFeatFlagValue = boolean | string | number | undefined;
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, chatHubSessionTypeSchema, type ChatHubProvider, type ChatHubLLMProvider, type ChatHubSessionType, type ChatHubMessageType, type ChatHubMessageStatus, PROVIDER_CREDENTIAL_TYPE_MAP, chatModelsRequestSchema, emptyChatModelsResponse, type ChatModelsRequest, type ChatModelsResponse, chatAttachmentSchema, type ChatAttachment, ChatHubSendMessageRequest, ChatHubManualSendMessageRequest, ChatHubRegenerateMessageRequest, ChatHubManualRegenerateMessageRequest, ChatHubEditMessageRequest, ChatHubManualEditMessageRequest, ChatHubUpdateConversationRequest, ChatHubConversationsRequest, type ChatMessageId, type ChatSessionId, type ChatHubMessageDto, type ChatHubSessionDto, type ChatHubConversationDto, type ChatHubConversationResponse, type ChatHubConversationsResponse, type ChatHubAgentDto, type ChatHubAgentKnowledgeItem, type ChatHubAgentKnowledgeItemStatus, 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';
@@ -31,5 +31,5 @@ export { WorkflowExecutionStatusSchema, type WorkflowExecutionStatus, } from './
31
31
  export type { UsageState } from './schemas/usage.schema';
32
32
  export type { BreakingChangeRuleSeverity, BreakingChangeRecommendation, BreakingChangeAffectedWorkflow, BreakingChangeInstanceIssue, BreakingChangeWorkflowIssue, BreakingChangeInstanceRuleResult, BreakingChangeWorkflowRuleResult, BreakingChangeReportResult, BreakingChangeLightReportResult, BreakingChangeVersion, } from './schemas/breaking-changes.schema';
33
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';
34
+ export type { SecretsProviderType, SecretsProviderState, SecretsProviderConnectionTestState, SecretsProviderAccessRole, ConnectionProjectSummary, SecretProviderConnectionListItem, SecretProviderConnection, SecretProviderTypeResponse, SecretCompletionsResponse, TestSecretProviderConnectionResponse, ReloadSecretProviderConnectionResponse, } from './schemas/secrets-provider.schema';
35
35
  export { testSecretProviderConnectionResponseSchema, reloadSecretProviderConnectionResponseSchema, } from './schemas/secrets-provider.schema';
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.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;
17
+ 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.ChatHubManualEditMessageRequest = exports.ChatHubEditMessageRequest = exports.ChatHubManualRegenerateMessageRequest = exports.ChatHubRegenerateMessageRequest = exports.ChatHubManualSendMessageRequest = exports.ChatHubSendMessageRequest = exports.chatAttachmentSchema = exports.emptyChatModelsResponse = exports.chatModelsRequestSchema = exports.PROVIDER_CREDENTIAL_TYPE_MAP = exports.chatHubSessionTypeSchema = exports.chatHubLLMProviderSchema = exports.chatHubProviderSchema = exports.chatHubConversationModelSchema = exports.Z = void 0;
18
+ 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 = 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);
@@ -23,25 +24,33 @@ var chat_hub_1 = require("./chat-hub");
23
24
  Object.defineProperty(exports, "chatHubConversationModelSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubConversationModelSchema; } });
24
25
  Object.defineProperty(exports, "chatHubProviderSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubProviderSchema; } });
25
26
  Object.defineProperty(exports, "chatHubLLMProviderSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubLLMProviderSchema; } });
27
+ Object.defineProperty(exports, "chatHubSessionTypeSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubSessionTypeSchema; } });
26
28
  Object.defineProperty(exports, "PROVIDER_CREDENTIAL_TYPE_MAP", { enumerable: true, get: function () { return chat_hub_1.PROVIDER_CREDENTIAL_TYPE_MAP; } });
27
29
  Object.defineProperty(exports, "chatModelsRequestSchema", { enumerable: true, get: function () { return chat_hub_1.chatModelsRequestSchema; } });
28
30
  Object.defineProperty(exports, "emptyChatModelsResponse", { enumerable: true, get: function () { return chat_hub_1.emptyChatModelsResponse; } });
29
31
  Object.defineProperty(exports, "chatAttachmentSchema", { enumerable: true, get: function () { return chat_hub_1.chatAttachmentSchema; } });
30
32
  Object.defineProperty(exports, "ChatHubSendMessageRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubSendMessageRequest; } });
33
+ Object.defineProperty(exports, "ChatHubManualSendMessageRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubManualSendMessageRequest; } });
31
34
  Object.defineProperty(exports, "ChatHubRegenerateMessageRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubRegenerateMessageRequest; } });
35
+ Object.defineProperty(exports, "ChatHubManualRegenerateMessageRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubManualRegenerateMessageRequest; } });
32
36
  Object.defineProperty(exports, "ChatHubEditMessageRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubEditMessageRequest; } });
37
+ Object.defineProperty(exports, "ChatHubManualEditMessageRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubManualEditMessageRequest; } });
33
38
  Object.defineProperty(exports, "ChatHubUpdateConversationRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubUpdateConversationRequest; } });
34
39
  Object.defineProperty(exports, "ChatHubConversationsRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubConversationsRequest; } });
35
40
  Object.defineProperty(exports, "ChatHubCreateAgentRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubCreateAgentRequest; } });
36
41
  Object.defineProperty(exports, "ChatHubUpdateAgentRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubUpdateAgentRequest; } });
37
42
  Object.defineProperty(exports, "agentIconOrEmojiSchema", { enumerable: true, get: function () { return chat_hub_1.agentIconOrEmojiSchema; } });
43
+ Object.defineProperty(exports, "suggestedPromptsSchema", { enumerable: true, get: function () { return chat_hub_1.suggestedPromptsSchema; } });
38
44
  Object.defineProperty(exports, "UpdateChatSettingsRequest", { enumerable: true, get: function () { return chat_hub_1.UpdateChatSettingsRequest; } });
45
+ Object.defineProperty(exports, "ChatHubSemanticSearchSettings", { enumerable: true, get: function () { return chat_hub_1.ChatHubSemanticSearchSettings; } });
39
46
  Object.defineProperty(exports, "ChatReconnectRequest", { enumerable: true, get: function () { return chat_hub_1.ChatReconnectRequest; } });
40
47
  Object.defineProperty(exports, "chatHubMessageWithButtonsSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubMessageWithButtonsSchema; } });
41
48
  Object.defineProperty(exports, "ChatHubCreateToolRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubCreateToolRequest; } });
42
49
  Object.defineProperty(exports, "ChatHubUpdateToolRequest", { enumerable: true, get: function () { return chat_hub_1.ChatHubUpdateToolRequest; } });
43
50
  Object.defineProperty(exports, "ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES", { enumerable: true, get: function () { return chat_hub_1.ALWAYS_BLOCKED_CHAT_HUB_TOOL_TYPES; } });
44
51
  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; } });
52
+ Object.defineProperty(exports, "chatHubVectorStoreProviderSchema", { enumerable: true, get: function () { return chat_hub_1.chatHubVectorStoreProviderSchema; } });
53
+ Object.defineProperty(exports, "VECTOR_STORE_PROVIDER_CREDENTIAL_TYPE_MAP", { enumerable: true, get: function () { return chat_hub_1.VECTOR_STORE_PROVIDER_CREDENTIAL_TYPE_MAP; } });
45
54
  var heartbeat_1 = require("./push/heartbeat");
46
55
  Object.defineProperty(exports, "createHeartbeatMessage", { enumerable: true, get: function () { return heartbeat_1.createHeartbeatMessage; } });
47
56
  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,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"}
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,uCAyEoB;AAxEnB,0HAAA,8BAA8B,OAAA;AAW9B,iHAAA,qBAAqB,OAAA;AACrB,oHAAA,wBAAwB,OAAA;AACxB,oHAAA,wBAAwB,OAAA;AAMxB,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,2HAAA,+BAA+B,OAAA;AAC/B,iIAAA,qCAAqC,OAAA;AACrC,qHAAA,yBAAyB,OAAA;AACzB,2HAAA,+BAA+B,OAAA;AAC/B,4HAAA,gCAAgC,OAAA;AAChC,uHAAA,2BAA2B,OAAA;AAW3B,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;AAgBxC,6EAG2C;AAF1C,qJAAA,0CAA0C,OAAA;AAC1C,uJAAA,4CAA4C,OAAA"}
@@ -1,25 +1,44 @@
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>;
6
6
  export declare const secretsProviderConnectionTestStateSchema: z.ZodEnum<["connected", "tested", "error"]>;
7
7
  export type SecretsProviderConnectionTestState = z.infer<typeof secretsProviderConnectionTestStateSchema>;
8
+ export declare const secretsProviderAccessRoleSchema: z.ZodEnum<["secretsProviderConnection:owner", "secretsProviderConnection:user"]>;
9
+ export type SecretsProviderAccessRole = z.infer<typeof secretsProviderAccessRoleSchema>;
10
+ declare const connectionProjectSummarySchema: z.ZodObject<{
11
+ id: z.ZodString;
12
+ name: z.ZodString;
13
+ role: z.ZodOptional<z.ZodEnum<["secretsProviderConnection:owner", "secretsProviderConnection:user"]>>;
14
+ }, "strip", z.ZodTypeAny, {
15
+ id: string;
16
+ name: string;
17
+ role?: "secretsProviderConnection:owner" | "secretsProviderConnection:user" | undefined;
18
+ }, {
19
+ id: string;
20
+ name: string;
21
+ role?: "secretsProviderConnection:owner" | "secretsProviderConnection:user" | undefined;
22
+ }>;
23
+ export type ConnectionProjectSummary = z.infer<typeof connectionProjectSummarySchema>;
8
24
  export declare const secretProviderConnectionSchema: z.ZodObject<{
9
25
  id: z.ZodString;
10
26
  name: z.ZodString;
11
- type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical"]>;
27
+ type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical", "onePassword"]>;
12
28
  state: z.ZodEnum<["initializing", "initialized", "connecting", "connected", "error", "retrying"]>;
13
29
  isEnabled: z.ZodBoolean;
14
30
  projects: z.ZodArray<z.ZodObject<{
15
31
  id: z.ZodString;
16
32
  name: z.ZodString;
33
+ role: z.ZodOptional<z.ZodEnum<["secretsProviderConnection:owner", "secretsProviderConnection:user"]>>;
17
34
  }, "strip", z.ZodTypeAny, {
18
35
  id: string;
19
36
  name: string;
37
+ role?: "secretsProviderConnection:owner" | "secretsProviderConnection:user" | undefined;
20
38
  }, {
21
39
  id: string;
22
40
  name: string;
41
+ role?: "secretsProviderConnection:owner" | "secretsProviderConnection:user" | undefined;
23
42
  }>, "many">;
24
43
  settings: z.ZodObject<{}, "strip", z.ZodAny, z.objectOutputType<{}, z.ZodAny, "strip">, z.objectInputType<{}, z.ZodAny, "strip">>;
25
44
  secretsCount: z.ZodNumber;
@@ -33,10 +52,11 @@ export declare const secretProviderConnectionSchema: z.ZodObject<{
33
52
  name: string;
34
53
  credentialsCount?: number | undefined;
35
54
  }>, "many">>;
55
+ scopes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
36
56
  createdAt: z.ZodString;
37
57
  updatedAt: z.ZodString;
38
58
  }, "strip", z.ZodTypeAny, {
39
- type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
59
+ type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
40
60
  id: string;
41
61
  name: string;
42
62
  createdAt: string;
@@ -48,15 +68,17 @@ export declare const secretProviderConnectionSchema: z.ZodObject<{
48
68
  projects: {
49
69
  id: string;
50
70
  name: string;
71
+ role?: "secretsProviderConnection:owner" | "secretsProviderConnection:user" | undefined;
51
72
  }[];
52
73
  isEnabled: boolean;
53
74
  secretsCount: number;
75
+ scopes?: string[] | undefined;
54
76
  secrets?: {
55
77
  name: string;
56
78
  credentialsCount?: number | undefined;
57
79
  }[] | undefined;
58
80
  }, {
59
- type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
81
+ type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
60
82
  id: string;
61
83
  name: string;
62
84
  createdAt: string;
@@ -68,29 +90,30 @@ export declare const secretProviderConnectionSchema: z.ZodObject<{
68
90
  projects: {
69
91
  id: string;
70
92
  name: string;
93
+ role?: "secretsProviderConnection:owner" | "secretsProviderConnection:user" | undefined;
71
94
  }[];
72
95
  isEnabled: boolean;
73
96
  secretsCount: number;
97
+ scopes?: string[] | undefined;
74
98
  secrets?: {
75
99
  name: string;
76
100
  credentialsCount?: number | undefined;
77
101
  }[] | undefined;
78
102
  }>;
79
- type SecretProviderConnectionWithIsEnabled = z.infer<typeof secretProviderConnectionSchema>;
80
- export type SecretProviderConnection = Omit<SecretProviderConnectionWithIsEnabled, 'isEnabled'>;
103
+ export type SecretProviderConnection = z.infer<typeof secretProviderConnectionSchema>;
81
104
  export type SecretProviderConnectionListItem = Omit<SecretProviderConnection, 'settings' | 'secrets'>;
82
105
  export declare const secretProviderTypeResponseSchema: z.ZodObject<{
83
- type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical"]>;
106
+ type: z.ZodEnum<["awsSecretsManager", "gcpSecretsManager", "vault", "azureKeyVault", "infisical", "onePassword"]>;
84
107
  displayName: z.ZodString;
85
108
  icon: z.ZodString;
86
109
  properties: z.ZodArray<z.ZodAny, "many">;
87
110
  }, "strip", z.ZodTypeAny, {
88
- type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
111
+ type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
89
112
  icon: string;
90
113
  displayName: string;
91
114
  properties: any[];
92
115
  }, {
93
- type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical";
116
+ type: "awsSecretsManager" | "gcpSecretsManager" | "vault" | "azureKeyVault" | "infisical" | "onePassword";
94
117
  icon: string;
95
118
  displayName: string;
96
119
  properties: any[];
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.reloadSecretProviderConnectionResponseSchema = exports.testSecretProviderConnectionResponseSchema = exports.secretCompletionsResponseSchema = exports.secretProviderTypeResponseSchema = exports.secretProviderConnectionSchema = exports.secretsProviderConnectionTestStateSchema = exports.secretsProviderStateSchema = exports.secretsProviderTypeSchema = void 0;
3
+ exports.reloadSecretProviderConnectionResponseSchema = exports.testSecretProviderConnectionResponseSchema = exports.secretCompletionsResponseSchema = exports.secretProviderTypeResponseSchema = exports.secretProviderConnectionSchema = exports.secretsProviderAccessRoleSchema = exports.secretsProviderConnectionTestStateSchema = exports.secretsProviderStateSchema = exports.secretsProviderTypeSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  exports.secretsProviderTypeSchema = zod_1.z.enum([
6
6
  'awsSecretsManager',
@@ -8,6 +8,7 @@ exports.secretsProviderTypeSchema = zod_1.z.enum([
8
8
  'vault',
9
9
  'azureKeyVault',
10
10
  'infisical',
11
+ 'onePassword',
11
12
  ]);
12
13
  exports.secretsProviderStateSchema = zod_1.z.enum([
13
14
  'initializing',
@@ -18,9 +19,14 @@ exports.secretsProviderStateSchema = zod_1.z.enum([
18
19
  'retrying',
19
20
  ]);
20
21
  exports.secretsProviderConnectionTestStateSchema = zod_1.z.enum(['connected', 'tested', 'error']);
21
- const projectSummarySchema = zod_1.z.object({
22
+ exports.secretsProviderAccessRoleSchema = zod_1.z.enum([
23
+ 'secretsProviderConnection:owner',
24
+ 'secretsProviderConnection:user',
25
+ ]);
26
+ const connectionProjectSummarySchema = zod_1.z.object({
22
27
  id: zod_1.z.string(),
23
28
  name: zod_1.z.string(),
29
+ role: exports.secretsProviderAccessRoleSchema.optional(),
24
30
  });
25
31
  const secretSummarySchema = zod_1.z.object({
26
32
  name: zod_1.z.string(),
@@ -32,10 +38,11 @@ exports.secretProviderConnectionSchema = zod_1.z.object({
32
38
  type: exports.secretsProviderTypeSchema,
33
39
  state: exports.secretsProviderStateSchema,
34
40
  isEnabled: zod_1.z.boolean(),
35
- projects: zod_1.z.array(projectSummarySchema),
41
+ projects: zod_1.z.array(connectionProjectSummarySchema),
36
42
  settings: zod_1.z.object({}).catchall(zod_1.z.any()),
37
43
  secretsCount: zod_1.z.number(),
38
44
  secrets: zod_1.z.array(secretSummarySchema).optional(),
45
+ scopes: zod_1.z.array(zod_1.z.string()).optional(),
39
46
  createdAt: zod_1.z.string(),
40
47
  updatedAt: zod_1.z.string(),
41
48
  });
@@ -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;AAWU,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACxD,IAAI,EAAE,iCAAyB;IAC/B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,GAAG,EAAE,CAAwC;CACnE,CAAC,CAAC;AAOU,QAAA,+BAA+B,GAAG,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;AAM5E,QAAA,0CAA0C,GAAG,OAAC,CAAC,MAAM,CAAC;IAClE,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;IACpB,SAAS,EAAE,gDAAwC;IACnD,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC5B,CAAC,CAAC;AAQU,QAAA,4CAA4C,GAAG,OAAC,CAAC,MAAM,CAAC;IACpE,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;IACpB,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,MAAM,EAAE,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC9E,CAAC,CAAC"}
1
+ {"version":3,"file":"secrets-provider.schema.js","sourceRoot":"","sources":["../../src/schemas/secrets-provider.schema.ts"],"names":[],"mappings":"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"}