@vrplatform/log 2.0.79 → 2.0.81

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.
@@ -95,6 +95,7 @@ export type TrackingEventProps = {
95
95
  team_created: TeamCreatedProps;
96
96
  team_canceled: TeamCanceledProps;
97
97
  team_suspended: TeamSuspendedProps;
98
+ team_reactivated: TeamReactivatedProps;
98
99
  team_deleted: TeamDeletedProps;
99
100
  team_info_updated: TeamInfoUpdatedProps;
100
101
  team_member_removed: TeamMemberRemovedProps;
@@ -505,6 +506,11 @@ type TeamSuspendedProps = MaybePartial<{
505
506
  userId: string;
506
507
  userEmail: string;
507
508
  }>;
509
+ type TeamReactivatedProps = MaybePartial<{
510
+ tenantId: string;
511
+ userId: string;
512
+ userEmail: string;
513
+ }>;
508
514
  type TeamDeletedProps = MaybePartial<{
509
515
  tenantId: string;
510
516
  userId: string;
@@ -587,6 +593,7 @@ type IntercomConversationRated = MaybePartial<{
587
593
  }>;
588
594
  type MrrReportedProps = MaybePartial<{
589
595
  mrr: number;
596
+ listings?: number;
590
597
  subscriptionStatus: SubscriptionStatus;
591
598
  }>;
592
599
  export {};
@@ -95,6 +95,7 @@ export type TrackingEventProps = {
95
95
  team_created: TeamCreatedProps;
96
96
  team_canceled: TeamCanceledProps;
97
97
  team_suspended: TeamSuspendedProps;
98
+ team_reactivated: TeamReactivatedProps;
98
99
  team_deleted: TeamDeletedProps;
99
100
  team_info_updated: TeamInfoUpdatedProps;
100
101
  team_member_removed: TeamMemberRemovedProps;
@@ -505,6 +506,11 @@ type TeamSuspendedProps = MaybePartial<{
505
506
  userId: string;
506
507
  userEmail: string;
507
508
  }>;
509
+ type TeamReactivatedProps = MaybePartial<{
510
+ tenantId: string;
511
+ userId: string;
512
+ userEmail: string;
513
+ }>;
508
514
  type TeamDeletedProps = MaybePartial<{
509
515
  tenantId: string;
510
516
  userId: string;
@@ -587,6 +593,7 @@ type IntercomConversationRated = MaybePartial<{
587
593
  }>;
588
594
  type MrrReportedProps = MaybePartial<{
589
595
  mrr: number;
596
+ listings?: number;
590
597
  subscriptionStatus: SubscriptionStatus;
591
598
  }>;
592
599
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.79",
3
+ "version": "2.0.81",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -109,6 +109,7 @@ export type TrackingEventProps = {
109
109
  team_created: TeamCreatedProps;
110
110
  team_canceled: TeamCanceledProps;
111
111
  team_suspended: TeamSuspendedProps;
112
+ team_reactivated: TeamReactivatedProps;
112
113
  team_deleted: TeamDeletedProps;
113
114
  team_info_updated: TeamInfoUpdatedProps;
114
115
  team_member_removed: TeamMemberRemovedProps;
@@ -638,6 +639,12 @@ type TeamSuspendedProps = MaybePartial<{
638
639
  userEmail: string;
639
640
  }>;
640
641
 
642
+ type TeamReactivatedProps = MaybePartial<{
643
+ tenantId: string;
644
+ userId: string;
645
+ userEmail: string;
646
+ }>;
647
+
641
648
  type TeamDeletedProps = MaybePartial<{
642
649
  tenantId: string;
643
650
  userId: string;
@@ -735,5 +742,6 @@ type IntercomConversationRated = MaybePartial<{
735
742
 
736
743
  type MrrReportedProps = MaybePartial<{
737
744
  mrr: number;
745
+ listings?: number;
738
746
  subscriptionStatus: SubscriptionStatus;
739
747
  }>;