@vrplatform/log 2.0.78 → 2.0.80

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.
@@ -94,6 +94,8 @@ export type TrackingEventProps = {
94
94
  team_added: TeamAddedProps;
95
95
  team_created: TeamCreatedProps;
96
96
  team_canceled: TeamCanceledProps;
97
+ team_suspended: TeamSuspendedProps;
98
+ team_reactivated: TeamReactivatedProps;
97
99
  team_deleted: TeamDeletedProps;
98
100
  team_info_updated: TeamInfoUpdatedProps;
99
101
  team_member_removed: TeamMemberRemovedProps;
@@ -499,6 +501,16 @@ type TeamCanceledProps = MaybePartial<{
499
501
  feedback: string;
500
502
  reason: string;
501
503
  }>;
504
+ type TeamSuspendedProps = MaybePartial<{
505
+ tenantId: string;
506
+ userId: string;
507
+ userEmail: string;
508
+ }>;
509
+ type TeamReactivatedProps = MaybePartial<{
510
+ tenantId: string;
511
+ userId: string;
512
+ userEmail: string;
513
+ }>;
502
514
  type TeamDeletedProps = MaybePartial<{
503
515
  tenantId: string;
504
516
  userId: string;
@@ -94,6 +94,8 @@ export type TrackingEventProps = {
94
94
  team_added: TeamAddedProps;
95
95
  team_created: TeamCreatedProps;
96
96
  team_canceled: TeamCanceledProps;
97
+ team_suspended: TeamSuspendedProps;
98
+ team_reactivated: TeamReactivatedProps;
97
99
  team_deleted: TeamDeletedProps;
98
100
  team_info_updated: TeamInfoUpdatedProps;
99
101
  team_member_removed: TeamMemberRemovedProps;
@@ -499,6 +501,16 @@ type TeamCanceledProps = MaybePartial<{
499
501
  feedback: string;
500
502
  reason: string;
501
503
  }>;
504
+ type TeamSuspendedProps = MaybePartial<{
505
+ tenantId: string;
506
+ userId: string;
507
+ userEmail: string;
508
+ }>;
509
+ type TeamReactivatedProps = MaybePartial<{
510
+ tenantId: string;
511
+ userId: string;
512
+ userEmail: string;
513
+ }>;
502
514
  type TeamDeletedProps = MaybePartial<{
503
515
  tenantId: string;
504
516
  userId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.78",
3
+ "version": "2.0.80",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -108,6 +108,8 @@ export type TrackingEventProps = {
108
108
  team_added: TeamAddedProps;
109
109
  team_created: TeamCreatedProps;
110
110
  team_canceled: TeamCanceledProps;
111
+ team_suspended: TeamSuspendedProps;
112
+ team_reactivated: TeamReactivatedProps;
111
113
  team_deleted: TeamDeletedProps;
112
114
  team_info_updated: TeamInfoUpdatedProps;
113
115
  team_member_removed: TeamMemberRemovedProps;
@@ -631,6 +633,18 @@ type TeamCanceledProps = MaybePartial<{
631
633
  reason: string;
632
634
  }>;
633
635
 
636
+ type TeamSuspendedProps = MaybePartial<{
637
+ tenantId: string;
638
+ userId: string;
639
+ userEmail: string;
640
+ }>;
641
+
642
+ type TeamReactivatedProps = MaybePartial<{
643
+ tenantId: string;
644
+ userId: string;
645
+ userEmail: string;
646
+ }>;
647
+
634
648
  type TeamDeletedProps = MaybePartial<{
635
649
  tenantId: string;
636
650
  userId: string;