@vrplatform/log 3.0.23 → 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.
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { billing_payment_method_type_enum, recurringFeeType_enum } from '@vrplatform/graphql';
|
|
2
2
|
export type Maybe<T> = T | null | undefined;
|
|
3
3
|
export type TrackProps<T extends TrackingEvent> = OptionalGroup<{
|
|
4
|
-
groupId: string;
|
|
5
4
|
packageName: string;
|
|
6
5
|
timestamp?: Date;
|
|
7
6
|
event: T;
|
|
@@ -670,6 +669,8 @@ type IntercomConversationCreated = MaybePartial<{
|
|
|
670
669
|
deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
|
|
671
670
|
createdAt: string;
|
|
672
671
|
submittedFrom: 'user' | 'admin';
|
|
672
|
+
intercomUserId?: string;
|
|
673
|
+
intercomCompanyIds?: string[];
|
|
673
674
|
}>;
|
|
674
675
|
type IntercomConversationReplied = IntercomConversationCreated;
|
|
675
676
|
type IntercomConversationClosed = MaybePartial<{
|
|
@@ -678,6 +679,8 @@ type IntercomConversationClosed = MaybePartial<{
|
|
|
678
679
|
userEmail: string;
|
|
679
680
|
conversationId: string;
|
|
680
681
|
createdAt: string;
|
|
682
|
+
intercomUserId?: string;
|
|
683
|
+
intercomCompanyIds?: string[];
|
|
681
684
|
}>;
|
|
682
685
|
type IntercomConversationRated = MaybePartial<{
|
|
683
686
|
userId: string;
|
|
@@ -687,6 +690,8 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
687
690
|
rating: number;
|
|
688
691
|
remark: string;
|
|
689
692
|
createdAt: string;
|
|
693
|
+
intercomUserId?: string;
|
|
694
|
+
intercomCompanyIds?: string[];
|
|
690
695
|
}>;
|
|
691
696
|
type MrrReportedProps = MaybePartial<{
|
|
692
697
|
mrr: number;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { billing_payment_method_type_enum, recurringFeeType_enum } from '@vrplatform/graphql';
|
|
2
2
|
export type Maybe<T> = T | null | undefined;
|
|
3
3
|
export type TrackProps<T extends TrackingEvent> = OptionalGroup<{
|
|
4
|
-
groupId: string;
|
|
5
4
|
packageName: string;
|
|
6
5
|
timestamp?: Date;
|
|
7
6
|
event: T;
|
|
@@ -670,6 +669,8 @@ type IntercomConversationCreated = MaybePartial<{
|
|
|
670
669
|
deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
|
|
671
670
|
createdAt: string;
|
|
672
671
|
submittedFrom: 'user' | 'admin';
|
|
672
|
+
intercomUserId?: string;
|
|
673
|
+
intercomCompanyIds?: string[];
|
|
673
674
|
}>;
|
|
674
675
|
type IntercomConversationReplied = IntercomConversationCreated;
|
|
675
676
|
type IntercomConversationClosed = MaybePartial<{
|
|
@@ -678,6 +679,8 @@ type IntercomConversationClosed = MaybePartial<{
|
|
|
678
679
|
userEmail: string;
|
|
679
680
|
conversationId: string;
|
|
680
681
|
createdAt: string;
|
|
682
|
+
intercomUserId?: string;
|
|
683
|
+
intercomCompanyIds?: string[];
|
|
681
684
|
}>;
|
|
682
685
|
type IntercomConversationRated = MaybePartial<{
|
|
683
686
|
userId: string;
|
|
@@ -687,6 +690,8 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
687
690
|
rating: number;
|
|
688
691
|
remark: string;
|
|
689
692
|
createdAt: string;
|
|
693
|
+
intercomUserId?: string;
|
|
694
|
+
intercomCompanyIds?: string[];
|
|
690
695
|
}>;
|
|
691
696
|
type MrrReportedProps = MaybePartial<{
|
|
692
697
|
mrr: number;
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -6,7 +6,6 @@ import type {
|
|
|
6
6
|
export type Maybe<T> = T | null | undefined;
|
|
7
7
|
|
|
8
8
|
export type TrackProps<T extends TrackingEvent> = OptionalGroup<{
|
|
9
|
-
groupId: string;
|
|
10
9
|
packageName: string;
|
|
11
10
|
timestamp?: Date;
|
|
12
11
|
event: T;
|
|
@@ -849,6 +848,8 @@ type IntercomConversationCreated = MaybePartial<{
|
|
|
849
848
|
deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
|
|
850
849
|
createdAt: string;
|
|
851
850
|
submittedFrom: 'user' | 'admin';
|
|
851
|
+
intercomUserId?: string;
|
|
852
|
+
intercomCompanyIds?: string[];
|
|
852
853
|
}>;
|
|
853
854
|
|
|
854
855
|
type IntercomConversationReplied = IntercomConversationCreated;
|
|
@@ -859,6 +860,8 @@ type IntercomConversationClosed = MaybePartial<{
|
|
|
859
860
|
userEmail: string;
|
|
860
861
|
conversationId: string;
|
|
861
862
|
createdAt: string;
|
|
863
|
+
intercomUserId?: string;
|
|
864
|
+
intercomCompanyIds?: string[];
|
|
862
865
|
}>;
|
|
863
866
|
|
|
864
867
|
type IntercomConversationRated = MaybePartial<{
|
|
@@ -869,6 +872,8 @@ type IntercomConversationRated = MaybePartial<{
|
|
|
869
872
|
rating: number;
|
|
870
873
|
remark: string;
|
|
871
874
|
createdAt: string;
|
|
875
|
+
intercomUserId?: string;
|
|
876
|
+
intercomCompanyIds?: string[];
|
|
872
877
|
}>;
|
|
873
878
|
|
|
874
879
|
type MrrReportedProps = MaybePartial<{
|