@nvisy/sdk
v0.3.0
Published
Official TypeScript SDK for Nvisy document processing platform
Downloads
352
Maintainers
Readme
Nvisy.com SDK for TypeScript/JavaScript
Official TypeScript SDK for the Nvisy AI-powered document processing platform.
Features
- Modern ES2022+ JavaScript target
- Full TypeScript support with strict typing
- Debug logging for development
- Individual module exports for optimal bundling
Installation
npm install @nvisy/sdkUsage
import { Nvisy } from "@nvisy/sdk";
const nvisy = new Nvisy({
apiToken: "your-api-token", // Required
baseUrl: "https://api.nvisy.com", // Optional
userAgent: "MyApp/1.0.0", // Optional
withLogging: true, // Optional
headers: { // Optional
"X-Custom-Header": "value",
},
});
const account = await nvisy.account.getAccount();
const workspaces = await nvisy.workspaces.listWorkspaces();Changelog
See CHANGELOG.md for release notes and version history.
Contributing
See CONTRIBUTING.md for development guidelines.
License
MIT License - see LICENSE.txt for details.
Support
- Documentation: docs.nvisy.com
- Issues: GitHub Issues
- Email: [email protected]
