generate API

This commit is contained in:
Sara
2023-12-07 17:05:07 +01:00
parent 6f3d7df507
commit e15af5e1ef
13 changed files with 1285 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
/* tslint:disable */
/* eslint-disable */
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from "../runtime";
/**
*
* @export
* @interface CreateParticipant
*/
export interface CreateParticipant {
/**
*
* @type {any}
* @memberof CreateParticipant
*/
speaker?: any | null;
/**
*
* @type {any}
* @memberof CreateParticipant
*/
name: any | null;
}
/**
* Check if a given object implements the CreateParticipant interface.
*/
export function instanceOfCreateParticipant(value: object): boolean {
let isInstance = true;
isInstance = isInstance && "name" in value;
return isInstance;
}
export function CreateParticipantFromJSON(json: any): CreateParticipant {
return CreateParticipantFromJSONTyped(json, false);
}
export function CreateParticipantFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): CreateParticipant {
if (json === undefined || json === null) {
return json;
}
return {
speaker: !exists(json, "speaker") ? undefined : json["speaker"],
name: json["name"],
};
}
export function CreateParticipantToJSON(value?: CreateParticipant | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
speaker: value.speaker,
name: value.name,
};
}

View File

@@ -97,6 +97,12 @@ export interface GetTranscript {
* @memberof GetTranscript
*/
targetLanguage: any | null;
/**
*
* @type {any}
* @memberof GetTranscript
*/
participants: any | null;
}
/**
@@ -116,6 +122,7 @@ export function instanceOfGetTranscript(value: object): boolean {
isInstance = isInstance && "createdAt" in value;
isInstance = isInstance && "sourceLanguage" in value;
isInstance = isInstance && "targetLanguage" in value;
isInstance = isInstance && "participants" in value;
return isInstance;
}
@@ -145,6 +152,7 @@ export function GetTranscriptFromJSONTyped(
shareMode: !exists(json, "share_mode") ? undefined : json["share_mode"],
sourceLanguage: json["source_language"],
targetLanguage: json["target_language"],
participants: json["participants"],
};
}
@@ -169,5 +177,6 @@ export function GetTranscriptToJSON(value?: GetTranscript | null): any {
share_mode: value.shareMode,
source_language: value.sourceLanguage,
target_language: value.targetLanguage,
participants: value.participants,
};
}

View File

@@ -0,0 +1,122 @@
/* tslint:disable */
/* eslint-disable */
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from "../runtime";
/**
*
* @export
* @interface GetTranscriptTopicWithWords
*/
export interface GetTranscriptTopicWithWords {
/**
*
* @type {any}
* @memberof GetTranscriptTopicWithWords
*/
id: any | null;
/**
*
* @type {any}
* @memberof GetTranscriptTopicWithWords
*/
title: any | null;
/**
*
* @type {any}
* @memberof GetTranscriptTopicWithWords
*/
summary: any | null;
/**
*
* @type {any}
* @memberof GetTranscriptTopicWithWords
*/
timestamp: any | null;
/**
*
* @type {any}
* @memberof GetTranscriptTopicWithWords
*/
transcript: any | null;
/**
*
* @type {any}
* @memberof GetTranscriptTopicWithWords
*/
segments?: any | null;
/**
*
* @type {any}
* @memberof GetTranscriptTopicWithWords
*/
words?: any | null;
}
/**
* Check if a given object implements the GetTranscriptTopicWithWords interface.
*/
export function instanceOfGetTranscriptTopicWithWords(value: object): boolean {
let isInstance = true;
isInstance = isInstance && "id" in value;
isInstance = isInstance && "title" in value;
isInstance = isInstance && "summary" in value;
isInstance = isInstance && "timestamp" in value;
isInstance = isInstance && "transcript" in value;
return isInstance;
}
export function GetTranscriptTopicWithWordsFromJSON(
json: any,
): GetTranscriptTopicWithWords {
return GetTranscriptTopicWithWordsFromJSONTyped(json, false);
}
export function GetTranscriptTopicWithWordsFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): GetTranscriptTopicWithWords {
if (json === undefined || json === null) {
return json;
}
return {
id: json["id"],
title: json["title"],
summary: json["summary"],
timestamp: json["timestamp"],
transcript: json["transcript"],
segments: !exists(json, "segments") ? undefined : json["segments"],
words: !exists(json, "words") ? undefined : json["words"],
};
}
export function GetTranscriptTopicWithWordsToJSON(
value?: GetTranscriptTopicWithWords | null,
): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
id: value.id,
title: value.title,
summary: value.summary,
timestamp: value.timestamp,
transcript: value.transcript,
segments: value.segments,
words: value.words,
};
}

