Docs Index
payquicker connector.md

Proof Card: PayQuicker Connector

Status: stub Last verified: 2026-04-28 · git sha 562e3ab4

Claim

PayQuickerConnector is an explicit, honest stub. The class declares productionStatus = 'stub' and authenticate() throws 'PayQuicker authentication not yet implemented - use demo mode' when not in demo or test mode. CRUD-shaped methods (createRecipient, createPayout, etc.) exist as scaffolding so upstream interfaces compile, but they call back into authenticate() which short-circuits to a demo token in non-production runtimes. There is no production code path. This card exists to prove the stub is honest — i.e., that an outside reviewer running the verification recipe will see the throw and not be misled by the file's existence.

Source

Tests

Live vs Fixture

Known Gaps

Verification (60-second AI-reviewer recipe)

grep -n "not yet implemented" src/connectors/PayQuickerConnector.ts
grep -n "productionStatus = 'stub'" src/connectors/PayQuickerConnector.ts
node scripts/audit-status-claims.mjs

The first grep should match exactly one line (the throw at line 136). The second should match exactly one line (the source-level partition tag). The audit script reports stub=1 in its summary line.