Skip to content

VertaaUX/sdk-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

@vertaaux/sdk-js

Deprecated: use @vertaaux/sdk instead.

@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.

Migrate

npm uninstall @vertaaux/sdk-js
npm install @vertaaux/sdk

Update 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.

Links

Source

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.

License

MIT

About

VertaaUX JS/TS SDK — thin fetch-based client for the VertaaUX API (npm: @vertaaux/sdk-js)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors