@vrplatform/log 3.0.24 → 3.0.26

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,6 +62,7 @@ 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;
65
66
  getting_started_connection_skipped: GettingStartedConnectionSkippedProps;
66
67
  getting_started_team_members_invite_skipped: GettingStartedTeamMembersInviteSkippedProps;
67
68
  account_signed_out: AccountSignedOutProps;
@@ -216,6 +217,12 @@ type OnboardingCompletedProps = MaybePartial<{
216
217
  userId: string;
217
218
  listingId: string | null;
218
219
  }>;
220
+ type OnboardingPmsSubmittedProps = MaybePartial<{
221
+ userId: string;
222
+ teamId: string;
223
+ pmsSubmitted: string;
224
+ dateTime: string;
225
+ }>;
219
226
  type ConnectionCreatedProps = MaybePartial<{
220
227
  connectionId: string;
221
228
  tenantId: string;
@@ -669,6 +676,8 @@ type IntercomConversationCreated = MaybePartial<{
669
676
  deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
670
677
  createdAt: string;
671
678
  submittedFrom: 'user' | 'admin';
679
+ intercomUserId?: string;
680
+ intercomCompanyIds?: string[];
672
681
  }>;
673
682
  type IntercomConversationReplied = IntercomConversationCreated;
674
683
  type IntercomConversationClosed = MaybePartial<{
@@ -677,6 +686,8 @@ type IntercomConversationClosed = MaybePartial<{
677
686
  userEmail: string;
678
687
  conversationId: string;
679
688
  createdAt: string;
689
+ intercomUserId?: string;
690
+ intercomCompanyIds?: string[];
680
691
  }>;
681
692
  type IntercomConversationRated = MaybePartial<{
682
693
  userId: string;
@@ -686,6 +697,8 @@ type IntercomConversationRated = MaybePartial<{
686
697
  rating: number;
687
698
  remark: string;
688
699
  createdAt: string;
700
+ intercomUserId?: string;
701
+ intercomCompanyIds?: string[];
689
702
  }>;
690
703
  type MrrReportedProps = MaybePartial<{
691
704
  mrr: number;
@@ -62,6 +62,7 @@ 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;
65
66
  getting_started_connection_skipped: GettingStartedConnectionSkippedProps;
66
67
  getting_started_team_members_invite_skipped: GettingStartedTeamMembersInviteSkippedProps;
67
68
  account_signed_out: AccountSignedOutProps;
@@ -216,6 +217,12 @@ type OnboardingCompletedProps = MaybePartial<{
216
217
  userId: string;
217
218
  listingId: string | null;
218
219
  }>;
220
+ type OnboardingPmsSubmittedProps = MaybePartial<{
221
+ userId: string;
222
+ teamId: string;
223
+ pmsSubmitted: string;
224
+ dateTime: string;
225
+ }>;
219
226
  type ConnectionCreatedProps = MaybePartial<{
220
227
  connectionId: string;
221
228
  tenantId: string;
@@ -669,6 +676,8 @@ type IntercomConversationCreated = MaybePartial<{
669
676
  deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
670
677
  createdAt: string;
671
678
  submittedFrom: 'user' | 'admin';
679
+ intercomUserId?: string;
680
+ intercomCompanyIds?: string[];
672
681
  }>;
673
682
  type IntercomConversationReplied = IntercomConversationCreated;
674
683
  type IntercomConversationClosed = MaybePartial<{
@@ -677,6 +686,8 @@ type IntercomConversationClosed = MaybePartial<{
677
686
  userEmail: string;
678
687
  conversationId: string;
679
688
  createdAt: string;
689
+ intercomUserId?: string;
690
+ intercomCompanyIds?: string[];
680
691
  }>;
681
692
  type IntercomConversationRated = MaybePartial<{
682
693
  userId: string;
@@ -686,6 +697,8 @@ type IntercomConversationRated = MaybePartial<{
686
697
  rating: number;
687
698
  remark: string;
688
699
  createdAt: string;
700
+ intercomUserId?: string;
701
+ intercomCompanyIds?: string[];
689
702
  }>;
690
703
  type MrrReportedProps = MaybePartial<{
691
704
  mrr: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "3.0.24",
3
+ "version": "3.0.26",
4
4
  "main": "src/index.ts",
5
5
  "packageManager": "bun@1.3.0",
6
6
  "publishConfig": {
@@ -104,6 +104,7 @@ 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;
107
108
 
108
109
  // Getting Started Funnel
109
110
  getting_started_connection_skipped: GettingStartedConnectionSkippedProps;
@@ -308,6 +309,13 @@ type OnboardingCompletedProps = MaybePartial<{
308
309
  listingId: string | null; // null if skipped
309
310
  }>;
310
311
 
312
+ type OnboardingPmsSubmittedProps = MaybePartial<{
313
+ userId: string;
314
+ teamId: string;
315
+ pmsSubmitted: string;
316
+ dateTime: string;
317
+ }>;
318
+
311
319
  // Connection Events
312
320
 
313
321
  type ConnectionCreatedProps = MaybePartial<{
@@ -848,6 +856,8 @@ type IntercomConversationCreated = MaybePartial<{
848
856
  deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
849
857
  createdAt: string;
850
858
  submittedFrom: 'user' | 'admin';
859
+ intercomUserId?: string;
860
+ intercomCompanyIds?: string[];
851
861
  }>;
852
862
 
853
863
  type IntercomConversationReplied = IntercomConversationCreated;
@@ -858,6 +868,8 @@ type IntercomConversationClosed = MaybePartial<{
858
868
  userEmail: string;
859
869
  conversationId: string;
860
870
  createdAt: string;
871
+ intercomUserId?: string;
872
+ intercomCompanyIds?: string[];
861
873
  }>;
862
874
 
863
875
  type IntercomConversationRated = MaybePartial<{
@@ -868,6 +880,8 @@ type IntercomConversationRated = MaybePartial<{
868
880
  rating: number;
869
881
  remark: string;
870
882
  createdAt: string;
883
+ intercomUserId?: string;
884
+ intercomCompanyIds?: string[];
871
885
  }>;
872
886
 
873
887
  type MrrReportedProps = MaybePartial<{