@vrplatform/log 2.0.88 → 2.0.89
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.
|
@@ -113,7 +113,6 @@ export type TrackingEventProps = {
|
|
|
113
113
|
hyperline_invoice_voided: HyperlineInvoiceVoidedProps;
|
|
114
114
|
hyperline_trial_started: HyperlineTrialStartedProps;
|
|
115
115
|
hyperline_trial_ended: HyperlineTrialEndedProps;
|
|
116
|
-
hyperline_subscription_created: HyperlineSubscriptionEventProps;
|
|
117
116
|
hyperline_subscription_cancellation_scheduled: HyperlineSubscriptionEventProps;
|
|
118
117
|
hyperline_subscription_charged: HyperlineSubscriptionEventProps;
|
|
119
118
|
hyperline_subscription_status_changed: HyperlineSubscriptionEventProps;
|
|
@@ -533,6 +532,21 @@ type TeamInfoUpdatedProps = MaybePartial<{
|
|
|
533
532
|
userId: string;
|
|
534
533
|
tenantId: string;
|
|
535
534
|
userEmail: string;
|
|
535
|
+
companyName?: string;
|
|
536
|
+
email?: string;
|
|
537
|
+
name?: string;
|
|
538
|
+
phone?: string;
|
|
539
|
+
taxId?: string;
|
|
540
|
+
billingAddress?: Partial<{
|
|
541
|
+
full: string;
|
|
542
|
+
line1: string;
|
|
543
|
+
line2: string;
|
|
544
|
+
city: string;
|
|
545
|
+
countryCode: string;
|
|
546
|
+
stateCode: string;
|
|
547
|
+
postalCode: string;
|
|
548
|
+
state: string;
|
|
549
|
+
}> | null;
|
|
536
550
|
}>;
|
|
537
551
|
type TeamMemberRemovedProps = MaybePartial<{
|
|
538
552
|
userId: string;
|
|
@@ -113,7 +113,6 @@ export type TrackingEventProps = {
|
|
|
113
113
|
hyperline_invoice_voided: HyperlineInvoiceVoidedProps;
|
|
114
114
|
hyperline_trial_started: HyperlineTrialStartedProps;
|
|
115
115
|
hyperline_trial_ended: HyperlineTrialEndedProps;
|
|
116
|
-
hyperline_subscription_created: HyperlineSubscriptionEventProps;
|
|
117
116
|
hyperline_subscription_cancellation_scheduled: HyperlineSubscriptionEventProps;
|
|
118
117
|
hyperline_subscription_charged: HyperlineSubscriptionEventProps;
|
|
119
118
|
hyperline_subscription_status_changed: HyperlineSubscriptionEventProps;
|
|
@@ -533,6 +532,21 @@ type TeamInfoUpdatedProps = MaybePartial<{
|
|
|
533
532
|
userId: string;
|
|
534
533
|
tenantId: string;
|
|
535
534
|
userEmail: string;
|
|
535
|
+
companyName?: string;
|
|
536
|
+
email?: string;
|
|
537
|
+
name?: string;
|
|
538
|
+
phone?: string;
|
|
539
|
+
taxId?: string;
|
|
540
|
+
billingAddress?: Partial<{
|
|
541
|
+
full: string;
|
|
542
|
+
line1: string;
|
|
543
|
+
line2: string;
|
|
544
|
+
city: string;
|
|
545
|
+
countryCode: string;
|
|
546
|
+
stateCode: string;
|
|
547
|
+
postalCode: string;
|
|
548
|
+
state: string;
|
|
549
|
+
}> | null;
|
|
536
550
|
}>;
|
|
537
551
|
type TeamMemberRemovedProps = MaybePartial<{
|
|
538
552
|
userId: string;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -149,7 +149,6 @@ export type TrackingEventProps = {
|
|
|
149
149
|
hyperline_invoice_voided: HyperlineInvoiceVoidedProps;
|
|
150
150
|
hyperline_trial_started: HyperlineTrialStartedProps;
|
|
151
151
|
hyperline_trial_ended: HyperlineTrialEndedProps;
|
|
152
|
-
hyperline_subscription_created: HyperlineSubscriptionEventProps;
|
|
153
152
|
hyperline_subscription_cancellation_scheduled: HyperlineSubscriptionEventProps;
|
|
154
153
|
hyperline_subscription_charged: HyperlineSubscriptionEventProps;
|
|
155
154
|
hyperline_subscription_status_changed: HyperlineSubscriptionEventProps;
|
|
@@ -691,6 +690,21 @@ type TeamInfoUpdatedProps = MaybePartial<{
|
|
|
691
690
|
userId: string;
|
|
692
691
|
tenantId: string;
|
|
693
692
|
userEmail: string;
|
|
693
|
+
companyName?: string;
|
|
694
|
+
email?: string;
|
|
695
|
+
name?: string;
|
|
696
|
+
phone?: string;
|
|
697
|
+
taxId?: string;
|
|
698
|
+
billingAddress?: Partial<{
|
|
699
|
+
full: string;
|
|
700
|
+
line1: string;
|
|
701
|
+
line2: string;
|
|
702
|
+
city: string;
|
|
703
|
+
countryCode: string;
|
|
704
|
+
stateCode: string;
|
|
705
|
+
postalCode: string;
|
|
706
|
+
state: string;
|
|
707
|
+
}> | null;
|
|
694
708
|
}>;
|
|
695
709
|
|
|
696
710
|
type TeamMemberRemovedProps = MaybePartial<{
|