fix sdk api

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-02-05 21:14:38 +01:00
parent 95408918ab
commit 5f873898e9
16 changed files with 343 additions and 251 deletions

View File

@@ -1,4 +1,4 @@
CREATE TABLE test.events (
CREATE TABLE openpanel.events (
`name` String,
`profile_id` String,
`project_id` String,

View File

@@ -56,7 +56,10 @@ export interface IServiceCreateEventPayload {
name: string;
profileId: string;
projectId: string;
properties: Record<string, unknown>;
properties: Record<string, unknown> & {
hash?: string;
query?: Record<string, unknown>;
};
createdAt: string;
country?: string | undefined;
city?: string | undefined;