@flowdular/sdk 0.2.4 → 0.3.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/sandbox/business-manager.md +5 -1
- package/.ai/blueprints/author-spec/README.md +1 -1
- package/.ai/blueprints/author-spec/spec-requirements.yaml +44 -0
- package/.ai/blueprints/author-spec/steps.yaml +5 -5
- package/.ai/blueprints/author-spec/templates/module.yaml +99 -3
- package/.ai/blueprints/edit-module/gates.yaml +4 -0
- package/.ai/blueprints/edit-module/required-files.yaml +9 -0
- package/.ai/blueprints/new-module/gates.yaml +4 -0
- package/.ai/blueprints/new-module/spec-requirements.yaml +2 -2
- package/.ai/blueprints/release/gates.yaml +4 -0
- package/.ai/platform-capabilities.md +128 -0
- package/.ai/policies/capabilities.yaml +100 -0
- package/.ai/policies/path-ownership.yaml +5 -2
- package/.ai/policies/task-budgets.yaml +5 -3
- package/.ai/references/catalog/module.json +4 -4
- package/.ai/references/catalog/package.json +2 -2
- package/.ai/references/catalog/spec/module.yaml +5 -3
- package/.ai/references/catalog/src/platform.ts +2 -0
- package/.ai/references/catalog/src/services/catalog-service.ts +89 -1
- package/.ai/references/catalog/src/services/data-classes.ts +47 -0
- package/.ai/references/catalog/src/services/database-repository.ts +98 -1
- package/.ai/references/catalog/src/services/repository.ts +22 -1
- package/.ai/references/catalog/tests/data-classes.test.ts +157 -0
- package/.ai/references/catalog.provenance.json +12 -10
- package/.ai/skills/README.md +10 -0
- package/.ai/skills/agent-tool-design/SKILL.md +1 -2
- package/.ai/skills/auth-security-review/SKILL.md +1 -1
- package/.ai/skills/business-agent-design/SKILL.md +0 -1
- package/.ai/skills/deploy-operate/SKILL.md +114 -0
- package/.ai/skills/module-new/SKILL.md +29 -3
- package/.ai/skills/module-update/SKILL.md +9 -3
- package/.ai/skills/perf-audit/SKILL.md +0 -1
- package/.ai/skills/release-eject-pr/SKILL.md +0 -1
- package/.ai/skills/spec-interview/SKILL.md +120 -0
- package/.ai/skills/test-hardening/SKILL.md +1 -0
- package/.ai/skills/ux-design/SKILL.md +34 -3
- package/.ai/skills/variables/SKILL.md +0 -2
- package/.ai/skills/workflow-development/SKILL.md +0 -1
- package/AGENTS.md +4 -0
- package/docs/agent-contract.md +2 -2
- package/docs/design-system.md +185 -31
- package/modules/access/migrations/0001_access_core.down.sql +1 -0
- package/modules/access/migrations/0001_access_core.up.sql +28 -0
- package/modules/access/migrations/README.md +3 -0
- package/modules/access/module.json +33 -0
- package/modules/access/package.json +43 -0
- package/modules/access/spec/module.yaml +225 -0
- package/modules/access/src/acl/permissions.ts +6 -0
- package/modules/access/src/api/endpoints.ts +244 -0
- package/modules/access/src/client/ActivityView.tsrx +245 -0
- package/modules/access/src/client/AttestationsView.tsrx +176 -0
- package/modules/access/src/client/ReviewView.tsrx +586 -0
- package/modules/access/src/client/api.ts +132 -0
- package/modules/access/src/client/contribution.tsrx +41 -0
- package/modules/access/src/client/index.ts +41 -0
- package/modules/access/src/client/navigation.ts +57 -0
- package/modules/access/src/client/presentation.ts +69 -0
- package/modules/access/src/client/state.ts +72 -0
- package/modules/access/src/domain/types.ts +189 -0
- package/modules/access/src/index.ts +38 -0
- package/modules/access/src/platform.ts +60 -0
- package/modules/access/src/server/index.ts +42 -0
- package/modules/access/src/server/runtime.ts +105 -0
- package/modules/access/src/services/access-service.ts +298 -0
- package/modules/access/src/services/audit-window.ts +78 -0
- package/modules/access/src/services/auth-directory.ts +72 -0
- package/modules/access/src/services/changes.ts +91 -0
- package/modules/access/src/services/data-classes.ts +28 -0
- package/modules/access/src/services/database-repository.ts +185 -0
- package/modules/access/src/services/directory.ts +102 -0
- package/modules/access/src/services/index.ts +33 -0
- package/modules/access/src/services/list-exports.ts +150 -0
- package/modules/access/src/services/migration.ts +54 -0
- package/modules/access/src/services/repository.ts +30 -0
- package/modules/access/src/services/review.ts +178 -0
- package/modules/access/translations/en.json +155 -0
- package/modules/access/translations/pl.json +155 -0
- package/modules/agents/migrations/0022_credential_rotation_inventory.down.sql +2 -0
- package/modules/agents/migrations/0022_credential_rotation_inventory.up.sql +7 -0
- package/modules/agents/migrations/0023_agents_retention_indexes.down.sql +2 -0
- package/modules/agents/migrations/0023_agents_retention_indexes.up.sql +9 -0
- package/modules/agents/migrations/0024_agent_meter_refusals.down.sql +3 -0
- package/modules/agents/migrations/0024_agent_meter_refusals.up.sql +22 -0
- package/modules/agents/migrations/0025_agent_list_indexes.down.sql +3 -0
- package/modules/agents/migrations/0025_agent_list_indexes.up.sql +11 -0
- package/modules/agents/module.json +30 -4
- package/modules/agents/package.json +2 -1
- package/modules/agents/spec/module.yaml +63 -5
- package/modules/agents/src/api/endpoints.ts +291 -33
- package/modules/agents/src/cli/commands.json +11 -0
- package/modules/agents/src/cli/index.ts +45 -0
- package/modules/agents/src/client/AgentDashboardWidget.tsrx +19 -11
- package/modules/agents/src/client/AgentDefinitionList.tsrx +53 -10
- package/modules/agents/src/client/AgentPlaygroundView.tsrx +4 -4
- package/modules/agents/src/client/AgentProceduresView.tsrx +2 -2
- package/modules/agents/src/client/AgentRunsView.tsrx +143 -40
- package/modules/agents/src/client/AgentsView.tsrx +109 -33
- package/modules/agents/src/client/api.ts +99 -21
- package/modules/agents/src/client/state.ts +97 -0
- package/modules/agents/src/domain/types.ts +44 -4
- package/modules/agents/src/platform.ts +42 -0
- package/modules/agents/src/server/action-execution.ts +201 -106
- package/modules/agents/src/server/runtime.ts +32 -0
- package/modules/agents/src/services/agent-service.ts +158 -30
- package/modules/agents/src/services/credential-rotation.ts +185 -0
- package/modules/agents/src/services/credential-vault.ts +71 -46
- package/modules/agents/src/services/data-classes.ts +176 -0
- package/modules/agents/src/services/database-repository.ts +393 -101
- package/modules/agents/src/services/metering.ts +111 -0
- package/modules/agents/src/services/migration.ts +109 -0
- package/modules/agents/src/services/module-agent-preflight.ts +17 -9
- package/modules/agents/src/services/notifications.ts +98 -0
- package/modules/agents/src/services/provider-repository.ts +9 -18
- package/modules/agents/src/services/provider-service.ts +1 -9
- package/modules/agents/src/services/reports.ts +107 -0
- package/modules/agents/src/services/repository.ts +86 -6
- package/modules/agents/src/services/usage-service.ts +2 -0
- package/modules/agents/src/services/worker.ts +114 -4
- package/modules/agents/src/settings.ts +14 -3
- package/modules/agents/translations/en.json +14 -4
- package/modules/agents/translations/pl.json +14 -4
- package/modules/approvals/migrations/0001_approvals_core.down.sql +3 -0
- package/modules/approvals/migrations/0001_approvals_core.up.sql +78 -0
- package/modules/approvals/migrations/0002_approvals_expiry_routing_role.down.sql +2 -0
- package/modules/approvals/migrations/0002_approvals_expiry_routing_role.up.sql +19 -0
- package/modules/approvals/migrations/0003_approvals_retention_indexes.down.sql +6 -0
- package/modules/approvals/migrations/0003_approvals_retention_indexes.up.sql +14 -0
- package/modules/approvals/migrations/0004_approvals_inbox_keyset_indexes.down.sql +5 -0
- package/modules/approvals/migrations/0004_approvals_inbox_keyset_indexes.up.sql +12 -0
- package/modules/approvals/migrations/README.md +3 -0
- package/modules/approvals/module.json +34 -0
- package/modules/approvals/package.json +43 -0
- package/modules/approvals/spec/module.yaml +318 -0
- package/modules/approvals/src/acl/permissions.ts +7 -0
- package/modules/approvals/src/api/endpoints.ts +457 -0
- package/modules/approvals/src/client/ApprovalRequestDrawer.tsrx +138 -0
- package/modules/approvals/src/client/ApprovalsView.tsrx +562 -0
- package/modules/approvals/src/client/PendingCountWidget.tsrx +52 -0
- package/modules/approvals/src/client/api.ts +203 -0
- package/modules/approvals/src/client/approvals.css +51 -0
- package/modules/approvals/src/client/contribution.tsrx +44 -0
- package/modules/approvals/src/client/index.ts +26 -0
- package/modules/approvals/src/client/navigation.ts +39 -0
- package/modules/approvals/src/client/pending-count.ts +26 -0
- package/modules/approvals/src/client/presentation.ts +52 -0
- package/modules/approvals/src/client/state.ts +141 -0
- package/modules/approvals/src/domain/capability.ts +95 -0
- package/modules/approvals/src/domain/types.ts +154 -0
- package/modules/approvals/src/index.ts +52 -0
- package/modules/approvals/src/platform.ts +128 -0
- package/modules/approvals/src/server/index.ts +42 -0
- package/modules/approvals/src/server/runtime.ts +181 -0
- package/modules/approvals/src/services/approvals-service.ts +557 -0
- package/modules/approvals/src/services/callbacks.ts +75 -0
- package/modules/approvals/src/services/data-classes.ts +167 -0
- package/modules/approvals/src/services/database-repository.ts +724 -0
- package/modules/approvals/src/services/eligibility.ts +121 -0
- package/modules/approvals/src/services/expiry-runner.ts +81 -0
- package/modules/approvals/src/services/index.ts +31 -0
- package/modules/approvals/src/services/migration.ts +222 -0
- package/modules/approvals/src/services/notifications.ts +95 -0
- package/modules/approvals/src/services/repository.ts +161 -0
- package/modules/approvals/src/services/service-error.ts +70 -0
- package/modules/approvals/src/settings.ts +102 -0
- package/modules/approvals/translations/en.json +104 -0
- package/modules/approvals/translations/pl.json +104 -0
- package/modules/audit/migrations/0001_audit_core.down.sql +8 -0
- package/modules/audit/migrations/0001_audit_core.up.sql +107 -0
- package/modules/audit/migrations/0002_audit_sweep_routing_role.down.sql +2 -0
- package/modules/audit/migrations/0002_audit_sweep_routing_role.up.sql +21 -0
- package/modules/audit/migrations/0003_audit_export_request.down.sql +12 -0
- package/modules/audit/migrations/0003_audit_export_request.up.sql +40 -0
- package/modules/audit/migrations/0004_audit_hold_seal_erasure.down.sql +17 -0
- package/modules/audit/migrations/0004_audit_hold_seal_erasure.up.sql +192 -0
- package/modules/audit/migrations/0005_audit_event_format.down.sql +17 -0
- package/modules/audit/migrations/0005_audit_event_format.up.sql +60 -0
- package/modules/audit/migrations/0006_audit_own_class_walks.down.sql +3 -0
- package/modules/audit/migrations/0006_audit_own_class_walks.up.sql +14 -0
- package/modules/audit/migrations/README.md +3 -0
- package/modules/audit/module.json +32 -0
- package/modules/audit/package.json +49 -0
- package/modules/audit/spec/module.yaml +809 -0
- package/modules/audit/src/acl/permissions.ts +7 -0
- package/modules/audit/src/api/endpoints.ts +315 -0
- package/modules/audit/src/cli/commands.json +95 -0
- package/modules/audit/src/cli/index.ts +658 -0
- package/modules/audit/src/client/DataClassesView.tsrx +420 -0
- package/modules/audit/src/client/ExportsView.tsrx +256 -0
- package/modules/audit/src/client/HoldsView.tsrx +604 -0
- package/modules/audit/src/client/SweepsView.tsrx +251 -0
- package/modules/audit/src/client/api.ts +185 -0
- package/modules/audit/src/client/contribution.tsrx +52 -0
- package/modules/audit/src/client/index.ts +23 -0
- package/modules/audit/src/client/navigation.ts +74 -0
- package/modules/audit/src/client/presentation.ts +105 -0
- package/modules/audit/src/client/state.ts +86 -0
- package/modules/audit/src/domain/data-classes.ts +16 -0
- package/modules/audit/src/domain/types.ts +339 -0
- package/modules/audit/src/index.ts +76 -0
- package/modules/audit/src/platform.ts +44 -0
- package/modules/audit/src/server/index.ts +177 -0
- package/modules/audit/src/server/runtime.ts +303 -0
- package/modules/audit/src/services/anchor-key.ts +143 -0
- package/modules/audit/src/services/anchor-rotation.ts +147 -0
- package/modules/audit/src/services/audit-runners.ts +278 -0
- package/modules/audit/src/services/backup-guard.ts +95 -0
- package/modules/audit/src/services/database-repository.ts +1946 -0
- package/modules/audit/src/services/declared-classes.ts +64 -0
- package/modules/audit/src/services/erasure-port.ts +126 -0
- package/modules/audit/src/services/erasure-service.ts +770 -0
- package/modules/audit/src/services/export-directory.ts +106 -0
- package/modules/audit/src/services/export-service.ts +714 -0
- package/modules/audit/src/services/hold-service.ts +295 -0
- package/modules/audit/src/services/index.ts +17 -0
- package/modules/audit/src/services/migration.ts +658 -0
- package/modules/audit/src/services/own-classes.ts +318 -0
- package/modules/audit/src/services/platform-version.ts +23 -0
- package/modules/audit/src/services/repository.ts +495 -0
- package/modules/audit/src/services/retention-service.ts +191 -0
- package/modules/audit/src/services/seal-service.ts +769 -0
- package/modules/audit/src/services/service-error.ts +61 -0
- package/modules/audit/src/services/subject-keys.ts +90 -0
- package/modules/audit/src/services/sweep-service.ts +298 -0
- package/modules/audit/src/services/zip.ts +217 -0
- package/modules/audit/src/settings.ts +69 -0
- package/modules/audit/translations/en.json +210 -0
- package/modules/audit/translations/pl.json +210 -0
- package/modules/auth/README.md +77 -29
- package/modules/auth/migrations/0016_external_identities.up.sql +16 -0
- package/modules/auth/migrations/0017_mfa_key_id.up.sql +8 -0
- package/modules/auth/migrations/0018_retire_bundled_module_scopes.up.sql +29 -0
- package/modules/auth/migrations/0019_notifications_member_scopes.up.sql +44 -0
- package/modules/auth/migrations/0020_identity_providers.up.sql +61 -0
- package/modules/auth/migrations/0021_membership_status.up.sql +19 -0
- package/modules/auth/migrations/0022_auth_provider_scopes.up.sql +45 -0
- package/modules/auth/migrations/0023_enterprise_module_scopes.down.sql +19 -0
- package/modules/auth/migrations/0023_enterprise_module_scopes.up.sql +71 -0
- package/modules/auth/migrations/0024_approvals_member_scopes.down.sql +22 -0
- package/modules/auth/migrations/0024_approvals_member_scopes.up.sql +48 -0
- package/modules/auth/migrations/0025_audit_holds_owner_scope.down.sql +21 -0
- package/modules/auth/migrations/0025_audit_holds_owner_scope.up.sql +47 -0
- package/modules/auth/migrations/0026_auth_export_keyset_indexes.down.sql +6 -0
- package/modules/auth/migrations/0026_auth_export_keyset_indexes.up.sql +15 -0
- package/modules/auth/migrations/0027_workflow_automation_profile_scopes.down.sql +34 -0
- package/modules/auth/migrations/0027_workflow_automation_profile_scopes.up.sql +72 -0
- package/modules/auth/migrations/0028_auth_member_search_prefix_indexes.down.sql +6 -0
- package/modules/auth/migrations/0028_auth_member_search_prefix_indexes.up.sql +21 -0
- package/modules/auth/migrations/0029_reports_exports_access_scopes.down.sql +22 -0
- package/modules/auth/migrations/0029_reports_exports_access_scopes.up.sql +56 -0
- package/modules/auth/migrations/0030_auth_membership_keyset_index.down.sql +4 -0
- package/modules/auth/migrations/0030_auth_membership_keyset_index.up.sql +10 -0
- package/modules/auth/migrations/0031_membership_scope_backfills_under_rls.down.sql +4 -0
- package/modules/auth/migrations/0031_membership_scope_backfills_under_rls.up.sql +31 -0
- package/modules/auth/migrations/0032_audit_actor_service.down.sql +9 -0
- package/modules/auth/migrations/0032_audit_actor_service.up.sql +10 -0
- package/modules/auth/migrations/0033_auth_account_keyset_indexes.down.sql +5 -0
- package/modules/auth/migrations/0033_auth_account_keyset_indexes.up.sql +23 -0
- package/modules/auth/module.json +3 -3
- package/modules/auth/package.json +2 -1
- package/modules/auth/spec/module.yaml +372 -3
- package/modules/auth/src/acl/scopes.ts +50 -6
- package/modules/auth/src/cli/commands.json +11 -0
- package/modules/auth/src/cli/greenfield.ts +2 -2
- package/modules/auth/src/cli/index.ts +14 -0
- package/modules/auth/src/cli/secrets.ts +114 -0
- package/modules/auth/src/client/AuthenticationCore.tsrx +61 -8
- package/modules/auth/src/client/api.ts +72 -6
- package/modules/auth/src/client/contribution.tsrx +23 -0
- package/modules/auth/src/client/index.ts +6 -0
- package/modules/auth/src/client/providers/IdentityProviderForm.tsrx +191 -0
- package/modules/auth/src/client/providers/IdentityProvidersView.tsrx +358 -0
- package/modules/auth/src/client/providers/api.ts +128 -0
- package/modules/auth/src/client/providers/provider-columns.tsrx +60 -0
- package/modules/auth/src/client/providers/state.ts +35 -0
- package/modules/auth/src/client/security/SecurityView.tsrx +9 -1
- package/modules/auth/src/client/state.ts +15 -1
- package/modules/auth/src/domain/types.ts +55 -0
- package/modules/auth/src/index.ts +11 -1
- package/modules/auth/src/middleware/authentication.ts +4 -0
- package/modules/auth/src/server/endpoints.ts +467 -171
- package/modules/auth/src/server/http.ts +3 -2
- package/modules/auth/src/server/index.ts +22 -1
- package/modules/auth/src/server/membership-endpoints.ts +62 -0
- package/modules/auth/src/server/mfa-enforcement.ts +156 -0
- package/modules/auth/src/server/oidc.ts +389 -0
- package/modules/auth/src/server/provider-endpoints.ts +246 -0
- package/modules/auth/src/server/provider-host.ts +77 -0
- package/modules/auth/src/server/runtime.ts +231 -55
- package/modules/auth/src/services/auth-service-error.ts +7 -2
- package/modules/auth/src/services/auth-service.ts +948 -51
- package/modules/auth/src/services/data-classes.ts +236 -0
- package/modules/auth/src/services/database-repository.ts +853 -71
- package/modules/auth/src/services/identity-provider-service.ts +571 -0
- package/modules/auth/src/services/mail-delivery.ts +16 -16
- package/modules/auth/src/services/mail-message.ts +54 -0
- package/modules/auth/src/services/mail-port.ts +24 -0
- package/modules/auth/src/services/mail-smtp.ts +85 -0
- package/modules/auth/src/services/mfa-rotation.ts +144 -0
- package/modules/auth/src/services/migration.ts +810 -0
- package/modules/auth/src/services/password.ts +14 -0
- package/modules/auth/src/services/provider-secret-rotation.ts +169 -0
- package/modules/auth/src/services/provider-secrets.ts +136 -0
- package/modules/auth/src/services/repository.ts +321 -5
- package/modules/auth/src/services/session-sweep-runner.ts +73 -0
- package/modules/auth/src/services/settings-store.ts +10 -83
- package/modules/auth/src/services/totp.ts +88 -62
- package/modules/auth/src/services/validation.ts +194 -7
- package/modules/auth/src/settings.ts +18 -0
- package/modules/auth/translations/en.json +84 -1
- package/modules/auth/translations/pl.json +84 -1
- package/modules/automations/migrations/0005_secret_rotation_inventory.down.sql +1 -0
- package/modules/automations/migrations/0005_secret_rotation_inventory.up.sql +6 -0
- package/modules/automations/migrations/0006_automations_list_sort_indexes.down.sql +4 -0
- package/modules/automations/migrations/0006_automations_list_sort_indexes.up.sql +11 -0
- package/modules/automations/module.json +24 -6
- package/modules/automations/package.json +4 -1
- package/modules/automations/spec/module.yaml +81 -7
- package/modules/automations/src/api/endpoints.ts +202 -28
- package/modules/automations/src/cli/commands.json +17 -0
- package/modules/automations/src/cli/index.ts +114 -0
- package/modules/automations/src/client/AutomationScheduleForm.tsrx +77 -19
- package/modules/automations/src/client/AutomationSchedulesView.tsrx +144 -40
- package/modules/automations/src/client/AutomationTriggersView.tsrx +131 -32
- package/modules/automations/src/client/api.ts +62 -19
- package/modules/automations/src/client/presentation.ts +20 -2
- package/modules/automations/src/client/state.ts +84 -0
- package/modules/automations/src/domain/cadence.ts +99 -3
- package/modules/automations/src/domain/cron.ts +366 -0
- package/modules/automations/src/domain/time-zone.ts +61 -0
- package/modules/automations/src/platform.ts +38 -4
- package/modules/automations/src/server/index.ts +11 -0
- package/modules/automations/src/server/runtime.ts +46 -22
- package/modules/{automations-workflows-integration/src/server/adapter.ts → automations/src/server/workflow-target.ts} +13 -14
- package/modules/{automations-workflows-integration/src/server/tools.ts → automations/src/server/workflow-tools.ts} +0 -0
- package/modules/automations/src/services/data-classes.ts +62 -0
- package/modules/automations/src/services/database-repository.ts +152 -38
- package/modules/automations/src/services/migration.ts +119 -9
- package/modules/automations/src/services/repository.ts +52 -1
- package/modules/automations/src/services/schedule-runner.ts +84 -0
- package/modules/automations/src/services/schedule-service.ts +152 -26
- package/modules/automations/src/services/secret-rotation.ts +176 -0
- package/modules/automations/src/services/secret-vault.ts +68 -41
- package/modules/automations/src/services/trigger-service.ts +13 -10
- package/modules/automations/translations/en.json +15 -2
- package/modules/automations/translations/pl.json +15 -2
- package/modules/connectors/migrations/0001_connectors_core.down.sql +3 -0
- package/modules/connectors/migrations/0001_connectors_core.up.sql +72 -0
- package/modules/connectors/migrations/0002_connectors_call_keys.down.sql +3 -0
- package/modules/connectors/migrations/0002_connectors_call_keys.up.sql +18 -0
- package/modules/connectors/migrations/README.md +3 -0
- package/modules/connectors/module.json +28 -0
- package/modules/{automations-workflows-integration → connectors}/package.json +27 -26
- package/modules/connectors/spec/module.yaml +447 -0
- package/modules/connectors/src/acl/permissions.ts +6 -0
- package/modules/connectors/src/agent/tools.ts +180 -0
- package/modules/connectors/src/api/endpoints.ts +572 -0
- package/modules/connectors/src/client/ConnectorCallsView.tsrx +358 -0
- package/modules/connectors/src/client/ConnectorForm.tsrx +424 -0
- package/modules/connectors/src/client/ConnectorsView.tsrx +711 -0
- package/modules/connectors/src/client/api.ts +281 -0
- package/modules/connectors/src/client/consent.ts +48 -0
- package/modules/connectors/src/client/contribution.tsrx +37 -0
- package/modules/connectors/src/client/index.ts +22 -0
- package/modules/connectors/src/client/navigation.ts +42 -0
- package/modules/connectors/src/client/presentation.ts +38 -0
- package/modules/connectors/src/client/state.ts +175 -0
- package/modules/connectors/src/domain/calls.ts +70 -0
- package/modules/connectors/src/domain/definitions.ts +190 -0
- package/modules/connectors/src/domain/http-json.ts +68 -0
- package/modules/connectors/src/domain/types.ts +185 -0
- package/modules/connectors/src/index.ts +64 -0
- package/modules/connectors/src/platform.ts +56 -0
- package/modules/connectors/src/server/index.ts +66 -0
- package/modules/connectors/src/server/runtime.ts +163 -0
- package/modules/connectors/src/services/call-service.ts +903 -0
- package/modules/connectors/src/services/connectors-service.ts +653 -0
- package/modules/connectors/src/services/credential-vault.ts +188 -0
- package/modules/connectors/src/services/data-classes.ts +158 -0
- package/modules/connectors/src/services/database-repository.ts +897 -0
- package/modules/connectors/src/services/egress.ts +261 -0
- package/modules/connectors/src/services/index.ts +19 -0
- package/modules/connectors/src/services/migration.ts +166 -0
- package/modules/connectors/src/services/repository.ts +175 -0
- package/modules/connectors/src/services/service-error.ts +46 -0
- package/modules/connectors/src/settings.ts +69 -0
- package/modules/connectors/translations/en.json +191 -0
- package/modules/connectors/translations/pl.json +191 -0
- package/modules/directory/migrations/0001_directory_core.down.sql +5 -0
- package/modules/directory/migrations/0001_directory_core.up.sql +111 -0
- package/modules/directory/migrations/README.md +3 -0
- package/modules/directory/module.json +27 -0
- package/modules/directory/package.json +46 -0
- package/modules/directory/spec/module.yaml +351 -0
- package/modules/directory/src/acl/permissions.ts +7 -0
- package/modules/directory/src/api/endpoints.ts +478 -0
- package/modules/directory/src/api/scim-endpoints.ts +516 -0
- package/modules/directory/src/client/GroupMappingsView.tsrx +430 -0
- package/modules/directory/src/client/ProvisioningLogView.tsrx +248 -0
- package/modules/directory/src/client/ScimTokensView.tsrx +587 -0
- package/modules/directory/src/client/api.ts +222 -0
- package/modules/directory/src/client/contribution.tsrx +46 -0
- package/modules/directory/src/client/index.ts +22 -0
- package/modules/directory/src/client/navigation.ts +57 -0
- package/modules/directory/src/client/presentation.ts +143 -0
- package/modules/directory/src/client/state.ts +173 -0
- package/modules/directory/src/domain/scim.ts +346 -0
- package/modules/directory/src/domain/types.ts +166 -0
- package/modules/directory/src/index.ts +44 -0
- package/modules/directory/src/platform.ts +43 -0
- package/modules/directory/src/server/index.ts +17 -0
- package/modules/directory/src/server/runtime.ts +124 -0
- package/modules/directory/src/services/auth-port.ts +127 -0
- package/modules/directory/src/services/data-classes.ts +41 -0
- package/modules/directory/src/services/database-repository.ts +1067 -0
- package/modules/directory/src/services/directory-service.ts +311 -0
- package/modules/directory/src/services/index.ts +43 -0
- package/modules/directory/src/services/migration.ts +146 -0
- package/modules/directory/src/services/provisioning-service.ts +1420 -0
- package/modules/directory/src/services/rate-limiter.ts +103 -0
- package/modules/directory/src/services/repository.ts +208 -0
- package/modules/directory/src/services/service-error.ts +42 -0
- package/modules/directory/src/services/token-service.ts +215 -0
- package/modules/directory/src/settings.ts +86 -0
- package/modules/directory/translations/en.json +185 -0
- package/modules/directory/translations/pl.json +185 -0
- package/modules/documents/migrations/0001_documents_core.down.sql +1 -0
- package/modules/documents/migrations/0001_documents_core.up.sql +35 -0
- package/modules/documents/migrations/0002_documents_files_page.down.sql +1 -0
- package/modules/documents/migrations/0002_documents_files_page.up.sql +6 -0
- package/modules/documents/migrations/README.md +3 -0
- package/modules/documents/module.json +28 -0
- package/modules/documents/package.json +49 -0
- package/modules/documents/spec/module.yaml +247 -0
- package/modules/documents/src/acl/permissions.ts +6 -0
- package/modules/documents/src/api/endpoints.ts +401 -0
- package/modules/documents/src/client/DocumentUploader.tsrx +148 -0
- package/modules/documents/src/client/DocumentsView.tsrx +540 -0
- package/modules/documents/src/client/api.ts +209 -0
- package/modules/documents/src/client/contribution.tsrx +29 -0
- package/modules/documents/src/client/download.ts +70 -0
- package/modules/documents/src/client/index.ts +22 -0
- package/modules/documents/src/client/navigation.ts +25 -0
- package/modules/documents/src/client/presentation.ts +110 -0
- package/modules/documents/src/client/state.ts +117 -0
- package/modules/documents/src/domain/attachments.ts +84 -0
- package/modules/documents/src/domain/types.ts +80 -0
- package/modules/documents/src/index.ts +46 -0
- package/modules/documents/src/platform.ts +61 -0
- package/modules/documents/src/server/index.ts +30 -0
- package/modules/documents/src/server/runtime.ts +107 -0
- package/modules/documents/src/services/attachments.ts +39 -0
- package/modules/documents/src/services/data-classes.ts +25 -0
- package/modules/documents/src/services/database-repository.ts +259 -0
- package/modules/documents/src/services/documents-service.ts +586 -0
- package/modules/documents/src/services/index.ts +18 -0
- package/modules/documents/src/services/migration.ts +82 -0
- package/modules/documents/src/services/repository.ts +48 -0
- package/modules/documents/src/settings.ts +107 -0
- package/modules/documents/translations/en.json +111 -0
- package/modules/documents/translations/pl.json +111 -0
- package/modules/exports/migrations/0001_exports_core.down.sql +2 -0
- package/modules/exports/migrations/0001_exports_core.up.sql +28 -0
- package/modules/exports/migrations/0002_exports_job_routing_role.down.sql +4 -0
- package/modules/exports/migrations/0002_exports_job_routing_role.up.sql +21 -0
- package/modules/exports/migrations/README.md +3 -0
- package/modules/exports/module.json +28 -0
- package/modules/exports/package.json +44 -0
- package/modules/exports/spec/module.yaml +229 -0
- package/modules/exports/src/acl/permissions.ts +6 -0
- package/modules/exports/src/api/endpoints.ts +211 -0
- package/modules/exports/src/client/ExportsView.tsrx +327 -0
- package/modules/exports/src/client/api.ts +133 -0
- package/modules/exports/src/client/contribution.tsrx +31 -0
- package/modules/exports/src/client/index.ts +20 -0
- package/modules/exports/src/client/navigation.ts +25 -0
- package/modules/exports/src/client/presentation.ts +53 -0
- package/modules/exports/src/client/state.ts +56 -0
- package/modules/exports/src/domain/lists.ts +29 -0
- package/modules/exports/src/domain/types.ts +120 -0
- package/modules/exports/src/index.ts +41 -0
- package/modules/exports/src/platform.ts +80 -0
- package/modules/exports/src/server/index.ts +51 -0
- package/modules/exports/src/server/runtime.ts +160 -0
- package/modules/exports/src/services/data-classes.ts +56 -0
- package/modules/exports/src/services/database-repository.ts +405 -0
- package/modules/exports/src/services/export-runner.ts +123 -0
- package/modules/exports/src/services/export-service.ts +356 -0
- package/modules/exports/src/services/index.ts +6 -0
- package/modules/exports/src/services/list-registry.ts +105 -0
- package/modules/exports/src/services/migration.ts +89 -0
- package/modules/exports/src/services/repository.ts +97 -0
- package/modules/exports/src/settings.ts +70 -0
- package/modules/exports/translations/en.json +69 -0
- package/modules/exports/translations/pl.json +69 -0
- package/modules/import/migrations/0001_import_core.down.sql +6 -0
- package/modules/import/migrations/0001_import_core.up.sql +61 -0
- package/modules/import/migrations/0002_import_job_routing_role.down.sql +4 -0
- package/modules/import/migrations/0002_import_job_routing_role.up.sql +20 -0
- package/modules/import/migrations/0003_import_jobs_export_index.down.sql +1 -0
- package/modules/import/migrations/0003_import_jobs_export_index.up.sql +7 -0
- package/modules/import/migrations/0004_import_jobs_traceparent.down.sql +1 -0
- package/modules/import/migrations/0004_import_jobs_traceparent.up.sql +7 -0
- package/modules/import/migrations/README.md +3 -0
- package/modules/import/module.json +37 -0
- package/modules/import/package.json +50 -0
- package/modules/import/spec/module.yaml +335 -0
- package/modules/import/src/acl/permissions.ts +6 -0
- package/modules/import/src/api/endpoints.ts +400 -0
- package/modules/import/src/client/ImportJobDrawer.tsrx +229 -0
- package/modules/import/src/client/ImportsView.tsrx +455 -0
- package/modules/import/src/client/NewImportForm.tsrx +274 -0
- package/modules/import/src/client/api.ts +243 -0
- package/modules/import/src/client/contribution.tsrx +29 -0
- package/modules/import/src/client/index.ts +23 -0
- package/modules/import/src/client/navigation.ts +25 -0
- package/modules/import/src/client/presentation.ts +59 -0
- package/modules/import/src/client/state.ts +43 -0
- package/modules/import/src/domain/csv.ts +258 -0
- package/modules/import/src/domain/ports.ts +157 -0
- package/modules/import/src/domain/types.ts +179 -0
- package/modules/import/src/index.ts +58 -0
- package/modules/import/src/platform.ts +60 -0
- package/modules/import/src/server/index.ts +49 -0
- package/modules/import/src/server/runtime.ts +158 -0
- package/modules/import/src/services/csv-source.ts +121 -0
- package/modules/import/src/services/data-classes.ts +63 -0
- package/modules/import/src/services/database-repository.ts +780 -0
- package/modules/import/src/services/import-runner.ts +127 -0
- package/modules/import/src/services/import-service.ts +872 -0
- package/modules/import/src/services/index.ts +6 -0
- package/modules/import/src/services/migration.ts +156 -0
- package/modules/import/src/services/port-registry.ts +158 -0
- package/modules/import/src/services/repository.ts +147 -0
- package/modules/import/src/settings.ts +70 -0
- package/modules/import/translations/en.json +175 -0
- package/modules/import/translations/pl.json +175 -0
- package/modules/metering/migrations/0001_metering_core.down.sql +6 -0
- package/modules/metering/migrations/0001_metering_core.up.sql +119 -0
- package/modules/metering/migrations/0002_metering_bucket_export.down.sql +3 -0
- package/modules/metering/migrations/0002_metering_bucket_export.up.sql +5 -0
- package/modules/metering/migrations/README.md +3 -0
- package/modules/metering/module.json +46 -0
- package/modules/metering/package.json +50 -0
- package/modules/metering/spec/module.yaml +269 -0
- package/modules/metering/src/acl/permissions.ts +5 -0
- package/modules/metering/src/api/endpoints.ts +104 -0
- package/modules/metering/src/cli/commands.json +28 -0
- package/modules/metering/src/cli/index.ts +246 -0
- package/modules/metering/src/client/LimitsView.tsrx +170 -0
- package/modules/metering/src/client/UsageSummaryWidget.tsrx +63 -0
- package/modules/metering/src/client/UsageView.tsrx +205 -0
- package/modules/metering/src/client/api.ts +91 -0
- package/modules/metering/src/client/contribution.tsrx +42 -0
- package/modules/metering/src/client/index.ts +26 -0
- package/modules/metering/src/client/navigation.ts +54 -0
- package/modules/metering/src/client/presentation.ts +63 -0
- package/modules/metering/src/client/state.ts +31 -0
- package/modules/metering/src/domain/meters.ts +100 -0
- package/modules/metering/src/domain/types.ts +71 -0
- package/modules/metering/src/index.ts +51 -0
- package/modules/metering/src/platform.ts +84 -0
- package/modules/metering/src/server/index.ts +40 -0
- package/modules/metering/src/server/runtime.ts +165 -0
- package/modules/metering/src/services/data-classes.ts +34 -0
- package/modules/metering/src/services/database-repository.ts +574 -0
- package/modules/metering/src/services/index.ts +9 -0
- package/modules/metering/src/services/meter-registry.ts +145 -0
- package/modules/metering/src/services/metering-service.ts +441 -0
- package/modules/metering/src/services/migration.ts +183 -0
- package/modules/metering/src/services/notifications.ts +75 -0
- package/modules/metering/src/services/reports.ts +105 -0
- package/modules/metering/src/services/repository.ts +132 -0
- package/modules/metering/src/services/service-error.ts +46 -0
- package/modules/metering/src/settings.ts +47 -0
- package/modules/metering/translations/en.json +68 -0
- package/modules/metering/translations/pl.json +68 -0
- package/modules/notifications/migrations/0001_notifications_core.down.sql +1 -0
- package/modules/notifications/migrations/0001_notifications_core.up.sql +26 -0
- package/modules/notifications/migrations/0002_notifications_preferences.down.sql +1 -0
- package/modules/notifications/migrations/0002_notifications_preferences.up.sql +17 -0
- package/modules/notifications/migrations/0003_notifications_webhook_subscriptions.down.sql +1 -0
- package/modules/notifications/migrations/0003_notifications_webhook_subscriptions.up.sql +30 -0
- package/modules/notifications/migrations/0004_notifications_deliveries.down.sql +1 -0
- package/modules/notifications/migrations/0004_notifications_deliveries.up.sql +35 -0
- package/modules/notifications/migrations/0005_notifications_delivery_routing_role.down.sql +2 -0
- package/modules/notifications/migrations/0005_notifications_delivery_routing_role.up.sql +17 -0
- package/modules/notifications/migrations/0006_notifications_delivery_title.down.sql +1 -0
- package/modules/notifications/migrations/0006_notifications_delivery_title.up.sql +11 -0
- package/modules/notifications/migrations/0007_notifications_secret_rotation_inventory.down.sql +2 -0
- package/modules/notifications/migrations/0007_notifications_secret_rotation_inventory.up.sql +19 -0
- package/modules/notifications/migrations/0008_notifications_delivery_claim.down.sql +8 -0
- package/modules/notifications/migrations/0008_notifications_delivery_claim.up.sql +19 -0
- package/modules/notifications/migrations/0009_notifications_kind_approvals.down.sql +16 -0
- package/modules/notifications/migrations/0009_notifications_kind_approvals.up.sql +18 -0
- package/modules/notifications/migrations/0010_notifications_kind_meter_threshold.down.sql +16 -0
- package/modules/notifications/migrations/0010_notifications_kind_meter_threshold.up.sql +18 -0
- package/modules/notifications/migrations/0011_notifications_retention_keyset.down.sql +5 -0
- package/modules/notifications/migrations/0011_notifications_retention_keyset.up.sql +15 -0
- package/modules/notifications/migrations/0012_notifications_email_channel.down.sql +12 -0
- package/modules/notifications/migrations/0012_notifications_email_channel.up.sql +38 -0
- package/modules/notifications/migrations/0013_notifications_list_pages.down.sql +5 -0
- package/modules/notifications/migrations/0013_notifications_list_pages.up.sql +13 -0
- package/modules/notifications/migrations/README.md +3 -0
- package/modules/notifications/module.json +32 -0
- package/modules/notifications/package.json +49 -0
- package/modules/notifications/spec/module.yaml +718 -0
- package/modules/notifications/src/acl/permissions.ts +11 -0
- package/modules/notifications/src/api/endpoints.ts +814 -0
- package/modules/notifications/src/cli/commands.json +17 -0
- package/modules/notifications/src/cli/index.ts +126 -0
- package/modules/notifications/src/client/DeliveriesView.tsrx +483 -0
- package/modules/notifications/src/client/FactList.tsrx +24 -0
- package/modules/notifications/src/client/NotificationPreferencesView.tsrx +240 -0
- package/modules/notifications/src/client/NotificationsInboxView.tsrx +592 -0
- package/modules/notifications/src/client/UnreadCountWidget.tsrx +62 -0
- package/modules/notifications/src/client/WebhookForm.tsrx +297 -0
- package/modules/notifications/src/client/WebhooksView.tsrx +637 -0
- package/modules/notifications/src/client/api.ts +382 -0
- package/modules/notifications/src/client/contribution.tsrx +83 -0
- package/modules/notifications/src/client/inbox.ts +41 -0
- package/modules/notifications/src/client/index.ts +29 -0
- package/modules/notifications/src/client/navigation.ts +92 -0
- package/modules/notifications/src/client/notifications.css +70 -0
- package/modules/notifications/src/client/presentation.ts +81 -0
- package/modules/notifications/src/client/state.ts +246 -0
- package/modules/notifications/src/client/unread-count.ts +26 -0
- package/modules/notifications/src/domain/locale.ts +47 -0
- package/modules/notifications/src/domain/publish.ts +46 -0
- package/modules/notifications/src/domain/types.ts +186 -0
- package/modules/notifications/src/index.ts +62 -0
- package/modules/notifications/src/platform.ts +85 -0
- package/modules/notifications/src/server/index.ts +82 -0
- package/modules/notifications/src/server/runtime.ts +251 -0
- package/modules/notifications/src/services/data-classes.ts +139 -0
- package/modules/notifications/src/services/database-repository.ts +1334 -0
- package/modules/notifications/src/services/delivery-payload.ts +93 -0
- package/modules/notifications/src/services/delivery-runner.ts +170 -0
- package/modules/notifications/src/services/delivery-service.ts +811 -0
- package/modules/notifications/src/services/egress.ts +239 -0
- package/modules/notifications/src/services/email-channel.ts +93 -0
- package/modules/notifications/src/services/index.ts +23 -0
- package/modules/notifications/src/services/migration.ts +572 -0
- package/modules/notifications/src/services/notifications-service.ts +297 -0
- package/modules/notifications/src/services/paging.ts +60 -0
- package/modules/notifications/src/services/publish-service.ts +133 -0
- package/modules/notifications/src/services/repository.ts +342 -0
- package/modules/notifications/src/services/secret-rotation.ts +177 -0
- package/modules/notifications/src/services/secret-vault.ts +168 -0
- package/modules/notifications/src/services/service-error.ts +67 -0
- package/modules/notifications/src/services/signature.ts +81 -0
- package/modules/notifications/src/services/webhook-service.ts +307 -0
- package/modules/notifications/src/settings.ts +130 -0
- package/modules/notifications/translations/en.json +255 -0
- package/modules/notifications/translations/pl.json +255 -0
- package/modules/profile/module.json +3 -3
- package/modules/profile/package.json +1 -1
- package/modules/profile/spec/module.yaml +3 -3
- package/modules/profile/src/services/database-repository.ts +3 -13
- package/modules/reports/module.json +28 -0
- package/modules/reports/package.json +42 -0
- package/modules/reports/spec/module.yaml +231 -0
- package/modules/reports/src/acl/permissions.ts +5 -0
- package/modules/reports/src/api/endpoints.ts +72 -0
- package/modules/reports/src/client/ReportsSummaryWidget.tsrx +52 -0
- package/modules/reports/src/client/ReportsView.tsrx +246 -0
- package/modules/reports/src/client/api.ts +65 -0
- package/modules/reports/src/client/contribution.tsrx +36 -0
- package/modules/reports/src/client/index.ts +18 -0
- package/modules/reports/src/client/navigation.ts +39 -0
- package/modules/reports/src/client/presentation.ts +123 -0
- package/modules/reports/src/client/state.ts +28 -0
- package/modules/reports/src/domain/providers.ts +115 -0
- package/modules/reports/src/domain/types.ts +44 -0
- package/modules/reports/src/index.ts +47 -0
- package/modules/reports/src/platform.ts +37 -0
- package/modules/reports/src/server/index.ts +21 -0
- package/modules/reports/src/server/runtime.ts +40 -0
- package/modules/reports/src/services/index.ts +17 -0
- package/modules/reports/src/services/provider-registry.ts +144 -0
- package/modules/reports/src/services/range.ts +65 -0
- package/modules/reports/src/services/reports-service.ts +316 -0
- package/modules/reports/src/services/service-error.ts +26 -0
- package/modules/reports/src/settings.ts +49 -0
- package/modules/reports/translations/en.json +35 -0
- package/modules/reports/translations/pl.json +35 -0
- package/modules/sandbox/module.json +4 -4
- package/modules/sandbox/package.json +1 -1
- package/modules/sandbox/spec/module.yaml +3 -3
- package/modules/sandbox/src/services/database-repository.ts +14 -23
- package/modules/sandbox/src/services/directory.ts +16 -0
- package/modules/sandbox/src/services/sandbox-service.ts +13 -11
- package/modules/search/migrations/0001_search_core.down.sql +1 -0
- package/modules/search/migrations/0001_search_core.up.sql +22 -0
- package/modules/search/migrations/0002_search_recent_export.down.sql +3 -0
- package/modules/search/migrations/0002_search_recent_export.up.sql +5 -0
- package/modules/search/migrations/README.md +3 -0
- package/modules/search/module.json +28 -0
- package/modules/search/package.json +43 -0
- package/modules/search/spec/module.yaml +177 -0
- package/modules/search/src/acl/permissions.ts +5 -0
- package/modules/search/src/api/endpoints.ts +221 -0
- package/modules/search/src/client/SearchView.tsrx +346 -0
- package/modules/search/src/client/api.ts +157 -0
- package/modules/search/src/client/contribution.tsrx +31 -0
- package/modules/search/src/client/index.ts +17 -0
- package/modules/search/src/client/navigation.ts +97 -0
- package/modules/search/src/client/search.css +56 -0
- package/modules/search/src/client/state.ts +113 -0
- package/modules/search/src/domain/data-classes.ts +73 -0
- package/modules/search/src/domain/providers.ts +88 -0
- package/modules/search/src/domain/types.ts +56 -0
- package/modules/search/src/index.ts +46 -0
- package/modules/search/src/platform.ts +42 -0
- package/modules/search/src/server/index.ts +25 -0
- package/modules/search/src/server/runtime.ts +123 -0
- package/modules/search/src/services/database-repository.ts +163 -0
- package/modules/search/src/services/index.ts +21 -0
- package/modules/search/src/services/migration.ts +65 -0
- package/modules/search/src/services/provider-registry.ts +137 -0
- package/modules/search/src/services/repository.ts +43 -0
- package/modules/search/src/services/search-service.ts +442 -0
- package/modules/search/src/services/service-error.ts +35 -0
- package/modules/search/src/settings.ts +68 -0
- package/modules/search/translations/en.json +45 -0
- package/modules/search/translations/pl.json +45 -0
- package/modules/system/module.json +2 -2
- package/modules/system/package.json +1 -1
- package/modules/system/spec/module.yaml +30 -3
- package/modules/system/src/client/FlagsPanel.tsrx +127 -0
- package/modules/system/src/client/ModuleSettingRow.tsrx +17 -7
- package/modules/system/src/client/ModuleSettingsSection.tsrx +10 -71
- package/modules/system/src/client/ModulesView.tsrx +91 -65
- package/modules/system/src/client/flags.ts +35 -0
- package/modules/system/src/client/index.ts +8 -0
- package/modules/system/src/client/navigation.ts +8 -0
- package/modules/system/src/client/settings-state.ts +159 -0
- package/modules/system/src/client/state.ts +2 -0
- package/modules/system/src/domain/time-zone.ts +105 -0
- package/modules/system/src/index.ts +12 -0
- package/modules/system/src/platform.ts +5 -1
- package/modules/system/src/server/endpoints.ts +72 -21
- package/modules/system/src/settings.ts +28 -0
- package/modules/system/translations/en.json +17 -0
- package/modules/system/translations/pl.json +17 -0
- package/modules/users/module.json +30 -4
- package/modules/users/package.json +4 -1
- package/modules/users/spec/module.yaml +290 -7
- package/modules/users/src/api/endpoints.ts +228 -15
- package/modules/users/src/client/InviteMemberForm.tsrx +2 -2
- package/modules/users/src/client/MemberDrawer.tsrx +142 -26
- package/modules/users/src/client/UserAccountForm.tsrx +2 -2
- package/modules/users/src/client/UsersView.tsrx +432 -71
- package/modules/users/src/client/api.ts +106 -12
- package/modules/users/src/client/contribution.tsrx +5 -0
- package/modules/users/src/client/member-columns.tsrx +22 -9
- package/modules/users/src/client/state.ts +172 -7
- package/modules/users/src/domain/lists.ts +9 -0
- package/modules/users/src/index.ts +11 -0
- package/modules/users/src/platform.ts +50 -1
- package/modules/users/src/services/member-export.ts +51 -0
- package/modules/users/src/services/member-import.ts +249 -0
- package/modules/users/src/services/member-search.ts +145 -0
- package/modules/users/src/services/users-service.ts +117 -4
- package/modules/users/translations/en.json +57 -8
- package/modules/users/translations/pl.json +57 -8
- package/modules/workflows/migrations/0004_payload_rotation_inventory.up.sql +17 -0
- package/modules/workflows/migrations/0005_workflows_human_approval.up.sql +28 -0
- package/modules/workflows/migrations/0006_workflows_retention_indexes.up.sql +11 -0
- package/modules/workflows/migrations/0007_workflows_erasure_subject_indexes.up.sql +17 -0
- package/modules/workflows/migrations/0008_workflows_subject_account.up.sql +24 -0
- package/modules/workflows/migrations/0009_workflows_definition_list_indexes.up.sql +9 -0
- package/modules/workflows/module.json +34 -6
- package/modules/workflows/package.json +2 -1
- package/modules/workflows/spec/module.yaml +26 -9
- package/modules/workflows/src/api/endpoints.ts +131 -25
- package/modules/workflows/src/cli/commands.json +17 -0
- package/modules/workflows/src/cli/index.ts +114 -0
- package/modules/workflows/src/client/WorkflowExecutionHistory.tsrx +36 -27
- package/modules/workflows/src/client/WorkflowInspector.tsrx +116 -0
- package/modules/workflows/src/client/WorkflowNodePalette.tsrx +1 -0
- package/modules/workflows/src/client/WorkflowsView.tsrx +236 -99
- package/modules/workflows/src/client/api.ts +54 -34
- package/modules/workflows/src/client/canvas-model.ts +12 -0
- package/modules/workflows/src/client/state.ts +95 -0
- package/modules/workflows/src/domain/events.ts +25 -11
- package/modules/workflows/src/domain/graph.ts +135 -1
- package/modules/workflows/src/domain/types.ts +91 -4
- package/modules/workflows/src/platform.ts +12 -0
- package/modules/workflows/src/server/runtime.ts +78 -5
- package/modules/workflows/src/services/approvals.ts +62 -0
- package/modules/workflows/src/services/cursors.ts +37 -0
- package/modules/workflows/src/services/data-classes.ts +232 -0
- package/modules/workflows/src/services/database-repository.ts +660 -171
- package/modules/workflows/src/services/migration.ts +240 -0
- package/modules/workflows/src/services/notifications.ts +98 -0
- package/modules/workflows/src/services/payload-codec.ts +51 -28
- package/modules/workflows/src/services/payload-rotation.ts +171 -0
- package/modules/workflows/src/services/repository.ts +123 -8
- package/modules/workflows/src/services/simulation.ts +7 -0
- package/modules/workflows/src/services/worker.ts +446 -25
- package/modules/workflows/src/services/workflows-service.ts +264 -103
- package/modules/workflows/translations/en.json +12 -4
- package/modules/workflows/translations/pl.json +12 -4
- package/modules.json +48 -4
- package/package.json +64 -6
- package/packages/client/package.json +1 -0
- package/packages/client/src/ApplicationShell.tsrx +43 -0
- package/packages/client/src/contributions.ts +55 -0
- package/packages/client/src/i18n/locales/en.json +5 -0
- package/packages/client/src/i18n/locales/pl.json +5 -0
- package/packages/client/src/index.ts +13 -1
- package/packages/client/src/routing.ts +22 -0
- package/packages/client/src/shell/CommandPalette.tsrx +223 -11
- package/packages/client/src/shell/command-search.ts +126 -0
- package/packages/client/src/shell/command.ts +30 -0
- package/packages/client/src/shell/navigation.ts +12 -0
- package/packages/client/src/shell/palette-keys.ts +27 -0
- package/packages/client/src/shell/shell.css +7 -0
- package/packages/contracts/schemas/module-spec.schema.json +287 -1
- package/packages/contracts/schemas/module.schema.json +25 -0
- package/packages/contracts/src/index.ts +144 -1
- package/packages/database/src/backup.ts +179 -0
- package/packages/database/src/decoders.ts +25 -0
- package/packages/database/src/index.ts +17 -0
- package/packages/database/src/record-history.ts +5 -14
- package/packages/harness/src/index.ts +2 -0
- package/packages/harness/src/runtime.ts +218 -1
- package/packages/harness/src/tool-adapters.ts +19 -1
- package/packages/kernel/src/acl.ts +179 -0
- package/packages/kernel/src/capability-registry.ts +69 -2
- package/packages/kernel/src/data-class-registry.ts +354 -0
- package/packages/kernel/src/index.ts +65 -4
- package/packages/kernel/src/keyring.ts +208 -0
- package/packages/kernel/src/module-compatibility.ts +35 -4
- package/packages/kernel/src/module-registry.ts +49 -2
- package/packages/kernel/src/module-settings.ts +189 -27
- package/packages/server/package.json +2 -1
- package/packages/server/src/composition.ts +38 -0
- package/packages/server/src/endpoint.ts +104 -47
- package/packages/server/src/export/csv.ts +34 -0
- package/packages/server/src/export/definition.ts +346 -0
- package/packages/server/src/export/index.ts +61 -0
- package/packages/server/src/export/run.ts +116 -0
- package/packages/server/src/index.ts +155 -0
- package/packages/server/src/jobs/index.ts +93 -0
- package/packages/server/src/jobs/runner.ts +486 -0
- package/packages/server/src/log.ts +291 -0
- package/packages/server/src/mail/config.ts +184 -0
- package/packages/server/src/mail/contracts.ts +251 -0
- package/packages/server/src/mail/index.ts +31 -0
- package/packages/server/src/mail/port.ts +101 -0
- package/packages/server/src/mail/smtp.ts +191 -0
- package/packages/server/src/mail/template.ts +105 -0
- package/packages/server/src/metrics.ts +447 -0
- package/packages/server/src/pagination.ts +246 -0
- package/packages/server/src/trace/context.ts +103 -0
- package/packages/server/src/trace/egress.ts +66 -0
- package/packages/server/src/trace/error-sink.ts +296 -0
- package/packages/server/src/trace/exporter.ts +295 -0
- package/packages/server/src/trace/index.ts +60 -0
- package/packages/server/src/trace/job-sink.ts +172 -0
- package/packages/server/src/trace/tracer.ts +338 -0
- package/packages/server/src/web.ts +5 -1
- package/packages/storage/package.json +40 -0
- package/packages/storage/src/config.ts +189 -0
- package/packages/storage/src/content-type.ts +124 -0
- package/packages/storage/src/contracts.ts +112 -0
- package/packages/storage/src/envelope.ts +189 -0
- package/packages/storage/src/index.ts +43 -0
- package/packages/storage/src/local.ts +75 -0
- package/packages/storage/src/port.ts +251 -0
- package/packages/storage/src/read-token.ts +130 -0
- package/packages/storage/src/s3.ts +144 -0
- package/packages/storage/src/scanner.ts +22 -0
- package/packages/storage/src/sigv4.ts +104 -0
- package/packages/storage/src/store.ts +13 -0
- package/packages/ui/package.json +1 -0
- package/packages/ui/src/components/Button.tsrx +3 -0
- package/packages/ui/src/components/ConfirmDialog.tsrx +13 -2
- package/packages/ui/src/components/DateField.tsrx +92 -0
- package/packages/ui/src/components/DatePicker.tsrx +525 -0
- package/packages/ui/src/components/DateRangeField.tsrx +93 -0
- package/packages/ui/src/components/Drawer.tsrx +10 -1
- package/packages/ui/src/components/FileUpload.tsrx +158 -0
- package/packages/ui/src/components/Pagination.tsrx +130 -0
- package/packages/ui/src/components/Select.tsrx +78 -0
- package/packages/ui/src/components/Table.tsrx +498 -81
- package/packages/ui/src/components/Tabs.tsrx +53 -0
- package/packages/ui/src/components/ToastHost.tsrx +48 -0
- package/packages/ui/src/components/calendar.ts +243 -0
- package/packages/ui/src/components/date-field.ts +62 -0
- package/packages/ui/src/components/file-upload.ts +49 -0
- package/packages/ui/src/components/focus-trap.ts +62 -0
- package/packages/ui/src/components/pagination.ts +68 -0
- package/packages/ui/src/components/table-sorting.ts +49 -0
- package/packages/ui/src/components/tabs.ts +61 -0
- package/packages/ui/src/components/toast-store.ts +116 -0
- package/packages/ui/src/icons/Icon.tsrx +5 -0
- package/packages/ui/src/index.ts +45 -0
- package/packages/ui/src/styles/components.css +598 -0
- package/modules/automations-workflows-integration/module.json +0 -27
- package/modules/automations-workflows-integration/spec/module.yaml +0 -93
- package/modules/automations-workflows-integration/src/index.ts +0 -14
- package/modules/automations-workflows-integration/src/platform.ts +0 -24
- package/modules/automations-workflows-integration/src/server/index.ts +0 -11
- package/modules/automations-workflows-integration/translations/en.json +0 -21
- package/modules/automations-workflows-integration/translations/pl.json +0 -21
- package/modules/workflows/src/services/cursor-codec.ts +0 -62
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module.name": "Notifications",
|
|
3
|
+
"common.workspace": "Workspace",
|
|
4
|
+
"common.administration": "Administration",
|
|
5
|
+
"common.refresh": "Refresh",
|
|
6
|
+
"common.refreshing": "Refreshing…",
|
|
7
|
+
"common.actions": "Actions",
|
|
8
|
+
"common.filters": "Filters",
|
|
9
|
+
"common.messages": "Messages",
|
|
10
|
+
"common.close": "Close",
|
|
11
|
+
"common.saving": "Saving…",
|
|
12
|
+
"common.notYet": "Not yet",
|
|
13
|
+
"common.accessDenied": "Access denied",
|
|
14
|
+
"navigation.inbox": "Notifications",
|
|
15
|
+
"navigation.inboxDescription": "Notifications addressed to you in this workspace.",
|
|
16
|
+
"navigation.preferences": "Notification preferences",
|
|
17
|
+
"navigation.preferencesDescription": "Choose which notifications reach your inbox.",
|
|
18
|
+
"navigation.webhooks": "Webhooks",
|
|
19
|
+
"navigation.webhooksDescription": "Endpoints that receive signed workspace events.",
|
|
20
|
+
"navigation.deliveries": "Deliveries",
|
|
21
|
+
"navigation.deliveriesDescription": "Delivery attempts, failures and the dead letter.",
|
|
22
|
+
"widget.label": "Unread notifications: {count}",
|
|
23
|
+
"pagination.label": "Pages",
|
|
24
|
+
"pagination.previous": "Previous",
|
|
25
|
+
"pagination.next": "Next",
|
|
26
|
+
"pagination.size": "Rows per page",
|
|
27
|
+
"pagination.summary": "Page {page} of {pages} · {from}-{to} of {total}",
|
|
28
|
+
"pagination.keysetSummary": "Page {page} · from row {from}",
|
|
29
|
+
"inbox.title": "Inbox",
|
|
30
|
+
"inbox.description": "Notifications addressed to you in this workspace.",
|
|
31
|
+
"inbox.table.title": "Notifications",
|
|
32
|
+
"inbox.table.count": "{count} items",
|
|
33
|
+
"inbox.table.countMore": "{count} items, more pages",
|
|
34
|
+
"inbox.table.caption": "Notifications addressed to you",
|
|
35
|
+
"inbox.table.loading": "Loading notifications…",
|
|
36
|
+
"inbox.column.status": "Status",
|
|
37
|
+
"inbox.column.kind": "Kind",
|
|
38
|
+
"inbox.column.title": "Notification",
|
|
39
|
+
"inbox.column.sourceModule": "Source module",
|
|
40
|
+
"inbox.column.readAt": "Read at",
|
|
41
|
+
"inbox.filter.status": "Status",
|
|
42
|
+
"inbox.filter.statusOpen": "Unread and read",
|
|
43
|
+
"inbox.filter.kind": "Kind",
|
|
44
|
+
"inbox.filter.allKinds": "All kinds",
|
|
45
|
+
"inbox.action.markRead": "Mark read",
|
|
46
|
+
"inbox.action.markUnread": "Mark unread",
|
|
47
|
+
"inbox.action.open": "Open",
|
|
48
|
+
"inbox.action.archive": "Archive",
|
|
49
|
+
"inbox.action.markReadSelected": "Mark read",
|
|
50
|
+
"inbox.action.archiveSelected": "Archive selected",
|
|
51
|
+
"inbox.action.markReadSelectedRefused": "None of the selected notifications is unread.",
|
|
52
|
+
"inbox.action.archiveSelectedRefused": "Every selected notification is already archived.",
|
|
53
|
+
"inbox.selection.label": "Select all notifications on screen",
|
|
54
|
+
"inbox.selection.rowLabel": "Select {title}",
|
|
55
|
+
"inbox.selection.clear": "Clear selection",
|
|
56
|
+
"inbox.selection.summary": "{count} selected",
|
|
57
|
+
"inbox.archiveMany.title": "Archive the selected notifications?",
|
|
58
|
+
"inbox.archiveMany.description": "{count} notifications leave your inbox. You can still find them under the archived status.",
|
|
59
|
+
"inbox.notice.readMany": "Marked read {updated}, missing {missing}, refused {refused}.",
|
|
60
|
+
"inbox.notice.archivedMany": "Archived {updated}, missing {missing}, refused {refused}.",
|
|
61
|
+
"inbox.empty.title": "Nothing to read yet",
|
|
62
|
+
"inbox.empty.hint": "Agent runs, workflow runs and failed webhook deliveries send their notifications here.",
|
|
63
|
+
"inbox.emptyFiltered.title": "No notification matches",
|
|
64
|
+
"inbox.emptyFiltered.hint": "Change the status or the kind to widen the list.",
|
|
65
|
+
"inbox.drawer.noBody": "This notification carries no further detail.",
|
|
66
|
+
"inbox.drawer.sourceRef": "Source reference",
|
|
67
|
+
"inbox.note": "You see only the notifications addressed to you in this workspace.",
|
|
68
|
+
"inbox.denied": "You need the inbox read permission to open your notifications.",
|
|
69
|
+
"inbox.error.load": "Could not load your notifications.",
|
|
70
|
+
"inbox.error.update": "Could not change this notification.",
|
|
71
|
+
"inbox.error.updateMany": "Could not change the selected notifications.",
|
|
72
|
+
"preferences.title": "Notification preferences",
|
|
73
|
+
"preferences.description": "Choose which notifications reach your inbox in this workspace.",
|
|
74
|
+
"preferences.card.title": "Kinds",
|
|
75
|
+
"preferences.card.description": "A kind you turn off stops creating inbox items for you.",
|
|
76
|
+
"preferences.loading": "Loading preferences…",
|
|
77
|
+
"preferences.saved": "Saved",
|
|
78
|
+
"preferences.note": "Preferences apply to your own inbox. Webhook deliveries are not affected.",
|
|
79
|
+
"preferences.empty.title": "No kinds to configure",
|
|
80
|
+
"preferences.empty.hint": "This workspace publishes no notification kinds yet.",
|
|
81
|
+
"preferences.denied": "You need the inbox read permission to change your preferences.",
|
|
82
|
+
"preferences.error.load": "Could not load your preferences.",
|
|
83
|
+
"preferences.error.save": "Could not save this preference.",
|
|
84
|
+
"preferences.emailDelivery.label": "Also send by e-mail",
|
|
85
|
+
"preferences.emailDelivery.description": "Every item that reaches your inbox is also sent to your workspace address. Kinds you turned off are still not sent.",
|
|
86
|
+
"preferences.help.agent-run-completed": "An agent run you configured finished successfully.",
|
|
87
|
+
"preferences.help.agent-run-failed": "An agent run you configured failed.",
|
|
88
|
+
"preferences.help.workflow-run-completed": "A workflow run you configured finished successfully.",
|
|
89
|
+
"preferences.help.workflow-run-failed": "A workflow run you configured failed.",
|
|
90
|
+
"preferences.help.webhook-dead-letter": "A webhook delivery exhausted its attempts and reached the dead letter.",
|
|
91
|
+
"preferences.help.approval-requested": "An approval request is waiting for your decision.",
|
|
92
|
+
"preferences.help.approval-decided": "An approval you requested was decided.",
|
|
93
|
+
"preferences.help.meter-threshold": "A usage meter of this workspace reached a share of its monthly limit.",
|
|
94
|
+
"webhooks.title": "Webhooks",
|
|
95
|
+
"webhooks.description": "Endpoints of this workspace that receive signed event deliveries.",
|
|
96
|
+
"webhooks.table.title": "Subscriptions",
|
|
97
|
+
"webhooks.table.count": "{count} subscriptions",
|
|
98
|
+
"webhooks.table.countMore": "{count} subscriptions, more pages",
|
|
99
|
+
"webhooks.table.caption": "Outbound webhook subscriptions",
|
|
100
|
+
"webhooks.table.loading": "Loading subscriptions…",
|
|
101
|
+
"webhooks.table.events": "{count} event kinds",
|
|
102
|
+
"webhooks.column.name": "Name",
|
|
103
|
+
"webhooks.column.url": "URL",
|
|
104
|
+
"webhooks.column.status": "Status",
|
|
105
|
+
"webhooks.column.lastDelivery": "Last delivery",
|
|
106
|
+
"webhooks.column.fingerprint": "Secret fingerprint",
|
|
107
|
+
"webhooks.search.label": "Search subscriptions",
|
|
108
|
+
"webhooks.search.placeholder": "Name or URL",
|
|
109
|
+
"webhooks.filter.status": "Status",
|
|
110
|
+
"webhooks.filter.allStatuses": "All statuses",
|
|
111
|
+
"webhooks.action.new": "New subscription",
|
|
112
|
+
"webhooks.action.open": "Open",
|
|
113
|
+
"webhooks.action.create": "Create subscription",
|
|
114
|
+
"webhooks.action.save": "Save changes",
|
|
115
|
+
"webhooks.action.pause": "Pause",
|
|
116
|
+
"webhooks.action.resume": "Resume",
|
|
117
|
+
"webhooks.action.disable": "Disable",
|
|
118
|
+
"webhooks.action.rotate": "Rotate secret",
|
|
119
|
+
"webhooks.action.delete": "Delete",
|
|
120
|
+
"webhooks.empty.title": "No endpoint receives events yet",
|
|
121
|
+
"webhooks.empty.hint": "Create a subscription to send signed events to your own system.",
|
|
122
|
+
"webhooks.emptyFiltered.title": "No subscription matches",
|
|
123
|
+
"webhooks.emptyFiltered.hint": "Clear the search or the status filter to see the rest.",
|
|
124
|
+
"webhooks.drawer.newTitle": "New subscription",
|
|
125
|
+
"webhooks.drawer.newSubtitle": "The signing secret is shown once, right after you create it.",
|
|
126
|
+
"webhooks.drawer.subtitle": "Subscription details, events and secret",
|
|
127
|
+
"webhooks.form.name": "Name",
|
|
128
|
+
"webhooks.form.nameHelp": "Unique inside this workspace.",
|
|
129
|
+
"webhooks.form.namePlaceholder": "Billing system",
|
|
130
|
+
"webhooks.form.url": "URL",
|
|
131
|
+
"webhooks.form.urlHelp": "An https address on a public host. Redirects are never followed.",
|
|
132
|
+
"webhooks.form.urlPlaceholder": "https://example.com/hooks/flowdular",
|
|
133
|
+
"webhooks.form.events": "Events",
|
|
134
|
+
"webhooks.form.eventsGroup": "Event kinds",
|
|
135
|
+
"webhooks.form.eventsHelp": "Only the selected kinds are delivered to this endpoint.",
|
|
136
|
+
"webhooks.form.eventsRequired": "Select at least one event kind.",
|
|
137
|
+
"webhooks.form.description": "Description",
|
|
138
|
+
"webhooks.form.descriptionHelp": "What this endpoint does with the events.",
|
|
139
|
+
"webhooks.form.descriptionPlaceholder": "Opens a ticket for every failed run.",
|
|
140
|
+
"webhooks.form.constraint": "Every request is signed with the subscription secret and times out after 10 seconds.",
|
|
141
|
+
"webhooks.record.title": "State and secret",
|
|
142
|
+
"webhooks.record.description": "The secret itself is never readable again; only its fingerprint is.",
|
|
143
|
+
"webhooks.record.created": "Created",
|
|
144
|
+
"webhooks.secret.label": "Signing secret",
|
|
145
|
+
"webhooks.secret.warning": "Copy the secret now. It is shown once and cannot be read again.",
|
|
146
|
+
"webhooks.secret.help": "Verify every request with it, the way inbound triggers are verified.",
|
|
147
|
+
"webhooks.secret.copy": "Copy",
|
|
148
|
+
"webhooks.secret.copied": "Copied to the clipboard.",
|
|
149
|
+
"webhooks.rotate.title": "Rotate the signing secret?",
|
|
150
|
+
"webhooks.rotate.description": "{name} gets a new secret and the current one stops verifying. The new secret is shown once.",
|
|
151
|
+
"webhooks.disable.title": "Disable this subscription?",
|
|
152
|
+
"webhooks.disable.description": "{name} stops receiving events and its pending deliveries are dropped. You can resume it later.",
|
|
153
|
+
"webhooks.delete.sectionTitle": "Delete subscription",
|
|
154
|
+
"webhooks.delete.title": "Delete this subscription?",
|
|
155
|
+
"webhooks.delete.description": "{name} and its pending deliveries are removed. The attempt ledger stays until retention removes it.",
|
|
156
|
+
"webhooks.delete.hint": "Deleting removes the endpoint and its secret. The ledger stays.",
|
|
157
|
+
"webhooks.delete.blocked": "Disable the subscription first; only a disabled one can be deleted.",
|
|
158
|
+
"webhooks.notice.saved": "Subscription saved.",
|
|
159
|
+
"webhooks.notice.paused": "Subscription paused.",
|
|
160
|
+
"webhooks.notice.resumed": "Subscription resumed.",
|
|
161
|
+
"webhooks.notice.disabled": "Subscription disabled.",
|
|
162
|
+
"webhooks.notice.rotated": "A new signing secret was generated.",
|
|
163
|
+
"webhooks.notice.deleted": "Subscription deleted.",
|
|
164
|
+
"webhooks.note": "Secrets are never shown again after creation and rotation.",
|
|
165
|
+
"webhooks.denied": "You need the webhook read permission to open this screen.",
|
|
166
|
+
"webhooks.error.load": "Could not load the subscriptions.",
|
|
167
|
+
"webhooks.error.save": "Could not save the subscription.",
|
|
168
|
+
"webhooks.error.action": "Could not apply the action to this subscription.",
|
|
169
|
+
"deliveries.title": "Deliveries",
|
|
170
|
+
"deliveries.description": "Every attempt to deliver an event to a subscription of this workspace.",
|
|
171
|
+
"deliveries.table.title": "Attempts",
|
|
172
|
+
"deliveries.table.count": "{count} attempts",
|
|
173
|
+
"deliveries.table.countMore": "{count} attempts, more pages",
|
|
174
|
+
"deliveries.table.caption": "Webhook delivery attempts",
|
|
175
|
+
"deliveries.table.loading": "Loading attempts…",
|
|
176
|
+
"deliveries.column.subscription": "Subscription",
|
|
177
|
+
"deliveries.column.kind": "Kind",
|
|
178
|
+
"deliveries.column.sourceRef": "Source",
|
|
179
|
+
"deliveries.column.timing": "Timing",
|
|
180
|
+
"deliveries.column.outcome": "Outcome",
|
|
181
|
+
"deliveries.column.attempt": "Attempt",
|
|
182
|
+
"deliveries.column.status": "Status",
|
|
183
|
+
"deliveries.search.label": "Search attempts",
|
|
184
|
+
"deliveries.search.placeholder": "Source reference or module",
|
|
185
|
+
"deliveries.filter.status": "Status",
|
|
186
|
+
"deliveries.filter.allStatuses": "All statuses",
|
|
187
|
+
"deliveries.filter.subscription": "Subscription",
|
|
188
|
+
"deliveries.filter.allSubscriptions": "All subscriptions",
|
|
189
|
+
"deliveries.action.replay": "Replay",
|
|
190
|
+
"deliveries.replay.title": "Replay this delivery?",
|
|
191
|
+
"deliveries.replay.description": "A fresh attempt is queued from the regenerated payload. The earlier attempts stay in the ledger.",
|
|
192
|
+
"deliveries.notice.replayed": "A new attempt was queued.",
|
|
193
|
+
"deliveries.empty.title": "No delivery attempt yet",
|
|
194
|
+
"deliveries.empty.hint": "Attempts appear here once an active subscription receives an event.",
|
|
195
|
+
"deliveries.emptyFiltered.title": "No attempt matches",
|
|
196
|
+
"deliveries.emptyFiltered.hint": "Clear the search or the filters to see the rest.",
|
|
197
|
+
"deliveries.note": "Payloads are never stored. An attempt keeps the digest, the size and the outcome.",
|
|
198
|
+
"deliveries.denied": "You need the delivery read permission to open this screen.",
|
|
199
|
+
"deliveries.error.load": "Could not load the delivery attempts.",
|
|
200
|
+
"deliveries.error.replay": "Could not replay this delivery.",
|
|
201
|
+
"deliveries.errorClass.timeout": "Timed out",
|
|
202
|
+
"deliveries.timing.completed": "Done {value}",
|
|
203
|
+
"deliveries.timing.pending": "Not completed",
|
|
204
|
+
"deliveries.errorClass.dns": "Host not resolved",
|
|
205
|
+
"deliveries.errorClass.egress-refused": "Blocked by the egress policy",
|
|
206
|
+
"deliveries.errorClass.response-4xx": "Rejected by the endpoint",
|
|
207
|
+
"deliveries.errorClass.response-5xx": "Endpoint failed",
|
|
208
|
+
"deliveries.errorClass.network": "Network error",
|
|
209
|
+
"deliveries.errorClass.mail-refused": "Refused by the mail transport",
|
|
210
|
+
"deliveries.errorClass.recipient-unknown": "No address to send to",
|
|
211
|
+
"deliveries.channel.email": "E-mail",
|
|
212
|
+
"status.unread": "Unread",
|
|
213
|
+
"status.read": "Read",
|
|
214
|
+
"status.archived": "Archived",
|
|
215
|
+
"kind.agent-run-completed": "Agent run completed",
|
|
216
|
+
"kind.agent-run-failed": "Agent run failed",
|
|
217
|
+
"kind.workflow-run-completed": "Workflow run completed",
|
|
218
|
+
"kind.workflow-run-failed": "Workflow run failed",
|
|
219
|
+
"kind.webhook-dead-letter": "Webhook dead letter",
|
|
220
|
+
"kind.approval-requested": "Approval requested",
|
|
221
|
+
"kind.approval-decided": "Approval decided",
|
|
222
|
+
"kind.meter-threshold": "Usage threshold reached",
|
|
223
|
+
"delivery.status.pending": "Pending",
|
|
224
|
+
"delivery.status.succeeded": "Succeeded",
|
|
225
|
+
"delivery.status.failed": "Failed",
|
|
226
|
+
"delivery.status.dead-letter": "Dead letter",
|
|
227
|
+
"subscription.status.active": "Active",
|
|
228
|
+
"subscription.status.paused": "Paused",
|
|
229
|
+
"subscription.status.disabled": "Disabled",
|
|
230
|
+
"error.request": "The notifications request failed.",
|
|
231
|
+
"error.code.INVALID_INPUT": "Check the values in the form and try again.",
|
|
232
|
+
"error.code.INBOX_ITEM_NOT_FOUND": "This notification is no longer in your inbox.",
|
|
233
|
+
"error.code.SUBSCRIPTION_NAME_CONFLICT": "Another subscription in this workspace already uses this name.",
|
|
234
|
+
"error.code.SUBSCRIPTION_NOT_FOUND": "This subscription no longer exists.",
|
|
235
|
+
"error.code.SUBSCRIPTION_STATE_INVALID": "The subscription cannot move to that state from its current one.",
|
|
236
|
+
"error.code.SUBSCRIPTION_NOT_DISABLED": "Disable the subscription before deleting it.",
|
|
237
|
+
"error.code.WEBHOOK_URL_INVALID": "The address is not a valid https URL.",
|
|
238
|
+
"error.code.WEBHOOK_URL_BLOCKED": "The address points into a private, loopback or reserved range.",
|
|
239
|
+
"error.code.WEBHOOK_HOST_NOT_ALLOWLISTED": "The host is not on the platform allowlist.",
|
|
240
|
+
"error.code.WEBHOOK_HOST_RESOLVES_PRIVATE": "The host resolves to a private address.",
|
|
241
|
+
"error.code.WEBHOOK_HOST_UNRESOLVED": "The host could not be resolved.",
|
|
242
|
+
"error.code.DELIVERY_NOT_FOUND": "This delivery attempt no longer exists.",
|
|
243
|
+
"error.code.DELIVERY_NOT_DEAD_LETTER": "Only a dead-lettered delivery can be replayed.",
|
|
244
|
+
"error.code.DELIVERY_REPLAY_CONFLICT": "A replay of this delivery is already queued.",
|
|
245
|
+
"settings.retentionDays.label": "Delivery retention (days)",
|
|
246
|
+
"settings.retentionDays.description": "Days a delivery attempt is kept before the delivery loop deletes it.",
|
|
247
|
+
"settings.retryMaxAttempts.label": "Maximum delivery attempts",
|
|
248
|
+
"settings.retryMaxAttempts.description": "Attempts made before a delivery moves to the dead letter.",
|
|
249
|
+
"settings.retryMaxBackoffMinutes.label": "Maximum retry backoff (minutes)",
|
|
250
|
+
"settings.retryMaxBackoffMinutes.description": "Upper bound of the exponential wait between delivery attempts.",
|
|
251
|
+
"settings.egressAllowlist.label": "Webhook host allowlist",
|
|
252
|
+
"settings.egressAllowlist.description": "Comma-separated host names a subscription URL may use. Empty means any public host that passes the private-range block.",
|
|
253
|
+
"settings.pollIntervalSeconds.label": "Delivery poll interval (seconds)",
|
|
254
|
+
"settings.pollIntervalSeconds.description": "How often the delivery loop looks for due attempts. Applied when the notifications runtime starts."
|
|
255
|
+
}
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module.name": "Powiadomienia",
|
|
3
|
+
"common.workspace": "Obszar roboczy",
|
|
4
|
+
"common.administration": "Administracja",
|
|
5
|
+
"common.refresh": "Odśwież",
|
|
6
|
+
"common.refreshing": "Odświeżanie…",
|
|
7
|
+
"common.actions": "Akcje",
|
|
8
|
+
"common.filters": "Filtry",
|
|
9
|
+
"common.messages": "Komunikaty",
|
|
10
|
+
"common.close": "Zamknij",
|
|
11
|
+
"common.saving": "Zapisywanie…",
|
|
12
|
+
"common.notYet": "Jeszcze nie",
|
|
13
|
+
"common.accessDenied": "Brak dostępu",
|
|
14
|
+
"navigation.inbox": "Powiadomienia",
|
|
15
|
+
"navigation.inboxDescription": "Powiadomienia zaadresowane do Ciebie w tym obszarze roboczym.",
|
|
16
|
+
"navigation.preferences": "Ustawienia powiadomień",
|
|
17
|
+
"navigation.preferencesDescription": "Wybierz, które powiadomienia trafiają do Twojej skrzynki.",
|
|
18
|
+
"navigation.webhooks": "Webhooki",
|
|
19
|
+
"navigation.webhooksDescription": "Adresy odbierające podpisane zdarzenia obszaru roboczego.",
|
|
20
|
+
"navigation.deliveries": "Dostarczenia",
|
|
21
|
+
"navigation.deliveriesDescription": "Próby dostarczenia, błędy i martwe listy.",
|
|
22
|
+
"widget.label": "Nieprzeczytane powiadomienia: {count}",
|
|
23
|
+
"pagination.label": "Strony",
|
|
24
|
+
"pagination.previous": "Poprzednia",
|
|
25
|
+
"pagination.next": "Następna",
|
|
26
|
+
"pagination.size": "Wierszy na stronie",
|
|
27
|
+
"pagination.summary": "Strona {page} z {pages} · {from}-{to} z {total}",
|
|
28
|
+
"pagination.keysetSummary": "Strona {page} · od wiersza {from}",
|
|
29
|
+
"inbox.title": "Skrzynka",
|
|
30
|
+
"inbox.description": "Powiadomienia zaadresowane do Ciebie w tym obszarze roboczym.",
|
|
31
|
+
"inbox.table.title": "Powiadomienia",
|
|
32
|
+
"inbox.table.count": "Elementów: {count}",
|
|
33
|
+
"inbox.table.countMore": "Elementów: {count}, są kolejne strony",
|
|
34
|
+
"inbox.table.caption": "Powiadomienia zaadresowane do Ciebie",
|
|
35
|
+
"inbox.table.loading": "Wczytywanie powiadomień…",
|
|
36
|
+
"inbox.column.status": "Status",
|
|
37
|
+
"inbox.column.kind": "Rodzaj",
|
|
38
|
+
"inbox.column.title": "Powiadomienie",
|
|
39
|
+
"inbox.column.sourceModule": "Moduł źródłowy",
|
|
40
|
+
"inbox.column.readAt": "Przeczytano",
|
|
41
|
+
"inbox.filter.status": "Status",
|
|
42
|
+
"inbox.filter.statusOpen": "Nieprzeczytane i przeczytane",
|
|
43
|
+
"inbox.filter.kind": "Rodzaj",
|
|
44
|
+
"inbox.filter.allKinds": "Wszystkie rodzaje",
|
|
45
|
+
"inbox.action.markRead": "Oznacz jako przeczytane",
|
|
46
|
+
"inbox.action.markUnread": "Oznacz jako nieprzeczytane",
|
|
47
|
+
"inbox.action.open": "Otwórz",
|
|
48
|
+
"inbox.action.archive": "Archiwizuj",
|
|
49
|
+
"inbox.action.markReadSelected": "Oznacz jako przeczytane",
|
|
50
|
+
"inbox.action.archiveSelected": "Archiwizuj zaznaczone",
|
|
51
|
+
"inbox.action.markReadSelectedRefused": "Żadne z zaznaczonych powiadomień nie jest nieprzeczytane.",
|
|
52
|
+
"inbox.action.archiveSelectedRefused": "Wszystkie zaznaczone powiadomienia są już zarchiwizowane.",
|
|
53
|
+
"inbox.selection.label": "Zaznacz wszystkie powiadomienia na ekranie",
|
|
54
|
+
"inbox.selection.rowLabel": "Zaznacz {title}",
|
|
55
|
+
"inbox.selection.clear": "Wyczyść zaznaczenie",
|
|
56
|
+
"inbox.selection.summary": "Zaznaczono: {count}",
|
|
57
|
+
"inbox.archiveMany.title": "Zarchiwizować zaznaczone powiadomienia?",
|
|
58
|
+
"inbox.archiveMany.description": "Powiadomienia ({count}) znikną ze skrzynki. Nadal znajdziesz je pod statusem zarchiwizowane.",
|
|
59
|
+
"inbox.notice.readMany": "Oznaczono jako przeczytane: {updated}, brakujące: {missing}, odrzucone: {refused}.",
|
|
60
|
+
"inbox.notice.archivedMany": "Zarchiwizowano: {updated}, brakujące: {missing}, odrzucone: {refused}.",
|
|
61
|
+
"inbox.empty.title": "Nie masz jeszcze powiadomień",
|
|
62
|
+
"inbox.empty.hint": "Uruchomienia agentów, przepływów i nieudane dostarczenia webhooków trafiają tutaj.",
|
|
63
|
+
"inbox.emptyFiltered.title": "Brak pasujących powiadomień",
|
|
64
|
+
"inbox.emptyFiltered.hint": "Zmień status lub rodzaj, aby zobaczyć więcej pozycji.",
|
|
65
|
+
"inbox.drawer.noBody": "To powiadomienie nie zawiera dodatkowych szczegółów.",
|
|
66
|
+
"inbox.drawer.sourceRef": "Odwołanie źródłowe",
|
|
67
|
+
"inbox.note": "Widzisz wyłącznie powiadomienia zaadresowane do Ciebie w tym obszarze roboczym.",
|
|
68
|
+
"inbox.denied": "Do otwarcia powiadomień potrzebujesz uprawnienia odczytu skrzynki.",
|
|
69
|
+
"inbox.error.load": "Nie udało się wczytać Twoich powiadomień.",
|
|
70
|
+
"inbox.error.update": "Nie udało się zmienić tego powiadomienia.",
|
|
71
|
+
"inbox.error.updateMany": "Nie udało się zmienić zaznaczonych powiadomień.",
|
|
72
|
+
"preferences.title": "Ustawienia powiadomień",
|
|
73
|
+
"preferences.description": "Wybierz, które powiadomienia trafiają do Twojej skrzynki w tym obszarze roboczym.",
|
|
74
|
+
"preferences.card.title": "Rodzaje",
|
|
75
|
+
"preferences.card.description": "Wyłączony rodzaj przestaje tworzyć pozycje w Twojej skrzynce.",
|
|
76
|
+
"preferences.loading": "Wczytywanie ustawień…",
|
|
77
|
+
"preferences.saved": "Zapisano",
|
|
78
|
+
"preferences.note": "Ustawienia dotyczą Twojej skrzynki. Dostarczenia webhooków pozostają bez zmian.",
|
|
79
|
+
"preferences.empty.title": "Brak rodzajów do skonfigurowania",
|
|
80
|
+
"preferences.empty.hint": "Ten obszar roboczy nie publikuje jeszcze żadnych rodzajów powiadomień.",
|
|
81
|
+
"preferences.denied": "Do zmiany ustawień potrzebujesz uprawnienia odczytu skrzynki.",
|
|
82
|
+
"preferences.error.load": "Nie udało się wczytać Twoich ustawień.",
|
|
83
|
+
"preferences.error.save": "Nie udało się zapisać tego ustawienia.",
|
|
84
|
+
"preferences.emailDelivery.label": "Wysyłaj także e-mailem",
|
|
85
|
+
"preferences.emailDelivery.description": "Każda pozycja, która trafia do Twojej skrzynki, zostanie też wysłana na Twój adres w tym obszarze roboczym. Wyłączone rodzaje nadal nie są wysyłane.",
|
|
86
|
+
"preferences.help.agent-run-completed": "Skonfigurowane przez Ciebie uruchomienie agenta zakończyło się powodzeniem.",
|
|
87
|
+
"preferences.help.agent-run-failed": "Skonfigurowane przez Ciebie uruchomienie agenta nie powiodło się.",
|
|
88
|
+
"preferences.help.workflow-run-completed": "Skonfigurowane przez Ciebie uruchomienie przepływu zakończyło się powodzeniem.",
|
|
89
|
+
"preferences.help.workflow-run-failed": "Skonfigurowane przez Ciebie uruchomienie przepływu nie powiodło się.",
|
|
90
|
+
"preferences.help.webhook-dead-letter": "Dostarczenie webhooka wyczerpało próby i trafiło do martwych listów.",
|
|
91
|
+
"preferences.help.approval-requested": "Wniosek o akceptację czeka na Twoją decyzję.",
|
|
92
|
+
"preferences.help.approval-decided": "Zgłoszony przez Ciebie wniosek o akceptację został rozstrzygnięty.",
|
|
93
|
+
"preferences.help.meter-threshold": "Licznik zużycia tego obszaru roboczego osiągnął część swojego miesięcznego limitu.",
|
|
94
|
+
"webhooks.title": "Webhooki",
|
|
95
|
+
"webhooks.description": "Adresy tego obszaru roboczego, które odbierają podpisane dostarczenia zdarzeń.",
|
|
96
|
+
"webhooks.table.title": "Subskrypcje",
|
|
97
|
+
"webhooks.table.count": "Subskrypcji: {count}",
|
|
98
|
+
"webhooks.table.countMore": "Subskrypcji: {count}, są kolejne strony",
|
|
99
|
+
"webhooks.table.caption": "Wychodzące subskrypcje webhooków",
|
|
100
|
+
"webhooks.table.loading": "Wczytywanie subskrypcji…",
|
|
101
|
+
"webhooks.table.events": "Rodzajów zdarzeń: {count}",
|
|
102
|
+
"webhooks.column.name": "Nazwa",
|
|
103
|
+
"webhooks.column.url": "Adres",
|
|
104
|
+
"webhooks.column.status": "Status",
|
|
105
|
+
"webhooks.column.lastDelivery": "Ostatnie dostarczenie",
|
|
106
|
+
"webhooks.column.fingerprint": "Odcisk sekretu",
|
|
107
|
+
"webhooks.search.label": "Szukaj subskrypcji",
|
|
108
|
+
"webhooks.search.placeholder": "Nazwa lub adres",
|
|
109
|
+
"webhooks.filter.status": "Status",
|
|
110
|
+
"webhooks.filter.allStatuses": "Wszystkie statusy",
|
|
111
|
+
"webhooks.action.new": "Nowa subskrypcja",
|
|
112
|
+
"webhooks.action.open": "Otwórz",
|
|
113
|
+
"webhooks.action.create": "Utwórz subskrypcję",
|
|
114
|
+
"webhooks.action.save": "Zapisz zmiany",
|
|
115
|
+
"webhooks.action.pause": "Wstrzymaj",
|
|
116
|
+
"webhooks.action.resume": "Wznów",
|
|
117
|
+
"webhooks.action.disable": "Wyłącz",
|
|
118
|
+
"webhooks.action.rotate": "Wymień sekret",
|
|
119
|
+
"webhooks.action.delete": "Usuń",
|
|
120
|
+
"webhooks.empty.title": "Żaden adres nie odbiera jeszcze zdarzeń",
|
|
121
|
+
"webhooks.empty.hint": "Utwórz subskrypcję, aby wysyłać podpisane zdarzenia do własnego systemu.",
|
|
122
|
+
"webhooks.emptyFiltered.title": "Brak pasujących subskrypcji",
|
|
123
|
+
"webhooks.emptyFiltered.hint": "Wyczyść wyszukiwanie lub filtr statusu, aby zobaczyć pozostałe.",
|
|
124
|
+
"webhooks.drawer.newTitle": "Nowa subskrypcja",
|
|
125
|
+
"webhooks.drawer.newSubtitle": "Sekret podpisujący pokazujemy raz, zaraz po utworzeniu.",
|
|
126
|
+
"webhooks.drawer.subtitle": "Dane subskrypcji, zdarzenia i sekret",
|
|
127
|
+
"webhooks.form.name": "Nazwa",
|
|
128
|
+
"webhooks.form.nameHelp": "Unikalna w tym obszarze roboczym.",
|
|
129
|
+
"webhooks.form.namePlaceholder": "System rozliczeń",
|
|
130
|
+
"webhooks.form.url": "Adres",
|
|
131
|
+
"webhooks.form.urlHelp": "Adres https na publicznym hoście. Przekierowania nie są śledzone.",
|
|
132
|
+
"webhooks.form.urlPlaceholder": "https://example.com/hooks/flowdular",
|
|
133
|
+
"webhooks.form.events": "Zdarzenia",
|
|
134
|
+
"webhooks.form.eventsGroup": "Rodzaje zdarzeń",
|
|
135
|
+
"webhooks.form.eventsHelp": "Do tego adresu trafiają wyłącznie zaznaczone rodzaje.",
|
|
136
|
+
"webhooks.form.eventsRequired": "Zaznacz co najmniej jeden rodzaj zdarzenia.",
|
|
137
|
+
"webhooks.form.description": "Opis",
|
|
138
|
+
"webhooks.form.descriptionHelp": "Co ten adres robi z odebranymi zdarzeniami.",
|
|
139
|
+
"webhooks.form.descriptionPlaceholder": "Zakłada zgłoszenie dla każdego nieudanego uruchomienia.",
|
|
140
|
+
"webhooks.form.constraint": "Każde żądanie jest podpisane sekretem subskrypcji i przerywane po 10 sekundach.",
|
|
141
|
+
"webhooks.record.title": "Stan i sekret",
|
|
142
|
+
"webhooks.record.description": "Samego sekretu nie da się odczytać ponownie, widoczny jest tylko jego odcisk.",
|
|
143
|
+
"webhooks.record.created": "Utworzono",
|
|
144
|
+
"webhooks.secret.label": "Sekret podpisujący",
|
|
145
|
+
"webhooks.secret.warning": "Skopiuj sekret teraz. Pokazujemy go raz i nie da się go odczytać ponownie.",
|
|
146
|
+
"webhooks.secret.help": "Weryfikuj nim każde żądanie, tak samo jak wyzwalacze przychodzące.",
|
|
147
|
+
"webhooks.secret.copy": "Kopiuj",
|
|
148
|
+
"webhooks.secret.copied": "Skopiowano do schowka.",
|
|
149
|
+
"webhooks.rotate.title": "Wymienić sekret podpisujący?",
|
|
150
|
+
"webhooks.rotate.description": "Subskrypcja {name} otrzyma nowy sekret, a obecny przestanie weryfikować żądania. Nowy sekret pokażemy raz.",
|
|
151
|
+
"webhooks.disable.title": "Wyłączyć tę subskrypcję?",
|
|
152
|
+
"webhooks.disable.description": "Subskrypcja {name} przestanie odbierać zdarzenia, a jej oczekujące dostarczenia zostaną odrzucone. Możesz ją później wznowić.",
|
|
153
|
+
"webhooks.delete.sectionTitle": "Usuń subskrypcję",
|
|
154
|
+
"webhooks.delete.title": "Usunąć tę subskrypcję?",
|
|
155
|
+
"webhooks.delete.description": "Subskrypcja {name} i jej oczekujące dostarczenia zostaną usunięte. Rejestr prób pozostanie do czasu wygaśnięcia okresu przechowywania.",
|
|
156
|
+
"webhooks.delete.hint": "Usunięcie kasuje adres i jego sekret. Rejestr prób pozostaje.",
|
|
157
|
+
"webhooks.delete.blocked": "Najpierw wyłącz subskrypcję, usunąć można tylko wyłączoną.",
|
|
158
|
+
"webhooks.notice.saved": "Zapisano subskrypcję.",
|
|
159
|
+
"webhooks.notice.paused": "Wstrzymano subskrypcję.",
|
|
160
|
+
"webhooks.notice.resumed": "Wznowiono subskrypcję.",
|
|
161
|
+
"webhooks.notice.disabled": "Wyłączono subskrypcję.",
|
|
162
|
+
"webhooks.notice.rotated": "Wygenerowano nowy sekret podpisujący.",
|
|
163
|
+
"webhooks.notice.deleted": "Usunięto subskrypcję.",
|
|
164
|
+
"webhooks.note": "Po utworzeniu i po wymianie sekret nie jest już nigdy pokazywany.",
|
|
165
|
+
"webhooks.denied": "Do otwarcia tego ekranu potrzebujesz uprawnienia odczytu webhooków.",
|
|
166
|
+
"webhooks.error.load": "Nie udało się wczytać subskrypcji.",
|
|
167
|
+
"webhooks.error.save": "Nie udało się zapisać subskrypcji.",
|
|
168
|
+
"webhooks.error.action": "Nie udało się wykonać tej akcji na subskrypcji.",
|
|
169
|
+
"deliveries.title": "Dostarczenia",
|
|
170
|
+
"deliveries.description": "Każda próba dostarczenia zdarzenia do subskrypcji tego obszaru roboczego.",
|
|
171
|
+
"deliveries.table.title": "Próby",
|
|
172
|
+
"deliveries.table.count": "Prób: {count}",
|
|
173
|
+
"deliveries.table.countMore": "Prób: {count}, są kolejne strony",
|
|
174
|
+
"deliveries.table.caption": "Próby dostarczenia webhooków",
|
|
175
|
+
"deliveries.table.loading": "Wczytywanie prób…",
|
|
176
|
+
"deliveries.column.subscription": "Subskrypcja",
|
|
177
|
+
"deliveries.column.kind": "Rodzaj",
|
|
178
|
+
"deliveries.column.sourceRef": "Źródło",
|
|
179
|
+
"deliveries.column.timing": "Czas",
|
|
180
|
+
"deliveries.column.outcome": "Wynik",
|
|
181
|
+
"deliveries.column.attempt": "Próba",
|
|
182
|
+
"deliveries.column.status": "Status",
|
|
183
|
+
"deliveries.search.label": "Szukaj prób",
|
|
184
|
+
"deliveries.search.placeholder": "Odwołanie źródłowe lub moduł",
|
|
185
|
+
"deliveries.filter.status": "Status",
|
|
186
|
+
"deliveries.filter.allStatuses": "Wszystkie statusy",
|
|
187
|
+
"deliveries.filter.subscription": "Subskrypcja",
|
|
188
|
+
"deliveries.filter.allSubscriptions": "Wszystkie subskrypcje",
|
|
189
|
+
"deliveries.action.replay": "Ponów",
|
|
190
|
+
"deliveries.replay.title": "Ponowić to dostarczenie?",
|
|
191
|
+
"deliveries.replay.description": "Nowa próba zostanie zakolejkowana z odtworzonej treści. Wcześniejsze próby pozostaną w rejestrze.",
|
|
192
|
+
"deliveries.notice.replayed": "Zakolejkowano nową próbę.",
|
|
193
|
+
"deliveries.empty.title": "Brak prób dostarczenia",
|
|
194
|
+
"deliveries.empty.hint": "Próby pojawią się tutaj, gdy aktywna subskrypcja odbierze zdarzenie.",
|
|
195
|
+
"deliveries.emptyFiltered.title": "Brak pasujących prób",
|
|
196
|
+
"deliveries.emptyFiltered.hint": "Wyczyść wyszukiwanie lub filtry, aby zobaczyć pozostałe.",
|
|
197
|
+
"deliveries.note": "Treści żądań nie są przechowywane. Próba zapisuje skrót, rozmiar i wynik.",
|
|
198
|
+
"deliveries.denied": "Do otwarcia tego ekranu potrzebujesz uprawnienia odczytu dostarczeń.",
|
|
199
|
+
"deliveries.error.load": "Nie udało się wczytać prób dostarczenia.",
|
|
200
|
+
"deliveries.error.replay": "Nie udało się ponowić tego dostarczenia.",
|
|
201
|
+
"deliveries.errorClass.timeout": "Przekroczono czas",
|
|
202
|
+
"deliveries.timing.completed": "Koniec {value}",
|
|
203
|
+
"deliveries.timing.pending": "Niezakończone",
|
|
204
|
+
"deliveries.errorClass.dns": "Nie rozwiązano hosta",
|
|
205
|
+
"deliveries.errorClass.egress-refused": "Zablokowane przez politykę ruchu wychodzącego",
|
|
206
|
+
"deliveries.errorClass.response-4xx": "Odrzucone przez adres docelowy",
|
|
207
|
+
"deliveries.errorClass.response-5xx": "Błąd po stronie adresu docelowego",
|
|
208
|
+
"deliveries.errorClass.network": "Błąd sieci",
|
|
209
|
+
"deliveries.errorClass.mail-refused": "Odrzucone przez transport poczty",
|
|
210
|
+
"deliveries.errorClass.recipient-unknown": "Brak adresu do wysyłki",
|
|
211
|
+
"deliveries.channel.email": "E-mail",
|
|
212
|
+
"status.unread": "Nieprzeczytane",
|
|
213
|
+
"status.read": "Przeczytane",
|
|
214
|
+
"status.archived": "Zarchiwizowane",
|
|
215
|
+
"kind.agent-run-completed": "Uruchomienie agenta zakończone",
|
|
216
|
+
"kind.agent-run-failed": "Uruchomienie agenta nieudane",
|
|
217
|
+
"kind.workflow-run-completed": "Uruchomienie przepływu zakończone",
|
|
218
|
+
"kind.workflow-run-failed": "Uruchomienie przepływu nieudane",
|
|
219
|
+
"kind.webhook-dead-letter": "Webhook w kolejce martwych listów",
|
|
220
|
+
"kind.approval-requested": "Wniosek o akceptację",
|
|
221
|
+
"kind.approval-decided": "Akceptacja rozstrzygnięta",
|
|
222
|
+
"kind.meter-threshold": "Osiągnięto próg zużycia",
|
|
223
|
+
"delivery.status.pending": "Oczekuje",
|
|
224
|
+
"delivery.status.succeeded": "Dostarczone",
|
|
225
|
+
"delivery.status.failed": "Nieudane",
|
|
226
|
+
"delivery.status.dead-letter": "Martwy list",
|
|
227
|
+
"subscription.status.active": "Aktywna",
|
|
228
|
+
"subscription.status.paused": "Wstrzymana",
|
|
229
|
+
"subscription.status.disabled": "Wyłączona",
|
|
230
|
+
"error.request": "Żądanie powiadomień nie powiodło się.",
|
|
231
|
+
"error.code.INVALID_INPUT": "Sprawdź wartości w formularzu i spróbuj ponownie.",
|
|
232
|
+
"error.code.INBOX_ITEM_NOT_FOUND": "Tego powiadomienia nie ma już w Twojej skrzynce.",
|
|
233
|
+
"error.code.SUBSCRIPTION_NAME_CONFLICT": "Inna subskrypcja w tym obszarze roboczym używa już tej nazwy.",
|
|
234
|
+
"error.code.SUBSCRIPTION_NOT_FOUND": "Ta subskrypcja już nie istnieje.",
|
|
235
|
+
"error.code.SUBSCRIPTION_STATE_INVALID": "Subskrypcja nie może przejść do tego stanu z obecnego.",
|
|
236
|
+
"error.code.SUBSCRIPTION_NOT_DISABLED": "Wyłącz subskrypcję, zanim ją usuniesz.",
|
|
237
|
+
"error.code.WEBHOOK_URL_INVALID": "Podany adres nie jest poprawnym adresem https.",
|
|
238
|
+
"error.code.WEBHOOK_URL_BLOCKED": "Adres wskazuje na zakres prywatny, pętlę zwrotną lub zarezerwowany.",
|
|
239
|
+
"error.code.WEBHOOK_HOST_NOT_ALLOWLISTED": "Host nie znajduje się na liście dozwolonych hostów platformy.",
|
|
240
|
+
"error.code.WEBHOOK_HOST_RESOLVES_PRIVATE": "Host rozwiązuje się na adres prywatny.",
|
|
241
|
+
"error.code.WEBHOOK_HOST_UNRESOLVED": "Nie udało się rozwiązać hosta.",
|
|
242
|
+
"error.code.DELIVERY_NOT_FOUND": "Ta próba dostarczenia już nie istnieje.",
|
|
243
|
+
"error.code.DELIVERY_NOT_DEAD_LETTER": "Ponowić można tylko dostarczenie z martwych listów.",
|
|
244
|
+
"error.code.DELIVERY_REPLAY_CONFLICT": "Ponowienie tego dostarczenia jest już zakolejkowane.",
|
|
245
|
+
"settings.retentionDays.label": "Okres przechowywania dostarczeń (dni)",
|
|
246
|
+
"settings.retentionDays.description": "Liczba dni, przez które próba dostarczenia jest przechowywana, zanim pętla dostarczeń ją usunie.",
|
|
247
|
+
"settings.retryMaxAttempts.label": "Maksymalna liczba prób dostarczenia",
|
|
248
|
+
"settings.retryMaxAttempts.description": "Liczba prób wykonanych, zanim dostarczenie trafi do martwych listów.",
|
|
249
|
+
"settings.retryMaxBackoffMinutes.label": "Maksymalne opóźnienie ponowienia (minuty)",
|
|
250
|
+
"settings.retryMaxBackoffMinutes.description": "Górna granica wykładniczego odstępu między próbami dostarczenia.",
|
|
251
|
+
"settings.egressAllowlist.label": "Lista dozwolonych hostów webhooków",
|
|
252
|
+
"settings.egressAllowlist.description": "Nazwy hostów rozdzielone przecinkami, których może użyć adres subskrypcji. Pusta wartość oznacza dowolnego hosta publicznego przechodzącego blokadę adresów prywatnych.",
|
|
253
|
+
"settings.pollIntervalSeconds.label": "Częstotliwość sprawdzania dostarczeń (sekundy)",
|
|
254
|
+
"settings.pollIntervalSeconds.description": "Określa, jak często pętla dostarczeń szuka zaplanowanych prób. Wartość jest stosowana podczas uruchamiania modułu powiadomień."
|
|
255
|
+
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"schemaVersion": 1,
|
|
4
4
|
"id": "profile.core",
|
|
5
5
|
"package": "@flowdular/module-profile",
|
|
6
|
-
"version": "1.5.
|
|
6
|
+
"version": "1.5.2",
|
|
7
7
|
"profile": "full",
|
|
8
8
|
"capabilities": ["api", "database", "client", "translations", "integration"],
|
|
9
9
|
"platform": {
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"dependencies": [
|
|
14
14
|
{
|
|
15
15
|
"id": "auth.core",
|
|
16
|
-
"range": "0.
|
|
16
|
+
"range": "^0.13.0"
|
|
17
17
|
}
|
|
18
18
|
],
|
|
19
19
|
"tenancy": "required",
|
|
20
20
|
"locales": ["en", "pl"],
|
|
21
21
|
"stability": "experimental",
|
|
22
|
-
"platformApi": "0.1.0"
|
|
22
|
+
"platformApi": "^0.1.0"
|
|
23
23
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
schemaVersion: 1
|
|
2
2
|
id: profile.core
|
|
3
|
-
specVersion: '1.5.
|
|
3
|
+
specVersion: '1.5.2'
|
|
4
4
|
status: approved
|
|
5
5
|
name: Profile
|
|
6
6
|
description: Allows a signed-in user to manage their own tenant-scoped display name and interface language, request a password change after confirming their current password, and review or end their own sessions.
|
|
@@ -15,7 +15,7 @@ capabilities:
|
|
|
15
15
|
|
|
16
16
|
dependencies:
|
|
17
17
|
- id: auth.core
|
|
18
|
-
range: 0.
|
|
18
|
+
range: ^0.13.0
|
|
19
19
|
|
|
20
20
|
tenancy: required
|
|
21
21
|
|
|
@@ -24,7 +24,7 @@ locales:
|
|
|
24
24
|
- pl
|
|
25
25
|
|
|
26
26
|
invariants:
|
|
27
|
-
- Every operation requires an authenticated principal and the declared profile permission.
|
|
27
|
+
- Every operation requires an authenticated principal and the declared profile permission; owners and members hold profile.self.manage by default, because every member manages their own profile, language, password and sessions.
|
|
28
28
|
- A user can read or change only the profile identified by their authenticated principal in the current tenant.
|
|
29
29
|
- The trusted tenant identifier and user identifier come from the authenticated principal and are never accepted from request data.
|
|
30
30
|
- Every profile query and mutation is scoped by both the trusted tenant identifier and authenticated principal identifier.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { DatabaseHandle } from '@flowdular/sdk/database';
|
|
2
|
-
import { runDatabaseMigrations } from '@flowdular/sdk/database';
|
|
2
|
+
import { integer, runDatabaseMigrations } from '@flowdular/sdk/database';
|
|
3
3
|
import type { Profile, ProfileLanguagePreference } from '../domain/types.ts';
|
|
4
4
|
import { databaseMigrations } from './migration.ts';
|
|
5
5
|
import type { ProfileRepository } from './repository.ts';
|
|
@@ -42,22 +42,12 @@ const SAVE_LANGUAGE = `INSERT INTO profile_language_preferences
|
|
|
42
42
|
locale = excluded.locale,
|
|
43
43
|
updated_at = excluded.updated_at`;
|
|
44
44
|
|
|
45
|
-
/* PostgreSQL returns BIGINT as a string, so every numeric read is normalized
|
|
46
|
-
before it reaches the domain. */
|
|
47
|
-
function integer(value: ProfileRow['updated_at']): number {
|
|
48
|
-
const normalized = Number(value);
|
|
49
|
-
if (!Number.isSafeInteger(normalized) || normalized < 0) {
|
|
50
|
-
throw new Error('The profile database returned an invalid timestamp.');
|
|
51
|
-
}
|
|
52
|
-
return normalized;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
45
|
function fromRow(row: ProfileRow): Profile {
|
|
56
46
|
return {
|
|
57
47
|
tenantId: row.tenant_id,
|
|
58
48
|
accountId: row.account_id,
|
|
59
49
|
displayName: row.display_name,
|
|
60
|
-
updatedAt: integer(row.updated_at),
|
|
50
|
+
updatedAt: integer(row.updated_at, 'updated_at', { min: 0 }),
|
|
61
51
|
};
|
|
62
52
|
}
|
|
63
53
|
|
|
@@ -66,7 +56,7 @@ function languageFromRow(row: ProfileLanguageRow): ProfileLanguagePreference {
|
|
|
66
56
|
tenantId: row.tenant_id,
|
|
67
57
|
accountId: row.account_id,
|
|
68
58
|
locale: row.locale,
|
|
69
|
-
updatedAt: integer(row.updated_at),
|
|
59
|
+
updatedAt: integer(row.updated_at, 'updated_at', { min: 0 }),
|
|
70
60
|
};
|
|
71
61
|
}
|
|
72
62
|
|