@vrplatform/log 2.0.88 → 2.0.90

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.
@@ -58,6 +58,7 @@ export type GroupProps = OptionalUser<{
58
58
  export type TrackingEventProps = {
59
59
  account_invitation_accepted: AccountInvitationAcceptedProps;
60
60
  account_signup_started: AccountSignupStartedProps;
61
+ account_terms_accepted: AccountTermsAcceptedProps;
61
62
  account_signup_code_requested: AccountSignupCodeRequestedProps;
62
63
  account_signup_code_failed: AccountSignupCodeFailedProps;
63
64
  account_signup_code_completed: AccountSignupCodeCompletedProps;
@@ -113,7 +114,6 @@ export type TrackingEventProps = {
113
114
  hyperline_invoice_voided: HyperlineInvoiceVoidedProps;
114
115
  hyperline_trial_started: HyperlineTrialStartedProps;
115
116
  hyperline_trial_ended: HyperlineTrialEndedProps;
116
- hyperline_subscription_created: HyperlineSubscriptionEventProps;
117
117
  hyperline_subscription_cancellation_scheduled: HyperlineSubscriptionEventProps;
118
118
  hyperline_subscription_charged: HyperlineSubscriptionEventProps;
119
119
  hyperline_subscription_status_changed: HyperlineSubscriptionEventProps;
@@ -161,6 +161,16 @@ type AccountInvitationAcceptedProps = MaybePartial<{
161
161
  type AccountSignupStartedProps = MaybePartial<{
162
162
  type: 'owner' | 'property_manager' | 'partner';
163
163
  }>;
164
+ type AccountTermsAcceptedProps = MaybePartial<{
165
+ userId: string;
166
+ userEmail: string;
167
+ tenantId: string;
168
+ acceptedTerms: boolean;
169
+ acceptedAt: string;
170
+ ipAddress: string;
171
+ userAgent: string;
172
+ sessionId: string;
173
+ }>;
164
174
  type AccountSignupCodeRequestedProps = MaybePartial<{
165
175
  firstName: string;
166
176
  lastName: string;
@@ -533,6 +543,21 @@ type TeamInfoUpdatedProps = MaybePartial<{
533
543
  userId: string;
534
544
  tenantId: string;
535
545
  userEmail: string;
546
+ companyName?: string;
547
+ email?: string;
548
+ name?: string;
549
+ phone?: string;
550
+ taxId?: string;
551
+ billingAddress?: Partial<{
552
+ full: string;
553
+ line1: string;
554
+ line2: string;
555
+ city: string;
556
+ countryCode: string;
557
+ stateCode: string;
558
+ postalCode: string;
559
+ state: string;
560
+ }> | null;
536
561
  }>;
537
562
  type TeamMemberRemovedProps = MaybePartial<{
538
563
  userId: string;
@@ -58,6 +58,7 @@ export type GroupProps = OptionalUser<{
58
58
  export type TrackingEventProps = {
59
59
  account_invitation_accepted: AccountInvitationAcceptedProps;
60
60
  account_signup_started: AccountSignupStartedProps;
61
+ account_terms_accepted: AccountTermsAcceptedProps;
61
62
  account_signup_code_requested: AccountSignupCodeRequestedProps;
62
63
  account_signup_code_failed: AccountSignupCodeFailedProps;
63
64
  account_signup_code_completed: AccountSignupCodeCompletedProps;
@@ -113,7 +114,6 @@ export type TrackingEventProps = {
113
114
  hyperline_invoice_voided: HyperlineInvoiceVoidedProps;
114
115
  hyperline_trial_started: HyperlineTrialStartedProps;
115
116
  hyperline_trial_ended: HyperlineTrialEndedProps;
116
- hyperline_subscription_created: HyperlineSubscriptionEventProps;
117
117
  hyperline_subscription_cancellation_scheduled: HyperlineSubscriptionEventProps;
118
118
  hyperline_subscription_charged: HyperlineSubscriptionEventProps;
119
119
  hyperline_subscription_status_changed: HyperlineSubscriptionEventProps;
@@ -161,6 +161,16 @@ type AccountInvitationAcceptedProps = MaybePartial<{
161
161
  type AccountSignupStartedProps = MaybePartial<{
162
162
  type: 'owner' | 'property_manager' | 'partner';
163
163
  }>;
164
+ type AccountTermsAcceptedProps = MaybePartial<{
165
+ userId: string;
166
+ userEmail: string;
167
+ tenantId: string;
168
+ acceptedTerms: boolean;
169
+ acceptedAt: string;
170
+ ipAddress: string;
171
+ userAgent: string;
172
+ sessionId: string;
173
+ }>;
164
174
  type AccountSignupCodeRequestedProps = MaybePartial<{
165
175
  firstName: string;
166
176
  lastName: string;
@@ -533,6 +543,21 @@ type TeamInfoUpdatedProps = MaybePartial<{
533
543
  userId: string;
534
544
  tenantId: string;
535
545
  userEmail: string;
546
+ companyName?: string;
547
+ email?: string;
548
+ name?: string;
549
+ phone?: string;
550
+ taxId?: string;
551
+ billingAddress?: Partial<{
552
+ full: string;
553
+ line1: string;
554
+ line2: string;
555
+ city: string;
556
+ countryCode: string;
557
+ stateCode: string;
558
+ postalCode: string;
559
+ state: string;
560
+ }> | null;
536
561
  }>;
537
562
  type TeamMemberRemovedProps = MaybePartial<{
538
563
  userId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.88",
3
+ "version": "2.0.90",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -72,6 +72,7 @@ export type GroupProps = OptionalUser<{
72
72
  /* Onboarding Funnel
73
73
  0. account_invitation_accepted
74
74
  1. account_signup_started
75
+ NEW: account_terms_accepted
75
76
  2. account_signup_code_requested
76
77
  2a. account_signup_code_failed
77
78
  2b. account_signup_code_requested
@@ -92,6 +93,7 @@ export type TrackingEventProps = {
92
93
  // Signup/Onboarding Funnel
93
94
  account_invitation_accepted: AccountInvitationAcceptedProps;
94
95
  account_signup_started: AccountSignupStartedProps;
96
+ account_terms_accepted: AccountTermsAcceptedProps;
95
97
  account_signup_code_requested: AccountSignupCodeRequestedProps;
96
98
  account_signup_code_failed: AccountSignupCodeFailedProps;
97
99
  account_signup_code_completed: AccountSignupCodeCompletedProps;
@@ -149,7 +151,6 @@ export type TrackingEventProps = {
149
151
  hyperline_invoice_voided: HyperlineInvoiceVoidedProps;
150
152
  hyperline_trial_started: HyperlineTrialStartedProps;
151
153
  hyperline_trial_ended: HyperlineTrialEndedProps;
152
- hyperline_subscription_created: HyperlineSubscriptionEventProps;
153
154
  hyperline_subscription_cancellation_scheduled: HyperlineSubscriptionEventProps;
154
155
  hyperline_subscription_charged: HyperlineSubscriptionEventProps;
155
156
  hyperline_subscription_status_changed: HyperlineSubscriptionEventProps;
@@ -238,6 +239,17 @@ type AccountSignupStartedProps = MaybePartial<{
238
239
  type: 'owner' | 'property_manager' | 'partner';
239
240
  }>;
240
241
 
242
+ type AccountTermsAcceptedProps = MaybePartial<{
243
+ userId: string;
244
+ userEmail: string;
245
+ tenantId: string;
246
+ acceptedTerms: boolean;
247
+ acceptedAt: string;
248
+ ipAddress: string;
249
+ userAgent: string;
250
+ sessionId: string;
251
+ }>;
252
+
241
253
  type AccountSignupCodeRequestedProps = MaybePartial<{
242
254
  firstName: string;
243
255
  lastName: string;
@@ -691,6 +703,21 @@ type TeamInfoUpdatedProps = MaybePartial<{
691
703
  userId: string;
692
704
  tenantId: string;
693
705
  userEmail: string;
706
+ companyName?: string;
707
+ email?: string;
708
+ name?: string;
709
+ phone?: string;
710
+ taxId?: string;
711
+ billingAddress?: Partial<{
712
+ full: string;
713
+ line1: string;
714
+ line2: string;
715
+ city: string;
716
+ countryCode: string;
717
+ stateCode: string;
718
+ postalCode: string;
719
+ state: string;
720
+ }> | null;
694
721
  }>;
695
722
 
696
723
  type TeamMemberRemovedProps = MaybePartial<{