@connectedxm/client 6.4.0 → 6.4.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 +3 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -232,6 +232,7 @@ interface BaseActivity {
|
|
|
232
232
|
account: BaseAccount;
|
|
233
233
|
groupId: string | null;
|
|
234
234
|
eventId: string | null;
|
|
235
|
+
pinned: boolean;
|
|
235
236
|
contentId: string | null;
|
|
236
237
|
commentedId: string | null;
|
|
237
238
|
createdAt: string;
|
|
@@ -1549,8 +1550,8 @@ interface BaseSeries {
|
|
|
1549
1550
|
slug: string;
|
|
1550
1551
|
description: string | null;
|
|
1551
1552
|
longDescription: string | null;
|
|
1552
|
-
startDate: string;
|
|
1553
|
-
endDate: string;
|
|
1553
|
+
startDate: string | null;
|
|
1554
|
+
endDate: string | null;
|
|
1554
1555
|
image: BaseImage | null;
|
|
1555
1556
|
createdAt: string;
|
|
1556
1557
|
updatedAt: string;
|