|
10 | 10 | [](https://github.com/nfroidure/openapi-ts-sdk-builder/blob/master/LICENSE)
|
11 | 11 | [](https://travis-ci.com/github/nfroidure/openapi-ts-sdk-builder)
|
12 | 12 | [](https://coveralls.io/github/nfroidure/openapi-ts-sdk-builder?branch=master)
|
13 |
| -[](https://npmjs.org/package/openapi-ts-sdk-builder) |
14 |
| -[](https://david-dm.org/nfroidure/openapi-ts-sdk-builder) |
15 |
| -[](https://david-dm.org/nfroidure/openapi-ts-sdk-builder#info=devDependencies) |
16 |
| -[](https://packagequality.com/#?package=openapi-ts-sdk-builder) |
17 | 13 |
|
18 | 14 |
|
19 | 15 | [//]: # (::contents:start)
|
@@ -64,8 +60,17 @@ In your code:
|
64 | 60 | ```js
|
65 | 61 | import API from './myapi.openapi.json';
|
66 | 62 |
|
67 |
| -// Just use the API then |
| 63 | +// Use the API |
68 | 64 | await API.getPing();
|
| 65 | + |
| 66 | +// Generate URIs only use the API then |
| 67 | +await APIURIBuilders.buildGetPingURI({ /*...*/ }); |
| 68 | + |
| 69 | +// To know which medthod is used by an endpoint |
| 70 | +await APIMethods.getPing; // => get |
| 71 | + |
| 72 | +// Generate a complete endpoint input |
| 73 | +await APIInputBuilders.buildGetPingInput({ /*...*/ }); |
69 | 74 | ```
|
70 | 75 |
|
71 | 76 | You can also safely operate on the API by doing so:
|
@@ -155,15 +160,12 @@ export default function useAPISWR<T extends Handler<any, any>>(
|
155 | 160 | [//]: # (::contents:end)
|
156 | 161 |
|
157 | 162 | # API
|
158 |
| -<a name="module_openapi-ts-sdk-builder"></a> |
159 |
| - |
160 |
| -## openapi-ts-sdk-builder |
161 |
| -<a name="module_openapi-ts-sdk-builder..generateSDKFromOpenAPI"></a> |
| 163 | +<a name="generateSDKFromOpenAPI"></a> |
162 | 164 |
|
163 |
| -### openapi-ts-sdk-builder~generateSDKFromOpenAPI(openAPIContent, options) ⇒ <code>Promise.<string></code> |
| 165 | +## generateSDKFromOpenAPI(openAPIContent, options) ⇒ <code>Promise.<string></code> |
164 | 166 | Build a JS SDK from an OpenAPI file
|
165 | 167 |
|
166 |
| -**Kind**: inner method of [<code>openapi-ts-sdk-builder</code>](#module_openapi-ts-sdk-builder) |
| 168 | +**Kind**: global function |
167 | 169 | **Returns**: <code>Promise.<string></code> - The SDK JS code
|
168 | 170 |
|
169 | 171 | | Param | Type | Description |
|
|
0 commit comments