@vrplatform/log 2.0.13 → 2.0.14

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.
@@ -121,6 +121,7 @@ type TrackingEventProps = {
121
121
  intercom_conversation_replied: IntercomConversationReplied;
122
122
  intercom_conversation_closed: IntercomConversationClosed;
123
123
  intercom_conversation_rated: IntercomConversationRated;
124
+ mrr_reported: MrrReportedProps;
124
125
  };
125
126
  export type TrackingEvent = keyof TrackingEventProps;
126
127
  type OptionalUser<T> = T & ({
@@ -542,4 +543,8 @@ type IntercomConversationRated = Partial<{
542
543
  remark: string;
543
544
  createdAt: string;
544
545
  }>;
546
+ type MrrReportedProps = Partial<{
547
+ mrr: number;
548
+ billingSubscriptionStatus: 'active' | 'cancelled' | 'draft' | 'errored' | 'paused' | 'pending' | 'voided';
549
+ }>;
545
550
  export {};
@@ -121,6 +121,7 @@ type TrackingEventProps = {
121
121
  intercom_conversation_replied: IntercomConversationReplied;
122
122
  intercom_conversation_closed: IntercomConversationClosed;
123
123
  intercom_conversation_rated: IntercomConversationRated;
124
+ mrr_reported: MrrReportedProps;
124
125
  };
125
126
  export type TrackingEvent = keyof TrackingEventProps;
126
127
  type OptionalUser<T> = T & ({
@@ -542,4 +543,8 @@ type IntercomConversationRated = Partial<{
542
543
  remark: string;
543
544
  createdAt: string;
544
545
  }>;
546
+ type MrrReportedProps = Partial<{
547
+ mrr: number;
548
+ billingSubscriptionStatus: 'active' | 'cancelled' | 'draft' | 'errored' | 'paused' | 'pending' | 'voided';
549
+ }>;
545
550
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "2.0.13",
3
+ "version": "2.0.14",
4
4
  "main": "build/main/index.js",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -124,6 +124,7 @@ type TrackingEventProps = {
124
124
  intercom_conversation_replied: IntercomConversationReplied;
125
125
  intercom_conversation_closed: IntercomConversationClosed;
126
126
  intercom_conversation_rated: IntercomConversationRated;
127
+ mrr_reported: MrrReportedProps;
127
128
  };
128
129
  export type TrackingEvent = keyof TrackingEventProps;
129
130
 
@@ -660,3 +661,15 @@ type IntercomConversationRated = Partial<{
660
661
  remark: string;
661
662
  createdAt: string;
662
663
  }>;
664
+
665
+ type MrrReportedProps = Partial<{
666
+ mrr: number;
667
+ billingSubscriptionStatus:
668
+ | 'active'
669
+ | 'cancelled'
670
+ | 'draft'
671
+ | 'errored'
672
+ | 'paused'
673
+ | 'pending'
674
+ | 'voided';
675
+ }>;