@vrplatform/log 3.0.18 → 3.0.20
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.
- package/build/main/tracking/types.d.ts +11 -18
- package/build/module/tracking/types.d.ts +11 -18
- package/package.json +1 -1
- package/src/tracking/types.ts +15 -3
|
@@ -60,7 +60,6 @@ export type TrackingEventProps = {
|
|
|
60
60
|
account_signup_started: AccountSignupStartedProps;
|
|
61
61
|
account_terms_accepted: AccountTermsAcceptedProps;
|
|
62
62
|
account_signup_code_requested: AccountSignupCodeRequestedProps;
|
|
63
|
-
account_signup_code_failed: AccountSignupCodeFailedProps;
|
|
64
63
|
account_signup_code_completed: AccountSignupCodeCompletedProps;
|
|
65
64
|
account_signup_completed: AccountSignupCompletedProps;
|
|
66
65
|
onboarding_account_settings_set: OnboardingAccountSettingsSetProps;
|
|
@@ -69,12 +68,11 @@ export type TrackingEventProps = {
|
|
|
69
68
|
getting_started_team_members_invite_skipped: GettingStartedTeamMembersInviteSkippedProps;
|
|
70
69
|
account_signed_out: AccountSignedOutProps;
|
|
71
70
|
account_signin_completed: AccountSigninCompletedProps;
|
|
72
|
-
account_password_reset_requested: AccountPasswordResetRequestedProps;
|
|
73
|
-
account_password_reset_failed: AccountPasswordResetFailedProps;
|
|
74
71
|
account_password_reset_completed: AccountPasswordResetCompletedProps;
|
|
75
72
|
connection_created: ConnectionCreatedProps;
|
|
76
73
|
connection_reconnected: ConnectionReconnectedProps;
|
|
77
74
|
connection_deleted: ConnectionDeletedProps;
|
|
75
|
+
bank_account_created: BankAccountCreatedProps;
|
|
78
76
|
connection_requested: ConnectionRequestedProps;
|
|
79
77
|
ownership_period_created: OwnershipPeriodCreatedProps;
|
|
80
78
|
ownership_created: OwnershipCreatedProps;
|
|
@@ -187,14 +185,6 @@ type AccountSignupCodeRequestedProps = MaybePartial<{
|
|
|
187
185
|
companyName: string;
|
|
188
186
|
type: 'owner' | 'property_manager' | 'partner';
|
|
189
187
|
}>;
|
|
190
|
-
type AccountSignupCodeFailedProps = MaybePartial<{
|
|
191
|
-
firstName: string;
|
|
192
|
-
lastName: string;
|
|
193
|
-
userEmail: string;
|
|
194
|
-
companyName: string;
|
|
195
|
-
type: 'owner' | 'property_manager' | 'partner';
|
|
196
|
-
status: 'missing_requirements' | 'abandoned' | null | any;
|
|
197
|
-
}>;
|
|
198
188
|
type AccountSignupCodeCompletedProps = MaybePartial<{
|
|
199
189
|
firstName: string;
|
|
200
190
|
lastName: string;
|
|
@@ -237,6 +227,16 @@ type ConnectionDeletedProps = MaybePartial<{
|
|
|
237
227
|
appId: string;
|
|
238
228
|
userEmail: string;
|
|
239
229
|
}>;
|
|
230
|
+
type BankAccountCreatedProps = MaybePartial<{
|
|
231
|
+
userId: string;
|
|
232
|
+
teamId: string;
|
|
233
|
+
bankAccountId: string;
|
|
234
|
+
createdAt: string;
|
|
235
|
+
bankAccountType: 'trust' | 'operating';
|
|
236
|
+
source: 'plaid' | 'manual';
|
|
237
|
+
connectionId?: string;
|
|
238
|
+
bankAccountName?: string;
|
|
239
|
+
}>;
|
|
240
240
|
type ConnectionReconnectedProps = MaybePartial<{
|
|
241
241
|
connectionId: string;
|
|
242
242
|
tenantId: string;
|
|
@@ -263,13 +263,6 @@ type GettingStartedTeamMembersInviteSkippedProps = MaybePartial<{
|
|
|
263
263
|
type AccountPasswordResetCompletedProps = MaybePartial<{
|
|
264
264
|
userEmail: string;
|
|
265
265
|
}>;
|
|
266
|
-
type AccountPasswordResetFailedProps = MaybePartial<{
|
|
267
|
-
userEmail: string;
|
|
268
|
-
status: 'needs_second_factor' | 'needs_identifier' | 'needs_first_factor' | 'needs_new_password' | null | any;
|
|
269
|
-
}>;
|
|
270
|
-
type AccountPasswordResetRequestedProps = MaybePartial<{
|
|
271
|
-
userEmail: string;
|
|
272
|
-
}>;
|
|
273
266
|
type AccountSignedOutProps = MaybePartial<{
|
|
274
267
|
userId: string;
|
|
275
268
|
userEmail: string;
|
|
@@ -60,7 +60,6 @@ export type TrackingEventProps = {
|
|
|
60
60
|
account_signup_started: AccountSignupStartedProps;
|
|
61
61
|
account_terms_accepted: AccountTermsAcceptedProps;
|
|
62
62
|
account_signup_code_requested: AccountSignupCodeRequestedProps;
|
|
63
|
-
account_signup_code_failed: AccountSignupCodeFailedProps;
|
|
64
63
|
account_signup_code_completed: AccountSignupCodeCompletedProps;
|
|
65
64
|
account_signup_completed: AccountSignupCompletedProps;
|
|
66
65
|
onboarding_account_settings_set: OnboardingAccountSettingsSetProps;
|
|
@@ -69,12 +68,11 @@ export type TrackingEventProps = {
|
|
|
69
68
|
getting_started_team_members_invite_skipped: GettingStartedTeamMembersInviteSkippedProps;
|
|
70
69
|
account_signed_out: AccountSignedOutProps;
|
|
71
70
|
account_signin_completed: AccountSigninCompletedProps;
|
|
72
|
-
account_password_reset_requested: AccountPasswordResetRequestedProps;
|
|
73
|
-
account_password_reset_failed: AccountPasswordResetFailedProps;
|
|
74
71
|
account_password_reset_completed: AccountPasswordResetCompletedProps;
|
|
75
72
|
connection_created: ConnectionCreatedProps;
|
|
76
73
|
connection_reconnected: ConnectionReconnectedProps;
|
|
77
74
|
connection_deleted: ConnectionDeletedProps;
|
|
75
|
+
bank_account_created: BankAccountCreatedProps;
|
|
78
76
|
connection_requested: ConnectionRequestedProps;
|
|
79
77
|
ownership_period_created: OwnershipPeriodCreatedProps;
|
|
80
78
|
ownership_created: OwnershipCreatedProps;
|
|
@@ -187,14 +185,6 @@ type AccountSignupCodeRequestedProps = MaybePartial<{
|
|
|
187
185
|
companyName: string;
|
|
188
186
|
type: 'owner' | 'property_manager' | 'partner';
|
|
189
187
|
}>;
|
|
190
|
-
type AccountSignupCodeFailedProps = MaybePartial<{
|
|
191
|
-
firstName: string;
|
|
192
|
-
lastName: string;
|
|
193
|
-
userEmail: string;
|
|
194
|
-
companyName: string;
|
|
195
|
-
type: 'owner' | 'property_manager' | 'partner';
|
|
196
|
-
status: 'missing_requirements' | 'abandoned' | null | any;
|
|
197
|
-
}>;
|
|
198
188
|
type AccountSignupCodeCompletedProps = MaybePartial<{
|
|
199
189
|
firstName: string;
|
|
200
190
|
lastName: string;
|
|
@@ -237,6 +227,16 @@ type ConnectionDeletedProps = MaybePartial<{
|
|
|
237
227
|
appId: string;
|
|
238
228
|
userEmail: string;
|
|
239
229
|
}>;
|
|
230
|
+
type BankAccountCreatedProps = MaybePartial<{
|
|
231
|
+
userId: string;
|
|
232
|
+
teamId: string;
|
|
233
|
+
bankAccountId: string;
|
|
234
|
+
createdAt: string;
|
|
235
|
+
bankAccountType: 'trust' | 'operating';
|
|
236
|
+
source: 'plaid' | 'manual';
|
|
237
|
+
connectionId?: string;
|
|
238
|
+
bankAccountName?: string;
|
|
239
|
+
}>;
|
|
240
240
|
type ConnectionReconnectedProps = MaybePartial<{
|
|
241
241
|
connectionId: string;
|
|
242
242
|
tenantId: string;
|
|
@@ -263,13 +263,6 @@ type GettingStartedTeamMembersInviteSkippedProps = MaybePartial<{
|
|
|
263
263
|
type AccountPasswordResetCompletedProps = MaybePartial<{
|
|
264
264
|
userEmail: string;
|
|
265
265
|
}>;
|
|
266
|
-
type AccountPasswordResetFailedProps = MaybePartial<{
|
|
267
|
-
userEmail: string;
|
|
268
|
-
status: 'needs_second_factor' | 'needs_identifier' | 'needs_first_factor' | 'needs_new_password' | null | any;
|
|
269
|
-
}>;
|
|
270
|
-
type AccountPasswordResetRequestedProps = MaybePartial<{
|
|
271
|
-
userEmail: string;
|
|
272
|
-
}>;
|
|
273
266
|
type AccountSignedOutProps = MaybePartial<{
|
|
274
267
|
userId: string;
|
|
275
268
|
userEmail: string;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -100,7 +100,7 @@ export type TrackingEventProps = {
|
|
|
100
100
|
account_signup_started: AccountSignupStartedProps;
|
|
101
101
|
account_terms_accepted: AccountTermsAcceptedProps;
|
|
102
102
|
account_signup_code_requested: AccountSignupCodeRequestedProps;
|
|
103
|
-
account_signup_code_failed: AccountSignupCodeFailedProps;
|
|
103
|
+
// account_signup_code_failed: AccountSignupCodeFailedProps; legacy since PRO-12315
|
|
104
104
|
account_signup_code_completed: AccountSignupCodeCompletedProps;
|
|
105
105
|
account_signup_completed: AccountSignupCompletedProps;
|
|
106
106
|
onboarding_account_settings_set: OnboardingAccountSettingsSetProps;
|
|
@@ -113,12 +113,13 @@ export type TrackingEventProps = {
|
|
|
113
113
|
// Other Events
|
|
114
114
|
account_signed_out: AccountSignedOutProps;
|
|
115
115
|
account_signin_completed: AccountSigninCompletedProps;
|
|
116
|
-
account_password_reset_requested: AccountPasswordResetRequestedProps;
|
|
117
|
-
account_password_reset_failed: AccountPasswordResetFailedProps;
|
|
116
|
+
// account_password_reset_requested: AccountPasswordResetRequestedProps; legacy since PRO-12315
|
|
117
|
+
// account_password_reset_failed: AccountPasswordResetFailedProps; legacy since PRO-12315
|
|
118
118
|
account_password_reset_completed: AccountPasswordResetCompletedProps;
|
|
119
119
|
connection_created: ConnectionCreatedProps;
|
|
120
120
|
connection_reconnected: ConnectionReconnectedProps;
|
|
121
121
|
connection_deleted: ConnectionDeletedProps;
|
|
122
|
+
bank_account_created: BankAccountCreatedProps;
|
|
122
123
|
connection_requested: ConnectionRequestedProps;
|
|
123
124
|
ownership_period_created: OwnershipPeriodCreatedProps;
|
|
124
125
|
ownership_created: OwnershipCreatedProps;
|
|
@@ -326,6 +327,17 @@ type ConnectionDeletedProps = MaybePartial<{
|
|
|
326
327
|
userEmail: string;
|
|
327
328
|
}>;
|
|
328
329
|
|
|
330
|
+
type BankAccountCreatedProps = MaybePartial<{
|
|
331
|
+
userId: string;
|
|
332
|
+
teamId: string;
|
|
333
|
+
bankAccountId: string;
|
|
334
|
+
createdAt: string;
|
|
335
|
+
bankAccountType: 'trust' | 'operating';
|
|
336
|
+
source: 'plaid' | 'manual';
|
|
337
|
+
connectionId?: string;
|
|
338
|
+
bankAccountName?: string;
|
|
339
|
+
}>;
|
|
340
|
+
|
|
329
341
|
type ConnectionReconnectedProps = MaybePartial<{
|
|
330
342
|
connectionId: string;
|
|
331
343
|
tenantId: string;
|