murashit_codex-panel/src/generated/app-server/WebSearchItem.ts

14 lines
633 B
TypeScript

// GENERATED CODE! DO NOT MODIFY BY HAND!
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { JsonValue } from "./serde_json/JsonValue";
import type { WebSearchAction } from "./v2/WebSearchAction";
export type WebSearchItem = { id: string, query: string, action: WebSearchAction | null,
/**
* Structured search results returned out-of-band by standalone web search.
*
* These stay as opaque JSON at the extension/app-server boundary so new
* result fields and result types can pass through without a Codex release.
*/
results: Array<JsonValue> | null, };