@vrplatform/log 2.0.6 → 2.0.7
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.
|
@@ -117,6 +117,7 @@ type TrackingEventProps = {
|
|
|
117
117
|
test_event: TestEventProps;
|
|
118
118
|
test_error: TestErrorProps;
|
|
119
119
|
intercom_conversation_created: IntercomConversationCreated;
|
|
120
|
+
intercom_conversation_rated: IntercomConversationRated;
|
|
120
121
|
};
|
|
121
122
|
export type TrackingEvent = keyof TrackingEventProps;
|
|
122
123
|
type OptionalUser<T> = T & ({
|
|
@@ -519,4 +520,13 @@ type IntercomConversationCreated = Partial<{
|
|
|
519
520
|
deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
|
|
520
521
|
createdAt: string;
|
|
521
522
|
}>;
|
|
523
|
+
type IntercomConversationRated = Partial<{
|
|
524
|
+
userId: string;
|
|
525
|
+
tenantId: string;
|
|
526
|
+
userEmail: string;
|
|
527
|
+
conversationId: string;
|
|
528
|
+
rating: number;
|
|
529
|
+
remark: string;
|
|
530
|
+
createdAt: string;
|
|
531
|
+
}>;
|
|
522
532
|
export {};
|
|
@@ -117,6 +117,7 @@ type TrackingEventProps = {
|
|
|
117
117
|
test_event: TestEventProps;
|
|
118
118
|
test_error: TestErrorProps;
|
|
119
119
|
intercom_conversation_created: IntercomConversationCreated;
|
|
120
|
+
intercom_conversation_rated: IntercomConversationRated;
|
|
120
121
|
};
|
|
121
122
|
export type TrackingEvent = keyof TrackingEventProps;
|
|
122
123
|
type OptionalUser<T> = T & ({
|
|
@@ -519,4 +520,13 @@ type IntercomConversationCreated = Partial<{
|
|
|
519
520
|
deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
|
|
520
521
|
createdAt: string;
|
|
521
522
|
}>;
|
|
523
|
+
type IntercomConversationRated = Partial<{
|
|
524
|
+
userId: string;
|
|
525
|
+
tenantId: string;
|
|
526
|
+
userEmail: string;
|
|
527
|
+
conversationId: string;
|
|
528
|
+
rating: number;
|
|
529
|
+
remark: string;
|
|
530
|
+
createdAt: string;
|
|
531
|
+
}>;
|
|
522
532
|
export {};
|
package/package.json
CHANGED
package/src/tracking/types.ts
CHANGED
|
@@ -120,6 +120,7 @@ type TrackingEventProps = {
|
|
|
120
120
|
test_event: TestEventProps;
|
|
121
121
|
test_error: TestErrorProps;
|
|
122
122
|
intercom_conversation_created: IntercomConversationCreated;
|
|
123
|
+
intercom_conversation_rated: IntercomConversationRated;
|
|
123
124
|
};
|
|
124
125
|
export type TrackingEvent = keyof TrackingEventProps;
|
|
125
126
|
|
|
@@ -634,3 +635,13 @@ type IntercomConversationCreated = Partial<{
|
|
|
634
635
|
deliveredAs: 'admin_initiated' | 'customer_initiated' | 'operator_initiated';
|
|
635
636
|
createdAt: string;
|
|
636
637
|
}>;
|
|
638
|
+
|
|
639
|
+
type IntercomConversationRated = Partial<{
|
|
640
|
+
userId: string;
|
|
641
|
+
tenantId: string;
|
|
642
|
+
userEmail: string;
|
|
643
|
+
conversationId: string;
|
|
644
|
+
rating: number;
|
|
645
|
+
remark: string;
|
|
646
|
+
createdAt: string;
|
|
647
|
+
}>;
|