https://github.com/digitalcube/shifter-sdk-typescript
SDK generated by openapi generator
https://github.com/digitalcube/shifter-sdk-typescript
Last synced: 10 days ago
JSON representation
SDK generated by openapi generator
- Host: GitHub
- URL: https://github.com/digitalcube/shifter-sdk-typescript
- Owner: digitalcube
- License: mit
- Created: 2021-02-24T07:44:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-08T00:20:38.000Z (about 3 years ago)
- Last Synced: 2025-08-18T06:17:11.765Z (5 months ago)
- Language: TypeScript
- Size: 2.93 MB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Development
### Data source
Open API Docs: https://developer.getshifter.io/swagger.yaml
### Build SDK
```bash
$ ./bin/generate-sdk.sh
```
### Update docs
```bash
$ git checkout master
$ yarn docs
$ git add ./docs/
$ git commit -m "docs: update docs"
$ git push origin master
```
### Publish SDK to npm
```bash
$ yarn build
$ npm version [patch|minor|major]
$ npm publish .
```