mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 04:39:06 +00:00
Migrate to openapi-ts generator
This commit is contained in:
95
www/app/api/schemas/$UpdateTranscript.ts
Normal file
95
www/app/api/schemas/$UpdateTranscript.ts
Normal 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;
|
||||
Reference in New Issue
Block a user