@sdk-it/cli 0.22.1 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.js +2091 -34
- package/dist/index.js.map +4 -4
- package/dist/lib/apiref.d.ts +4 -0
- package/dist/lib/apiref.d.ts.map +1 -0
- package/dist/lib/cli.d.ts.map +1 -1
- package/dist/lib/langs/dart.d.ts.map +1 -1
- package/dist/lib/langs/python.d.ts +4 -0
- package/dist/lib/langs/python.d.ts.map +1 -0
- package/dist/lib/langs/typescript.d.ts.map +1 -1
- package/dist/lib/options.d.ts +7 -0
- package/dist/lib/options.d.ts.map +1 -1
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -77,7 +77,7 @@ Let's generate a client SDK for the Hetzner Cloud API with automatic formatting:
|
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
79
|
# Generate SDK from Hetzner Cloud API spec with Prettier formatting
|
|
80
|
-
npx sdk-it -s https://
|
|
80
|
+
npx sdk-it -s https://raw.githubusercontent.com/MaximilianKoestler/hcloud-openapi/refs/heads/main/openapi/hcloud.json -o ./client --formatter "prettier $SDK_IT_OUTPUT --write"
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
After running this command:
|