@vrplatform/log 3.0.27 → 3.0.28

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.
@@ -138,6 +138,7 @@ export type TrackingEventProps = {
138
138
  intercom_conversation_replied: IntercomConversationReplied;
139
139
  intercom_conversation_closed: IntercomConversationClosed;
140
140
  intercom_conversation_rated: IntercomConversationRated;
141
+ intercom_email_received: IntercomEmailReceivedProps;
141
142
  intercom_email_opened: IntercomEmailOpenedProps;
142
143
  intercom_email_clicked: IntercomEmailClickedProps;
143
144
  mrr_reported: MrrReportedProps;
@@ -704,12 +705,14 @@ type IntercomMarketingEmailEventProps = MaybePartial<{
704
705
  emailId: string;
705
706
  emailSubject: string;
706
707
  emailSentAt: string;
708
+ emailReceivedAt?: string;
707
709
  emailOpenedAt?: string;
708
710
  emailClickedAt?: string;
709
711
  emailClickedUrl?: string;
710
712
  intercomCampaignId?: string;
711
713
  intercomCampaignName?: string;
712
714
  }>;
715
+ type IntercomEmailReceivedProps = IntercomMarketingEmailEventProps;
713
716
  type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
714
717
  type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;
715
718
  type MrrReportedProps = MaybePartial<{
@@ -138,6 +138,7 @@ export type TrackingEventProps = {
138
138
  intercom_conversation_replied: IntercomConversationReplied;
139
139
  intercom_conversation_closed: IntercomConversationClosed;
140
140
  intercom_conversation_rated: IntercomConversationRated;
141
+ intercom_email_received: IntercomEmailReceivedProps;
141
142
  intercom_email_opened: IntercomEmailOpenedProps;
142
143
  intercom_email_clicked: IntercomEmailClickedProps;
143
144
  mrr_reported: MrrReportedProps;
@@ -704,12 +705,14 @@ type IntercomMarketingEmailEventProps = MaybePartial<{
704
705
  emailId: string;
705
706
  emailSubject: string;
706
707
  emailSentAt: string;
708
+ emailReceivedAt?: string;
707
709
  emailOpenedAt?: string;
708
710
  emailClickedAt?: string;
709
711
  emailClickedUrl?: string;
710
712
  intercomCampaignId?: string;
711
713
  intercomCampaignName?: string;
712
714
  }>;
715
+ type IntercomEmailReceivedProps = IntercomMarketingEmailEventProps;
713
716
  type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
714
717
  type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;
715
718
  type MrrReportedProps = MaybePartial<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vrplatform/log",
3
- "version": "3.0.27",
3
+ "version": "3.0.28",
4
4
  "main": "src/index.ts",
5
5
  "packageManager": "bun@1.3.0",
6
6
  "publishConfig": {
@@ -186,6 +186,7 @@ export type TrackingEventProps = {
186
186
  intercom_conversation_replied: IntercomConversationReplied;
187
187
  intercom_conversation_closed: IntercomConversationClosed;
188
188
  intercom_conversation_rated: IntercomConversationRated;
189
+ intercom_email_received: IntercomEmailReceivedProps;
189
190
  intercom_email_opened: IntercomEmailOpenedProps;
190
191
  intercom_email_clicked: IntercomEmailClickedProps;
191
192
  mrr_reported: MrrReportedProps;
@@ -887,6 +888,7 @@ type IntercomMarketingEmailEventProps = MaybePartial<{
887
888
  emailId: string;
888
889
  emailSubject: string;
889
890
  emailSentAt: string;
891
+ emailReceivedAt?: string;
890
892
  emailOpenedAt?: string;
891
893
  emailClickedAt?: string;
892
894
  emailClickedUrl?: string;
@@ -894,6 +896,8 @@ type IntercomMarketingEmailEventProps = MaybePartial<{
894
896
  intercomCampaignName?: string;
895
897
  }>;
896
898
 
899
+ type IntercomEmailReceivedProps = IntercomMarketingEmailEventProps;
900
+
897
901
  type IntercomEmailOpenedProps = IntercomMarketingEmailEventProps;
898
902
 
899
903
  type IntercomEmailClickedProps = IntercomMarketingEmailEventProps;