@connectedxm/admin 4.2.6 → 4.2.9

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.
package/dist/index.d.cts CHANGED
@@ -229,6 +229,9 @@ interface BaseAccountAttribute {
229
229
  interface AccountAttribute extends BaseAccountAttribute {
230
230
  createdAt: string;
231
231
  updatedAt: string;
232
+ _count: {
233
+ values: number;
234
+ };
232
235
  }
233
236
  interface BaseAccountAttributeValue {
234
237
  id: string;
@@ -1401,10 +1404,8 @@ interface LinkPreview extends BaseLinkPreview {
1401
1404
  }
1402
1405
  interface NotificationPreferences {
1403
1406
  newFollowerPush: boolean;
1404
- newFollowerEmail: boolean;
1405
1407
  likePush: boolean;
1406
1408
  commentPush: boolean;
1407
- commentEmail: boolean;
1408
1409
  transferPush: boolean;
1409
1410
  transferEmail: boolean;
1410
1411
  supportTicketConfirmationEmail: boolean;
@@ -3166,8 +3167,6 @@ interface BaseLead {
3166
3167
  id: string;
3167
3168
  firstName: string | null;
3168
3169
  lastName: string | null;
3169
- company: string | null;
3170
- title: string | null;
3171
3170
  shareAccount: {
3172
3171
  id: string;
3173
3172
  image: BaseImage;
@@ -3187,6 +3186,10 @@ interface Lead extends BaseLead {
3187
3186
  twitter: string | null;
3188
3187
  tikTok: string | null;
3189
3188
  note: string | null;
3189
+ attributes: {
3190
+ name: string;
3191
+ value: string;
3192
+ }[];
3190
3193
  updatedAt: string;
3191
3194
  }
3192
3195
  declare enum DayOfWeek {
package/dist/index.d.ts CHANGED
@@ -229,6 +229,9 @@ interface BaseAccountAttribute {
229
229
  interface AccountAttribute extends BaseAccountAttribute {
230
230
  createdAt: string;
231
231
  updatedAt: string;
232
+ _count: {
233
+ values: number;
234
+ };
232
235
  }
233
236
  interface BaseAccountAttributeValue {
234
237
  id: string;
@@ -1401,10 +1404,8 @@ interface LinkPreview extends BaseLinkPreview {
1401
1404
  }
1402
1405
  interface NotificationPreferences {
1403
1406
  newFollowerPush: boolean;
1404
- newFollowerEmail: boolean;
1405
1407
  likePush: boolean;
1406
1408
  commentPush: boolean;
1407
- commentEmail: boolean;
1408
1409
  transferPush: boolean;
1409
1410
  transferEmail: boolean;
1410
1411
  supportTicketConfirmationEmail: boolean;
@@ -3166,8 +3167,6 @@ interface BaseLead {
3166
3167
  id: string;
3167
3168
  firstName: string | null;
3168
3169
  lastName: string | null;
3169
- company: string | null;
3170
- title: string | null;
3171
3170
  shareAccount: {
3172
3171
  id: string;
3173
3172
  image: BaseImage;
@@ -3187,6 +3186,10 @@ interface Lead extends BaseLead {
3187
3186
  twitter: string | null;
3188
3187
  tikTok: string | null;
3189
3188
  note: string | null;
3189
+ attributes: {
3190
+ name: string;
3191
+ value: string;
3192
+ }[];
3190
3193
  updatedAt: string;
3191
3194
  }
3192
3195
  declare enum DayOfWeek {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "4.2.6",
3
+ "version": "4.2.9",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",