@vrplatform/log 3.0.25 → 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;
|
|
@@ -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;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -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<{
|