@simplepay-ai/api-client
v0.4.1
Published
SimplePay API Client
Downloads
577
Readme
SimplePay API Client
Usage
1. Install package
npm install --save-dev @simplepay-ai/api-client
2. Use Client
or WsClient
classes from package
See documentation for Client
or WsClient
Development
Ensure proper code style
Run following command to format your code before commit:
npm run format
Publishing
1. Increment version
Package uses Semantic Versioning. You should increment package version before publishing
If you introduce breaking changes, run:
npm version major
If your changes is backward-compatible, run:
npm version minor
If you fixed a bug, run:
npm version patch
2. Push to repository with tags
git push origin main --tags
New release and package version will be created automatically