mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
update audio-deleted flow
This commit is contained in:
@@ -293,6 +293,17 @@ export const $GetTranscript = {
|
||||
],
|
||||
title: "Room Name",
|
||||
},
|
||||
audio_deleted: {
|
||||
anyOf: [
|
||||
{
|
||||
type: "boolean",
|
||||
},
|
||||
{
|
||||
type: "null",
|
||||
},
|
||||
],
|
||||
title: "Audio Deleted",
|
||||
},
|
||||
},
|
||||
type: "object",
|
||||
required: [
|
||||
@@ -1109,6 +1120,17 @@ export const $UpdateTranscript = {
|
||||
],
|
||||
title: "Reviewed",
|
||||
},
|
||||
audio_deleted: {
|
||||
anyOf: [
|
||||
{
|
||||
type: "boolean",
|
||||
},
|
||||
{
|
||||
type: "null",
|
||||
},
|
||||
],
|
||||
title: "Audio Deleted",
|
||||
},
|
||||
},
|
||||
type: "object",
|
||||
title: "UpdateTranscript",
|
||||
|
||||
@@ -56,6 +56,7 @@ export type GetTranscript = {
|
||||
source_kind: SourceKind;
|
||||
room_id?: string | null;
|
||||
room_name?: string | null;
|
||||
audio_deleted?: boolean | null;
|
||||
};
|
||||
|
||||
export type GetTranscriptSegmentTopic = {
|
||||
@@ -219,6 +220,7 @@ export type UpdateTranscript = {
|
||||
share_mode?: "public" | "semi-private" | "private" | null;
|
||||
participants?: Array<TranscriptParticipant> | null;
|
||||
reviewed?: boolean | null;
|
||||
audio_deleted?: boolean | null;
|
||||
};
|
||||
|
||||
export type UserInfo = {
|
||||
|
||||
Reference in New Issue
Block a user