Add transcript source kind

This commit is contained in:
2024-10-04 16:38:29 +02:00
parent ebb32ee613
commit 39d02ab265
9 changed files with 159 additions and 13 deletions

View File

@@ -285,6 +285,9 @@ export const $GetTranscript = {
],
title: "Room Name",
},
source_kind: {
$ref: "#/components/schemas/SourceKind",
},
},
type: "object",
required: [
@@ -305,6 +308,7 @@ export const $GetTranscript = {
"meeting_id",
"room_id",
"room_name",
"source_kind",
],
title: "GetTranscript",
} as const;
@@ -766,6 +770,12 @@ export const $RtcOffer = {
title: "RtcOffer",
} as const;
export const $SourceKind = {
type: "string",
enum: ["room", "live", "file"],
title: "SourceKind",
} as const;
export const $SpeakerAssignment = {
properties: {
speaker: {