@vrplatform/log 3.0.24 → 3.0.25

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.
@@ -669,6 +669,8 @@ type IntercomConversationCreated = MaybePartial<{
669
669
  deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
670
670
  createdAt: string;
671
671
  submittedFrom: 'user' | 'admin';
672
+ intercomUserId?: string;
673
+ intercomCompanyIds?: string[];
672
674
  }>;
673
675
  type IntercomConversationReplied = IntercomConversationCreated;
674
676
  type IntercomConversationClosed = MaybePartial<{
@@ -677,6 +679,8 @@ type IntercomConversationClosed = MaybePartial<{
677
679
  userEmail: string;
678
680
  conversationId: string;
679
681
  createdAt: string;
682
+ intercomUserId?: string;
683
+ intercomCompanyIds?: string[];
680
684
  }>;
681
685
  type IntercomConversationRated = MaybePartial<{
682
686
  userId: string;
@@ -686,6 +690,8 @@ type IntercomConversationRated = MaybePartial<{
686
690
  rating: number;
687
691
  remark: string;
688
692
  createdAt: string;
693
+ intercomUserId?: string;
694
+ intercomCompanyIds?: string[];
689
695
  }>;
690
696
  type MrrReportedProps = MaybePartial<{
691
697
  mrr: number;
@@ -669,6 +669,8 @@ type IntercomConversationCreated = MaybePartial<{
669
669
  deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
670
670
  createdAt: string;
671
671
  submittedFrom: 'user' | 'admin';
672
+ intercomUserId?: string;
673
+ intercomCompanyIds?: string[];
672
674
  }>;
673
675
  type IntercomConversationReplied = IntercomConversationCreated;
674
676
  type IntercomConversationClosed = MaybePartial<{
@@ -677,6 +679,8 @@ type IntercomConversationClosed = MaybePartial<{
677
679
  userEmail: string;
678
680
  conversationId: string;
679
681
  createdAt: string;
682
+ intercomUserId?: string;
683
+ intercomCompanyIds?: string[];
680
684
  }>;
681
685
  type IntercomConversationRated = MaybePartial<{
682
686
  userId: string;
@@ -686,6 +690,8 @@ type IntercomConversationRated = MaybePartial<{
686
690
  rating: number;
687
691
  remark: string;
688
692
  createdAt: string;
693
+ intercomUserId?: string;
694
+ intercomCompanyIds?: string[];
689
695
  }>;
690
696
  type MrrReportedProps = MaybePartial<{
691
697
  mrr: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "3.0.24",
3
+ "version": "3.0.25",
4
4
  "main": "src/index.ts",
5
5
  "packageManager": "bun@1.3.0",
6
6
  "publishConfig": {
@@ -848,6 +848,8 @@ type IntercomConversationCreated = MaybePartial<{
848
848
  deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
849
849
  createdAt: string;
850
850
  submittedFrom: 'user' | 'admin';
851
+ intercomUserId?: string;
852
+ intercomCompanyIds?: string[];
851
853
  }>;
852
854
 
853
855
  type IntercomConversationReplied = IntercomConversationCreated;
@@ -858,6 +860,8 @@ type IntercomConversationClosed = MaybePartial<{
858
860
  userEmail: string;
859
861
  conversationId: string;
860
862
  createdAt: string;
863
+ intercomUserId?: string;
864
+ intercomCompanyIds?: string[];
861
865
  }>;
862
866
 
863
867
  type IntercomConversationRated = MaybePartial<{
@@ -868,6 +872,8 @@ type IntercomConversationRated = MaybePartial<{
868
872
  rating: number;
869
873
  remark: string;
870
874
  createdAt: string;
875
+ intercomUserId?: string;
876
+ intercomCompanyIds?: string[];
871
877
  }>;
872
878
 
873
879
  type MrrReportedProps = MaybePartial<{