Migrate to openapi-ts generator

This commit is contained in:
2024-07-03 15:08:54 +02:00
parent c36b64cff1
commit ef531f6491
81 changed files with 1157 additions and 1004 deletions

View File

@@ -0,0 +1,52 @@
export const $Page_GetTranscript_ = {
properties: {
items: {
type: "array",
contains: {
type: "GetTranscript",
},
isRequired: true,
},
total: {
type: "number",
isRequired: true,
},
page: {
type: "any-of",
contains: [
{
type: "number",
minimum: 1,
},
{
type: "null",
},
],
isRequired: true,
},
size: {
type: "any-of",
contains: [
{
type: "number",
minimum: 1,
},
{
type: "null",
},
],
isRequired: true,
},
pages: {
type: "any-of",
contains: [
{
type: "number",
},
{
type: "null",
},
],
},
},
} as const;