Replace streams json

This commit is contained in:
2024-09-06 17:26:32 +02:00
parent 5267ab2d37
commit 901de8c009
7 changed files with 247 additions and 53 deletions

View File

@@ -828,6 +828,34 @@ export const $SpeakerWords = {
title: "SpeakerWords",
} as const;
export const $Stream = {
properties: {
stream_id: {
type: "integer",
title: "Stream Id",
},
name: {
type: "string",
title: "Name",
},
},
type: "object",
required: ["stream_id", "name"],
title: "Stream",
} as const;
export const $Topic = {
properties: {
name: {
type: "string",
title: "Name",
},
},
type: "object",
required: ["name"],
title: "Topic",
} as const;
export const $TranscriptParticipant = {
properties: {
id: {