Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
5.0 KiB
5.0 KiB
PRD — QBO client migration off node-quickbooks
- Slug:
qbo-client-migration-off-node-quickbooks - Date:
2026-02-06 - Status: Draft
Summary
Replace the node-quickbooks SDK usage in packages/integrations/src/lib/qbo/qboClientService.ts with a small internal QuickBooks Online REST client built on axios, while keeping current behavior for query, create/update/read, and customer sync flows.
This is primarily a security-driven migration to remove a dependency chain anchored on deprecated request.
Problem
packages/integrations/package.jsoncurrently depends onnode-quickbooks.node-quickbooks@2.0.47depends onrequest@2.88.0, which is deprecated and commonly appears in unresolved audit findings.- We only use a narrow subset of QBO operations, but we currently pay the full dependency and risk surface of a legacy SDK.
Goals
- Remove
node-quickbooksfrom this codebase and lockfile. - Preserve current functional behavior for all existing QBO integration flows.
- Keep token refresh and secret storage behavior compatible with current tenant/app secrets.
- Reduce security warnings related to the QBO SDK dependency chain.
Non-goals
- Redesigning the QBO OAuth connect/callback routes.
- Adding new QBO entities beyond currently used capabilities.
- Reworking UI/UX for integration settings.
Users and Primary Flows
- Billing admins fetch QBO Items, Tax Codes, and Terms from integration settings.
- Billing admins validate existing QBO connections (CompanyInfo checks).
- Company sync uses QBO customer lookup/create/update flows.
UX / UI Notes
No user-facing UI changes are expected. Existing pages/actions should behave the same.
Requirements
Functional Requirements
QboClientService.create(tenantId, realmId)continues to initialize a ready-to-use client.query(selectQuery)continues to support current query usage patterns (Item, TaxCode, Term, Customer, CompanyInfo).create(entityType, data),update(entityType, data), andread(entityType, id)continue to behave the same for current call sites.findCustomerByDisplayName,createOrUpdateCustomer, and sync-token logic remain behaviorally equivalent.- 401 responses trigger a single token refresh and one retry for idempotent request paths currently retried.
- Error mapping remains compatible with existing
AppErrorcodes (QBO_AUTH_ERROR,QBO_NOT_FOUND,QBO_STALE_OBJECT, etc.). - Multi-realm credential map storage format remains unchanged.
Non-functional Requirements
- No increase in secret exposure risk (no tokens in logs).
- Keep TypeScript compile clean in affected packages.
- Remove
node-quickbookstransitive dependency tree from lockfile.
Data / API / Integrations
New internal REST layer targets Intuit QBO endpoints directly:
GET /v3/company/{realmId}/query?query=...GET /v3/company/{realmId}/companyinfo/{realmId}POST /v3/company/{realmId}/{entityType}(create)POST /v3/company/{realmId}/{entityType}?operation=update(update)GET /v3/company/{realmId}/{entityType}/{id}(read)
Current known usage surface to preserve:
packages/integrations/src/actions/qboActions.tspackages/billing/src/services/companySync/adapters/quickBooksCompanyAdapter.ts
Security / Permissions
- Continue using
getSecretProviderInstance()for app and tenant secrets. - Keep credentials in
qbo_credentialstenant secret JSON map keyed byrealmId. - Preserve RBAC checks already enforced in actions.
Observability
- Keep current structured logs around QBO operations and failures.
- Preserve enough operation/entity context in errors for support/debugging.
Rollout / Migration
Batch 1 (commit 1)
- Introduce internal REST-backed implementation for
QboClientServicewith behavior parity. - Validate via typechecks/compiles only for this pass; unit test additions are deferred by request.
- Keep current call sites unchanged.
Batch 2 (commit 2)
- Remove
node-quickbooksdependency frompackages/integrations/package.json. - Refresh lockfile and validate dependency graph no longer includes
node-quickbooks/requestvia this path. - Run targeted tests and audit checks.
Open Questions
- Do we want a short-lived fallback toggle to legacy SDK during rollout, or proceed directly with full cutover?
- Should update requests explicitly use sparse semantics for all entity updates, or only where currently required by behavior?
- Do we need to pin and expose a configurable QBO
minorversionin the new REST implementation?
Acceptance Criteria (Definition of Done)
node-quickbooksis fully removed from package manifest and lockfile.- Existing QBO flows still work:
- item/tax/term catalog fetch
- CompanyInfo validation
- customer lookup/create/update sync flow
- QBO token refresh path still updates tenant secrets and retries failed auth once where expected.
- Error codes/messages remain compatible with existing handling paths.
- Targeted tests for QBO client/service pass.
- Security audit shows reduction of warnings associated with
node-quickbooksdependency chain.