@vrplatform/log 3.0.25 → 3.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -138,6 +138,8 @@ export type TrackingEventProps = {
|
|
|
138
138
|
intercom_conversation_replied: IntercomConversationReplied;
|
|
139
139
|
intercom_conversation_closed: IntercomConversationClosed;
|
|
140
140
|
intercom_conversation_rated: IntercomConversationRated;
|
|
141
|
+
intercom_email_opened: IntercomEmailOpenedProps;
|
|
142
|
+
intercom_email_clicked: IntercomEmailClickedProps;
|
|
141
143
|
mrr_reported: MrrReportedProps;
|
|
142
144
|
webinar_attended: WebinarAttendedProps;
|
|
143
145
|
attio_meeting_recorded: AttioMeetingRecordedProps;
|
|
@@ -693,6 +695,23 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
693
695
|
intercomUserId?: string;
|
|
694
696
|
intercomCompanyIds?: string[];
|
|
695
697
|
}>;
|
|
698
|
+
type IntercomMarketingEmailEventProps = MaybePartial<{
|
|
699
|
+
userId: string;
|
|
700
|
+
tenantId: string;
|
|
701
|
+
userEmail: string;
|
|
702
|
+
intercomUserId: string;
|
|
703
|
+
intercomCompanyIds?: string[];
|
|
704
|
+
emailId: string;
|
|
705
|
+
emailSubject: string;
|
|
706
|
+
emailSentAt: string;
|
|
707
|
+
emailOpenedAt?: string;
|
|
708
|
+
emailClickedAt?: string;
|
|
709
|
+
emailClickedUrl?: string;
|
|
710
|
+
intercomCampaignId?: string;
|
|
711
|
+
intercomCampaignName?: string;
|
|
712
|
+
}>;
|
|
713
|
+
type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
|
|
714
|
+
type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;
|
|
696
715
|
type MrrReportedProps = MaybePartial<{
|
|
697
716
|
mrr: number;
|
|
698
717
|
mrrAlt: number;
|
|
@@ -138,6 +138,8 @@ export type TrackingEventProps = {
|
|
|
138
138
|
intercom_conversation_replied: IntercomConversationReplied;
|
|
139
139
|
intercom_conversation_closed: IntercomConversationClosed;
|
|
140
140
|
intercom_conversation_rated: IntercomConversationRated;
|
|
141
|
+
intercom_email_opened: IntercomEmailOpenedProps;
|
|
142
|
+
intercom_email_clicked: IntercomEmailClickedProps;
|
|
141
143
|
mrr_reported: MrrReportedProps;
|
|
142
144
|
webinar_attended: WebinarAttendedProps;
|
|
143
145
|
attio_meeting_recorded: AttioMeetingRecordedProps;
|
|
@@ -693,6 +695,23 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
693
695
|
intercomUserId?: string;
|
|
694
696
|
intercomCompanyIds?: string[];
|
|
695
697
|
}>;
|
|
698
|
+
type IntercomMarketingEmailEventProps = MaybePartial<{
|
|
699
|
+
userId: string;
|
|
700
|
+
tenantId: string;
|
|
701
|
+
userEmail: string;
|
|
702
|
+
intercomUserId: string;
|
|
703
|
+
intercomCompanyIds?: string[];
|
|
704
|
+
emailId: string;
|
|
705
|
+
emailSubject: string;
|
|
706
|
+
emailSentAt: string;
|
|
707
|
+
emailOpenedAt?: string;
|
|
708
|
+
emailClickedAt?: string;
|
|
709
|
+
emailClickedUrl?: string;
|
|
710
|
+
intercomCampaignId?: string;
|
|
711
|
+
intercomCampaignName?: string;
|
|
712
|
+
}>;
|
|
713
|
+
type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
|
|
714
|
+
type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;
|
|
696
715
|
type MrrReportedProps = MaybePartial<{
|
|
697
716
|
mrr: number;
|
|
698
717
|
mrrAlt: number;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -186,6 +186,8 @@ export type TrackingEventProps = {
|
|
|
186
186
|
intercom_conversation_replied: IntercomConversationReplied;
|
|
187
187
|
intercom_conversation_closed: IntercomConversationClosed;
|
|
188
188
|
intercom_conversation_rated: IntercomConversationRated;
|
|
189
|
+
intercom_email_opened: IntercomEmailOpenedProps;
|
|
190
|
+
intercom_email_clicked: IntercomEmailClickedProps;
|
|
189
191
|
mrr_reported: MrrReportedProps;
|
|
190
192
|
webinar_attended: WebinarAttendedProps;
|
|
191
193
|
attio_meeting_recorded: AttioMeetingRecordedProps;
|
|
@@ -876,6 +878,26 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
876
878
|
intercomCompanyIds?: string[];
|
|
877
879
|
}>;
|
|
878
880
|
|
|
881
|
+
type IntercomMarketingEmailEventProps = MaybePartial<{
|
|
882
|
+
userId: string;
|
|
883
|
+
tenantId: string;
|
|
884
|
+
userEmail: string;
|
|
885
|
+
intercomUserId: string;
|
|
886
|
+
intercomCompanyIds?: string[];
|
|
887
|
+
emailId: string;
|
|
888
|
+
emailSubject: string;
|
|
889
|
+
emailSentAt: string;
|
|
890
|
+
emailOpenedAt?: string;
|
|
891
|
+
emailClickedAt?: string;
|
|
892
|
+
emailClickedUrl?: string;
|
|
893
|
+
intercomCampaignId?: string;
|
|
894
|
+
intercomCampaignName?: string;
|
|
895
|
+
}>;
|
|
896
|
+
|
|
897
|
+
type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
|
|
898
|
+
|
|
899
|
+
type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;
|
|
900
|
+
|
|
879
901
|
type MrrReportedProps = MaybePartial<{
|
|
880
902
|
mrr: number;
|
|
881
903
|
mrrAlt: number;
|