@connectedxm/client 6.5.0 → 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.
- package/dist/index.d.ts +5 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -267,6 +267,7 @@ interface BaseActivity {
|
|
|
267
267
|
contentId: string | null;
|
|
268
268
|
commentedId: string | null;
|
|
269
269
|
createdAt: string;
|
|
270
|
+
editedAt: string | null;
|
|
270
271
|
}
|
|
271
272
|
interface Activity extends BaseActivity {
|
|
272
273
|
group: BaseGroup | null;
|
|
@@ -1386,8 +1387,6 @@ interface BaseLead {
|
|
|
1386
1387
|
id: string;
|
|
1387
1388
|
firstName: string | null;
|
|
1388
1389
|
lastName: string | null;
|
|
1389
|
-
company: string | null;
|
|
1390
|
-
title: string | null;
|
|
1391
1390
|
shareAccount: {
|
|
1392
1391
|
id: string;
|
|
1393
1392
|
image: BaseImage | null;
|
|
@@ -1407,16 +1406,18 @@ interface Lead extends BaseLead {
|
|
|
1407
1406
|
note: string | null;
|
|
1408
1407
|
eventId: string | null;
|
|
1409
1408
|
event: BaseEvent | null;
|
|
1409
|
+
attributes: {
|
|
1410
|
+
name: string;
|
|
1411
|
+
value: string;
|
|
1412
|
+
}[];
|
|
1410
1413
|
updatedAt: string;
|
|
1411
1414
|
}
|
|
1412
1415
|
declare const isTypeLead: (lead: BaseLead | Lead) => lead is Lead;
|
|
1413
1416
|
interface NotificationPreferences {
|
|
1414
1417
|
newFollowerPush: boolean;
|
|
1415
|
-
newFollowerEmail: boolean;
|
|
1416
1418
|
likePush: boolean;
|
|
1417
1419
|
resharePush: boolean;
|
|
1418
1420
|
commentPush: boolean;
|
|
1419
|
-
commentEmail: boolean;
|
|
1420
1421
|
transferPush: boolean;
|
|
1421
1422
|
transferEmail: boolean;
|
|
1422
1423
|
supportTicketConfirmationEmail: boolean;
|
|
@@ -3277,11 +3278,9 @@ declare const useUpdateSelfBanner: (options?: Omit<MutationOptions<Awaited<Retur
|
|
|
3277
3278
|
|
|
3278
3279
|
interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
3279
3280
|
newFollowerPush?: boolean;
|
|
3280
|
-
newFollowerEmail?: boolean;
|
|
3281
3281
|
likePush?: boolean;
|
|
3282
3282
|
resharePush?: boolean;
|
|
3283
3283
|
commentPush?: boolean;
|
|
3284
|
-
commentEmail?: boolean;
|
|
3285
3284
|
transferPush?: boolean;
|
|
3286
3285
|
transferEmail?: boolean;
|
|
3287
3286
|
supportTicketConfirmationEmail?: boolean;
|