mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
Transcriptions filtering and search
This commit is contained in:
@@ -263,6 +263,28 @@ export const $GetTranscript = {
|
||||
],
|
||||
title: "Meeting Id",
|
||||
},
|
||||
room_id: {
|
||||
anyOf: [
|
||||
{
|
||||
type: "string",
|
||||
},
|
||||
{
|
||||
type: "null",
|
||||
},
|
||||
],
|
||||
title: "Room Id",
|
||||
},
|
||||
room_name: {
|
||||
anyOf: [
|
||||
{
|
||||
type: "string",
|
||||
},
|
||||
{
|
||||
type: "null",
|
||||
},
|
||||
],
|
||||
title: "Room Name",
|
||||
},
|
||||
},
|
||||
type: "object",
|
||||
required: [
|
||||
@@ -281,6 +303,8 @@ export const $GetTranscript = {
|
||||
"participants",
|
||||
"reviewed",
|
||||
"meeting_id",
|
||||
"room_id",
|
||||
"room_name",
|
||||
],
|
||||
title: "GetTranscript",
|
||||
} as const;
|
||||
|
||||
@@ -199,18 +199,22 @@ export class DefaultService {
|
||||
/**
|
||||
* Transcripts List
|
||||
* @param data The data for the request.
|
||||
* @param data.roomId
|
||||
* @param data.searchTerm
|
||||
* @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: {
|
||||
room_id: data.roomId,
|
||||
search_term: data.searchTerm,
|
||||
page: data.page,
|
||||
size: data.size,
|
||||
},
|
||||
|
||||
@@ -52,6 +52,8 @@ export type GetTranscript = {
|
||||
participants: Array<TranscriptParticipant> | null;
|
||||
reviewed: boolean;
|
||||
meeting_id: string | null;
|
||||
room_id: string | null;
|
||||
room_name: string | null;
|
||||
};
|
||||
|
||||
export type GetTranscriptSegmentTopic = {
|
||||
@@ -274,6 +276,8 @@ export type V1TranscriptsListData = {
|
||||
* Page number
|
||||
*/
|
||||
page?: number;
|
||||
roomId: string | null;
|
||||
searchTerm: string | null;
|
||||
/**
|
||||
* Page size
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user