type TapChatCard =
| {
delta?: number;
label: string;
type: "value";
value: string | number;
}
| {
label: string;
points: TapSeriesPoint[];
type: "series";
}
| {
columns: TapTableColumn[];
rows: Record<string, unknown>[];
type: "table";
}
| {
items: {
description?: string;
id: string;
label: string;
}[];
type: "list";
}
| {
label: string;
left: TapComparisonSide;
right: TapComparisonSide;
type: "comparison";
};
tap.ui.openInChat sends to the owner’s chat, one member per shape.