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,95 @@
export const $UpdateTranscript = {
properties: {
name: {
type: "any-of",
contains: [
{
type: "string",
},
{
type: "null",
},
],
},
locked: {
type: "any-of",
contains: [
{
type: "boolean",
},
{
type: "null",
},
],
},
title: {
type: "any-of",
contains: [
{
type: "string",
},
{
type: "null",
},
],
},
short_summary: {
type: "any-of",
contains: [
{
type: "string",
},
{
type: "null",
},
],
},
long_summary: {
type: "any-of",
contains: [
{
type: "string",
},
{
type: "null",
},
],
},
share_mode: {
type: "any-of",
contains: [
{
type: "Enum",
},
{
type: "null",
},
],
},
participants: {
type: "any-of",
contains: [
{
type: "array",
contains: {
type: "TranscriptParticipant",
},
},
{
type: "null",
},
],
},
reviewed: {
type: "any-of",
contains: [
{
type: "boolean",
},
{
type: "null",
},
],
},
},
} as const;