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 5e8b933 commit a98552cCopy full SHA for a98552c
lib/shared_types.ts
@@ -73,7 +73,13 @@ export interface UserProfile {
73
experiment_bucket_map: ExperimentBucketMap;
74
}
75
76
-export type EventTags = Record<string, unknown>;
+export type EventTags = {
77
+ revenue?: string | number | null;
78
+ value?: string | number | null;
79
+ $opt_event_properties?: Record<string, unknown>;
80
+ [key: string]: unknown;
81
+};
82
+
83
export interface UserProfileService {
84
lookup(userId: string): UserProfile;
85
save(profile: UserProfile): void;
0 commit comments