@connectedxm/admin 4.2.7 → 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 +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1404,10 +1404,8 @@ interface LinkPreview extends BaseLinkPreview {
|
|
|
1404
1404
|
}
|
|
1405
1405
|
interface NotificationPreferences {
|
|
1406
1406
|
newFollowerPush: boolean;
|
|
1407
|
-
newFollowerEmail: boolean;
|
|
1408
1407
|
likePush: boolean;
|
|
1409
1408
|
commentPush: boolean;
|
|
1410
|
-
commentEmail: boolean;
|
|
1411
1409
|
transferPush: boolean;
|
|
1412
1410
|
transferEmail: boolean;
|
|
1413
1411
|
supportTicketConfirmationEmail: boolean;
|
|
@@ -3169,8 +3167,6 @@ interface BaseLead {
|
|
|
3169
3167
|
id: string;
|
|
3170
3168
|
firstName: string | null;
|
|
3171
3169
|
lastName: string | null;
|
|
3172
|
-
company: string | null;
|
|
3173
|
-
title: string | null;
|
|
3174
3170
|
shareAccount: {
|
|
3175
3171
|
id: string;
|
|
3176
3172
|
image: BaseImage;
|
|
@@ -3190,6 +3186,10 @@ interface Lead extends BaseLead {
|
|
|
3190
3186
|
twitter: string | null;
|
|
3191
3187
|
tikTok: string | null;
|
|
3192
3188
|
note: string | null;
|
|
3189
|
+
attributes: {
|
|
3190
|
+
name: string;
|
|
3191
|
+
value: string;
|
|
3192
|
+
}[];
|
|
3193
3193
|
updatedAt: string;
|
|
3194
3194
|
}
|
|
3195
3195
|
declare enum DayOfWeek {
|
package/dist/index.d.ts
CHANGED
|
@@ -1404,10 +1404,8 @@ interface LinkPreview extends BaseLinkPreview {
|
|
|
1404
1404
|
}
|
|
1405
1405
|
interface NotificationPreferences {
|
|
1406
1406
|
newFollowerPush: boolean;
|
|
1407
|
-
newFollowerEmail: boolean;
|
|
1408
1407
|
likePush: boolean;
|
|
1409
1408
|
commentPush: boolean;
|
|
1410
|
-
commentEmail: boolean;
|
|
1411
1409
|
transferPush: boolean;
|
|
1412
1410
|
transferEmail: boolean;
|
|
1413
1411
|
supportTicketConfirmationEmail: boolean;
|
|
@@ -3169,8 +3167,6 @@ interface BaseLead {
|
|
|
3169
3167
|
id: string;
|
|
3170
3168
|
firstName: string | null;
|
|
3171
3169
|
lastName: string | null;
|
|
3172
|
-
company: string | null;
|
|
3173
|
-
title: string | null;
|
|
3174
3170
|
shareAccount: {
|
|
3175
3171
|
id: string;
|
|
3176
3172
|
image: BaseImage;
|
|
@@ -3190,6 +3186,10 @@ interface Lead extends BaseLead {
|
|
|
3190
3186
|
twitter: string | null;
|
|
3191
3187
|
tikTok: string | null;
|
|
3192
3188
|
note: string | null;
|
|
3189
|
+
attributes: {
|
|
3190
|
+
name: string;
|
|
3191
|
+
value: string;
|
|
3192
|
+
}[];
|
|
3193
3193
|
updatedAt: string;
|
|
3194
3194
|
}
|
|
3195
3195
|
declare enum DayOfWeek {
|