Skip to content

Commit a98552c

Browse files
[FSSDK-11197] EventTags type fix v5
1 parent 5e8b933 commit a98552c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/shared_types.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,13 @@ export interface UserProfile {
7373
experiment_bucket_map: ExperimentBucketMap;
7474
}
7575

76-
export type EventTags = Record<string, unknown>;
76+
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+
7783
export interface UserProfileService {
7884
lookup(userId: string): UserProfile;
7985
save(profile: UserProfile): void;

0 commit comments

Comments
 (0)