@vrplatform/log 3.0.26 → 3.0.28
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.
|
@@ -62,7 +62,6 @@ export type TrackingEventProps = {
|
|
|
62
62
|
account_signup_completed: AccountSignupCompletedProps;
|
|
63
63
|
onboarding_account_settings_set: OnboardingAccountSettingsSetProps;
|
|
64
64
|
onboarding_completed: OnboardingCompletedProps;
|
|
65
|
-
onboarding_pms_submitted: OnboardingPmsSubmittedProps;
|
|
66
65
|
getting_started_connection_skipped: GettingStartedConnectionSkippedProps;
|
|
67
66
|
getting_started_team_members_invite_skipped: GettingStartedTeamMembersInviteSkippedProps;
|
|
68
67
|
account_signed_out: AccountSignedOutProps;
|
|
@@ -139,6 +138,9 @@ export type TrackingEventProps = {
|
|
|
139
138
|
intercom_conversation_replied: IntercomConversationReplied;
|
|
140
139
|
intercom_conversation_closed: IntercomConversationClosed;
|
|
141
140
|
intercom_conversation_rated: IntercomConversationRated;
|
|
141
|
+
intercom_email_received: IntercomEmailReceivedProps;
|
|
142
|
+
intercom_email_opened: IntercomEmailOpenedProps;
|
|
143
|
+
intercom_email_clicked: IntercomEmailClickedProps;
|
|
142
144
|
mrr_reported: MrrReportedProps;
|
|
143
145
|
webinar_attended: WebinarAttendedProps;
|
|
144
146
|
attio_meeting_recorded: AttioMeetingRecordedProps;
|
|
@@ -217,12 +219,6 @@ type OnboardingCompletedProps = MaybePartial<{
|
|
|
217
219
|
userId: string;
|
|
218
220
|
listingId: string | null;
|
|
219
221
|
}>;
|
|
220
|
-
type OnboardingPmsSubmittedProps = MaybePartial<{
|
|
221
|
-
userId: string;
|
|
222
|
-
teamId: string;
|
|
223
|
-
pmsSubmitted: string;
|
|
224
|
-
dateTime: string;
|
|
225
|
-
}>;
|
|
226
222
|
type ConnectionCreatedProps = MaybePartial<{
|
|
227
223
|
connectionId: string;
|
|
228
224
|
tenantId: string;
|
|
@@ -700,6 +696,25 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
700
696
|
intercomUserId?: string;
|
|
701
697
|
intercomCompanyIds?: string[];
|
|
702
698
|
}>;
|
|
699
|
+
type IntercomMarketingEmailEventProps = MaybePartial<{
|
|
700
|
+
userId: string;
|
|
701
|
+
tenantId: string;
|
|
702
|
+
userEmail: string;
|
|
703
|
+
intercomUserId: string;
|
|
704
|
+
intercomCompanyIds?: string[];
|
|
705
|
+
emailId: string;
|
|
706
|
+
emailSubject: string;
|
|
707
|
+
emailSentAt: string;
|
|
708
|
+
emailReceivedAt?: string;
|
|
709
|
+
emailOpenedAt?: string;
|
|
710
|
+
emailClickedAt?: string;
|
|
711
|
+
emailClickedUrl?: string;
|
|
712
|
+
intercomCampaignId?: string;
|
|
713
|
+
intercomCampaignName?: string;
|
|
714
|
+
}>;
|
|
715
|
+
type IntercomEmailReceivedProps = IntercomMarketingEmailEventProps;
|
|
716
|
+
type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
|
|
717
|
+
type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;
|
|
703
718
|
type MrrReportedProps = MaybePartial<{
|
|
704
719
|
mrr: number;
|
|
705
720
|
mrrAlt: number;
|
|
@@ -62,7 +62,6 @@ export type TrackingEventProps = {
|
|
|
62
62
|
account_signup_completed: AccountSignupCompletedProps;
|
|
63
63
|
onboarding_account_settings_set: OnboardingAccountSettingsSetProps;
|
|
64
64
|
onboarding_completed: OnboardingCompletedProps;
|
|
65
|
-
onboarding_pms_submitted: OnboardingPmsSubmittedProps;
|
|
66
65
|
getting_started_connection_skipped: GettingStartedConnectionSkippedProps;
|
|
67
66
|
getting_started_team_members_invite_skipped: GettingStartedTeamMembersInviteSkippedProps;
|
|
68
67
|
account_signed_out: AccountSignedOutProps;
|
|
@@ -139,6 +138,9 @@ export type TrackingEventProps = {
|
|
|
139
138
|
intercom_conversation_replied: IntercomConversationReplied;
|
|
140
139
|
intercom_conversation_closed: IntercomConversationClosed;
|
|
141
140
|
intercom_conversation_rated: IntercomConversationRated;
|
|
141
|
+
intercom_email_received: IntercomEmailReceivedProps;
|
|
142
|
+
intercom_email_opened: IntercomEmailOpenedProps;
|
|
143
|
+
intercom_email_clicked: IntercomEmailClickedProps;
|
|
142
144
|
mrr_reported: MrrReportedProps;
|
|
143
145
|
webinar_attended: WebinarAttendedProps;
|
|
144
146
|
attio_meeting_recorded: AttioMeetingRecordedProps;
|
|
@@ -217,12 +219,6 @@ type OnboardingCompletedProps = MaybePartial<{
|
|
|
217
219
|
userId: string;
|
|
218
220
|
listingId: string | null;
|
|
219
221
|
}>;
|
|
220
|
-
type OnboardingPmsSubmittedProps = MaybePartial<{
|
|
221
|
-
userId: string;
|
|
222
|
-
teamId: string;
|
|
223
|
-
pmsSubmitted: string;
|
|
224
|
-
dateTime: string;
|
|
225
|
-
}>;
|
|
226
222
|
type ConnectionCreatedProps = MaybePartial<{
|
|
227
223
|
connectionId: string;
|
|
228
224
|
tenantId: string;
|
|
@@ -700,6 +696,25 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
700
696
|
intercomUserId?: string;
|
|
701
697
|
intercomCompanyIds?: string[];
|
|
702
698
|
}>;
|
|
699
|
+
type IntercomMarketingEmailEventProps = MaybePartial<{
|
|
700
|
+
userId: string;
|
|
701
|
+
tenantId: string;
|
|
702
|
+
userEmail: string;
|
|
703
|
+
intercomUserId: string;
|
|
704
|
+
intercomCompanyIds?: string[];
|
|
705
|
+
emailId: string;
|
|
706
|
+
emailSubject: string;
|
|
707
|
+
emailSentAt: string;
|
|
708
|
+
emailReceivedAt?: string;
|
|
709
|
+
emailOpenedAt?: string;
|
|
710
|
+
emailClickedAt?: string;
|
|
711
|
+
emailClickedUrl?: string;
|
|
712
|
+
intercomCampaignId?: string;
|
|
713
|
+
intercomCampaignName?: string;
|
|
714
|
+
}>;
|
|
715
|
+
type IntercomEmailReceivedProps = IntercomMarketingEmailEventProps;
|
|
716
|
+
type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
|
|
717
|
+
type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;
|
|
703
718
|
type MrrReportedProps = MaybePartial<{
|
|
704
719
|
mrr: number;
|
|
705
720
|
mrrAlt: number;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -104,7 +104,6 @@ export type TrackingEventProps = {
|
|
|
104
104
|
account_signup_completed: AccountSignupCompletedProps;
|
|
105
105
|
onboarding_account_settings_set: OnboardingAccountSettingsSetProps;
|
|
106
106
|
onboarding_completed: OnboardingCompletedProps;
|
|
107
|
-
onboarding_pms_submitted: OnboardingPmsSubmittedProps;
|
|
108
107
|
|
|
109
108
|
// Getting Started Funnel
|
|
110
109
|
getting_started_connection_skipped: GettingStartedConnectionSkippedProps;
|
|
@@ -187,6 +186,9 @@ export type TrackingEventProps = {
|
|
|
187
186
|
intercom_conversation_replied: IntercomConversationReplied;
|
|
188
187
|
intercom_conversation_closed: IntercomConversationClosed;
|
|
189
188
|
intercom_conversation_rated: IntercomConversationRated;
|
|
189
|
+
intercom_email_received: IntercomEmailReceivedProps;
|
|
190
|
+
intercom_email_opened: IntercomEmailOpenedProps;
|
|
191
|
+
intercom_email_clicked: IntercomEmailClickedProps;
|
|
190
192
|
mrr_reported: MrrReportedProps;
|
|
191
193
|
webinar_attended: WebinarAttendedProps;
|
|
192
194
|
attio_meeting_recorded: AttioMeetingRecordedProps;
|
|
@@ -309,13 +311,6 @@ type OnboardingCompletedProps = MaybePartial<{
|
|
|
309
311
|
listingId: string | null; // null if skipped
|
|
310
312
|
}>;
|
|
311
313
|
|
|
312
|
-
type OnboardingPmsSubmittedProps = MaybePartial<{
|
|
313
|
-
userId: string;
|
|
314
|
-
teamId: string;
|
|
315
|
-
pmsSubmitted: string;
|
|
316
|
-
dateTime: string;
|
|
317
|
-
}>;
|
|
318
|
-
|
|
319
314
|
// Connection Events
|
|
320
315
|
|
|
321
316
|
type ConnectionCreatedProps = MaybePartial<{
|
|
@@ -884,6 +879,29 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
884
879
|
intercomCompanyIds?: string[];
|
|
885
880
|
}>;
|
|
886
881
|
|
|
882
|
+
type IntercomMarketingEmailEventProps = MaybePartial<{
|
|
883
|
+
userId: string;
|
|
884
|
+
tenantId: string;
|
|
885
|
+
userEmail: string;
|
|
886
|
+
intercomUserId: string;
|
|
887
|
+
intercomCompanyIds?: string[];
|
|
888
|
+
emailId: string;
|
|
889
|
+
emailSubject: string;
|
|
890
|
+
emailSentAt: string;
|
|
891
|
+
emailReceivedAt?: string;
|
|
892
|
+
emailOpenedAt?: string;
|
|
893
|
+
emailClickedAt?: string;
|
|
894
|
+
emailClickedUrl?: string;
|
|
895
|
+
intercomCampaignId?: string;
|
|
896
|
+
intercomCampaignName?: string;
|
|
897
|
+
}>;
|
|
898
|
+
|
|
899
|
+
type IntercomEmailReceivedProps = IntercomMarketingEmailEventProps;
|
|
900
|
+
|
|
901
|
+
type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
|
|
902
|
+
|
|
903
|
+
type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;
|
|
904
|
+
|
|
887
905
|
type MrrReportedProps = MaybePartial<{
|
|
888
906
|
mrr: number;
|
|
889
907
|
mrrAlt: number;
|