mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
Link recorded meeting to a transcript
This commit is contained in:
@@ -87,6 +87,52 @@ export const $DeletionStatus = {
|
||||
title: "DeletionStatus",
|
||||
} as const;
|
||||
|
||||
export const $GetMeeting = {
|
||||
properties: {
|
||||
id: {
|
||||
type: "string",
|
||||
title: "Id",
|
||||
},
|
||||
room_name: {
|
||||
type: "string",
|
||||
title: "Room Name",
|
||||
},
|
||||
room_url: {
|
||||
type: "string",
|
||||
title: "Room Url",
|
||||
},
|
||||
host_room_url: {
|
||||
type: "string",
|
||||
title: "Host Room Url",
|
||||
},
|
||||
viewer_room_url: {
|
||||
type: "string",
|
||||
title: "Viewer Room Url",
|
||||
},
|
||||
start_date: {
|
||||
type: "string",
|
||||
format: "date-time",
|
||||
title: "Start Date",
|
||||
},
|
||||
end_date: {
|
||||
type: "string",
|
||||
format: "date-time",
|
||||
title: "End Date",
|
||||
},
|
||||
},
|
||||
type: "object",
|
||||
required: [
|
||||
"id",
|
||||
"room_name",
|
||||
"room_url",
|
||||
"host_room_url",
|
||||
"viewer_room_url",
|
||||
"start_date",
|
||||
"end_date",
|
||||
],
|
||||
title: "GetMeeting",
|
||||
} as const;
|
||||
|
||||
export const $GetTranscript = {
|
||||
properties: {
|
||||
id: {
|
||||
@@ -203,6 +249,17 @@ export const $GetTranscript = {
|
||||
type: "boolean",
|
||||
title: "Reviewed",
|
||||
},
|
||||
meeting_id: {
|
||||
anyOf: [
|
||||
{
|
||||
type: "string",
|
||||
},
|
||||
{
|
||||
type: "null",
|
||||
},
|
||||
],
|
||||
title: "Meeting Id",
|
||||
},
|
||||
},
|
||||
type: "object",
|
||||
required: [
|
||||
@@ -220,6 +277,7 @@ export const $GetTranscript = {
|
||||
"target_language",
|
||||
"participants",
|
||||
"reviewed",
|
||||
"meeting_id",
|
||||
],
|
||||
title: "GetTranscript",
|
||||
} as const;
|
||||
|
||||
Reference in New Issue
Block a user