Implement query execution, scoped RPC enrichment, live collections, and scaffold integration

This commit is contained in:
Timothy J. Aveni
2026-09-17 14:34:16 -07:00
parent 7e69e675ba
commit c1330ae8e3
29 changed files with 2217 additions and 77 deletions
+7
View File
@@ -63,6 +63,13 @@ export type QxOperationSpec = {
outputType: QxValueType;
};
export type QxPortSpec = {
kind: "query";
id: string;
definitionDigest: string;
variables: QxValueType;
output: QxValueType;
watch: boolean;
} | {
kind: "state";
id: string;
valueType: QxValueType;