We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b1bdd commit 908fa3aCopy full SHA for 908fa3a
templates/typescript-tests/src/ingest/indexSignatureTests.ts
@@ -12,7 +12,6 @@ import {
12
OlapTable,
13
Key,
14
DateTime,
15
- ClickHouseJson,
16
} from "@514labs/moose-lib";
17
18
/**
@@ -41,8 +40,8 @@ export interface UserEventOutput {
41
40
userId: Key<string>;
42
orgId?: string;
43
projectId?: string;
44
- // All additional properties collected into a JSON column
45
- properties: Record<string, any> & ClickHouseJson;
+ // JSON column for extra properties (uses Record<string, any> which maps to Json)
+ properties: Record<string, any>;
46
}
47
48
// Output table for processed events
0 commit comments