@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
- phone: string;
556
- city: string;
557
- state: string;
558
- zipCode: string;
559
- country: string;
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenus-io/pixel-backend-sdk",
3
- "version": "1.1.17",
3
+ "version": "1.1.19",
4
4
  "description": "SDK para envio de vendas para fila AWS SQS do micro-serviço de pixels",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",