Deprecated: use
@vertaaux/sdkinstead.
@vertaaux/sdk-js was the first generated JS/TS client for the VertaaUX API. It has been superseded by @vertaaux/sdk, which is now the canonical SDK and includes the same API surface plus the newer typed resources, pagination helpers, error classes, webhook verification, and timeout/abort support.
npm uninstall @vertaaux/sdk-js
npm install @vertaaux/sdkUpdate imports:
import { VertaaUX } from "@vertaaux/sdk";
const client = new VertaaUX({
apiKey: process.env.VERTAAUX_API_KEY!,
});
const audit = await client.audits.create({
url: "https://example.com",
mode: "basic",
});
const status = await client.audits.retrieve(audit.job_id);
console.log(status.status);If your existing integration still imports createVertaauxClient, migrate during your next maintenance window. The deprecated package remains on npm for old builds, but new projects should not depend on it.
- Canonical SDK: @vertaaux/sdk
- Deprecated npm package: @vertaaux/sdk-js
- API docs: https://vertaaux.ai/developer-docs
- Issues: open one here
- Other distribution surfaces:
@vertaaux/cli·@vertaaux/mcp-server·VertaaUX/audit-action
This package is built and published from the VertaaUX monorepo. Open issues or feature requests here; pull requests touching SDK behavior need to land in the upstream repo. We're happy to route them.
MIT