@connectedxm/client 6.3.1 → 6.4.0
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 +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -330,6 +330,7 @@ interface BaseEvent {
|
|
|
330
330
|
eventEnd: string;
|
|
331
331
|
image: BaseImage | null;
|
|
332
332
|
squareImage: BaseImage | null;
|
|
333
|
+
series: BaseSeries | null;
|
|
333
334
|
}
|
|
334
335
|
declare enum EventSource {
|
|
335
336
|
admin = "admin",
|
|
@@ -1544,10 +1545,12 @@ interface ChatChannelMember extends BaseChatChannelMember {
|
|
|
1544
1545
|
}
|
|
1545
1546
|
interface BaseSeries {
|
|
1546
1547
|
id: string;
|
|
1547
|
-
sortOrder: number;
|
|
1548
1548
|
name: string;
|
|
1549
1549
|
slug: string;
|
|
1550
1550
|
description: string | null;
|
|
1551
|
+
longDescription: string | null;
|
|
1552
|
+
startDate: string;
|
|
1553
|
+
endDate: string;
|
|
1551
1554
|
image: BaseImage | null;
|
|
1552
1555
|
createdAt: string;
|
|
1553
1556
|
updatedAt: string;
|