Integrate QEV capture in Node/TypeScript: point at your gateway, send workflow events, seal evidence.
SDK source lives in the monorepo: packages/sdk-js. CLI published today: @bryan237l/qev-cli. Brand package names may track as they publish.
import { QEV } from "@imagineqira/qev-sdk"; // monorepo package name may vary
const qev = new QEV({
endpoint: process.env.QEV_GATEWAY_URL, // YOUR gateway base URL
token: process.env.QEV_INGEST_TOKEN,
});
await qev.capture({
flow: "field-service",
caseId: "JOB-1",
type: "work.completed",
actor: { id: "tech@example.com" },
});
endpoint at that base URL (not a public plaintext dump).