View File

@@ -0,0 +1,84 @@
/* tslint:disable */
/* eslint-disable */
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from "../runtime";
/**
*
* @export
* @interface Participant
*/
export interface Participant {
/**
*
* @type {any}
* @memberof Participant
*/
id: any | null;
/**
*
* @type {any}
* @memberof Participant
*/
speaker: any | null;
/**
*
* @type {any}
* @memberof Participant
*/
name: any | null;
}
/**
* Check if a given object implements the Participant interface.
*/
export function instanceOfParticipant(value: object): boolean {
let isInstance = true;
isInstance = isInstance && "id" in value;
isInstance = isInstance && "speaker" in value;
isInstance = isInstance && "name" in value;
return isInstance;
}
export function ParticipantFromJSON(json: any): Participant {
return ParticipantFromJSONTyped(json, false);
}
export function ParticipantFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): Participant {
if (json === undefined || json === null) {
return json;
}
return {
id: json["id"],
speaker: json["speaker"],
name: json["name"],
};
}
export function ParticipantToJSON(value?: Participant | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
id: value.id,
speaker: value.speaker,
name: value.name,
};
}

View File

@@ -0,0 +1,84 @@
/* tslint:disable */
/* eslint-disable */
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from "../runtime";
/**
*
* @export
* @interface SpeakerAssignment
*/
export interface SpeakerAssignment {
/**
*
* @type {any}
* @memberof SpeakerAssignment
*/
speaker: any | null;
/**
*
* @type {any}
* @memberof SpeakerAssignment
*/
timestampFrom: any | null;
/**
*
* @type {any}
* @memberof SpeakerAssignment
*/
timestampTo: any | null;
}
/**
* Check if a given object implements the SpeakerAssignment interface.
*/
export function instanceOfSpeakerAssignment(value: object): boolean {
let isInstance = true;
isInstance = isInstance && "speaker" in value;
isInstance = isInstance && "timestampFrom" in value;
isInstance = isInstance && "timestampTo" in value;
return isInstance;
}
export function SpeakerAssignmentFromJSON(json: any): SpeakerAssignment {
return SpeakerAssignmentFromJSONTyped(json, false);
}
export function SpeakerAssignmentFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): SpeakerAssignment {
if (json === undefined || json === null) {
return json;
}
return {
speaker: json["speaker"],
timestampFrom: json["timestamp_from"],
timestampTo: json["timestamp_to"],
};
}
export function SpeakerAssignmentToJSON(value?: SpeakerAssignment | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
speaker: value.speaker,
timestamp_from: value.timestampFrom,
timestamp_to: value.timestampTo,
};
}

View File

@@ -0,0 +1,70 @@
/* tslint:disable */
/* eslint-disable */
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from "../runtime";
/**
*
* @export
* @interface SpeakerAssignmentStatus
*/
export interface SpeakerAssignmentStatus {
/**
*
* @type {any}
* @memberof SpeakerAssignmentStatus
*/
status: any | null;
}
/**
* Check if a given object implements the SpeakerAssignmentStatus interface.
*/
export function instanceOfSpeakerAssignmentStatus(value: object): boolean {
let isInstance = true;
isInstance = isInstance && "status" in value;
return isInstance;
}
export function SpeakerAssignmentStatusFromJSON(
json: any,
): SpeakerAssignmentStatus {
return SpeakerAssignmentStatusFromJSONTyped(json, false);
}
export function SpeakerAssignmentStatusFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): SpeakerAssignmentStatus {
if (json === undefined || json === null) {
return json;
}
return {
status: json["status"],
};
}
export function SpeakerAssignmentStatusToJSON(
value?: SpeakerAssignmentStatus | null,
): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
status: value.status,
};
}

View File

@@ -0,0 +1,87 @@
/* tslint:disable */
/* eslint-disable */
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from "../runtime";
/**
*
* @export
* @interface TranscriptParticipant
*/
export interface TranscriptParticipant {
/**
*
* @type {any}
* @memberof TranscriptParticipant
*/
id?: any | null;
/**
*
* @type {any}
* @memberof TranscriptParticipant
*/
speaker: any | null;
/**
*
* @type {any}
* @memberof TranscriptParticipant
*/
name: any | null;
}
/**
* Check if a given object implements the TranscriptParticipant interface.
*/
export function instanceOfTranscriptParticipant(value: object): boolean {
let isInstance = true;
isInstance = isInstance && "speaker" in value;
isInstance = isInstance && "name" in value;
return isInstance;
}
export function TranscriptParticipantFromJSON(
json: any,
): TranscriptParticipant {
return TranscriptParticipantFromJSONTyped(json, false);
}
export function TranscriptParticipantFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): TranscriptParticipant {
if (json === undefined || json === null) {
return json;
}
return {
id: !exists(json, "id") ? undefined : json["id"],
speaker: json["speaker"],
name: json["name"],
};
}
export function TranscriptParticipantToJSON(
value?: TranscriptParticipant | null,
): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
id: value.id,
speaker: value.speaker,
name: value.name,
};
}

