Add shared types check in CI (#195)

* add check shared types check in CI

* regenerate shared types
This commit is contained in:
Anastasiia Solop
2025-07-15 18:35:02 +02:00
committed by GitHub
parent 5697cead32
commit 2aac31ac98
11 changed files with 84 additions and 63 deletions

View File

@@ -74,6 +74,8 @@ export type DirectoryEntry = { name: string, path: string, is_directory: boolean
export type DirectoryListResponse = { entries: Array<DirectoryEntry>, current_path: string, };
export type DeviceStartResponse = { device_code: string, user_code: string, verification_uri: string, expires_in: number, interval: number, };
export type DiffChunkType = "Equal" | "Insert" | "Delete";
export type DiffChunk = { chunk_type: DiffChunkType, content: string, };
@@ -114,8 +116,6 @@ export type NormalizedEntryType = { "type": "user_message" } | { "type": "assist
export type ActionType = { "action": "file_read", path: string, } | { "action": "file_write", path: string, } | { "action": "command_run", command: string, } | { "action": "search", query: string, } | { "action": "web_fetch", url: string, } | { "action": "task_create", description: string, } | { "action": "other", description: string, };
export type DeviceStartResponse = { device_code: string, user_code: string, verification_uri: string, expires_in: number, interval: number, };
// Generated constants
export const EXECUTOR_TYPES: string[] = [
"echo",