@flowdular/sdk 0.1.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/.ai/agents/README.md +27 -0
- package/.ai/agents/module-executor.md +36 -0
- package/.ai/agents/reviewer.md +23 -0
- package/.ai/agents/sandbox/agentic-engineer.md +31 -0
- package/.ai/agents/sandbox/backend-engineer.md +36 -0
- package/.ai/agents/sandbox/business-manager.md +23 -0
- package/.ai/agents/sandbox/frontend-engineer.md +27 -0
- package/.ai/agents/sandbox/ux-designer.md +23 -0
- package/.ai/agents/spec-author.md +29 -0
- package/.ai/blueprints/add-migration/README.md +5 -0
- package/.ai/blueprints/add-migration/allowed-paths.yaml +23 -0
- package/.ai/blueprints/add-migration/blueprint.json +14 -0
- package/.ai/blueprints/add-migration/examples/invalid/input-destructive.json +6 -0
- package/.ai/blueprints/add-migration/examples/invalid/plan-unnumbered-file.json +9 -0
- package/.ai/blueprints/add-migration/examples/valid/input.json +6 -0
- package/.ai/blueprints/add-migration/examples/valid/plan.json +9 -0
- package/.ai/blueprints/add-migration/gates.yaml +30 -0
- package/.ai/blueprints/add-migration/input.schema.json +23 -0
- package/.ai/blueprints/add-migration/plan.schema.json +54 -0
- package/.ai/blueprints/add-migration/required-files.yaml +18 -0
- package/.ai/blueprints/add-migration/spec-requirements.yaml +13 -0
- package/.ai/blueprints/add-migration/steps.yaml +62 -0
- package/.ai/blueprints/author-spec/README.md +5 -0
- package/.ai/blueprints/author-spec/allowed-paths.yaml +7 -0
- package/.ai/blueprints/author-spec/blueprint.json +14 -0
- package/.ai/blueprints/author-spec/examples/invalid/input-missing-outcome.json +5 -0
- package/.ai/blueprints/author-spec/examples/valid/input.json +6 -0
- package/.ai/blueprints/author-spec/gates.yaml +13 -0
- package/.ai/blueprints/author-spec/input.schema.json +20 -0
- package/.ai/blueprints/author-spec/plan.schema.json +14 -0
- package/.ai/blueprints/author-spec/required-files.yaml +6 -0
- package/.ai/blueprints/author-spec/spec-requirements.yaml +35 -0
- package/.ai/blueprints/author-spec/steps.yaml +28 -0
- package/.ai/blueprints/author-spec/templates/module.yaml +45 -0
- package/.ai/blueprints/bug-fix/README.md +5 -0
- package/.ai/blueprints/bug-fix/allowed-paths.yaml +29 -0
- package/.ai/blueprints/bug-fix/blueprint.json +14 -0
- package/.ai/blueprints/bug-fix/examples/invalid/input-no-symptom.json +4 -0
- package/.ai/blueprints/bug-fix/examples/invalid/plan-no-test.json +8 -0
- package/.ai/blueprints/bug-fix/examples/valid/input.json +6 -0
- package/.ai/blueprints/bug-fix/examples/valid/plan.json +8 -0
- package/.ai/blueprints/bug-fix/gates.yaml +30 -0
- package/.ai/blueprints/bug-fix/input.schema.json +25 -0
- package/.ai/blueprints/bug-fix/plan.schema.json +53 -0
- package/.ai/blueprints/bug-fix/required-files.yaml +7 -0
- package/.ai/blueprints/bug-fix/spec-requirements.yaml +7 -0
- package/.ai/blueprints/bug-fix/steps.yaml +51 -0
- package/.ai/blueprints/core-extend/README.md +5 -0
- package/.ai/blueprints/core-extend/allowed-paths.yaml +49 -0
- package/.ai/blueprints/core-extend/blueprint.json +14 -0
- package/.ai/blueprints/core-extend/examples/invalid/input-unknown-package.json +5 -0
- package/.ai/blueprints/core-extend/examples/invalid/plan-missing-gates.json +7 -0
- package/.ai/blueprints/core-extend/examples/valid/input.json +6 -0
- package/.ai/blueprints/core-extend/examples/valid/plan.json +10 -0
- package/.ai/blueprints/core-extend/gates.yaml +16 -0
- package/.ai/blueprints/core-extend/input.schema.json +54 -0
- package/.ai/blueprints/core-extend/plan.schema.json +39 -0
- package/.ai/blueprints/core-extend/required-files.yaml +36 -0
- package/.ai/blueprints/core-extend/spec-requirements.yaml +17 -0
- package/.ai/blueprints/core-extend/steps.yaml +54 -0
- package/.ai/blueprints/edit-module/README.md +9 -0
- package/.ai/blueprints/edit-module/allowed-paths.yaml +27 -0
- package/.ai/blueprints/edit-module/blueprint.json +20 -0
- package/.ai/blueprints/edit-module/examples/invalid/input-unknown-change.json +5 -0
- package/.ai/blueprints/edit-module/examples/invalid/plan-touches-platform.json +15 -0
- package/.ai/blueprints/edit-module/examples/valid/input.json +5 -0
- package/.ai/blueprints/edit-module/examples/valid/plan.json +25 -0
- package/.ai/blueprints/edit-module/gates.yaml +30 -0
- package/.ai/blueprints/edit-module/input.schema.json +31 -0
- package/.ai/blueprints/edit-module/plan.schema.json +65 -0
- package/.ai/blueprints/edit-module/required-files.yaml +80 -0
- package/.ai/blueprints/edit-module/spec-requirements.yaml +15 -0
- package/.ai/blueprints/edit-module/steps.yaml +115 -0
- package/.ai/blueprints/new-module/README.md +7 -0
- package/.ai/blueprints/new-module/allowed-paths.yaml +27 -0
- package/.ai/blueprints/new-module/blueprint.json +20 -0
- package/.ai/blueprints/new-module/examples/invalid/input-spec-outside-modules.json +4 -0
- package/.ai/blueprints/new-module/examples/invalid/plan-unknown-gate.json +8 -0
- package/.ai/blueprints/new-module/examples/valid/input.json +5 -0
- package/.ai/blueprints/new-module/examples/valid/plan.json +22 -0
- package/.ai/blueprints/new-module/gates.yaml +30 -0
- package/.ai/blueprints/new-module/input.schema.json +21 -0
- package/.ai/blueprints/new-module/plan.schema.json +58 -0
- package/.ai/blueprints/new-module/required-files.yaml +73 -0
- package/.ai/blueprints/new-module/spec-requirements.yaml +30 -0
- package/.ai/blueprints/new-module/steps.yaml +138 -0
- package/.ai/blueprints/release/README.md +5 -0
- package/.ai/blueprints/release/allowed-paths.yaml +19 -0
- package/.ai/blueprints/release/blueprint.json +14 -0
- package/.ai/blueprints/release/examples/invalid/input-bad-version.json +4 -0
- package/.ai/blueprints/release/examples/invalid/plan-bad-branch.json +7 -0
- package/.ai/blueprints/release/examples/valid/input.json +5 -0
- package/.ai/blueprints/release/examples/valid/plan.json +20 -0
- package/.ai/blueprints/release/gates.yaml +20 -0
- package/.ai/blueprints/release/input.schema.json +24 -0
- package/.ai/blueprints/release/plan.schema.json +46 -0
- package/.ai/blueprints/release/required-files.yaml +19 -0
- package/.ai/blueprints/release/spec-requirements.yaml +8 -0
- package/.ai/blueprints/release/steps.yaml +47 -0
- package/.ai/blueprints/security-review/README.md +5 -0
- package/.ai/blueprints/security-review/allowed-paths.yaml +6 -0
- package/.ai/blueprints/security-review/blueprint.json +14 -0
- package/.ai/blueprints/security-review/examples/invalid/input-unknown-kind.json +4 -0
- package/.ai/blueprints/security-review/examples/invalid/plan-finding-without-scenario.json +14 -0
- package/.ai/blueprints/security-review/examples/valid/input.json +4 -0
- package/.ai/blueprints/security-review/examples/valid/plan.json +19 -0
- package/.ai/blueprints/security-review/gates.yaml +22 -0
- package/.ai/blueprints/security-review/input.schema.json +20 -0
- package/.ai/blueprints/security-review/plan.schema.json +65 -0
- package/.ai/blueprints/security-review/required-files.yaml +6 -0
- package/.ai/blueprints/security-review/spec-requirements.yaml +9 -0
- package/.ai/blueprints/security-review/steps.yaml +38 -0
- package/.ai/policies/capabilities.yaml +164 -0
- package/.ai/policies/model-routing.yaml +72 -0
- package/.ai/policies/path-ownership.yaml +65 -0
- package/.ai/policies/task-budgets.yaml +37 -0
- package/.ai/references/catalog/LICENSE +21 -0
- package/.ai/references/catalog/migrations/0001_catalog_core.down.sql +2 -0
- package/.ai/references/catalog/migrations/0001_catalog_core.up.sql +21 -0
- package/.ai/references/catalog/migrations/0002_catalog_history.down.sql +3 -0
- package/.ai/references/catalog/migrations/0002_catalog_history.up.sql +20 -0
- package/.ai/references/catalog/migrations/0003_catalog_history_service_actors.down.sql +3 -0
- package/.ai/references/catalog/migrations/0003_catalog_history_service_actors.up.sql +36 -0
- package/.ai/references/catalog/migrations/0004_catalog_idempotency_ledger.down.sql +3 -0
- package/.ai/references/catalog/migrations/0004_catalog_idempotency_ledger.up.sql +19 -0
- package/.ai/references/catalog/migrations/README.md +3 -0
- package/.ai/references/catalog/module.json +27 -0
- package/.ai/references/catalog/package.json +49 -0
- package/.ai/references/catalog/spec/module.yaml +86 -0
- package/.ai/references/catalog/src/acl/permissions.ts +6 -0
- package/.ai/references/catalog/src/agent/tools.ts +164 -0
- package/.ai/references/catalog/src/api/endpoints.ts +243 -0
- package/.ai/references/catalog/src/client/CatalogHistoryDrawer.tsrx +123 -0
- package/.ai/references/catalog/src/client/CatalogItemForm.tsrx +190 -0
- package/.ai/references/catalog/src/client/CatalogView.tsrx +473 -0
- package/.ai/references/catalog/src/client/api.ts +111 -0
- package/.ai/references/catalog/src/client/contribution.tsrx +61 -0
- package/.ai/references/catalog/src/client/index.ts +18 -0
- package/.ai/references/catalog/src/client/navigation-copy.ts +9 -0
- package/.ai/references/catalog/src/client/state.ts +24 -0
- package/.ai/references/catalog/src/domain/types.ts +32 -0
- package/.ai/references/catalog/src/domain/variables.ts +111 -0
- package/.ai/references/catalog/src/index.ts +31 -0
- package/.ai/references/catalog/src/platform.ts +35 -0
- package/.ai/references/catalog/src/server/index.ts +4 -0
- package/.ai/references/catalog/src/server/runtime.ts +86 -0
- package/.ai/references/catalog/src/services/catalog-service.ts +306 -0
- package/.ai/references/catalog/src/services/database-repository.ts +440 -0
- package/.ai/references/catalog/src/services/index.ts +4 -0
- package/.ai/references/catalog/src/services/migration.ts +171 -0
- package/.ai/references/catalog/src/services/repository.ts +36 -0
- package/.ai/references/catalog/src/services/target-idempotency.ts +59 -0
- package/.ai/references/catalog/tests/agent-tools.test.ts +277 -0
- package/.ai/references/catalog/tests/endpoints.test.ts +320 -0
- package/.ai/references/catalog/tests/idempotency.test.ts +297 -0
- package/.ai/references/catalog/tests/migrations.test.ts +149 -0
- package/.ai/references/catalog/tests/module.test.ts +271 -0
- package/.ai/references/catalog/tests/support/database.ts +76 -0
- package/.ai/references/catalog/translations/en.json +101 -0
- package/.ai/references/catalog/translations/pl.json +101 -0
- package/.ai/references/catalog/tsconfig.json +15 -0
- package/.ai/references/catalog/vitest.config.ts +16 -0
- package/.ai/references/catalog.provenance.json +55 -0
- package/.ai/skills/README.md +36 -0
- package/.ai/skills/agent-tool-design/SKILL.md +209 -0
- package/.ai/skills/auth-security-review/SKILL.md +96 -0
- package/.ai/skills/auto-review/SKILL.md +112 -0
- package/.ai/skills/bug-hunt/SKILL.md +110 -0
- package/.ai/skills/business-agent-design/SKILL.md +188 -0
- package/.ai/skills/cli-extension/SKILL.md +114 -0
- package/.ai/skills/core-extend/SKILL.md +104 -0
- package/.ai/skills/database-adapter/SKILL.md +204 -0
- package/.ai/skills/database-adapter/references/first-run-and-matrix.md +105 -0
- package/.ai/skills/migration-authoring/SKILL.md +167 -0
- package/.ai/skills/module-new/SKILL.md +180 -0
- package/.ai/skills/module-update/SKILL.md +100 -0
- package/.ai/skills/perf-audit/SKILL.md +105 -0
- package/.ai/skills/release-eject-pr/SKILL.md +113 -0
- package/.ai/skills/spec-approval/SKILL.md +112 -0
- package/.ai/skills/test-hardening/SKILL.md +86 -0
- package/.ai/skills/translations-i18n/SKILL.md +85 -0
- package/.ai/skills/ux-design/SKILL.md +97 -0
- package/.ai/skills/variables/SKILL.md +164 -0
- package/.ai/skills/workflow-development/SKILL.md +199 -0
- package/AGENTS.md +59 -0
- package/LICENSE +21 -0
- package/README.md +24 -0
- package/docs/agent-contract.md +45 -0
- package/docs/design-system.md +217 -0
- package/modules/agents/migrations/0001_agents_core.down.sql +4 -0
- package/modules/agents/migrations/0001_agents_core.up.sql +106 -0
- package/modules/agents/migrations/0002_provider_connections.down.sql +1 -0
- package/modules/agents/migrations/0002_provider_connections.up.sql +34 -0
- package/modules/agents/migrations/0003_resource_audit.down.sql +1 -0
- package/modules/agents/migrations/0003_resource_audit.up.sql +25 -0
- package/modules/agents/migrations/0004_run_grants.down.sql +1 -0
- package/modules/agents/migrations/0004_run_grants.up.sql +19 -0
- package/modules/agents/migrations/0005_long_running_limits.down.sql +2 -0
- package/modules/agents/migrations/0005_long_running_limits.up.sql +14 -0
- package/modules/agents/migrations/0006_agent_skills.down.sql +3 -0
- package/modules/agents/migrations/0006_agent_skills.up.sql +44 -0
- package/modules/agents/migrations/0007_model_readiness.down.sql +1 -0
- package/modules/agents/migrations/0007_model_readiness.up.sql +18 -0
- package/modules/agents/migrations/0008_output_limits.down.sql +2 -0
- package/modules/agents/migrations/0008_output_limits.up.sql +8 -0
- package/modules/agents/migrations/0009_agent_audit_v3.down.sql +1 -0
- package/modules/agents/migrations/0009_agent_audit_v3.up.sql +25 -0
- package/modules/agents/migrations/0012_agent_run_costs.down.sql +3 -0
- package/modules/agents/migrations/0012_agent_run_costs.up.sql +32 -0
- package/modules/agents/migrations/0013_workflow_prerequisites.down.sql +3 -0
- package/modules/agents/migrations/0013_workflow_prerequisites.up.sql +97 -0
- package/modules/agents/migrations/0014_agent_action_audit.down.sql +1 -0
- package/modules/agents/migrations/0014_agent_action_audit.up.sql +25 -0
- package/modules/agents/migrations/0015_agent_run_actors.down.sql +1 -0
- package/modules/agents/migrations/0015_agent_run_actors.up.sql +17 -0
- package/modules/agents/migrations/0016_module_owned_agents.down.sql +6 -0
- package/modules/agents/migrations/0016_module_owned_agents.up.sql +68 -0
- package/modules/agents/migrations/0017_agent_authorization_subjects.down.sql +2 -0
- package/modules/agents/migrations/0017_agent_authorization_subjects.up.sql +18 -0
- package/modules/agents/migrations/0018_agent_child_tenant_isolation.down.sql +12 -0
- package/modules/agents/migrations/0018_agent_child_tenant_isolation.up.sql +88 -0
- package/modules/agents/migrations/0019_background_recovery_grants.down.sql +6 -0
- package/modules/agents/migrations/0019_background_recovery_grants.up.sql +17 -0
- package/modules/agents/migrations/0020_provider_summary_role.down.sql +2 -0
- package/modules/agents/migrations/0020_provider_summary_role.up.sql +17 -0
- package/modules/agents/migrations/0021_agents_agent_reconciliation_role.down.sql +4 -0
- package/modules/agents/migrations/0021_agents_agent_reconciliation_role.up.sql +7 -0
- package/modules/agents/migrations/README.md +39 -0
- package/modules/agents/module.json +38 -0
- package/modules/agents/package.json +56 -0
- package/modules/agents/spec/module.yaml +271 -0
- package/modules/agents/spec/procedures-compatibility.md +63 -0
- package/modules/agents/src/acl/permissions.ts +13 -0
- package/modules/agents/src/api/endpoints.ts +1122 -0
- package/modules/agents/src/cli/commands.json +29 -0
- package/modules/agents/src/cli/index.ts +162 -0
- package/modules/agents/src/client/AgentDashboardWidget.tsrx +32 -0
- package/modules/agents/src/client/AgentDefinitionForm.tsrx +362 -0
- package/modules/agents/src/client/AgentDefinitionList.tsrx +127 -0
- package/modules/agents/src/client/AgentPlaygroundView.tsrx +246 -0
- package/modules/agents/src/client/AgentProcedureForm.tsrx +182 -0
- package/modules/agents/src/client/AgentProcedureList.tsrx +118 -0
- package/modules/agents/src/client/AgentProceduresView.tsrx +253 -0
- package/modules/agents/src/client/AgentProvidersView.tsrx +248 -0
- package/modules/agents/src/client/AgentRunsView.tsrx +304 -0
- package/modules/agents/src/client/AgentUsageView.tsrx +233 -0
- package/modules/agents/src/client/AgentsView.tsrx +339 -0
- package/modules/agents/src/client/ModuleAgentBindingForm.tsrx +239 -0
- package/modules/agents/src/client/ModuleAgentList.tsrx +122 -0
- package/modules/agents/src/client/ProviderConnectionForm.tsrx +273 -0
- package/modules/agents/src/client/ProviderConnectionList.tsrx +229 -0
- package/modules/agents/src/client/ProviderModelEditor.tsrx +313 -0
- package/modules/agents/src/client/RunTimeline.tsrx +212 -0
- package/modules/agents/src/client/agents.css +349 -0
- package/modules/agents/src/client/api.ts +373 -0
- package/modules/agents/src/client/contribution.tsrx +181 -0
- package/modules/agents/src/client/index.ts +21 -0
- package/modules/agents/src/client/presentation.ts +162 -0
- package/modules/agents/src/client/state.ts +100 -0
- package/modules/agents/src/domain/context-variables.ts +58 -0
- package/modules/agents/src/domain/run-timeline.ts +145 -0
- package/modules/agents/src/domain/types.ts +481 -0
- package/modules/agents/src/index.ts +88 -0
- package/modules/agents/src/platform.ts +82 -0
- package/modules/agents/src/server/action-execution.ts +811 -0
- package/modules/agents/src/server/define-agent.ts +170 -0
- package/modules/agents/src/server/index.ts +67 -0
- package/modules/agents/src/server/run-execution.ts +231 -0
- package/modules/agents/src/server/run-queue.ts +96 -0
- package/modules/agents/src/server/runtime.ts +448 -0
- package/modules/agents/src/server/tools.ts +18 -0
- package/modules/agents/src/services/agent-service.ts +2167 -0
- package/modules/agents/src/services/credential-vault.ts +133 -0
- package/modules/agents/src/services/database-repository.ts +2786 -0
- package/modules/agents/src/services/index.ts +33 -0
- package/modules/agents/src/services/migration.ts +1152 -0
- package/modules/agents/src/services/module-agent-preflight.ts +76 -0
- package/modules/agents/src/services/outbound-policy.ts +136 -0
- package/modules/agents/src/services/provider-broker.ts +80 -0
- package/modules/agents/src/services/provider-repository.ts +589 -0
- package/modules/agents/src/services/provider-service.ts +968 -0
- package/modules/agents/src/services/repository.ts +294 -0
- package/modules/agents/src/services/run-grant.ts +305 -0
- package/modules/agents/src/services/usage-service.ts +119 -0
- package/modules/agents/src/services/worker.ts +442 -0
- package/modules/agents/src/settings.ts +244 -0
- package/modules/agents/translations/en.json +403 -0
- package/modules/agents/translations/pl.json +403 -0
- package/modules/auth/README.md +215 -0
- package/modules/auth/migrations/0001_auth_core.up.sql +108 -0
- package/modules/auth/migrations/0002_bundled_module_scopes.up.sql +26 -0
- package/modules/auth/migrations/0003_agent_core_scopes.up.sql +12 -0
- package/modules/auth/migrations/0004_owner_only_development_scopes.up.sql +8 -0
- package/modules/auth/migrations/0005_agent_provider_scopes.up.sql +13 -0
- package/modules/auth/migrations/0006_tenant_slug.up.sql +6 -0
- package/modules/auth/migrations/0007_sandbox_scopes.up.sql +13 -0
- package/modules/auth/migrations/0008_api_tokens.up.sql +43 -0
- package/modules/auth/migrations/0009_module_settings.up.sql +24 -0
- package/modules/auth/migrations/0010_sign_in_lockout.up.sql +11 -0
- package/modules/auth/migrations/0011_session_ids_and_password_reset.up.sql +7 -0
- package/modules/auth/migrations/0012_roles.up.sql +31 -0
- package/modules/auth/migrations/0013_audit.up.sql +27 -0
- package/modules/auth/migrations/0014_audit_actor.up.sql +4 -0
- package/modules/auth/migrations/0015_account_security.up.sql +81 -0
- package/modules/auth/module.json +26 -0
- package/modules/auth/package.json +61 -0
- package/modules/auth/spec/module.yaml +190 -0
- package/modules/auth/src/acl/scopes.ts +86 -0
- package/modules/auth/src/api/attempt-limiter.ts +42 -0
- package/modules/auth/src/api/client-address.ts +14 -0
- package/modules/auth/src/api/cookies.ts +52 -0
- package/modules/auth/src/api/origin.ts +40 -0
- package/modules/auth/src/cli/commands.json +74 -0
- package/modules/auth/src/cli/database.ts +51 -0
- package/modules/auth/src/cli/greenfield.ts +173 -0
- package/modules/auth/src/cli/index.ts +184 -0
- package/modules/auth/src/cli/provisioning.ts +211 -0
- package/modules/auth/src/client/AuthBackdrop.tsrx +137 -0
- package/modules/auth/src/client/AuthenticationCore.tsrx +630 -0
- package/modules/auth/src/client/PasswordChangeRequired.tsrx +145 -0
- package/modules/auth/src/client/PublicAuthFlows.tsrx +379 -0
- package/modules/auth/src/client/api.ts +464 -0
- package/modules/auth/src/client/audit/AuditView.tsrx +357 -0
- package/modules/auth/src/client/audit/api.ts +164 -0
- package/modules/auth/src/client/audit/audit-columns.tsrx +47 -0
- package/modules/auth/src/client/audit/audit-row.ts +38 -0
- package/modules/auth/src/client/auth.css +483 -0
- package/modules/auth/src/client/contribution.tsrx +100 -0
- package/modules/auth/src/client/index.ts +32 -0
- package/modules/auth/src/client/security/SecurityView.tsrx +253 -0
- package/modules/auth/src/client/settings/PreferencesCard.tsrx +65 -0
- package/modules/auth/src/client/settings/SettingsView.tsrx +212 -0
- package/modules/auth/src/client/settings/WorkspaceCard.tsrx +59 -0
- package/modules/auth/src/client/settings/api.ts +115 -0
- package/modules/auth/src/client/slug.ts +26 -0
- package/modules/auth/src/client/state.ts +115 -0
- package/modules/auth/src/client/tokens/ApiTokenForm.tsrx +153 -0
- package/modules/auth/src/client/tokens/ApiTokenSecret.tsrx +35 -0
- package/modules/auth/src/client/tokens/ApiTokensView.tsrx +216 -0
- package/modules/auth/src/client/tokens/api.ts +59 -0
- package/modules/auth/src/client/tokens/state.ts +26 -0
- package/modules/auth/src/client/tokens/token-columns.tsrx +64 -0
- package/modules/auth/src/client/translations.ts +23 -0
- package/modules/auth/src/domain/types.ts +152 -0
- package/modules/auth/src/index.ts +42 -0
- package/modules/auth/src/middleware/authentication.ts +97 -0
- package/modules/auth/src/platform.ts +0 -0
- package/modules/auth/src/server/actor.ts +12 -0
- package/modules/auth/src/server/audit-endpoints.ts +51 -0
- package/modules/auth/src/server/composition.ts +9 -0
- package/modules/auth/src/server/endpoints.ts +893 -0
- package/modules/auth/src/server/http.ts +153 -0
- package/modules/auth/src/server/index.ts +37 -0
- package/modules/auth/src/server/roles-endpoints.ts +120 -0
- package/modules/auth/src/server/runtime.ts +705 -0
- package/modules/auth/src/server/session-endpoints.ts +86 -0
- package/modules/auth/src/server/session-security.ts +62 -0
- package/modules/auth/src/server/token-endpoints.ts +106 -0
- package/modules/auth/src/services/auth-service-error.ts +11 -0
- package/modules/auth/src/services/auth-service.ts +2309 -0
- package/modules/auth/src/services/database-repository.ts +1825 -0
- package/modules/auth/src/services/mail-delivery.ts +27 -0
- package/modules/auth/src/services/migration.ts +591 -0
- package/modules/auth/src/services/password.ts +115 -0
- package/modules/auth/src/services/repository.ts +395 -0
- package/modules/auth/src/services/settings-store.ts +92 -0
- package/modules/auth/src/services/totp.ts +135 -0
- package/modules/auth/src/services/validation.ts +186 -0
- package/modules/auth/src/settings.ts +150 -0
- package/modules/auth/translations/en.json +263 -0
- package/modules/auth/translations/pl.json +263 -0
- package/modules/automations/migrations/0001_automations_core.down.sql +10 -0
- package/modules/automations/migrations/0001_automations_core.up.sql +76 -0
- package/modules/automations/migrations/0002_automations_targets.down.sql +9 -0
- package/modules/automations/migrations/0002_automations_targets.up.sql +37 -0
- package/modules/automations/migrations/0003_automations_scheduler_role.down.sql +3 -0
- package/modules/automations/migrations/0003_automations_scheduler_role.up.sql +19 -0
- package/modules/automations/migrations/0004_automations_trigger_routing_role.down.sql +3 -0
- package/modules/automations/migrations/0004_automations_trigger_routing_role.up.sql +18 -0
- package/modules/automations/migrations/README.md +3 -0
- package/modules/automations/module.json +31 -0
- package/modules/automations/package.json +55 -0
- package/modules/automations/spec/module.yaml +93 -0
- package/modules/automations/src/acl/permissions.ts +10 -0
- package/modules/automations/src/api/endpoints.ts +480 -0
- package/modules/automations/src/client/AutomationScheduleForm.tsrx +218 -0
- package/modules/automations/src/client/AutomationSchedulesView.tsrx +339 -0
- package/modules/automations/src/client/AutomationTriggerForm.tsrx +190 -0
- package/modules/automations/src/client/AutomationTriggersView.tsrx +329 -0
- package/modules/automations/src/client/api.ts +148 -0
- package/modules/automations/src/client/contribution.tsrx +70 -0
- package/modules/automations/src/client/index.ts +20 -0
- package/modules/automations/src/client/presentation.ts +38 -0
- package/modules/automations/src/client/state.ts +40 -0
- package/modules/automations/src/client/target-selection.ts +44 -0
- package/modules/automations/src/domain/cadence.ts +44 -0
- package/modules/automations/src/domain/types.ts +110 -0
- package/modules/automations/src/domain/variables.ts +178 -0
- package/modules/automations/src/index.ts +39 -0
- package/modules/automations/src/platform.ts +73 -0
- package/modules/automations/src/server/execution.ts +77 -0
- package/modules/automations/src/server/index.ts +39 -0
- package/modules/automations/src/server/runtime.ts +218 -0
- package/modules/automations/src/server/targets.ts +116 -0
- package/modules/automations/src/services/automations-service.ts +10 -0
- package/modules/automations/src/services/database-repository.ts +763 -0
- package/modules/automations/src/services/index.ts +5 -0
- package/modules/automations/src/services/migration.ts +223 -0
- package/modules/automations/src/services/repository.ts +119 -0
- package/modules/automations/src/services/schedule-service.ts +837 -0
- package/modules/automations/src/services/secret-vault.ts +124 -0
- package/modules/automations/src/services/trigger-service.ts +648 -0
- package/modules/automations/src/settings.ts +69 -0
- package/modules/automations/translations/en.json +126 -0
- package/modules/automations/translations/pl.json +126 -0
- package/modules/automations-workflows-integration/module.json +27 -0
- package/modules/automations-workflows-integration/package.json +48 -0
- package/modules/automations-workflows-integration/spec/module.yaml +93 -0
- package/modules/automations-workflows-integration/src/index.ts +14 -0
- package/modules/automations-workflows-integration/src/platform.ts +24 -0
- package/modules/automations-workflows-integration/src/server/adapter.ts +272 -0
- package/modules/automations-workflows-integration/src/server/index.ts +11 -0
- package/modules/automations-workflows-integration/src/server/tools.ts +0 -0
- package/modules/automations-workflows-integration/translations/en.json +21 -0
- package/modules/automations-workflows-integration/translations/pl.json +21 -0
- package/modules/profile/migrations/0001_profile_core.down.sql +1 -0
- package/modules/profile/migrations/0001_profile_core.up.sql +13 -0
- package/modules/profile/migrations/0002_profile_language.down.sql +1 -0
- package/modules/profile/migrations/0002_profile_language.up.sql +12 -0
- package/modules/profile/migrations/README.md +3 -0
- package/modules/profile/module.json +23 -0
- package/modules/profile/package.json +55 -0
- package/modules/profile/spec/module.yaml +136 -0
- package/modules/profile/src/acl/permissions.ts +5 -0
- package/modules/profile/src/api/endpoints.ts +184 -0
- package/modules/profile/src/client/DisplayNameCard.tsrx +59 -0
- package/modules/profile/src/client/LanguageCard.tsrx +89 -0
- package/modules/profile/src/client/PasswordCard.tsrx +79 -0
- package/modules/profile/src/client/ProfileView.tsrx +192 -0
- package/modules/profile/src/client/SessionsCard.tsrx +158 -0
- package/modules/profile/src/client/api.ts +134 -0
- package/modules/profile/src/client/contribution.tsrx +61 -0
- package/modules/profile/src/client/index.ts +15 -0
- package/modules/profile/src/client/password.ts +41 -0
- package/modules/profile/src/client/sessions-api.ts +52 -0
- package/modules/profile/src/client/state.ts +23 -0
- package/modules/profile/src/domain/types.ts +21 -0
- package/modules/profile/src/index.ts +21 -0
- package/modules/profile/src/platform.ts +23 -0
- package/modules/profile/src/server/index.ts +7 -0
- package/modules/profile/src/server/runtime.ts +84 -0
- package/modules/profile/src/services/database-repository.ts +154 -0
- package/modules/profile/src/services/index.ts +6 -0
- package/modules/profile/src/services/migration.ts +58 -0
- package/modules/profile/src/services/profile-service.ts +114 -0
- package/modules/profile/src/services/repository.ts +13 -0
- package/modules/profile/translations/en.json +58 -0
- package/modules/profile/translations/pl.json +58 -0
- package/modules/sandbox/migrations/0001_sandbox_core.down.sql +6 -0
- package/modules/sandbox/migrations/0001_sandbox_core.up.sql +70 -0
- package/modules/sandbox/migrations/0002_sandbox_session_lifecycle.down.sql +36 -0
- package/modules/sandbox/migrations/0002_sandbox_session_lifecycle.up.sql +37 -0
- package/modules/sandbox/migrations/README.md +7 -0
- package/modules/sandbox/module.json +31 -0
- package/modules/sandbox/package.json +56 -0
- package/modules/sandbox/spec/module.yaml +111 -0
- package/modules/sandbox/src/acl/permissions.ts +18 -0
- package/modules/sandbox/src/api/endpoints.ts +439 -0
- package/modules/sandbox/src/cli/commands.json +84 -0
- package/modules/sandbox/src/cli/index.ts +450 -0
- package/modules/sandbox/src/client/SandboxAccessView.tsrx +191 -0
- package/modules/sandbox/src/client/SandboxGrantForm.tsrx +134 -0
- package/modules/sandbox/src/client/SandboxGrantList.tsrx +83 -0
- package/modules/sandbox/src/client/SandboxSessionList.tsrx +56 -0
- package/modules/sandbox/src/client/api.ts +87 -0
- package/modules/sandbox/src/client/contribution.tsrx +47 -0
- package/modules/sandbox/src/client/index.ts +18 -0
- package/modules/sandbox/src/client/presentation.ts +47 -0
- package/modules/sandbox/src/client/state.ts +20 -0
- package/modules/sandbox/src/domain/types.ts +125 -0
- package/modules/sandbox/src/index.ts +33 -0
- package/modules/sandbox/src/platform.ts +28 -0
- package/modules/sandbox/src/server/index.ts +20 -0
- package/modules/sandbox/src/server/runtime.ts +119 -0
- package/modules/sandbox/src/services/database-repository.ts +567 -0
- package/modules/sandbox/src/services/directory.ts +33 -0
- package/modules/sandbox/src/services/index.ts +19 -0
- package/modules/sandbox/src/services/migration.ts +145 -0
- package/modules/sandbox/src/services/repository.ts +55 -0
- package/modules/sandbox/src/services/sandbox-service-error.ts +10 -0
- package/modules/sandbox/src/services/sandbox-service.ts +533 -0
- package/modules/sandbox/translations/en.json +77 -0
- package/modules/sandbox/translations/pl.json +77 -0
- package/modules/system/module.json +18 -0
- package/modules/system/package.json +56 -0
- package/modules/system/spec/module.yaml +104 -0
- package/modules/system/src/acl/permissions.ts +10 -0
- package/modules/system/src/client/ModuleSettingRow.tsrx +191 -0
- package/modules/system/src/client/ModuleSettingsSection.tsrx +155 -0
- package/modules/system/src/client/ModulesView.tsrx +241 -0
- package/modules/system/src/client/api.ts +36 -0
- package/modules/system/src/client/contribution.tsrx +48 -0
- package/modules/system/src/client/index.ts +26 -0
- package/modules/system/src/client/module-columns.tsrx +66 -0
- package/modules/system/src/client/overview-api.ts +30 -0
- package/modules/system/src/client/setting-copy.ts +30 -0
- package/modules/system/src/client/settings-api.ts +57 -0
- package/modules/system/src/client/state.ts +16 -0
- package/modules/system/src/index.ts +11 -0
- package/modules/system/src/platform.ts +11 -0
- package/modules/system/src/server/endpoints.ts +372 -0
- package/modules/system/src/server/index.ts +11 -0
- package/modules/system/src/server/module-catalog.ts +117 -0
- package/modules/system/translations/en.json +64 -0
- package/modules/system/translations/pl.json +64 -0
- package/modules/users/migrations/README.md +3 -0
- package/modules/users/module.json +27 -0
- package/modules/users/package.json +54 -0
- package/modules/users/spec/module.yaml +79 -0
- package/modules/users/src/acl/permissions.ts +6 -0
- package/modules/users/src/api/endpoints.ts +222 -0
- package/modules/users/src/client/InviteMemberForm.tsrx +62 -0
- package/modules/users/src/client/MemberDrawer.tsrx +298 -0
- package/modules/users/src/client/RoleForm.tsrx +140 -0
- package/modules/users/src/client/RolesView.tsrx +288 -0
- package/modules/users/src/client/UserAccountForm.tsrx +86 -0
- package/modules/users/src/client/UsersView.tsrx +486 -0
- package/modules/users/src/client/api.ts +172 -0
- package/modules/users/src/client/contribution.tsrx +92 -0
- package/modules/users/src/client/index.ts +19 -0
- package/modules/users/src/client/member-columns.tsrx +52 -0
- package/modules/users/src/client/roles-api.ts +90 -0
- package/modules/users/src/client/state.ts +42 -0
- package/modules/users/src/index.ts +27 -0
- package/modules/users/src/platform.ts +11 -0
- package/modules/users/src/services/index.ts +2 -0
- package/modules/users/src/services/users-service.ts +142 -0
- package/modules/users/translations/en.json +133 -0
- package/modules/users/translations/pl.json +133 -0
- package/modules/workflows/migrations/0001_workflows_core.down.sql +19 -0
- package/modules/workflows/migrations/0001_workflows_core.up.sql +228 -0
- package/modules/workflows/migrations/0002_workflows_authorization_subject.down.sql +1 -0
- package/modules/workflows/migrations/0002_workflows_authorization_subject.up.sql +9 -0
- package/modules/workflows/migrations/0003_workflows_worker_role.up.sql +34 -0
- package/modules/workflows/migrations/README.md +7 -0
- package/modules/workflows/module.json +31 -0
- package/modules/workflows/package.json +55 -0
- package/modules/workflows/spec/module.yaml +227 -0
- package/modules/workflows/src/acl/permissions.ts +10 -0
- package/modules/workflows/src/api/endpoints.ts +852 -0
- package/modules/workflows/src/client/WorkflowCanvas.tsrx +819 -0
- package/modules/workflows/src/client/WorkflowCreateForm.tsrx +111 -0
- package/modules/workflows/src/client/WorkflowEditor.tsrx +443 -0
- package/modules/workflows/src/client/WorkflowExecutionHistory.tsrx +169 -0
- package/modules/workflows/src/client/WorkflowFixtureDrawer.tsrx +206 -0
- package/modules/workflows/src/client/WorkflowInputForm.tsrx +125 -0
- package/modules/workflows/src/client/WorkflowInputSchemaEditor.tsrx +185 -0
- package/modules/workflows/src/client/WorkflowInspector.tsrx +471 -0
- package/modules/workflows/src/client/WorkflowLiveConfirmation.tsrx +67 -0
- package/modules/workflows/src/client/WorkflowMappingEditor.tsrx +283 -0
- package/modules/workflows/src/client/WorkflowNodePalette.tsrx +50 -0
- package/modules/workflows/src/client/WorkflowPointerField.tsrx +178 -0
- package/modules/workflows/src/client/WorkflowRevisionReview.tsrx +49 -0
- package/modules/workflows/src/client/WorkflowRunInspector.tsrx +143 -0
- package/modules/workflows/src/client/WorkflowTestPanel.tsrx +109 -0
- package/modules/workflows/src/client/WorkflowValidationPanel.tsrx +139 -0
- package/modules/workflows/src/client/WorkflowsView.tsrx +1060 -0
- package/modules/workflows/src/client/api.ts +312 -0
- package/modules/workflows/src/client/canvas-model.ts +472 -0
- package/modules/workflows/src/client/connected-node.ts +71 -0
- package/modules/workflows/src/client/contribution.tsrx +57 -0
- package/modules/workflows/src/client/create-model.ts +15 -0
- package/modules/workflows/src/client/draft-repair.ts +86 -0
- package/modules/workflows/src/client/index.ts +19 -0
- package/modules/workflows/src/client/input-model.ts +124 -0
- package/modules/workflows/src/client/mapping-model.ts +110 -0
- package/modules/workflows/src/client/pointer-model.ts +123 -0
- package/modules/workflows/src/client/presentation.ts +62 -0
- package/modules/workflows/src/client/run-actions.ts +19 -0
- package/modules/workflows/src/client/state.ts +57 -0
- package/modules/workflows/src/client/viewport.ts +107 -0
- package/modules/workflows/src/client/workflows.css +899 -0
- package/modules/workflows/src/domain/events.ts +399 -0
- package/modules/workflows/src/domain/graph.ts +1136 -0
- package/modules/workflows/src/domain/types.ts +563 -0
- package/modules/workflows/src/index.ts +27 -0
- package/modules/workflows/src/platform.ts +49 -0
- package/modules/workflows/src/server/index.ts +13 -0
- package/modules/workflows/src/server/runtime.ts +266 -0
- package/modules/workflows/src/services/cursor-codec.ts +62 -0
- package/modules/workflows/src/services/database-repository.ts +2407 -0
- package/modules/workflows/src/services/index.ts +6 -0
- package/modules/workflows/src/services/migration.ts +375 -0
- package/modules/workflows/src/services/payload-codec.ts +264 -0
- package/modules/workflows/src/services/repository.ts +285 -0
- package/modules/workflows/src/services/simulation.ts +359 -0
- package/modules/workflows/src/services/worker.ts +1196 -0
- package/modules/workflows/src/services/workflows-service.ts +1395 -0
- package/modules/workflows/translations/en.json +348 -0
- package/modules/workflows/translations/pl.json +348 -0
- package/modules.json +41 -0
- package/package.json +125 -0
- package/packages/ai-provider/package.json +46 -0
- package/packages/ai-provider/src/catalog.ts +102 -0
- package/packages/ai-provider/src/errors.ts +110 -0
- package/packages/ai-provider/src/index.ts +33 -0
- package/packages/ai-provider/src/model.ts +198 -0
- package/packages/ai-provider/src/pricing.ts +73 -0
- package/packages/cli-protocol/package.json +40 -0
- package/packages/cli-protocol/src/index.ts +113 -0
- package/packages/client/package.json +46 -0
- package/packages/client/src/ApplicationShell.tsrx +374 -0
- package/packages/client/src/contributions.ts +172 -0
- package/packages/client/src/i18n/index.ts +30 -0
- package/packages/client/src/i18n/locale.ts +25 -0
- package/packages/client/src/i18n/locales/en.json +66 -0
- package/packages/client/src/i18n/locales/pl.json +66 -0
- package/packages/client/src/i18n/runtime.ts +201 -0
- package/packages/client/src/i18n/translations.ts +88 -0
- package/packages/client/src/index.ts +55 -0
- package/packages/client/src/routing.ts +9 -0
- package/packages/client/src/shell/BrandMark.tsrx +10 -0
- package/packages/client/src/shell/CommandPalette.tsrx +79 -0
- package/packages/client/src/shell/ContributionOutlets.tsrx +31 -0
- package/packages/client/src/shell/DashboardView.tsrx +60 -0
- package/packages/client/src/shell/MobileHeader.tsrx +24 -0
- package/packages/client/src/shell/OrganizationSwitcher.tsrx +100 -0
- package/packages/client/src/shell/OverviewCharts.tsrx +167 -0
- package/packages/client/src/shell/PrimaryNavigation.tsrx +75 -0
- package/packages/client/src/shell/Sidebar.tsrx +76 -0
- package/packages/client/src/shell/Topbar.tsrx +44 -0
- package/packages/client/src/shell/UserMenu.tsrx +103 -0
- package/packages/client/src/shell/WorkspaceContent.tsrx +30 -0
- package/packages/client/src/shell/identity.ts +12 -0
- package/packages/client/src/shell/navigation.ts +68 -0
- package/packages/client/src/shell/shell.css +734 -0
- package/packages/client/src/shell/types.ts +29 -0
- package/packages/client/src/state.ts +63 -0
- package/packages/client/src/web.ts +39 -0
- package/packages/coding-agent/package.json +44 -0
- package/packages/coding-agent/src/drivers/byok.ts +322 -0
- package/packages/coding-agent/src/drivers/claude-code.ts +290 -0
- package/packages/coding-agent/src/drivers/codex.ts +281 -0
- package/packages/coding-agent/src/index.ts +56 -0
- package/packages/coding-agent/src/registry.ts +119 -0
- package/packages/coding-agent/src/roles/contract.ts +60 -0
- package/packages/coding-agent/src/roles/defaults.ts +134 -0
- package/packages/coding-agent/src/roles/handoff.ts +41 -0
- package/packages/coding-agent/src/roles/registry.ts +156 -0
- package/packages/coding-agent/src/roles/skills.ts +72 -0
- package/packages/coding-agent/src/roles/sync.ts +88 -0
- package/packages/coding-agent/src/types.ts +102 -0
- package/packages/coding-agent/src/workspace.ts +275 -0
- package/packages/contracts/package.json +38 -0
- package/packages/contracts/schemas/blueprint.schema.json +48 -0
- package/packages/contracts/schemas/cli-extension.schema.json +90 -0
- package/packages/contracts/schemas/module-artifact.schema.json +82 -0
- package/packages/contracts/schemas/module-catalog.schema.json +48 -0
- package/packages/contracts/schemas/module-spec.schema.json +111 -0
- package/packages/contracts/schemas/module.schema.json +156 -0
- package/packages/contracts/schemas/platform-spec.schema.json +17 -0
- package/packages/contracts/schemas/project.schema.json +270 -0
- package/packages/contracts/src/index.ts +191 -0
- package/packages/contracts/src/module-distribution.ts +47 -0
- package/packages/contracts/src/schemas.ts +18 -0
- package/packages/contracts/src/variables.ts +156 -0
- package/packages/contracts/src/web.ts +60 -0
- package/packages/database/package.json +43 -0
- package/packages/database/src/contracts.ts +399 -0
- package/packages/database/src/index.ts +112 -0
- package/packages/database/src/migrations.ts +444 -0
- package/packages/database/src/postgresql.ts +517 -0
- package/packages/database/src/provider.ts +639 -0
- package/packages/database/src/record-history.ts +201 -0
- package/packages/database/src/registry.ts +265 -0
- package/packages/database/src/reset.ts +87 -0
- package/packages/database-pglite/package.json +42 -0
- package/packages/database-pglite/src/driver.ts +168 -0
- package/packages/database-pglite/src/index.ts +2 -0
- package/packages/database-testing/package.json +44 -0
- package/packages/database-testing/src/index.ts +8 -0
- package/packages/database-testing/src/pglite.ts +124 -0
- package/packages/database-testing/src/postgres.ts +184 -0
- package/packages/database-testing/src/provider.ts +43 -0
- package/packages/database-testing/src/vitest-preset.ts +23 -0
- package/packages/dev-console/README.md +6 -0
- package/packages/dev-console/package.json +38 -0
- package/packages/dev-console/src/index.mjs +220 -0
- package/packages/harness/package.json +47 -0
- package/packages/harness/schemas/task-packet.schema.json +48 -0
- package/packages/harness/src/catalog.ts +24 -0
- package/packages/harness/src/errors.ts +9 -0
- package/packages/harness/src/index.ts +53 -0
- package/packages/harness/src/preamble.ts +31 -0
- package/packages/harness/src/runtime.ts +833 -0
- package/packages/harness/src/task-packet.ts +86 -0
- package/packages/harness/src/tool-adapters.ts +106 -0
- package/packages/harness/src/tool-contract.ts +242 -0
- package/packages/harness/src/vercel-ai-provider.ts +198 -0
- package/packages/kernel/package.json +44 -0
- package/packages/kernel/src/acl.ts +20 -0
- package/packages/kernel/src/actor.ts +139 -0
- package/packages/kernel/src/agent-registry.ts +81 -0
- package/packages/kernel/src/capability-registry.ts +28 -0
- package/packages/kernel/src/errors.ts +9 -0
- package/packages/kernel/src/index.ts +90 -0
- package/packages/kernel/src/legacy-local-state.ts +103 -0
- package/packages/kernel/src/module-compatibility.ts +70 -0
- package/packages/kernel/src/module-registry.ts +124 -0
- package/packages/kernel/src/module-settings.ts +403 -0
- package/packages/kernel/src/record-history.ts +146 -0
- package/packages/kernel/src/runtime-config.ts +51 -0
- package/packages/kernel/src/tool-registry.ts +25 -0
- package/packages/kernel/src/variable-registry.ts +339 -0
- package/packages/sandbox/README.md +691 -0
- package/packages/sandbox/bin/flowdular-sandbox.mjs +393 -0
- package/packages/sandbox/dist/client/assets/App-ClMOrpyg.js +11 -0
- package/packages/sandbox/dist/client/assets/PreviewHost-BHiHrfbQ.js +1 -0
- package/packages/sandbox/dist/client/assets/auto-buGEq6de.js +3 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-cyrillic-400-normal-BSMlKf0J.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-cyrillic-400-normal-CEL4l2ZJ.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-cyrillic-500-normal-Ael50iVv.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-cyrillic-500-normal-Bq9vWWag.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-cyrillic-ext-400-normal-DMdlQ8Kv.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-cyrillic-ext-400-normal-xuaO2J-f.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-cyrillic-ext-500-normal-BIfNGwUT.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-cyrillic-ext-500-normal-BqneJy0T.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-latin-400-normal-CvHOgSBP.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-latin-400-normal-DMJ8VG8y.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-latin-500-normal-CB9ihrfo.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-latin-500-normal-DSY6xOcd.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-latin-ext-400-normal-BmRBH3aV.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-latin-ext-400-normal-D3D2R8hC.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-latin-ext-500-normal-CAhNIIs5.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-latin-ext-500-normal-CZ70TYgx.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-vietnamese-400-normal-BulugwFq.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-vietnamese-400-normal-DDuiU_S-.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-vietnamese-500-normal-C8zxqsMH.woff +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-mono-vietnamese-500-normal-DZ4AoWbu.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-sans-cyrillic-ext-wght-normal-d45eAU9y.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-sans-cyrillic-wght-normal-BAAhND-U.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-sans-greek-wght-normal-CmyJS8uq.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-sans-latin-ext-wght-normal-CIII54If.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-sans-latin-wght-normal-IvpUvPa2.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/ibm-plex-sans-vietnamese-wght-normal-Dg1JeJN0.woff2 +0 -0
- package/packages/sandbox/dist/client/assets/index-CvwhlQ87.js +4 -0
- package/packages/sandbox/dist/client/assets/styles-BPWaGf55.js +3 -0
- package/packages/sandbox/dist/client/assets/styles-Dx1_KOag.css +1 -0
- package/packages/sandbox/dist/client/favicon.svg +1 -0
- package/packages/sandbox/dist/server/assets/auto-CVGNYyb3.js +12785 -0
- package/packages/sandbox/dist/server/assets/chunk-DDJLRBDX-3OUNo51g.js +4125 -0
- package/packages/sandbox/dist/server/assets/nodefs-DVSI7kG0.js +24 -0
- package/packages/sandbox/dist/server/assets/opfs-ahp-D56iokt1.js +388 -0
- package/packages/sandbox/dist/server/assets/token-Bvaq7Anz.js +55 -0
- package/packages/sandbox/dist/server/assets/token-util-BqSvdIPQ.js +3 -0
- package/packages/sandbox/dist/server/assets/token-util-CktFFT4z.js +494 -0
- package/packages/sandbox/dist/server/entry.js +91671 -0
- package/packages/sandbox/dist/server/favicon.svg +1 -0
- package/packages/sandbox/dist/server/index.html +161 -0
- package/packages/sandbox/index.html +159 -0
- package/packages/sandbox/octane.config.ts +36 -0
- package/packages/sandbox/package.json +83 -0
- package/packages/sandbox/public/favicon.svg +1 -0
- package/packages/sandbox/public/og.png +0 -0
- package/packages/sandbox/src/App.tsrx +924 -0
- package/packages/sandbox/src/client/ApprovalHandoff.tsrx +39 -0
- package/packages/sandbox/src/client/ChatPane.tsrx +694 -0
- package/packages/sandbox/src/client/ConnectView.tsrx +86 -0
- package/packages/sandbox/src/client/DiffPane.tsrx +150 -0
- package/packages/sandbox/src/client/EjectModal.tsrx +571 -0
- package/packages/sandbox/src/client/GateResults.tsrx +60 -0
- package/packages/sandbox/src/client/GitHubSettingsModal.tsrx +219 -0
- package/packages/sandbox/src/client/NewSessionForm.tsrx +214 -0
- package/packages/sandbox/src/client/SessionBar.tsrx +151 -0
- package/packages/sandbox/src/client/SessionPicker.tsrx +472 -0
- package/packages/sandbox/src/client/SpecEditor.tsrx +109 -0
- package/packages/sandbox/src/client/SpecReviewCard.tsrx +321 -0
- package/packages/sandbox/src/client/WorkCard.tsrx +128 -0
- package/packages/sandbox/src/client/WorkbenchModal.tsrx +161 -0
- package/packages/sandbox/src/client/WorkspaceMenu.tsrx +100 -0
- package/packages/sandbox/src/client/api.ts +797 -0
- package/packages/sandbox/src/client/attachments.ts +73 -0
- package/packages/sandbox/src/client/dashboard.ts +46 -0
- package/packages/sandbox/src/client/github-settings.ts +48 -0
- package/packages/sandbox/src/client/highlight.ts +105 -0
- package/packages/sandbox/src/client/i18n.ts +32 -0
- package/packages/sandbox/src/client/locales/en.json +466 -0
- package/packages/sandbox/src/client/locales/pl.json +466 -0
- package/packages/sandbox/src/client/session-labels.ts +77 -0
- package/packages/sandbox/src/client/state.ts +108 -0
- package/packages/sandbox/src/index.ts +10 -0
- package/packages/sandbox/src/preview/PreviewHost.tsrx +373 -0
- package/packages/sandbox/src/preview/load-module.ts +16 -0
- package/packages/sandbox/src/server/attachments.ts +308 -0
- package/packages/sandbox/src/server/auto-review.ts +181 -0
- package/packages/sandbox/src/server/checkpoints.ts +90 -0
- package/packages/sandbox/src/server/config.ts +460 -0
- package/packages/sandbox/src/server/dashboard.ts +245 -0
- package/packages/sandbox/src/server/delivery/configuration.ts +193 -0
- package/packages/sandbox/src/server/delivery/git-pr.ts +1473 -0
- package/packages/sandbox/src/server/delivery/index.ts +83 -0
- package/packages/sandbox/src/server/delivery/local.ts +151 -0
- package/packages/sandbox/src/server/delivery/official-modules.ts +516 -0
- package/packages/sandbox/src/server/delivery/plan.ts +218 -0
- package/packages/sandbox/src/server/delivery/policies.ts +239 -0
- package/packages/sandbox/src/server/delivery/record.ts +41 -0
- package/packages/sandbox/src/server/delivery/steps.ts +464 -0
- package/packages/sandbox/src/server/delivery/types.ts +158 -0
- package/packages/sandbox/src/server/dependencies.ts +88 -0
- package/packages/sandbox/src/server/diff.ts +230 -0
- package/packages/sandbox/src/server/gates.ts +388 -0
- package/packages/sandbox/src/server/index.ts +139 -0
- package/packages/sandbox/src/server/path-guard.ts +282 -0
- package/packages/sandbox/src/server/planning.ts +749 -0
- package/packages/sandbox/src/server/platform-client.ts +189 -0
- package/packages/sandbox/src/server/preview-database-host.ts +340 -0
- package/packages/sandbox/src/server/preview-database-protocol.ts +163 -0
- package/packages/sandbox/src/server/preview-database-proxy.ts +356 -0
- package/packages/sandbox/src/server/preview-database.ts +109 -0
- package/packages/sandbox/src/server/preview-ipc.ts +15 -0
- package/packages/sandbox/src/server/preview-modules.ts +83 -0
- package/packages/sandbox/src/server/preview-revision.ts +44 -0
- package/packages/sandbox/src/server/preview-runtime.ts +467 -0
- package/packages/sandbox/src/server/preview-worker-manager.ts +436 -0
- package/packages/sandbox/src/server/preview-worker.ts +168 -0
- package/packages/sandbox/src/server/reference.ts +251 -0
- package/packages/sandbox/src/server/routes.ts +2258 -0
- package/packages/sandbox/src/server/runtime.ts +188 -0
- package/packages/sandbox/src/server/session-owner.ts +23 -0
- package/packages/sandbox/src/server/sessions.ts +849 -0
- package/packages/sandbox/src/server/spec.ts +471 -0
- package/packages/sandbox/src/server/turn-lifecycle.ts +56 -0
- package/packages/sandbox/src/server/turns.ts +993 -0
- package/packages/sandbox/src/server/workspace-install.ts +266 -0
- package/packages/sandbox/src/server/workspace-root.ts +73 -0
- package/packages/sandbox/src/styles.css +1573 -0
- package/packages/sandbox/vite.config.ts +133 -0
- package/packages/server/package.json +43 -0
- package/packages/server/src/application-routes.ts +21 -0
- package/packages/server/src/composition.ts +48 -0
- package/packages/server/src/endpoint.ts +142 -0
- package/packages/server/src/http.ts +128 -0
- package/packages/server/src/index.ts +46 -0
- package/packages/server/src/response-lifetime.ts +56 -0
- package/packages/server/src/security-headers.ts +130 -0
- package/packages/server/src/web-html.ts +55 -0
- package/packages/server/src/web.ts +361 -0
- package/packages/ui/package.json +46 -0
- package/packages/ui/src/brand/BrandMark.tsrx +66 -0
- package/packages/ui/src/brand/mark.ts +44 -0
- package/packages/ui/src/components/Alert.tsrx +17 -0
- package/packages/ui/src/components/Avatar.tsrx +18 -0
- package/packages/ui/src/components/Button.tsrx +29 -0
- package/packages/ui/src/components/Chart.tsrx +274 -0
- package/packages/ui/src/components/CheckGrid.tsrx +93 -0
- package/packages/ui/src/components/ConfirmDialog.tsrx +63 -0
- package/packages/ui/src/components/Drawer.tsrx +71 -0
- package/packages/ui/src/components/EmptyState.tsrx +26 -0
- package/packages/ui/src/components/Filters.tsrx +39 -0
- package/packages/ui/src/components/FormField.tsrx +27 -0
- package/packages/ui/src/components/Kpi.tsrx +36 -0
- package/packages/ui/src/components/PageHeader.tsrx +26 -0
- package/packages/ui/src/components/ScopeSummary.tsrx +76 -0
- package/packages/ui/src/components/SearchField.tsrx +24 -0
- package/packages/ui/src/components/SettingRow.tsrx +50 -0
- package/packages/ui/src/components/Switch.tsrx +21 -0
- package/packages/ui/src/components/Table.tsrx +267 -0
- package/packages/ui/src/components/TableCard.tsrx +52 -0
- package/packages/ui/src/components/Tag.tsrx +28 -0
- package/packages/ui/src/components/VariableField.tsrx +284 -0
- package/packages/ui/src/components/VariableInput.tsrx +7 -0
- package/packages/ui/src/components/VariableSelect.tsrx +72 -0
- package/packages/ui/src/components/VariableTextarea.tsrx +9 -0
- package/packages/ui/src/components/variable-field.ts +61 -0
- package/packages/ui/src/components/variable-select.ts +69 -0
- package/packages/ui/src/icons/Icon.tsrx +56 -0
- package/packages/ui/src/index.ts +81 -0
- package/packages/ui/src/initials.ts +10 -0
- package/packages/ui/src/styles/base.css +71 -0
- package/packages/ui/src/styles/components.css +1859 -0
- package/packages/ui/src/styles/index.css +3 -0
- package/packages/ui/src/styles/tokens.css +124 -0
- package/tsconfig.base.json +18 -0
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
{
|
|
2
|
+
"email": "Email address",
|
|
3
|
+
"password": "Password",
|
|
4
|
+
"signOut": "Sign out",
|
|
5
|
+
"common.accessDenied": "Access denied",
|
|
6
|
+
"common.administration": "Administration",
|
|
7
|
+
"common.cancel": "Cancel",
|
|
8
|
+
"common.actions": "Actions",
|
|
9
|
+
"common.done": "Done",
|
|
10
|
+
"common.never": "Never",
|
|
11
|
+
"common.none": "None",
|
|
12
|
+
"common.refresh": "Refresh",
|
|
13
|
+
"common.save": "Save",
|
|
14
|
+
"common.saved": "Saved",
|
|
15
|
+
"navigation.tokens": "API tokens",
|
|
16
|
+
"navigation.tokensDescription": "Machine credentials",
|
|
17
|
+
"navigation.audit": "Audit",
|
|
18
|
+
"navigation.auditDescription": "Sign-ins and changes",
|
|
19
|
+
"navigation.settings": "Settings",
|
|
20
|
+
"navigation.settingsDescription": "Workspace identity and defaults",
|
|
21
|
+
"tokens.title": "API tokens",
|
|
22
|
+
"tokens.description": "Create scoped credentials for integrations and the sandbox.",
|
|
23
|
+
"tokens.new": "New token",
|
|
24
|
+
"tokens.table.title": "Tokens",
|
|
25
|
+
"tokens.table.count": "{active} active of {total}",
|
|
26
|
+
"tokens.table.caption": "API tokens for this workspace",
|
|
27
|
+
"tokens.search.placeholder": "Search tokens or scopes",
|
|
28
|
+
"tokens.search.label": "Search API tokens",
|
|
29
|
+
"tokens.loading": "Loading API tokens…",
|
|
30
|
+
"tokens.empty.title": "No API tokens yet",
|
|
31
|
+
"tokens.empty.hint": "Create a token when an integration needs scoped access.",
|
|
32
|
+
"tokens.empty.filteredTitle": "No matching tokens",
|
|
33
|
+
"tokens.empty.filteredHint": "Change the search phrase to see other tokens.",
|
|
34
|
+
"tokens.note": "A token secret is shown once. Store it in a secret manager, never in source code.",
|
|
35
|
+
"tokens.revoke": "Revoke",
|
|
36
|
+
"tokens.column.token": "Token",
|
|
37
|
+
"tokens.column.status": "Status",
|
|
38
|
+
"tokens.column.lastUsed": "Last used",
|
|
39
|
+
"tokens.status.active": "active",
|
|
40
|
+
"tokens.status.expired": "expired",
|
|
41
|
+
"tokens.status.revoked": "revoked",
|
|
42
|
+
"tokens.scope.one": "1 scope",
|
|
43
|
+
"tokens.scope.other": "{count} scopes",
|
|
44
|
+
"tokens.until": "Until {date}",
|
|
45
|
+
"tokens.form.label": "Token label",
|
|
46
|
+
"tokens.form.labelHelp": "Use a name that identifies the integration or environment.",
|
|
47
|
+
"tokens.form.labelPlaceholder": "Warehouse connector",
|
|
48
|
+
"tokens.form.expiry": "Expiration",
|
|
49
|
+
"tokens.form.noExpiry": "No expiration",
|
|
50
|
+
"tokens.form.days": "{count} days",
|
|
51
|
+
"tokens.form.scopes": "Scopes",
|
|
52
|
+
"tokens.form.presetSandbox": "Sandbox preset",
|
|
53
|
+
"tokens.form.presetRead": "Read only",
|
|
54
|
+
"tokens.form.clear": "Clear",
|
|
55
|
+
"tokens.form.selected": "{selected} of {total} selected",
|
|
56
|
+
"tokens.form.secretOnce": "The secret is shown only after creation.",
|
|
57
|
+
"tokens.form.creating": "Creating…",
|
|
58
|
+
"tokens.form.create": "Create token",
|
|
59
|
+
"tokens.drawer.createdTitle": "Token created",
|
|
60
|
+
"tokens.drawer.newTitle": "New API token",
|
|
61
|
+
"tokens.drawer.once": "Copy the secret now. It will not be shown again.",
|
|
62
|
+
"tokens.drawer.subtitle": "Choose the smallest set of scopes the integration needs.",
|
|
63
|
+
"tokens.secret.ready": "{label} is ready",
|
|
64
|
+
"tokens.secret.copyNow": "Copy this token before closing the drawer.",
|
|
65
|
+
"tokens.secret.copy": "Copy token",
|
|
66
|
+
"tokens.secret.store": "Treat this value like a password.",
|
|
67
|
+
"tokens.error.load": "Could not load API tokens.",
|
|
68
|
+
"tokens.error.create": "Could not create the API token.",
|
|
69
|
+
"tokens.error.revoke": "Could not revoke the API token.",
|
|
70
|
+
"tokens.error.request": "The token operation failed.",
|
|
71
|
+
"audit.title": "Audit",
|
|
72
|
+
"audit.description": "Change history across the platform, agents, and sandbox in one place.",
|
|
73
|
+
"audit.denied": "Your role cannot read any audit source.",
|
|
74
|
+
"audit.table.title": "Activity",
|
|
75
|
+
"audit.table.count": "{count} events",
|
|
76
|
+
"audit.table.caption": "Audit events for this workspace",
|
|
77
|
+
"audit.column.time": "Time",
|
|
78
|
+
"audit.column.actor": "Actor",
|
|
79
|
+
"audit.column.action": "Action",
|
|
80
|
+
"audit.column.subject": "Subject",
|
|
81
|
+
"audit.column.details": "Details",
|
|
82
|
+
"audit.items": "{count} items",
|
|
83
|
+
"audit.integrity.checking": "checking",
|
|
84
|
+
"audit.integrity.verified": "verified",
|
|
85
|
+
"audit.integrity.tampered": "tampered",
|
|
86
|
+
"audit.integrity.tamperedAt": "tampered at {id}",
|
|
87
|
+
"audit.integrity.unknown": "unknown",
|
|
88
|
+
"audit.source.label": "Audit source",
|
|
89
|
+
"audit.source.platform": "Platform",
|
|
90
|
+
"audit.source.agents": "Agents",
|
|
91
|
+
"audit.source.sandbox": "Sandbox",
|
|
92
|
+
"audit.search.placeholder": "Search actor, action, or subject",
|
|
93
|
+
"audit.search.label": "Search audit events",
|
|
94
|
+
"audit.filter.action": "Action",
|
|
95
|
+
"audit.filter.allActions": "All actions",
|
|
96
|
+
"audit.filter.actor": "Actor",
|
|
97
|
+
"audit.filter.actorPlaceholder": "Email or actor id",
|
|
98
|
+
"audit.filter.apply": "Apply filters",
|
|
99
|
+
"audit.loading": "Loading audit events…",
|
|
100
|
+
"audit.empty.deniedHint": "Ask a workspace owner for the required audit scope.",
|
|
101
|
+
"audit.empty.title": "No audit events yet",
|
|
102
|
+
"audit.empty.hint": "Sign-ins and administrative changes will appear here.",
|
|
103
|
+
"audit.empty.filteredTitle": "No matching events",
|
|
104
|
+
"audit.empty.filteredHint": "Change the search phrase or filters.",
|
|
105
|
+
"audit.loadOlder": "Load older events",
|
|
106
|
+
"audit.note": "Agent and sandbox trails are hash chained so tampering can be detected.",
|
|
107
|
+
"audit.error.load": "Could not load audit events.",
|
|
108
|
+
"settings.title": "Settings",
|
|
109
|
+
"settings.description": "Workspace identity and defaults shared by its members.",
|
|
110
|
+
"settings.denied": "Your role cannot read workspace settings.",
|
|
111
|
+
"settings.loading": "Loading workspace settings…",
|
|
112
|
+
"settings.readOnly": "You can view these settings, but only a workspace owner can change them.",
|
|
113
|
+
"settings.preferences.title": "Preferences",
|
|
114
|
+
"settings.preferences.subtitle": "Defaults for this workspace",
|
|
115
|
+
"settings.locale.label": "Default language",
|
|
116
|
+
"settings.locale.description": "Used when a member has not selected a personal language.",
|
|
117
|
+
"settings.locale.default": "Current stored value: {locale}.",
|
|
118
|
+
"settings.workspace.title": "Workspace",
|
|
119
|
+
"settings.workspace.subtitle": "Identity shown across the platform",
|
|
120
|
+
"settings.workspace.name": "Workspace name",
|
|
121
|
+
"settings.workspace.description": "The permanent workspace id is",
|
|
122
|
+
"settings.error.load": "Could not load workspace settings.",
|
|
123
|
+
"settings.error.locale": "Could not update the default language.",
|
|
124
|
+
"settings.error.rename": "Could not rename the workspace.",
|
|
125
|
+
"common.back": "Back",
|
|
126
|
+
"common.continue": "Continue",
|
|
127
|
+
"common.login": "Sign in",
|
|
128
|
+
"common.wait": "Please wait…",
|
|
129
|
+
"brand.label": "Flowdular authentication",
|
|
130
|
+
"story.label": "Product introduction",
|
|
131
|
+
"story.kicker": "Agentic foundation framework",
|
|
132
|
+
"story.title": "Your business platform, built on a ready foundation.",
|
|
133
|
+
"story.description": "Flowdular ships accounts, workspaces, permissions, modules, and agents. Add the capabilities your business needs in the sandbox with AI specialists or with skills inside your own tools.",
|
|
134
|
+
"story.foundation": "Foundation by Flowdular",
|
|
135
|
+
"story.builtBy": "Built by you",
|
|
136
|
+
"signin.seo.title": "Sign in",
|
|
137
|
+
"signin.seo.description": "Sign in to your Flowdular business workspace.",
|
|
138
|
+
"signin.kicker": "Welcome back",
|
|
139
|
+
"signin.title": "Sign in to continue",
|
|
140
|
+
"signin.description": "Sign in with your workspace account.",
|
|
141
|
+
"signin.submit": "Sign in",
|
|
142
|
+
"signin.orProvider": "or continue with",
|
|
143
|
+
"signup.seo.title": "Create workspace",
|
|
144
|
+
"signup.seo.description": "Create a Flowdular workspace and its first administrator account.",
|
|
145
|
+
"signup.kicker": "New workspace",
|
|
146
|
+
"signup.create": "Create a workspace",
|
|
147
|
+
"signup.fullName": "Full name",
|
|
148
|
+
"signup.step.workspace.label": "Workspace",
|
|
149
|
+
"signup.step.workspace.title": "Name your workspace",
|
|
150
|
+
"signup.step.workspace.description": "The workspace id becomes part of its address.",
|
|
151
|
+
"signup.step.administrator.label": "Administrator",
|
|
152
|
+
"signup.step.administrator.title": "Create the administrator",
|
|
153
|
+
"signup.step.administrator.description": "The first account owns the workspace and everything built on it.",
|
|
154
|
+
"signup.step.confirmation.label": "Confirmation",
|
|
155
|
+
"signup.step.confirmation.title": "Confirm your email",
|
|
156
|
+
"signup.step.confirmation.description": "One more step before you can sign in.",
|
|
157
|
+
"signup.workspace.name": "Workspace name",
|
|
158
|
+
"signup.workspace.id": "Workspace id",
|
|
159
|
+
"signup.workspace.address": "Workspace address",
|
|
160
|
+
"signup.workspace.placeholder": "your-workspace",
|
|
161
|
+
"signup.slug.invalid": "Use 3 to 48 lowercase letters, digits, and single hyphens. Start and end with a letter or digit.",
|
|
162
|
+
"signup.slug.taken": "This workspace id is already taken. Pick another one.",
|
|
163
|
+
"signup.slug.error": "Availability check failed.",
|
|
164
|
+
"signup.slug.checking": "Checking availability…",
|
|
165
|
+
"signup.slug.checkingShort": "Checking…",
|
|
166
|
+
"signup.slug.available": "This workspace id is available.",
|
|
167
|
+
"signup.slug.help": "Lowercase letters, digits, and single hyphens.",
|
|
168
|
+
"signup.confirmation.created": "We created",
|
|
169
|
+
"signup.confirmation.sent": "Confirm your email address using the link sent to",
|
|
170
|
+
"signup.confirmation.finish": ", then sign in.",
|
|
171
|
+
"signup.backToSignIn": "Back to sign in",
|
|
172
|
+
"switch.existing": "Already have an account?",
|
|
173
|
+
"switch.new": "New to Flowdular?",
|
|
174
|
+
"password.minimum": "At least {count} characters.",
|
|
175
|
+
"passwordChange.kicker": "Password reset",
|
|
176
|
+
"passwordChange.title": "Choose a new password",
|
|
177
|
+
"passwordChange.description": "An administrator reset the password for {email}. Pick a new one to continue.",
|
|
178
|
+
"passwordChange.temporary": "Temporary password",
|
|
179
|
+
"passwordChange.new": "New password",
|
|
180
|
+
"passwordChange.confirm": "Confirm new password",
|
|
181
|
+
"passwordChange.mismatch": "The new password and its confirmation differ.",
|
|
182
|
+
"passwordChange.error": "The password was not changed.",
|
|
183
|
+
"passwordChange.saving": "Saving…",
|
|
184
|
+
"passwordChange.submit": "Set new password",
|
|
185
|
+
"error.configuration": "Authentication configuration is unavailable.",
|
|
186
|
+
"error.request": "Authentication request failed.",
|
|
187
|
+
"error.unavailable": "Authentication service is unavailable.",
|
|
188
|
+
"error.failed": "Authentication failed.",
|
|
189
|
+
"error.signOut": "Sign out failed.",
|
|
190
|
+
"security.navigation.label": "Account security",
|
|
191
|
+
"security.navigation.description": "Multi-factor authentication and recovery access",
|
|
192
|
+
"security.page.eyebrow": "Account",
|
|
193
|
+
"security.page.title": "Account security",
|
|
194
|
+
"security.page.description": "Protect your account with a second factor and one-time recovery codes.",
|
|
195
|
+
"security.action.refresh": "Refresh",
|
|
196
|
+
"security.denied.title": "Security settings are unavailable",
|
|
197
|
+
"security.denied.description": "Your current session cannot read account security settings.",
|
|
198
|
+
"security.passwordReset.kicker": "Account recovery",
|
|
199
|
+
"security.passwordReset.forgot": "Forgot your password?",
|
|
200
|
+
"security.passwordReset.requestTitle": "Reset your password",
|
|
201
|
+
"security.passwordReset.requestDescription": "Enter your account email. If it exists, we will send a single-use reset link.",
|
|
202
|
+
"security.passwordReset.send": "Send reset link",
|
|
203
|
+
"security.passwordReset.accepted": "If this address is registered, a reset link has been sent.",
|
|
204
|
+
"security.passwordReset.completeTitle": "Choose a new password",
|
|
205
|
+
"security.passwordReset.completeDescription": "This link works once and expires after a short time.",
|
|
206
|
+
"security.passwordReset.newPassword": "New password",
|
|
207
|
+
"security.passwordReset.confirmPassword": "Confirm new password",
|
|
208
|
+
"security.passwordReset.mismatch": "The passwords do not match.",
|
|
209
|
+
"security.passwordReset.save": "Set new password",
|
|
210
|
+
"security.passwordReset.completed": "Your password was changed. Sign in with the new password.",
|
|
211
|
+
"security.passwordReset.invalid": "This password reset link is invalid or has expired.",
|
|
212
|
+
"security.invitation.kicker": "Workspace invitation",
|
|
213
|
+
"security.invitation.title": "Join the workspace",
|
|
214
|
+
"security.invitation.description": "Create your account details to accept this single-use invitation.",
|
|
215
|
+
"security.invitation.accept": "Accept invitation",
|
|
216
|
+
"security.invitation.accepted": "The invitation was accepted. You can now sign in.",
|
|
217
|
+
"security.invitation.invalid": "This invitation is invalid or has expired.",
|
|
218
|
+
"security.link.checking": "Checking this secure link…",
|
|
219
|
+
"security.mfa.kicker": "Second factor",
|
|
220
|
+
"security.mfa.title": "Authenticator app",
|
|
221
|
+
"security.mfa.description": "Require a rotating code after the password step.",
|
|
222
|
+
"security.mfa.loading": "Loading account security…",
|
|
223
|
+
"security.mfa.active": "Enabled",
|
|
224
|
+
"security.mfa.unavailableTitle": "MFA is not configured",
|
|
225
|
+
"security.mfa.unavailableDescription": "An administrator must configure the deployment encryption key before enrollment is available.",
|
|
226
|
+
"security.mfa.enableDescription": "Use any TOTP-compatible authenticator app. Recovery codes provide one-time access if the app is unavailable.",
|
|
227
|
+
"security.mfa.start": "Set up MFA",
|
|
228
|
+
"security.mfa.setupDescription": "Open the authenticator link or enter the secret manually, then provide the six-digit code.",
|
|
229
|
+
"security.mfa.openAuthenticator": "Open authenticator app",
|
|
230
|
+
"security.mfa.manualSecret": "Manual setup secret",
|
|
231
|
+
"security.mfa.recoveryCodesTitle": "Recovery codes",
|
|
232
|
+
"security.mfa.code": "Authentication code",
|
|
233
|
+
"security.mfa.recoveryCode": "Recovery code",
|
|
234
|
+
"security.mfa.enrollment": "Multi-factor authentication setup",
|
|
235
|
+
"security.mfa.recoveryCodes": "Save these codes now. Each code works once and they will not be shown again.",
|
|
236
|
+
"security.mfa.confirm": "Confirm and enable",
|
|
237
|
+
"security.mfa.enabled": "Multi-factor authentication is enabled.",
|
|
238
|
+
"security.mfa.enabledTitle": "Your account is protected",
|
|
239
|
+
"security.mfa.enabledDescription": "Sign-in now requires a code from your authenticator app or an unused recovery code.",
|
|
240
|
+
"security.mfa.codesSaved": "I saved the recovery codes",
|
|
241
|
+
"security.mfa.challengeTitle": "Complete sign-in",
|
|
242
|
+
"security.mfa.challengeDescription": "Enter the current code from your authenticator app.",
|
|
243
|
+
"security.mfa.verify": "Verify and sign in",
|
|
244
|
+
"security.mfa.useRecovery": "Use a recovery code",
|
|
245
|
+
"security.mfa.useCode": "Use an authenticator code",
|
|
246
|
+
"security.mfa.errorLoad": "Could not load account security.",
|
|
247
|
+
"security.mfa.errorEnroll": "MFA setup could not be started.",
|
|
248
|
+
"security.mfa.errorConfirm": "The authenticator code could not be confirmed.",
|
|
249
|
+
"moduleSettings.allowSignUp.label": "Allow sign-up",
|
|
250
|
+
"moduleSettings.allowSignUp.description": "Visitors can create a new workspace from the public sign-up screen.",
|
|
251
|
+
"moduleSettings.emailConfirmation.label": "Email confirmation",
|
|
252
|
+
"moduleSettings.emailConfirmation.description": "Hold new accounts until the address is confirmed. Requires a configured mail transport.",
|
|
253
|
+
"moduleSettings.sessionTtlHours.label": "Session lifetime (hours)",
|
|
254
|
+
"moduleSettings.sessionTtlHours.description": "Absolute lifetime of a browser session.",
|
|
255
|
+
"moduleSettings.sessionIdleMinutes.label": "Idle timeout (minutes)",
|
|
256
|
+
"moduleSettings.sessionIdleMinutes.description": "A session ends after this long without a request.",
|
|
257
|
+
"moduleSettings.passwordMinLength.label": "Minimum password length",
|
|
258
|
+
"moduleSettings.passwordMinLength.description": "Applies to sign-up, member creation, and password changes.",
|
|
259
|
+
"moduleSettings.signInProviders.label": "Sign-in providers",
|
|
260
|
+
"moduleSettings.signInProviders.description": "Comma-separated external provider ids shown on the sign-in screen.",
|
|
261
|
+
"moduleSettings.defaultLocale.label": "Default locale",
|
|
262
|
+
"moduleSettings.defaultLocale.description": "Language offered to new members of this workspace."
|
|
263
|
+
}
|
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
{
|
|
2
|
+
"email": "Adres e-mail",
|
|
3
|
+
"password": "Hasło",
|
|
4
|
+
"signOut": "Wyloguj się",
|
|
5
|
+
"common.accessDenied": "Brak dostępu",
|
|
6
|
+
"common.administration": "Administracja",
|
|
7
|
+
"common.cancel": "Anuluj",
|
|
8
|
+
"common.actions": "Akcje",
|
|
9
|
+
"common.done": "Gotowe",
|
|
10
|
+
"common.never": "Nigdy",
|
|
11
|
+
"common.none": "Brak",
|
|
12
|
+
"common.refresh": "Odśwież",
|
|
13
|
+
"common.save": "Zapisz",
|
|
14
|
+
"common.saved": "Zapisano",
|
|
15
|
+
"navigation.tokens": "Tokeny API",
|
|
16
|
+
"navigation.tokensDescription": "Dane dostępowe dla integracji",
|
|
17
|
+
"navigation.audit": "Audyt",
|
|
18
|
+
"navigation.auditDescription": "Logowania i historia zmian",
|
|
19
|
+
"navigation.settings": "Ustawienia",
|
|
20
|
+
"navigation.settingsDescription": "Tożsamość i ustawienia przestrzeni roboczej",
|
|
21
|
+
"tokens.title": "Tokeny API",
|
|
22
|
+
"tokens.description": "Twórz dane dostępowe o ograniczonym zakresie dla integracji i sandboxa.",
|
|
23
|
+
"tokens.new": "Nowy token",
|
|
24
|
+
"tokens.table.title": "Tokeny",
|
|
25
|
+
"tokens.table.count": "Aktywne: {active} z {total}",
|
|
26
|
+
"tokens.table.caption": "Tokeny API tej przestrzeni roboczej",
|
|
27
|
+
"tokens.search.placeholder": "Szukaj tokenów lub zakresów",
|
|
28
|
+
"tokens.search.label": "Szukaj tokenów API",
|
|
29
|
+
"tokens.loading": "Wczytywanie tokenów API…",
|
|
30
|
+
"tokens.empty.title": "Nie ma jeszcze tokenów API",
|
|
31
|
+
"tokens.empty.hint": "Utwórz token, gdy integracja potrzebuje dostępu o określonym zakresie.",
|
|
32
|
+
"tokens.empty.filteredTitle": "Brak pasujących tokenów",
|
|
33
|
+
"tokens.empty.filteredHint": "Zmień wyszukiwaną frazę, aby zobaczyć inne tokeny.",
|
|
34
|
+
"tokens.note": "Sekret tokenu jest pokazywany tylko raz. Przechowuj go w menedżerze sekretów, nigdy w kodzie źródłowym.",
|
|
35
|
+
"tokens.revoke": "Unieważnij",
|
|
36
|
+
"tokens.column.token": "Token",
|
|
37
|
+
"tokens.column.status": "Status",
|
|
38
|
+
"tokens.column.lastUsed": "Ostatnie użycie",
|
|
39
|
+
"tokens.status.active": "aktywny",
|
|
40
|
+
"tokens.status.expired": "wygasł",
|
|
41
|
+
"tokens.status.revoked": "unieważniony",
|
|
42
|
+
"tokens.scope.one": "1 zakres",
|
|
43
|
+
"tokens.scope.other": "Zakresy: {count}",
|
|
44
|
+
"tokens.until": "Do {date}",
|
|
45
|
+
"tokens.form.label": "Nazwa tokenu",
|
|
46
|
+
"tokens.form.labelHelp": "Użyj nazwy wskazującej integrację lub środowisko.",
|
|
47
|
+
"tokens.form.labelPlaceholder": "Integracja magazynowa",
|
|
48
|
+
"tokens.form.expiry": "Ważność",
|
|
49
|
+
"tokens.form.noExpiry": "Bez daty wygaśnięcia",
|
|
50
|
+
"tokens.form.days": "{count} dni",
|
|
51
|
+
"tokens.form.scopes": "Zakresy",
|
|
52
|
+
"tokens.form.presetSandbox": "Zestaw dla sandboxa",
|
|
53
|
+
"tokens.form.presetRead": "Tylko odczyt",
|
|
54
|
+
"tokens.form.clear": "Wyczyść",
|
|
55
|
+
"tokens.form.selected": "Wybrano {selected} z {total}",
|
|
56
|
+
"tokens.form.secretOnce": "Sekret zostanie pokazany tylko po utworzeniu.",
|
|
57
|
+
"tokens.form.creating": "Tworzenie…",
|
|
58
|
+
"tokens.form.create": "Utwórz token",
|
|
59
|
+
"tokens.drawer.createdTitle": "Token utworzony",
|
|
60
|
+
"tokens.drawer.newTitle": "Nowy token API",
|
|
61
|
+
"tokens.drawer.once": "Skopiuj sekret teraz. Nie będzie ponownie widoczny.",
|
|
62
|
+
"tokens.drawer.subtitle": "Wybierz najmniejszy zakres potrzebny integracji.",
|
|
63
|
+
"tokens.secret.ready": "Token {label} jest gotowy",
|
|
64
|
+
"tokens.secret.copyNow": "Skopiuj token przed zamknięciem panelu.",
|
|
65
|
+
"tokens.secret.copy": "Kopiuj token",
|
|
66
|
+
"tokens.secret.store": "Traktuj tę wartość jak hasło.",
|
|
67
|
+
"tokens.error.load": "Nie udało się wczytać tokenów API.",
|
|
68
|
+
"tokens.error.create": "Nie udało się utworzyć tokenu API.",
|
|
69
|
+
"tokens.error.revoke": "Nie udało się unieważnić tokenu API.",
|
|
70
|
+
"tokens.error.request": "Operacja na tokenie nie powiodła się.",
|
|
71
|
+
"audit.title": "Audyt",
|
|
72
|
+
"audit.description": "Historia zmian platformy, agentów i sandboxa w jednym miejscu.",
|
|
73
|
+
"audit.denied": "Twoja rola nie pozwala odczytać żadnego źródła audytu.",
|
|
74
|
+
"audit.table.title": "Aktywność",
|
|
75
|
+
"audit.table.count": "Zdarzenia: {count}",
|
|
76
|
+
"audit.table.caption": "Zdarzenia audytowe tej przestrzeni roboczej",
|
|
77
|
+
"audit.column.time": "Czas",
|
|
78
|
+
"audit.column.actor": "Wykonawca",
|
|
79
|
+
"audit.column.action": "Działanie",
|
|
80
|
+
"audit.column.subject": "Obiekt",
|
|
81
|
+
"audit.column.details": "Szczegóły",
|
|
82
|
+
"audit.items": "Elementy: {count}",
|
|
83
|
+
"audit.integrity.checking": "sprawdzanie",
|
|
84
|
+
"audit.integrity.verified": "zweryfikowany",
|
|
85
|
+
"audit.integrity.tampered": "naruszony",
|
|
86
|
+
"audit.integrity.tamperedAt": "naruszony przy {id}",
|
|
87
|
+
"audit.integrity.unknown": "nieznany",
|
|
88
|
+
"audit.source.label": "Źródło audytu",
|
|
89
|
+
"audit.source.platform": "Platforma",
|
|
90
|
+
"audit.source.agents": "Agenci",
|
|
91
|
+
"audit.source.sandbox": "Sandbox",
|
|
92
|
+
"audit.search.placeholder": "Szukaj wykonawcy, działania lub obiektu",
|
|
93
|
+
"audit.search.label": "Szukaj zdarzeń audytowych",
|
|
94
|
+
"audit.filter.action": "Działanie",
|
|
95
|
+
"audit.filter.allActions": "Wszystkie działania",
|
|
96
|
+
"audit.filter.actor": "Wykonawca",
|
|
97
|
+
"audit.filter.actorPlaceholder": "E-mail lub identyfikator",
|
|
98
|
+
"audit.filter.apply": "Zastosuj filtry",
|
|
99
|
+
"audit.loading": "Wczytywanie zdarzeń audytowych…",
|
|
100
|
+
"audit.empty.deniedHint": "Poproś właściciela przestrzeni o wymagany zakres audytu.",
|
|
101
|
+
"audit.empty.title": "Nie ma jeszcze zdarzeń audytowych",
|
|
102
|
+
"audit.empty.hint": "Logowania i zmiany administracyjne pojawią się tutaj.",
|
|
103
|
+
"audit.empty.filteredTitle": "Brak pasujących zdarzeń",
|
|
104
|
+
"audit.empty.filteredHint": "Zmień wyszukiwaną frazę lub filtry.",
|
|
105
|
+
"audit.loadOlder": "Wczytaj starsze zdarzenia",
|
|
106
|
+
"audit.note": "Dzienniki agentów i sandboxa tworzą łańcuch skrótów, dzięki czemu można wykryć ich naruszenie.",
|
|
107
|
+
"audit.error.load": "Nie udało się wczytać zdarzeń audytowych.",
|
|
108
|
+
"settings.title": "Ustawienia",
|
|
109
|
+
"settings.description": "Tożsamość przestrzeni roboczej i ustawienia domyślne dla jej członków.",
|
|
110
|
+
"settings.denied": "Twoja rola nie pozwala odczytać ustawień przestrzeni roboczej.",
|
|
111
|
+
"settings.loading": "Wczytywanie ustawień przestrzeni roboczej…",
|
|
112
|
+
"settings.readOnly": "Możesz przeglądać te ustawienia, ale zmieniać je może tylko właściciel przestrzeni.",
|
|
113
|
+
"settings.preferences.title": "Preferencje",
|
|
114
|
+
"settings.preferences.subtitle": "Ustawienia domyślne tej przestrzeni",
|
|
115
|
+
"settings.locale.label": "Domyślny język",
|
|
116
|
+
"settings.locale.description": "Używany, gdy członek nie wybrał własnego języka.",
|
|
117
|
+
"settings.locale.default": "Obecnie zapisana wartość: {locale}.",
|
|
118
|
+
"settings.workspace.title": "Przestrzeń robocza",
|
|
119
|
+
"settings.workspace.subtitle": "Tożsamość widoczna w całej platformie",
|
|
120
|
+
"settings.workspace.name": "Nazwa przestrzeni roboczej",
|
|
121
|
+
"settings.workspace.description": "Stały identyfikator przestrzeni to",
|
|
122
|
+
"settings.error.load": "Nie udało się wczytać ustawień przestrzeni roboczej.",
|
|
123
|
+
"settings.error.locale": "Nie udało się zmienić domyślnego języka.",
|
|
124
|
+
"settings.error.rename": "Nie udało się zmienić nazwy przestrzeni roboczej.",
|
|
125
|
+
"common.back": "Wstecz",
|
|
126
|
+
"common.continue": "Dalej",
|
|
127
|
+
"common.login": "Zaloguj się",
|
|
128
|
+
"common.wait": "Proszę czekać…",
|
|
129
|
+
"brand.label": "Logowanie do Flowdular",
|
|
130
|
+
"story.label": "Wprowadzenie do produktu",
|
|
131
|
+
"story.kicker": "Framework fundamentu agentycznego",
|
|
132
|
+
"story.title": "Twoja platforma biznesowa na gotowym fundamencie.",
|
|
133
|
+
"story.description": "Flowdular zapewnia konta, przestrzenie robocze, uprawnienia, moduły i agentów. Dodawaj funkcje potrzebne firmie w sandboxie z pomocą specjalistów AI lub przez skille we własnych narzędziach.",
|
|
134
|
+
"story.foundation": "Fundament od Flowdular",
|
|
135
|
+
"story.builtBy": "Resztę budujesz Ty",
|
|
136
|
+
"signin.seo.title": "Logowanie",
|
|
137
|
+
"signin.seo.description": "Zaloguj się do biznesowej przestrzeni roboczej Flowdular.",
|
|
138
|
+
"signin.kicker": "Witaj ponownie",
|
|
139
|
+
"signin.title": "Zaloguj się, aby kontynuować",
|
|
140
|
+
"signin.description": "Użyj konta w swojej przestrzeni roboczej.",
|
|
141
|
+
"signin.submit": "Zaloguj się",
|
|
142
|
+
"signin.orProvider": "lub użyj",
|
|
143
|
+
"signup.seo.title": "Utwórz przestrzeń roboczą",
|
|
144
|
+
"signup.seo.description": "Utwórz przestrzeń roboczą Flowdular i jej pierwsze konto administratora.",
|
|
145
|
+
"signup.kicker": "Nowa przestrzeń robocza",
|
|
146
|
+
"signup.create": "Utwórz przestrzeń",
|
|
147
|
+
"signup.fullName": "Imię i nazwisko",
|
|
148
|
+
"signup.step.workspace.label": "Przestrzeń",
|
|
149
|
+
"signup.step.workspace.title": "Nazwij przestrzeń roboczą",
|
|
150
|
+
"signup.step.workspace.description": "Identyfikator przestrzeni będzie częścią jej adresu.",
|
|
151
|
+
"signup.step.administrator.label": "Administrator",
|
|
152
|
+
"signup.step.administrator.title": "Utwórz administratora",
|
|
153
|
+
"signup.step.administrator.description": "Pierwsze konto jest właścicielem przestrzeni i wszystkiego, co na niej powstanie.",
|
|
154
|
+
"signup.step.confirmation.label": "Potwierdzenie",
|
|
155
|
+
"signup.step.confirmation.title": "Potwierdź adres e-mail",
|
|
156
|
+
"signup.step.confirmation.description": "Został jeszcze jeden krok przed logowaniem.",
|
|
157
|
+
"signup.workspace.name": "Nazwa przestrzeni roboczej",
|
|
158
|
+
"signup.workspace.id": "Identyfikator przestrzeni",
|
|
159
|
+
"signup.workspace.address": "Adres przestrzeni",
|
|
160
|
+
"signup.workspace.placeholder": "twoja-przestrzen",
|
|
161
|
+
"signup.slug.invalid": "Użyj od 3 do 48 małych liter, cyfr i pojedynczych łączników. Zacznij i zakończ literą lub cyfrą.",
|
|
162
|
+
"signup.slug.taken": "Ten identyfikator przestrzeni jest już zajęty. Wybierz inny.",
|
|
163
|
+
"signup.slug.error": "Nie udało się sprawdzić dostępności.",
|
|
164
|
+
"signup.slug.checking": "Sprawdzanie dostępności…",
|
|
165
|
+
"signup.slug.checkingShort": "Sprawdzanie…",
|
|
166
|
+
"signup.slug.available": "Ten identyfikator przestrzeni jest dostępny.",
|
|
167
|
+
"signup.slug.help": "Małe litery, cyfry i pojedyncze łączniki.",
|
|
168
|
+
"signup.confirmation.created": "Utworzyliśmy",
|
|
169
|
+
"signup.confirmation.sent": "Potwierdź adres e-mail przez link wysłany na",
|
|
170
|
+
"signup.confirmation.finish": ", a następnie się zaloguj.",
|
|
171
|
+
"signup.backToSignIn": "Wróć do logowania",
|
|
172
|
+
"switch.existing": "Masz już konto?",
|
|
173
|
+
"switch.new": "Pierwszy raz w Flowdular?",
|
|
174
|
+
"password.minimum": "Co najmniej {count} znaków.",
|
|
175
|
+
"passwordChange.kicker": "Reset hasła",
|
|
176
|
+
"passwordChange.title": "Ustaw nowe hasło",
|
|
177
|
+
"passwordChange.description": "Administrator zresetował hasło konta {email}. Ustaw nowe, aby kontynuować.",
|
|
178
|
+
"passwordChange.temporary": "Hasło tymczasowe",
|
|
179
|
+
"passwordChange.new": "Nowe hasło",
|
|
180
|
+
"passwordChange.confirm": "Powtórz nowe hasło",
|
|
181
|
+
"passwordChange.mismatch": "Nowe hasło i jego powtórzenie różnią się.",
|
|
182
|
+
"passwordChange.error": "Nie udało się zmienić hasła.",
|
|
183
|
+
"passwordChange.saving": "Zapisywanie…",
|
|
184
|
+
"passwordChange.submit": "Ustaw nowe hasło",
|
|
185
|
+
"error.configuration": "Konfiguracja logowania jest niedostępna.",
|
|
186
|
+
"error.request": "Żądanie uwierzytelnienia nie powiodło się.",
|
|
187
|
+
"error.unavailable": "Usługa uwierzytelniania jest niedostępna.",
|
|
188
|
+
"error.failed": "Uwierzytelnienie nie powiodło się.",
|
|
189
|
+
"error.signOut": "Nie udało się wylogować.",
|
|
190
|
+
"security.navigation.label": "Bezpieczeństwo konta",
|
|
191
|
+
"security.navigation.description": "Uwierzytelnianie wieloskładnikowe i dostęp awaryjny",
|
|
192
|
+
"security.page.eyebrow": "Konto",
|
|
193
|
+
"security.page.title": "Bezpieczeństwo konta",
|
|
194
|
+
"security.page.description": "Chroń konto drugim składnikiem i jednorazowymi kodami odzyskiwania.",
|
|
195
|
+
"security.action.refresh": "Odśwież",
|
|
196
|
+
"security.denied.title": "Ustawienia bezpieczeństwa są niedostępne",
|
|
197
|
+
"security.denied.description": "Bieżąca sesja nie może odczytać ustawień bezpieczeństwa konta.",
|
|
198
|
+
"security.passwordReset.kicker": "Odzyskiwanie konta",
|
|
199
|
+
"security.passwordReset.forgot": "Nie pamiętasz hasła?",
|
|
200
|
+
"security.passwordReset.requestTitle": "Zresetuj hasło",
|
|
201
|
+
"security.passwordReset.requestDescription": "Podaj adres e-mail konta. Jeśli istnieje, wyślemy jednorazowy link do resetu.",
|
|
202
|
+
"security.passwordReset.send": "Wyślij link do resetu",
|
|
203
|
+
"security.passwordReset.accepted": "Jeśli ten adres jest zarejestrowany, wysłaliśmy link do resetu hasła.",
|
|
204
|
+
"security.passwordReset.completeTitle": "Ustaw nowe hasło",
|
|
205
|
+
"security.passwordReset.completeDescription": "Ten link działa jeden raz i wygasa po krótkim czasie.",
|
|
206
|
+
"security.passwordReset.newPassword": "Nowe hasło",
|
|
207
|
+
"security.passwordReset.confirmPassword": "Powtórz nowe hasło",
|
|
208
|
+
"security.passwordReset.mismatch": "Hasła nie są takie same.",
|
|
209
|
+
"security.passwordReset.save": "Ustaw nowe hasło",
|
|
210
|
+
"security.passwordReset.completed": "Hasło zostało zmienione. Zaloguj się nowym hasłem.",
|
|
211
|
+
"security.passwordReset.invalid": "Ten link do resetu hasła jest nieprawidłowy lub wygasł.",
|
|
212
|
+
"security.invitation.kicker": "Zaproszenie do przestrzeni",
|
|
213
|
+
"security.invitation.title": "Dołącz do przestrzeni roboczej",
|
|
214
|
+
"security.invitation.description": "Uzupełnij dane konta, aby przyjąć to jednorazowe zaproszenie.",
|
|
215
|
+
"security.invitation.accept": "Przyjmij zaproszenie",
|
|
216
|
+
"security.invitation.accepted": "Zaproszenie zostało zaakceptowane. Możesz się teraz zalogować.",
|
|
217
|
+
"security.invitation.invalid": "To zaproszenie jest nieprawidłowe lub wygasło.",
|
|
218
|
+
"security.link.checking": "Sprawdzanie bezpiecznego linku…",
|
|
219
|
+
"security.mfa.kicker": "Drugi składnik",
|
|
220
|
+
"security.mfa.title": "Aplikacja uwierzytelniająca",
|
|
221
|
+
"security.mfa.description": "Wymagaj zmiennego kodu po podaniu hasła.",
|
|
222
|
+
"security.mfa.loading": "Wczytywanie ustawień bezpieczeństwa konta…",
|
|
223
|
+
"security.mfa.active": "Włączone",
|
|
224
|
+
"security.mfa.unavailableTitle": "MFA nie jest skonfigurowane",
|
|
225
|
+
"security.mfa.unavailableDescription": "Administrator musi skonfigurować klucz szyfrowania wdrożenia, zanim będzie można rozpocząć konfigurację.",
|
|
226
|
+
"security.mfa.enableDescription": "Użyj dowolnej aplikacji zgodnej z TOTP. Kody odzyskiwania zapewnią jednorazowy dostęp, gdy aplikacja będzie niedostępna.",
|
|
227
|
+
"security.mfa.start": "Skonfiguruj MFA",
|
|
228
|
+
"security.mfa.setupDescription": "Otwórz link w aplikacji uwierzytelniającej lub wpisz sekret ręcznie, a następnie podaj sześciocyfrowy kod.",
|
|
229
|
+
"security.mfa.openAuthenticator": "Otwórz aplikację uwierzytelniającą",
|
|
230
|
+
"security.mfa.manualSecret": "Sekret do konfiguracji ręcznej",
|
|
231
|
+
"security.mfa.recoveryCodesTitle": "Kody odzyskiwania",
|
|
232
|
+
"security.mfa.code": "Kod uwierzytelniający",
|
|
233
|
+
"security.mfa.recoveryCode": "Kod odzyskiwania",
|
|
234
|
+
"security.mfa.enrollment": "Konfiguracja uwierzytelniania wieloskładnikowego",
|
|
235
|
+
"security.mfa.recoveryCodes": "Zapisz te kody teraz. Każdy działa tylko raz i nie pokażemy ich ponownie.",
|
|
236
|
+
"security.mfa.confirm": "Potwierdź i włącz",
|
|
237
|
+
"security.mfa.enabled": "Uwierzytelnianie wieloskładnikowe zostało włączone.",
|
|
238
|
+
"security.mfa.enabledTitle": "Twoje konto jest chronione",
|
|
239
|
+
"security.mfa.enabledDescription": "Logowanie wymaga teraz kodu z aplikacji uwierzytelniającej albo niewykorzystanego kodu odzyskiwania.",
|
|
240
|
+
"security.mfa.codesSaved": "Kody odzyskiwania zostały zapisane",
|
|
241
|
+
"security.mfa.challengeTitle": "Dokończ logowanie",
|
|
242
|
+
"security.mfa.challengeDescription": "Podaj aktualny kod z aplikacji uwierzytelniającej.",
|
|
243
|
+
"security.mfa.verify": "Zweryfikuj i zaloguj",
|
|
244
|
+
"security.mfa.useRecovery": "Użyj kodu odzyskiwania",
|
|
245
|
+
"security.mfa.useCode": "Użyj kodu z aplikacji",
|
|
246
|
+
"security.mfa.errorLoad": "Nie udało się wczytać ustawień bezpieczeństwa konta.",
|
|
247
|
+
"security.mfa.errorEnroll": "Nie udało się rozpocząć konfiguracji MFA.",
|
|
248
|
+
"security.mfa.errorConfirm": "Nie udało się potwierdzić kodu z aplikacji.",
|
|
249
|
+
"moduleSettings.allowSignUp.label": "Zezwalaj na rejestrację",
|
|
250
|
+
"moduleSettings.allowSignUp.description": "Odwiedzający mogą utworzyć nową przestrzeń roboczą na publicznym ekranie rejestracji.",
|
|
251
|
+
"moduleSettings.emailConfirmation.label": "Potwierdzanie adresu e-mail",
|
|
252
|
+
"moduleSettings.emailConfirmation.description": "Nowe konto pozostaje nieaktywne do czasu potwierdzenia adresu. Wymaga skonfigurowanej usługi wysyłki wiadomości.",
|
|
253
|
+
"moduleSettings.sessionTtlHours.label": "Czas ważności sesji (godziny)",
|
|
254
|
+
"moduleSettings.sessionTtlHours.description": "Maksymalny czas działania sesji w przeglądarce.",
|
|
255
|
+
"moduleSettings.sessionIdleMinutes.label": "Limit bezczynności (minuty)",
|
|
256
|
+
"moduleSettings.sessionIdleMinutes.description": "Sesja kończy się po tym czasie bez żadnego żądania.",
|
|
257
|
+
"moduleSettings.passwordMinLength.label": "Minimalna długość hasła",
|
|
258
|
+
"moduleSettings.passwordMinLength.description": "Obowiązuje przy rejestracji, tworzeniu członków i zmianie hasła.",
|
|
259
|
+
"moduleSettings.signInProviders.label": "Dostawcy logowania",
|
|
260
|
+
"moduleSettings.signInProviders.description": "Identyfikatory zewnętrznych dostawców wyświetlanych na ekranie logowania, rozdzielone przecinkami.",
|
|
261
|
+
"moduleSettings.defaultLocale.label": "Domyślny język",
|
|
262
|
+
"moduleSettings.defaultLocale.description": "Język proponowany nowym członkom tej przestrzeni roboczej."
|
|
263
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
DROP POLICY IF EXISTS automations_schedules_tenant_policy ON automations_schedules;
|
|
2
|
+
DROP POLICY IF EXISTS automations_triggers_tenant_policy ON automations_triggers;
|
|
3
|
+
DROP POLICY IF EXISTS automations_audit_events_tenant_policy ON automations_audit_events;
|
|
4
|
+
DROP INDEX IF EXISTS automations_audit_tenant_time_idx;
|
|
5
|
+
DROP TABLE IF EXISTS automations_audit_events;
|
|
6
|
+
DROP INDEX IF EXISTS automations_triggers_tenant_label_idx;
|
|
7
|
+
DROP TABLE IF EXISTS automations_triggers;
|
|
8
|
+
DROP INDEX IF EXISTS automations_schedules_due_idx;
|
|
9
|
+
DROP INDEX IF EXISTS automations_schedules_tenant_label_idx;
|
|
10
|
+
DROP TABLE IF EXISTS automations_schedules;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
CREATE TABLE IF NOT EXISTS automations_schedules (
|
|
2
|
+
id TEXT PRIMARY KEY,
|
|
3
|
+
tenant_id TEXT NOT NULL,
|
|
4
|
+
agent_id TEXT NOT NULL,
|
|
5
|
+
label TEXT NOT NULL,
|
|
6
|
+
input_template TEXT NOT NULL,
|
|
7
|
+
cadence TEXT NOT NULL,
|
|
8
|
+
enabled INTEGER NOT NULL CHECK (enabled IN (0, 1)),
|
|
9
|
+
disabled_reason TEXT,
|
|
10
|
+
next_run_at BIGINT NOT NULL,
|
|
11
|
+
last_run_at BIGINT,
|
|
12
|
+
last_run_id TEXT,
|
|
13
|
+
last_error TEXT,
|
|
14
|
+
created_at BIGINT NOT NULL,
|
|
15
|
+
updated_at BIGINT NOT NULL,
|
|
16
|
+
created_by TEXT NOT NULL
|
|
17
|
+
);
|
|
18
|
+
CREATE INDEX IF NOT EXISTS automations_schedules_tenant_label_idx
|
|
19
|
+
ON automations_schedules (tenant_id, label, id);
|
|
20
|
+
CREATE INDEX IF NOT EXISTS automations_schedules_due_idx
|
|
21
|
+
ON automations_schedules (enabled, next_run_at, id);
|
|
22
|
+
|
|
23
|
+
CREATE TABLE IF NOT EXISTS automations_triggers (
|
|
24
|
+
id TEXT PRIMARY KEY,
|
|
25
|
+
tenant_id TEXT NOT NULL,
|
|
26
|
+
agent_id TEXT NOT NULL,
|
|
27
|
+
label TEXT NOT NULL,
|
|
28
|
+
secret_key_id TEXT NOT NULL,
|
|
29
|
+
secret_iv TEXT NOT NULL,
|
|
30
|
+
secret_tag TEXT NOT NULL,
|
|
31
|
+
secret_ciphertext TEXT NOT NULL,
|
|
32
|
+
secret_revision INTEGER NOT NULL CHECK (secret_revision > 0),
|
|
33
|
+
enabled INTEGER NOT NULL CHECK (enabled IN (0, 1)),
|
|
34
|
+
created_at BIGINT NOT NULL,
|
|
35
|
+
updated_at BIGINT NOT NULL,
|
|
36
|
+
created_by TEXT NOT NULL,
|
|
37
|
+
last_fired_at BIGINT,
|
|
38
|
+
accepted_count INTEGER NOT NULL DEFAULT 0 CHECK (accepted_count >= 0),
|
|
39
|
+
rejected_count INTEGER NOT NULL DEFAULT 0 CHECK (rejected_count >= 0)
|
|
40
|
+
);
|
|
41
|
+
CREATE INDEX IF NOT EXISTS automations_triggers_tenant_label_idx
|
|
42
|
+
ON automations_triggers (tenant_id, label, id);
|
|
43
|
+
|
|
44
|
+
CREATE TABLE IF NOT EXISTS automations_audit_events (
|
|
45
|
+
id TEXT PRIMARY KEY,
|
|
46
|
+
tenant_id TEXT NOT NULL,
|
|
47
|
+
sequence BIGINT NOT NULL CHECK (sequence > 0),
|
|
48
|
+
actor_id TEXT NOT NULL,
|
|
49
|
+
action TEXT NOT NULL,
|
|
50
|
+
subject_type TEXT NOT NULL CHECK (
|
|
51
|
+
subject_type IN ('automation-schedule', 'automation-trigger')
|
|
52
|
+
),
|
|
53
|
+
subject_id TEXT NOT NULL,
|
|
54
|
+
metadata_json TEXT NOT NULL,
|
|
55
|
+
occurred_at BIGINT NOT NULL,
|
|
56
|
+
previous_hash TEXT,
|
|
57
|
+
event_hash TEXT NOT NULL,
|
|
58
|
+
UNIQUE (tenant_id, sequence)
|
|
59
|
+
);
|
|
60
|
+
CREATE INDEX IF NOT EXISTS automations_audit_tenant_time_idx
|
|
61
|
+
ON automations_audit_events (tenant_id, occurred_at DESC, sequence DESC);
|
|
62
|
+
ALTER TABLE automations_schedules ENABLE ROW LEVEL SECURITY;
|
|
63
|
+
ALTER TABLE automations_schedules FORCE ROW LEVEL SECURITY;
|
|
64
|
+
CREATE POLICY automations_schedules_tenant_policy ON automations_schedules
|
|
65
|
+
USING (tenant_id = current_setting('coreloom.tenant_id', true))
|
|
66
|
+
WITH CHECK (tenant_id = current_setting('coreloom.tenant_id', true));
|
|
67
|
+
ALTER TABLE automations_triggers ENABLE ROW LEVEL SECURITY;
|
|
68
|
+
ALTER TABLE automations_triggers FORCE ROW LEVEL SECURITY;
|
|
69
|
+
CREATE POLICY automations_triggers_tenant_policy ON automations_triggers
|
|
70
|
+
USING (tenant_id = current_setting('coreloom.tenant_id', true))
|
|
71
|
+
WITH CHECK (tenant_id = current_setting('coreloom.tenant_id', true));
|
|
72
|
+
ALTER TABLE automations_audit_events ENABLE ROW LEVEL SECURITY;
|
|
73
|
+
ALTER TABLE automations_audit_events FORCE ROW LEVEL SECURITY;
|
|
74
|
+
CREATE POLICY automations_audit_events_tenant_policy ON automations_audit_events
|
|
75
|
+
USING (tenant_id = current_setting('coreloom.tenant_id', true))
|
|
76
|
+
WITH CHECK (tenant_id = current_setting('coreloom.tenant_id', true));
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
ALTER TABLE automations_triggers DROP COLUMN permission_snapshot_json;
|
|
2
|
+
ALTER TABLE automations_triggers DROP COLUMN configured_by_json;
|
|
3
|
+
ALTER TABLE automations_triggers DROP COLUMN target_key;
|
|
4
|
+
ALTER TABLE automations_triggers DROP COLUMN target_kind;
|
|
5
|
+
|
|
6
|
+
ALTER TABLE automations_schedules DROP COLUMN permission_snapshot_json;
|
|
7
|
+
ALTER TABLE automations_schedules DROP COLUMN configured_by_json;
|
|
8
|
+
ALTER TABLE automations_schedules DROP COLUMN target_key;
|
|
9
|
+
ALTER TABLE automations_schedules DROP COLUMN target_kind;
|