22 lines
550 B
TypeScript
22 lines
550 B
TypeScript
import type { ActionManifest, ComponentManifest } from "./types.js";
|
|
|
|
export const chartGrammar = "echarts-safe-subset" as const;
|
|
|
|
export const componentRegistry: ComponentManifest[] = [];
|
|
|
|
export const actionRegistry: ActionManifest[] = [
|
|
{
|
|
id: "zoom_to_map",
|
|
version: "1.0.0",
|
|
description: "Zoom the map to a coordinate.",
|
|
supportedSurfaces: ["map_overlay"],
|
|
},
|
|
];
|
|
|
|
export const uiRegistryResponse = {
|
|
schema_version: "agent-ui-registry@1",
|
|
chart_grammars: [],
|
|
components: componentRegistry,
|
|
actions: actionRegistry,
|
|
};
|