mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
* feat: add tests and migrations * feat: workflow versioning among published and draft * feat: add a new settings page to simplify workflow detail page * fix: fix tsclient generation
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
import { defineConfig } from '@hey-api/openapi-ts';
|
|
|
|
export default defineConfig({
|
|
input: 'http://127.0.0.1:8000/api/v1/openapi.json',
|
|
output: 'src/client',
|
|
plugins: [{
|
|
name: '@hey-api/client-fetch',
|
|
runtimeConfigPath: '../lib/apiClient',
|
|
}],
|
|
});
|