@vrplatform/log 2.0.89 → 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;
@@ -160,6 +161,16 @@ type AccountInvitationAcceptedProps = MaybePartial<{
160
161
  type AccountSignupStartedProps = MaybePartial<{
161
162
  type: 'owner' | 'property_manager' | 'partner';
162
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
+ }>;
163
174
  type AccountSignupCodeRequestedProps = MaybePartial<{
164
175
  firstName: string;
165
176
  lastName: 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;
@@ -160,6 +161,16 @@ type AccountInvitationAcceptedProps = MaybePartial<{
160
161
  type AccountSignupStartedProps = MaybePartial<{
161
162
  type: 'owner' | 'property_manager' | 'partner';
162
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
+ }>;
163
174
  type AccountSignupCodeRequestedProps = MaybePartial<{
164
175
  firstName: string;
165
176
  lastName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.89",
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;
@@ -237,6 +239,17 @@ type AccountSignupStartedProps = MaybePartial<{
237
239
  type: 'owner' | 'property_manager' | 'partner';
238
240
  }>;
239
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
+
240
253
  type AccountSignupCodeRequestedProps = MaybePartial<{
241
254
  firstName: string;
242
255
  lastName: string;