Skip to content

Commit

Permalink
Update types.ts (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
hani-iterable authored Dec 23, 2023
1 parent 4b2194a commit 7cca009
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/events/embedded/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export interface DeviceInfo {
}

export interface EnbeddedMessagingDismiss {
email: string;
userId: string;
email?: string;
userId?: string;
messageId: string;
buttonIdentifier: string;
deviceInfo: DeviceInfo;
Expand All @@ -85,7 +85,8 @@ export interface Impression {
}

export interface EnbeddedMessagingSession {
userId: string;
userId?: string;
email?: string;
session: Session;
impressions: Array<Impression>;
deviceInfo: DeviceInfo;
Expand Down

0 comments on commit 7cca009

Please sign in to comment.