Phase 1 complete

This commit is contained in:
GW_MC
2026-02-24 10:34:55 +00:00
parent 630b60d7e2
commit 8714d6bd22
112 changed files with 11063 additions and 73 deletions

View File

@@ -0,0 +1,24 @@
module.exports = {
dreamchat: {
input: {
target: '../openapi/openapi.json',
},
output: {
mode: 'tags-split',
target: './src/api/generated',
schemas: './src/api/generated/model',
client: 'fetch',
baseUrl: 'http://localhost:3000',
mock: false,
override: {
fetch: {
includeHttpResponseReturnType: false,
},
mutator: {
path: './src/api/mutator/custom-fetch.ts',
name: 'customFetch',
},
},
},
},
};