Remove viewer room url

This commit is contained in:
2024-10-11 13:50:22 +02:00
parent 145747087d
commit 2cbcfefb3f
7 changed files with 58 additions and 25 deletions

View File

@@ -87,6 +87,10 @@ export const $CreateRoom = {
type: "string",
title: "Recording Trigger",
},
is_shared: {
type: "boolean",
title: "Is Shared",
},
},
type: "object",
required: [
@@ -98,6 +102,7 @@ export const $CreateRoom = {
"room_mode",
"recording_type",
"recording_trigger",
"is_shared",
],
title: "CreateRoom",
} as const;
@@ -263,6 +268,9 @@ export const $GetTranscript = {
],
title: "Meeting Id",
},
source_kind: {
$ref: "#/components/schemas/SourceKind",
},
room_id: {
anyOf: [
{
@@ -285,9 +293,6 @@ export const $GetTranscript = {
],
title: "Room Name",
},
source_kind: {
$ref: "#/components/schemas/SourceKind",
},
},
type: "object",
required: [
@@ -306,8 +311,6 @@ export const $GetTranscript = {
"participants",
"reviewed",
"meeting_id",
"room_id",
"room_name",
"source_kind",
],
title: "GetTranscript",
@@ -522,10 +525,6 @@ export const $Meeting = {
type: "string",
title: "Host Room Url",
},
viewer_room_url: {
type: "string",
title: "Viewer Room Url",
},
start_date: {
type: "string",
format: "date-time",
@@ -543,7 +542,6 @@ export const $Meeting = {
"room_name",
"room_url",
"host_room_url",
"viewer_room_url",
"start_date",
"end_date",
],
@@ -985,6 +983,10 @@ export const $UpdateRoom = {
type: "string",
title: "Recording Trigger",
},
is_shared: {
type: "boolean",
title: "Is Shared",
},
},
type: "object",
required: [
@@ -996,6 +998,7 @@ export const $UpdateRoom = {
"room_mode",
"recording_type",
"recording_trigger",
"is_shared",
],
title: "UpdateRoom",
} as const;

View File

@@ -199,24 +199,24 @@ export class DefaultService {
/**
* Transcripts List
* @param data The data for the request.
* @param data.sourceKind
* @param data.roomId
* @param data.searchTerm
* @param data.sourceKind
* @param data.page Page number
* @param data.size Page size
* @returns Page_GetTranscript_ Successful Response
* @throws ApiError
*/
public v1TranscriptsList(
data: V1TranscriptsListData,
data: V1TranscriptsListData = {},
): CancelablePromise<V1TranscriptsListResponse> {
return this.httpRequest.request({
method: "GET",
url: "/v1/transcripts",
query: {
source_kind: data.sourceKind,
room_id: data.roomId,
search_term: data.searchTerm,
source_kind: data.sourceKind,
page: data.page,
size: data.size,
},

View File

@@ -23,6 +23,7 @@ export type CreateRoom = {
room_mode: string;
recording_type: string;
recording_trigger: string;
is_shared: boolean;
};
export type CreateTranscript = {
@@ -52,9 +53,9 @@ export type GetTranscript = {
participants: Array<TranscriptParticipant> | null;
reviewed: boolean;
meeting_id: string | null;
room_id: string | null;
room_name: string | null;
source_kind: SourceKind;
room_id?: string | null;
room_name?: string | null;
};
export type GetTranscriptSegmentTopic = {
@@ -104,7 +105,6 @@ export type Meeting = {
room_name: string;
room_url: string;
host_room_url: string;
viewer_room_url: string;
start_date: string;
end_date: string;
};
@@ -203,6 +203,7 @@ export type UpdateRoom = {
room_mode: string;
recording_type: string;
recording_trigger: string;
is_shared: boolean;
};
export type UpdateTranscript = {
@@ -280,8 +281,8 @@ export type V1TranscriptsListData = {
* Page number
*/
page?: number;
roomId: string | null;
searchTerm: string | null;
roomId?: string | null;
searchTerm?: string | null;
/**
* Page size
*/