1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/orval.config.js
Tymoteusz Czech 755c22f3b9
feat: features list pagination (#5496)
New paginated table - tested on /features-new behind a flag
2023-12-01 14:53:05 +00:00

39 lines
1.1 KiB
JavaScript

/**
* How to generate OpenAPI client
*
* For now we only use generated types (src/openapi/models).
* We will use methods (src/openapi/apis) for new features soon.
* 1. `yarn gen:api` to generate the client
* 2. `rm -rf src/openapi/apis` to remove methods (! except if you want to use some of those)
* 3. clean up `src/openapi/index.ts` imports
*/
module.exports = {
unleashApi: {
output: {
mode: 'tags',
workspace: 'src/openapi',
target: 'apis',
schemas: 'models',
client: 'swr',
clean: true,
// mock: true,
override: {
mutator: {
path: './fetcher.ts',
name: 'fetcher',
},
header: () => [
'Generated by Orval',
'Do not edit manually.',
'See `gen:api` script in package.json',
],
},
},
input: {
target:
process.env.UNLEASH_OPENAPI_URL ||
'http://localhost:4242/docs/openapi.json',
},
},
};