@agenus-io/pixel-backend-sdk 1.1.17 → 1.1.19
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.
|
@@ -3,6 +3,7 @@ interface CreatePixel {
|
|
|
3
3
|
title: string;
|
|
4
4
|
status: boolean;
|
|
5
5
|
sendLead: boolean;
|
|
6
|
+
eventUrl?: string;
|
|
6
7
|
sendLeadText?: string;
|
|
7
8
|
addToCart: boolean;
|
|
8
9
|
addToCartText?: string;
|
|
@@ -550,13 +551,14 @@ export declare namespace IEventSendDTO {
|
|
|
550
551
|
data?: any;
|
|
551
552
|
currency?: string | undefined;
|
|
552
553
|
customer?: {
|
|
553
|
-
email: string;
|
|
554
554
|
name: string;
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
555
|
+
email?: string;
|
|
556
|
+
phone?: string;
|
|
557
|
+
city?: string;
|
|
558
|
+
state?: string;
|
|
559
|
+
zipCode?: string;
|
|
560
|
+
street?: string;
|
|
561
|
+
country?: string;
|
|
560
562
|
};
|
|
561
563
|
meta?: any;
|
|
562
564
|
};
|