2026-07-09 17:24:27 +00:00
|
|
|
// 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.
|
2026-07-22 00:06:59 +00:00
|
|
|
import type { JsonValue } from "./serde_json/JsonValue";
|
2026-07-09 17:24:27 +00:00
|
|
|
import type { WebSearchAction } from "./v2/WebSearchAction";
|
|
|
|
|
|
2026-07-22 00:06:59 +00:00
|
|
|
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, };
|