View File

@@ -0,0 +1,73 @@
/* tslint:disable */
/* eslint-disable */
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from "../runtime";
/**
*
* @export
* @interface UpdateParticipant
*/
export interface UpdateParticipant {
/**
*
* @type {any}
* @memberof UpdateParticipant
*/
speaker?: any | null;
/**
*
* @type {any}
* @memberof UpdateParticipant
*/
name?: any | null;
}
/**
* Check if a given object implements the UpdateParticipant interface.
*/
export function instanceOfUpdateParticipant(value: object): boolean {
let isInstance = true;
return isInstance;
}
export function UpdateParticipantFromJSON(json: any): UpdateParticipant {
return UpdateParticipantFromJSONTyped(json, false);
}
export function UpdateParticipantFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): UpdateParticipant {
if (json === undefined || json === null) {
return json;
}
return {
speaker: !exists(json, "speaker") ? undefined : json["speaker"],
name: !exists(json, "name") ? undefined : json["name"],
};
}
export function UpdateParticipantToJSON(value?: UpdateParticipant | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
speaker: value.speaker,
name: value.name,
};
}

View File

@@ -55,6 +55,12 @@ export interface UpdateTranscript {
* @memberof UpdateTranscript
*/
shareMode?: any | null;
/**
*
* @type {any}
* @memberof UpdateTranscript
*/
participants?: any | null;
}
/**
@@ -88,6 +94,9 @@ export function UpdateTranscriptFromJSONTyped(
? undefined
: json["long_summary"],
shareMode: !exists(json, "share_mode") ? undefined : json["share_mode"],
participants: !exists(json, "participants")
? undefined
: json["participants"],
};
}
@@ -105,5 +114,6 @@ export function UpdateTranscriptToJSON(value?: UpdateTranscript | null): any {
short_summary: value.shortSummary,
long_summary: value.longSummary,
share_mode: value.shareMode,
participants: value.participants,
};
}

View File

@@ -0,0 +1,92 @@
/* tslint:disable */
/* eslint-disable */
/**
* FastAPI
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from "../runtime";
/**
*
* @export
* @interface Word
*/
export interface Word {
/**
*
* @type {any}
* @memberof Word
*/
text: any | null;
/**
*
* @type {any}
* @memberof Word
*/
start: any | null;
/**
*
* @type {any}
* @memberof Word
*/
end: any | null;
/**
*
* @type {any}
* @memberof Word
*/
speaker?: any | null;
}
/**
* Check if a given object implements the Word interface.
*/
export function instanceOfWord(value: object): boolean {
let isInstance = true;
isInstance = isInstance && "text" in value;
isInstance = isInstance && "start" in value;
isInstance = isInstance && "end" in value;
return isInstance;
}
export function WordFromJSON(json: any): Word {
return WordFromJSONTyped(json, false);
}
export function WordFromJSONTyped(
json: any,
ignoreDiscriminator: boolean,
): Word {
if (json === undefined || json === null) {
return json;
}
return {
text: json["text"],
start: json["start"],
end: json["end"],
speaker: !exists(json, "speaker") ? undefined : json["speaker"],
};
}
export function WordToJSON(value?: Word | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
text: value.text,
start: value.start,
end: value.end,
speaker: value.speaker,
};
}

View File

@@ -1,14 +1,22 @@
/* tslint:disable */
/* eslint-disable */
export * from "./AudioWaveform";
export * from "./CreateParticipant";
export * from "./CreateTranscript";
export * from "./DeletionStatus";
export * from "./GetTranscript";
export * from "./GetTranscriptSegmentTopic";
export * from "./GetTranscriptTopic";
export * from "./GetTranscriptTopicWithWords";
export * from "./HTTPValidationError";
export * from "./PageGetTranscript";
export * from "./Participant";
export * from "./RtcOffer";
export * from "./SpeakerAssignment";
export * from "./SpeakerAssignmentStatus";
export * from "./TranscriptParticipant";
export * from "./UpdateParticipant";
export * from "./UpdateTranscript";
export * from "./UserInfo";
export * from "./ValidationError";
export * from "./Word";