b68c082ef5
* fix(bank-sync): cron backfills the gap since the last successful sync The daily incremental sync always asked the bank for the last 7 days. Any pause longer than that (a lapsed subscription paid again, a consent renewed after expiry, an outage) silently lost the days in between: the connection came back, looked healthy, and the missing transactions never arrived. The lookback now widens to cover the gap since last_synced_at plus one day of overlap, capped at the 90-day PSD2 limit, and a gap of a month or more asks for strategy=longest like the manual sync route does. Dedup via external_id makes the overlap harmless. First syncs keep their 90-day path. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QdcDV7CngLkWUvfKSsxFhS * feat(bank-sync): chip warns seven days before a bank consent expires The transactions-page chip only reacted once a connection was already dead (expired/error) or had gone stale. A consent that is about to end looked healthy until the morning it stopped syncing. New "expiring" state when a live connection's consent_expires is within seven days, the same threshold as the consent-expiry email in the sync cron. Precedence: attention, expiring, stale, healthy. getChipState moves to lib/transactions/bank-sync-chip-state.ts so the precedence is unit-tested; the component keeps the rendering only. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QdcDV7CngLkWUvfKSsxFhS * feat(bank-sync): chip says paused when the subscription lapsed The daily cron filters connections by the bank_sync capability, so a company whose trial or subscription ended keeps status=active rows with a frozen last_synced_at. The chip read that as "stale, check the connection", which sends the user to re-authorise a connection that is perfectly alive. 56 of 191 active connections on prod were in this state on 2026-09-01. New "paused" state, ranked above everything else, when the company lacks bank_sync: hosted points at billing, self-host at the connector key, the same split BankSyncNowButton already makes. getChipState takes an options object so the clock stays out of render (react-hooks/purity). Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QdcDV7CngLkWUvfKSsxFhS * feat(api): agent-triggerable bank sync in v1 and MCP Closes the first wish in the F2 report: an integration could read bank data but never refresh it. New POST /api/v1/companies/{id}/bank-connections/ {connectionId}/sync and MCP gnubok_sync_bank, both on a shared runner (extensions/general/enable-banking/lib/trigger-sync.ts). Cost is bounded structurally, not by policy: the window is never caller-controlled (the cron's gap-aware 7 to 90 day lookback), a connection synced within 15 minutes answers BANK_SYNC_COOLDOWN with next_allowed_at (429 + Retry-After on v1; synced=false in-band on MCP so the agent reads on instead of retrying), and a failing connection is throttled per process by attempt time. A dead session is flipped to expired with a remediation that hands the user the connect link: no API call revives a consent. Gated on bank_sync like gnubok_connect_bank; scope transactions:write. Registry, scope map, load-routes, spec snapshot and the generated accounted-api skill updated; five BANK_SYNC_* / BANK_SESSION_EXPIRED codes added to the structured-error registry. The web Synka-nu route is left as is (see DECISIONS.md). Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QdcDV7CngLkWUvfKSsxFhS * test(bank-sync): use the options object in the remaining chip-state calls Four multi-line calls still passed the clock positionally after getChipState moved to an options object; tsc flagged them (vitest did not, the extra argument was ignored at runtime). Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QdcDV7CngLkWUvfKSsxFhS * fix(api): address skeptic findings on the agent-triggered bank sync Three refutations from the pre-publish skeptic pass: 1. Core imported the extension. The v1 sync route pulled the runner straight from @/extensions, which the core-build gate rejects and which left a live bank endpoint on zero-extension builds. The route now resolves it through the registry's services channel against a contract in lib/bank-sync/trigger-sync-contract.ts (same pattern as the Skatteverket read service) and answers EXTENSION_DISABLED when the extension is absent. 2. The idempotency cache stored the handler-level 429. A same-key retry after Retry-After, which is the documented retry, replayed the stale cooldown as a 400 for the cache's 24-hour TTL. withApiV1 no longer caches 429 responses; regression test added. The endpoint's pitfall no longer claims Idempotency-Key is mandatory (it was never enforced). 3. Two cron tests read the clock twice and failed whenever a millisecond passed between the reads. They now pin the clock with fake timers. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QdcDV7CngLkWUvfKSsxFhS * fix(bank-sync): durable cooldown lease and review wording Resolves the PR #2165 review findings in one pass. Superagent P1: the attempt throttle was a process-local Map, so two agent calls on different serverless instances (or a retry after a cold start on a failing connection) could each bill an Enable Banking call, contradicting the one-sync-per-15-minutes promise. New bank_connections.sync_lease_until (migration 20260902150000), claimed with one conditional UPDATE before the bank is called; Postgres row locking makes exactly one claimer win, the rest answer BANK_SYNC_COOLDOWN. The lease stays for the full window on success and failure. Tests cover the claim order, a failed attempt seen from a second instance, a lost race, and an expired lease. CodeRabbit: the =1 plural branch now reads "in 1 day" / "om 1 dag" (daysUntilConsentExpiry rounds a partial day up, so "tomorrow" could be today); the cooldown pitfall on the v1 endpoint, the MCP description and the in-band cooldown instruction now say a cooldown can follow a failed attempt and tell the agent to compare last_synced_at before deciding. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0125TMQQBjBBZG9YxP7wQWub * fix(bank-sync): lease claim as a literal filter for the schema guard CI's no-phantom-columns guard counts runtime-built query expressions and its ceiling is exact; the templated `.or('sync_lease_until.is.null,...')` claim added one. The column now defaults to epoch (NOT NULL), so "never claimed" is just "expired long ago" and the atomic claim is a single literal `.lte('sync_lease_until', now)` the guard can check. Migration is unshipped (same PR), so it is edited in place. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0125TMQQBjBBZG9YxP7wQWub * fix(bank-sync): runner verifies company membership before the lease Superagent (round 3): the MCP path reached the shared runner without a membership check of its own. Both callers do enforce it upstream (withApiV1's company resolution and resolveMcpCompanyContext in the MCP dispatcher), but the runner writes transactions and bills a bank call, so it now checks company_members itself, before the cooldown and the lease claim, and answers NOT_FOUND for a non-member. The viewer check that was buried inside the sync block moves up with it. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0125TMQQBjBBZG9YxP7wQWub --------- Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
192 lines
11 KiB
TypeScript
192 lines
11 KiB
TypeScript
/**
|
|
* Side-effect import that ensures every v1 route module's top-level
|
|
* `registerEndpoint()` call has been executed before the OpenAPI generator
|
|
* reads the registry.
|
|
*
|
|
* Why this exists: route files register themselves at module load time. The
|
|
* OpenAPI endpoint runs in its own module which would otherwise not pull in
|
|
* the other route files. Importing them here as side-effects populates the
|
|
* shared `ENDPOINTS` map.
|
|
*
|
|
* When a new v1 route is added, append a `import '...'` line.
|
|
*/
|
|
|
|
// Phase 1 surface.
|
|
import '@/app/api/v1/health/route'
|
|
import '@/app/api/v1/companies/route'
|
|
|
|
// Phase 4 PR-2 (foundation): async operations polling endpoint.
|
|
import '@/app/api/v1/operations/[id]/route'
|
|
|
|
// Phase 4 PR-2: journal-entries primitives + voucher-gap-explanations.
|
|
import '@/app/api/v1/companies/[companyId]/journal-entries/route'
|
|
import '@/app/api/v1/companies/[companyId]/journal-entries/[id]/route'
|
|
import '@/app/api/v1/companies/[companyId]/journal-entries/[id]/commit/route'
|
|
import '@/app/api/v1/companies/[companyId]/journal-entries/[id]/reverse/route'
|
|
import '@/app/api/v1/companies/[companyId]/journal-entries/[id]/correct/route'
|
|
import '@/app/api/v1/companies/[companyId]/journal-entries/batch-create/route'
|
|
import '@/app/api/v1/companies/[companyId]/voucher-gap-explanations/route'
|
|
|
|
// Phase 4 PR-2: compliance-check (Accounted's defensible edge).
|
|
import '@/app/api/v1/companies/[companyId]/compliance/check/route'
|
|
|
|
// Phase 4 PR-2: fiscal-periods async ops (lock/close/year-end/opening-balances/currency-revaluation).
|
|
import '@/app/api/v1/companies/[companyId]/fiscal-periods/[id]/lock/route'
|
|
import '@/app/api/v1/companies/[companyId]/fiscal-periods/[id]/close/route'
|
|
import '@/app/api/v1/companies/[companyId]/fiscal-periods/[id]/year-end/route'
|
|
import '@/app/api/v1/companies/[companyId]/fiscal-periods/[id]/opening-balances/route'
|
|
import '@/app/api/v1/companies/[companyId]/fiscal-periods/[id]/currency-revaluation/route'
|
|
|
|
// Phase 4 PR-3: Documents (multipart).
|
|
import '@/app/api/v1/companies/[companyId]/documents/route'
|
|
import '@/app/api/v1/companies/[companyId]/documents/[id]/download/route'
|
|
import '@/app/api/v1/companies/[companyId]/documents/[id]/link/route'
|
|
|
|
// Phase 2 PR-A: invoice + customer reads.
|
|
import '@/app/api/v1/companies/[companyId]/invoices/route'
|
|
import '@/app/api/v1/companies/[companyId]/invoices/[id]/route'
|
|
import '@/app/api/v1/companies/[companyId]/customers/route'
|
|
import '@/app/api/v1/companies/[companyId]/customers/[id]/route'
|
|
// Phase 2 PR-B-2b: invoice action verbs.
|
|
import '@/app/api/v1/companies/[companyId]/invoices/[id]/mark-sent/route'
|
|
import '@/app/api/v1/companies/[companyId]/invoices/[id]/mark-paid/route'
|
|
import '@/app/api/v1/companies/[companyId]/invoices/[id]/credit/route'
|
|
import '@/app/api/v1/companies/[companyId]/invoices/[id]/send/route'
|
|
import '@/app/api/v1/companies/[companyId]/invoices/bulk-create/route'
|
|
// Phase 2 PR-B-3: invoice PDF + customer bulk-create.
|
|
import '@/app/api/v1/companies/[companyId]/invoices/[id]/pdf/route'
|
|
import '@/app/api/v1/companies/[companyId]/customers/bulk-create/route'
|
|
|
|
// Phase 3: transactions + reconciliation vertical.
|
|
import '@/app/api/v1/companies/[companyId]/transactions/route'
|
|
import '@/app/api/v1/companies/[companyId]/transactions/[id]/route'
|
|
import '@/app/api/v1/companies/[companyId]/accounts/route'
|
|
import '@/app/api/v1/companies/[companyId]/fiscal-periods/route'
|
|
import '@/app/api/v1/companies/[companyId]/transactions/[id]/categorize/route'
|
|
import '@/app/api/v1/companies/[companyId]/transactions/[id]/uncategorize/route'
|
|
import '@/app/api/v1/companies/[companyId]/transactions/[id]/ignore/route'
|
|
import '@/app/api/v1/companies/[companyId]/transactions/[id]/match-invoice/route'
|
|
import '@/app/api/v1/companies/[companyId]/transactions/[id]/match-supplier-invoice/route'
|
|
import '@/app/api/v1/companies/[companyId]/transactions/ingest/route'
|
|
import '@/app/api/v1/companies/[companyId]/transactions/batch-categorize/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/bank/run/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/bank/status/route'
|
|
import '@/app/api/v1/companies/[companyId]/cash-accounts/route'
|
|
|
|
// F2: PSD2 bank-connection health (last_synced_at, consent_expires) so
|
|
// integrations can detect stale bank data instead of trusting it blindly.
|
|
import '@/app/api/v1/companies/[companyId]/bank-connections/route'
|
|
import '@/app/api/v1/companies/[companyId]/bank-connections/[connectionId]/sync/route'
|
|
|
|
// Phase 4 PR-1: AP world: suppliers + supplier-invoices verticals.
|
|
import '@/app/api/v1/companies/[companyId]/suppliers/route'
|
|
import '@/app/api/v1/companies/[companyId]/suppliers/[id]/route'
|
|
import '@/app/api/v1/companies/[companyId]/suppliers/bulk-create/route'
|
|
import '@/app/api/v1/companies/[companyId]/supplier-invoices/route'
|
|
import '@/app/api/v1/companies/[companyId]/supplier-invoices/[id]/route'
|
|
import '@/app/api/v1/companies/[companyId]/supplier-invoices/[id]/approve/route'
|
|
import '@/app/api/v1/companies/[companyId]/supplier-invoices/[id]/mark-paid/route'
|
|
import '@/app/api/v1/companies/[companyId]/supplier-invoices/[id]/credit/route'
|
|
|
|
// Phase 5 PR-1: Payroll registers: employees + salary-runs CRUD.
|
|
import '@/app/api/v1/companies/[companyId]/employees/route'
|
|
import '@/app/api/v1/companies/[companyId]/employees/[id]/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/route'
|
|
|
|
// Phase 5 PR-2: Payroll lifecycle verbs. The /calculate orchestration was
|
|
// extracted into lib/salary/run-calculation.ts; the AGI orchestration into
|
|
// lib/salary/agi/generate-declaration.ts. Both the internal dashboard
|
|
// routes and these v1 routes call the same helpers.
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/calculate/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/approve/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/mark-paid/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/book/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/generate-agi/route'
|
|
|
|
// Payroll gap-closure 1.1: per-employee payslip reads (list + detail + PDF).
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/employees/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/employees/[employeeId]/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/payslips/[employeeId]/pdf/route'
|
|
|
|
// Payroll gap-closure 1.2: payslip line writes (draft runs only).
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/employees/[employeeId]/lines/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary-runs/[id]/lines/[lineId]/route'
|
|
|
|
// Payroll gap-closure 1.4: absence (frånvaro) range endpoints.
|
|
import '@/app/api/v1/companies/[companyId]/employees/[id]/absence/route'
|
|
|
|
// Payroll gap-closure 2.3: cutover opening balances (single + atomic bulk).
|
|
import '@/app/api/v1/companies/[companyId]/employees/[id]/opening-balances/route'
|
|
import '@/app/api/v1/companies/[companyId]/employees/opening-balances/route'
|
|
|
|
// Payroll gap-closure 3.4: vacation ledger + year close.
|
|
import '@/app/api/v1/companies/[companyId]/employees/[id]/vacation-balance/route'
|
|
import '@/app/api/v1/companies/[companyId]/salary/vacation-year-close/route'
|
|
|
|
// Phase 5 PR-3: Reports + import async. All reports wrap existing
|
|
// lib/reports/* generators. Imports run inline today but record their
|
|
// progress on the `operations` table for consistent polling-shape. KPI,
|
|
// audit-trail, periodisk-sammanstallning, ne-bilaga, and ink2 are deferred
|
|
// to a follow-up PR (different lib-module structures).
|
|
import '@/app/api/v1/companies/[companyId]/reports/trial-balance/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/balance-sheet/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/balance-sheet/pdf/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/income-statement/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/income-statement/pdf/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/general-ledger/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/journal-register/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/vat-declaration/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/monthly-breakdown/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/ar-ledger/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/supplier-ledger/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/continuity-check/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/salary-journal/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/avgifter-basis/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/vacation-liability/route'
|
|
import '@/app/api/v1/companies/[companyId]/reports/sie-export/route'
|
|
import '@/app/api/v1/companies/[companyId]/imports/sie/route'
|
|
import '@/app/api/v1/companies/[companyId]/imports/bank/route'
|
|
|
|
// Phase 6 PR-1: webhooks substrate.
|
|
import '@/app/api/v1/companies/[companyId]/webhooks/route'
|
|
import '@/app/api/v1/companies/[companyId]/webhooks/[id]/route'
|
|
import '@/app/api/v1/companies/[companyId]/webhooks/[id]/test/route'
|
|
import '@/app/api/v1/companies/[companyId]/webhooks/[id]/deliveries/route'
|
|
import '@/app/api/v1/webhook-deliveries/[id]/retry/route'
|
|
|
|
// Phase 6 PR-3: webhook secret rotation.
|
|
import '@/app/api/v1/companies/[companyId]/webhooks/[id]/rotate-secret/route'
|
|
|
|
// Inbox item stamp.
|
|
import '@/app/api/v1/companies/[companyId]/inbox-items/[id]/stamp/route'
|
|
|
|
// Reconciliation, account-keyed (bank:<cash_account_id> | skattekonto): the
|
|
// account list, the bridge per account, item buckets, links and ignore flags.
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/[accountKey]/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/[accountKey]/items/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/[accountKey]/links/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/[accountKey]/links/[linkId]/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/[accountKey]/items/[itemId]/ignore/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/[accountKey]/signoff/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/[accountKey]/signoff/[signoffId]/reopen/route'
|
|
import '@/app/api/v1/companies/[companyId]/reconciliation/accounts/[accountKey]/residual/route'
|
|
|
|
// Dimensions PR2: registry list + value creation (kostnadsställe/projekt).
|
|
import '@/app/api/v1/companies/[companyId]/dimensions/route'
|
|
import '@/app/api/v1/companies/[companyId]/dimensions/[id]/values/route'
|
|
// #895: value lifecycle (rename/archive/end-date + delete-unreferenced).
|
|
import '@/app/api/v1/companies/[companyId]/dimensions/[id]/values/[valueId]/route'
|
|
|
|
// #895: articles read (artikelregister) for invoice line linkage.
|
|
import '@/app/api/v1/companies/[companyId]/articles/route'
|
|
|
|
// #1348: company-settings write (PATCH, MCP-tool-identical field set).
|
|
import '@/app/api/v1/companies/[companyId]/settings/route'
|
|
|
|
// #1663: filed momsdeklaration read (SKV inlamnat/beslutat).
|
|
import '@/app/api/v1/companies/[companyId]/skatteverket/vat-declarations/route'
|
|
|
|
export {}
|