@vrplatform/log 3.0.26 → 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.
@@ -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,8 @@ export type TrackingEventProps = {
139
138
  intercom_conversation_replied: IntercomConversationReplied;
140
139
  intercom_conversation_closed: IntercomConversationClosed;
141
140
  intercom_conversation_rated: IntercomConversationRated;
141
+ intercom_email_opened: IntercomEmailOpenedProps;
142
+ intercom_email_clicked: IntercomEmailClickedProps;
142
143
  mrr_reported: MrrReportedProps;
143
144
  webinar_attended: WebinarAttendedProps;
144
145
  attio_meeting_recorded: AttioMeetingRecordedProps;
@@ -217,12 +218,6 @@ type OnboardingCompletedProps = MaybePartial<{
217
218
  userId: string;
218
219
  listingId: string | null;
219
220
  }>;
220
- type OnboardingPmsSubmittedProps = MaybePartial<{
221
- userId: string;
222
- teamId: string;
223
- pmsSubmitted: string;
224
- dateTime: string;
225
- }>;
226
221
  type ConnectionCreatedProps = MaybePartial<{
227
222
  connectionId: string;
228
223
  tenantId: string;
@@ -700,6 +695,23 @@ type IntercomConversationRated = MaybePartial<{
700
695
  intercomUserId?: string;
701
696
  intercomCompanyIds?: string[];
702
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;
703
715
  type MrrReportedProps = MaybePartial<{
704
716
  mrr: number;
705
717
  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,8 @@ export type TrackingEventProps = {
139
138
  intercom_conversation_replied: IntercomConversationReplied;
140
139
  intercom_conversation_closed: IntercomConversationClosed;
141
140
  intercom_conversation_rated: IntercomConversationRated;
141
+ intercom_email_opened: IntercomEmailOpenedProps;
142
+ intercom_email_clicked: IntercomEmailClickedProps;
142
143
  mrr_reported: MrrReportedProps;
143
144
  webinar_attended: WebinarAttendedProps;
144
145
  attio_meeting_recorded: AttioMeetingRecordedProps;
@@ -217,12 +218,6 @@ type OnboardingCompletedProps = MaybePartial<{
217
218
  userId: string;
218
219
  listingId: string | null;
219
220
  }>;
220
- type OnboardingPmsSubmittedProps = MaybePartial<{
221
- userId: string;
222
- teamId: string;
223
- pmsSubmitted: string;
224
- dateTime: string;
225
- }>;
226
221
  type ConnectionCreatedProps = MaybePartial<{
227
222
  connectionId: string;
228
223
  tenantId: string;
@@ -700,6 +695,23 @@ type IntercomConversationRated = MaybePartial<{
700
695
  intercomUserId?: string;
701
696
  intercomCompanyIds?: string[];
702
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;
703
715
  type MrrReportedProps = MaybePartial<{
704
716
  mrr: number;
705
717
  mrrAlt: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "3.0.26",
3
+ "version": "3.0.27",
4
4
  "main": "src/index.ts",
5
5
  "packageManager": "bun@1.3.0",
6
6
  "publishConfig": {
@@ -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,8 @@ export type TrackingEventProps = {
187
186
  intercom_conversation_replied: IntercomConversationReplied;
188
187
  intercom_conversation_closed: IntercomConversationClosed;
189
188
  intercom_conversation_rated: IntercomConversationRated;
189
+ intercom_email_opened: IntercomEmailOpenedProps;
190
+ intercom_email_clicked: IntercomEmailClickedProps;
190
191
  mrr_reported: MrrReportedProps;
191
192
  webinar_attended: WebinarAttendedProps;
192
193
  attio_meeting_recorded: AttioMeetingRecordedProps;
@@ -309,13 +310,6 @@ type OnboardingCompletedProps = MaybePartial<{
309
310
  listingId: string | null; // null if skipped
310
311
  }>;
311
312
 
312
- type OnboardingPmsSubmittedProps = MaybePartial<{
313
- userId: string;
314
- teamId: string;
315
- pmsSubmitted: string;
316
- dateTime: string;
317
- }>;
318
-
319
313
  // Connection Events
320
314
 
321
315
  type ConnectionCreatedProps = MaybePartial<{
@@ -884,6 +878,26 @@ type IntercomConversationRated = MaybePartial<{
884
878
  intercomCompanyIds?: string[];
885
879
  }>;
886
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
+
887
901
  type MrrReportedProps = MaybePartial<{
888
902
  mrr: number;
889
903
  mrrAlt: number;