Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/ai/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,7 @@
mode: 'external';
identifier: string;
key: string;
options?: any;

Check warning on line 1455 in src/ai/index.ts

View workflow job for this annotation

GitHub Actions / code-coverage

Unexpected any. Specify a different type
}

export interface AddAiPromptRequest {
Expand Down Expand Up @@ -1528,7 +1528,7 @@
}

export interface OverridePromptValues {
[key: string]: any;

Check warning on line 1531 in src/ai/index.ts

View workflow job for this annotation

GitHub Actions / code-coverage

Unexpected any. Specify a different type
}
/* ai Prompts Section END*/

Expand Down Expand Up @@ -1656,7 +1656,7 @@

export interface OtherChatCompletionRequest {
stream?: boolean;
[key: string]: any;

Check warning on line 1659 in src/ai/index.ts

View workflow job for this annotation

GitHub Actions / code-coverage

Unexpected any. Specify a different type
}

export interface GoogleGeminiChatCompletionRequest extends OtherChatCompletionRequest {
Expand Down Expand Up @@ -1704,6 +1704,7 @@
parserVersion?: number;
tmIds?: number[];
glossaryIds?: number[];
styleGuideIds?: number[];
aiPromptId?: number;
aiProviderId?: number;
aiModelId?: string;
Expand Down Expand Up @@ -1733,6 +1734,7 @@
sourceLanguageId?: string;
tmIds?: number[];
glossaryIds?: number[];
styleGuideIds?: number[];
aiPromptId?: number;
aiProviderId?: number;
aiModelId?: string;
Expand Down
Loading