mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
feat(server): find transcript actions (#11890)
This commit is contained in:
@@ -4,6 +4,7 @@ mutation claimAudioTranscription($jobId: String!) {
|
||||
status
|
||||
title
|
||||
summary
|
||||
actions
|
||||
transcription {
|
||||
speaker
|
||||
start
|
||||
|
||||
@@ -624,6 +624,7 @@ export const claimAudioTranscriptionMutation = {
|
||||
status
|
||||
title
|
||||
summary
|
||||
actions
|
||||
transcription {
|
||||
speaker
|
||||
start
|
||||
|
||||
@@ -1935,6 +1935,7 @@ export interface TranscriptionItemType {
|
||||
|
||||
export interface TranscriptionResultType {
|
||||
__typename?: 'TranscriptionResultType';
|
||||
actions: Maybe<Scalars['String']['output']>;
|
||||
id: Scalars['ID']['output'];
|
||||
status: AiJobStatus;
|
||||
summary: Maybe<Scalars['String']['output']>;
|
||||
@@ -3029,6 +3030,7 @@ export type ClaimAudioTranscriptionMutation = {
|
||||
status: AiJobStatus;
|
||||
title: string | null;
|
||||
summary: string | null;
|
||||
actions: string | null;
|
||||
transcription: Array<{
|
||||
__typename?: 'TranscriptionItemType';
|
||||
speaker: string;
|
||||
|
||||
Reference in New Issue
Block a user