forked from VOICEVOX/voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: generated openapi code openapiのコード生成を行った refs VOICEVOX#608 VOICEVOX#610 * コード生成した結果、ビルドが通らなくなったので修正した * openapitools.jsonをgit管理下に置くようにした
- Loading branch information
1 parent
b53f878
commit c2705a2
Showing
22 changed files
with
300 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,9 +27,6 @@ pnpm-debug.log* | |
#Electron-builder output | ||
/dist_electron | ||
|
||
# openapi | ||
openapitools.json | ||
|
||
# data | ||
data/ | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json", | ||
"spaces": 2, | ||
"generator-cli": { | ||
"version": "5.3.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
apis/DefaultApi.ts | ||
apis/index.ts | ||
index.ts | ||
models/AccentPhrase.ts | ||
models/AudioQuery.ts | ||
models/HTTPValidationError.ts | ||
models/Mora.ts | ||
models/ParseKanaBadRequest.ts | ||
models/Preset.ts | ||
models/Speaker.ts | ||
models/SpeakerInfo.ts | ||
models/SpeakerStyle.ts | ||
models/ValidationError.ts | ||
models/index.ts | ||
runtime.ts | ||
apis/DefaultApi.ts | ||
apis/index.ts | ||
index.ts | ||
models/AccentPhrase.ts | ||
models/AudioQuery.ts | ||
models/HTTPValidationError.ts | ||
models/Mora.ts | ||
models/ParseKanaBadRequest.ts | ||
models/Preset.ts | ||
models/Speaker.ts | ||
models/SpeakerInfo.ts | ||
models/SpeakerStyle.ts | ||
models/StyleInfo.ts | ||
models/ValidationError.ts | ||
models/index.ts | ||
runtime.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.1.1 | ||
5.3.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
export * from "./DefaultApi"; | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export * from './DefaultApi'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
export * from "./runtime"; | ||
export * from "./apis"; | ||
export * from "./models"; | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export * from './runtime'; | ||
export * from './apis'; | ||
export * from './models'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
export * from "./AccentPhrase"; | ||
export * from "./AudioQuery"; | ||
export * from "./HTTPValidationError"; | ||
export * from "./Mora"; | ||
export * from "./ParseKanaBadRequest"; | ||
export * from "./Preset"; | ||
export * from "./Speaker"; | ||
export * from "./SpeakerInfo"; | ||
export * from "./SpeakerStyle"; | ||
export * from "./StyleInfo"; | ||
export * from "./ValidationError"; | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
export * from './AccentPhrase'; | ||
export * from './AudioQuery'; | ||
export * from './HTTPValidationError'; | ||
export * from './Mora'; | ||
export * from './ParseKanaBadRequest'; | ||
export * from './Preset'; | ||
export * from './Speaker'; | ||
export * from './SpeakerInfo'; | ||
export * from './SpeakerStyle'; | ||
export * from './StyleInfo'; | ||
export * from './ValidationError'; |
Oops, something went wrong.