@connectedxm/client 6.5.1 → 6.5.2

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1387,8 +1387,6 @@ interface BaseLead {
1387
1387
  id: string;
1388
1388
  firstName: string | null;
1389
1389
  lastName: string | null;
1390
- company: string | null;
1391
- title: string | null;
1392
1390
  shareAccount: {
1393
1391
  id: string;
1394
1392
  image: BaseImage | null;
@@ -1408,6 +1406,10 @@ interface Lead extends BaseLead {
1408
1406
  note: string | null;
1409
1407
  eventId: string | null;
1410
1408
  event: BaseEvent | null;
1409
+ attributes: {
1410
+ name: string;
1411
+ value: string;
1412
+ }[];
1411
1413
  updatedAt: string;
1412
1414
  }
1413
1415
  declare const isTypeLead: (lead: BaseLead | Lead) => lead is Lead;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "6.5.1",
3
+ "version": "6.5.2",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",