@hey-api/openapi-ts 0.82.1 → 0.82.3
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 +3 -1
- package/dist/chunk-EUHBZLGV.js +51 -0
- package/dist/chunk-EUHBZLGV.js.map +1 -0
- package/dist/index.cjs +77 -69
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -4
- package/dist/index.d.ts +7 -4
- package/dist/index.js +48 -48
- package/dist/index.js.map +1 -1
- package/dist/internal.cjs +21 -13
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.d.cts +2 -1
- package/dist/internal.d.ts +2 -1
- package/dist/internal.js +1 -1
- package/dist/{types.d-C6wYENRD.d.cts → types.d-44bOq98L.d.cts} +160 -29
- package/dist/{types.d-C6wYENRD.d.ts → types.d-44bOq98L.d.ts} +160 -29
- package/package.json +3 -2
- package/dist/chunk-FBWTZXZ2.js +0 -43
- package/dist/chunk-FBWTZXZ2.js.map +0 -1
package/README.md
CHANGED
|
@@ -205,7 +205,9 @@ The above script can be executed by running `npm run openapi-ts` or equivalent c
|
|
|
205
205
|
|
|
206
206
|
### Node.js
|
|
207
207
|
|
|
208
|
-
You can also generate output programmatically by
|
|
208
|
+
You can also generate output programmatically by calling `createClient()` in a JavaScript/TypeScript file.
|
|
209
|
+
|
|
210
|
+
#### `script.ts`
|
|
209
211
|
|
|
210
212
|
```ts
|
|
211
213
|
import { createClient } from '@hey-api/openapi-ts';
|