@connectedxm/admin 1.1.9 → 1.1.11
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.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1715,6 +1715,10 @@ interface BaseEventSession {
|
|
|
1715
1715
|
tracks: BaseEventTrack[];
|
|
1716
1716
|
nonSession: boolean;
|
|
1717
1717
|
visible: boolean;
|
|
1718
|
+
location: BaseEventSession | null;
|
|
1719
|
+
registrationEnabled: boolean;
|
|
1720
|
+
price: number | null;
|
|
1721
|
+
limit: number | null;
|
|
1718
1722
|
createdAt: string;
|
|
1719
1723
|
updatedAt: string;
|
|
1720
1724
|
}
|
|
@@ -1724,7 +1728,6 @@ interface EventSession extends BaseEventSession {
|
|
|
1724
1728
|
event: BaseEvent;
|
|
1725
1729
|
speakers: BaseEventSpeaker[];
|
|
1726
1730
|
streamInput: BaseStreamInput | null;
|
|
1727
|
-
location: BaseEventSession | null;
|
|
1728
1731
|
}
|
|
1729
1732
|
interface EventSessionTranslation {
|
|
1730
1733
|
id: number;
|
|
@@ -1790,7 +1793,7 @@ interface EventSessionQuestionResponse extends BaseEventSessionQuestionResponse
|
|
|
1790
1793
|
}
|
|
1791
1794
|
interface BaseEventSessionPass {
|
|
1792
1795
|
id: true;
|
|
1793
|
-
|
|
1796
|
+
canceled: boolean;
|
|
1794
1797
|
}
|
|
1795
1798
|
interface EventSessionPass extends BaseEventSessionPass {
|
|
1796
1799
|
createdAt: true;
|
package/dist/index.d.ts
CHANGED
|
@@ -1715,6 +1715,10 @@ interface BaseEventSession {
|
|
|
1715
1715
|
tracks: BaseEventTrack[];
|
|
1716
1716
|
nonSession: boolean;
|
|
1717
1717
|
visible: boolean;
|
|
1718
|
+
location: BaseEventSession | null;
|
|
1719
|
+
registrationEnabled: boolean;
|
|
1720
|
+
price: number | null;
|
|
1721
|
+
limit: number | null;
|
|
1718
1722
|
createdAt: string;
|
|
1719
1723
|
updatedAt: string;
|
|
1720
1724
|
}
|
|
@@ -1724,7 +1728,6 @@ interface EventSession extends BaseEventSession {
|
|
|
1724
1728
|
event: BaseEvent;
|
|
1725
1729
|
speakers: BaseEventSpeaker[];
|
|
1726
1730
|
streamInput: BaseStreamInput | null;
|
|
1727
|
-
location: BaseEventSession | null;
|
|
1728
1731
|
}
|
|
1729
1732
|
interface EventSessionTranslation {
|
|
1730
1733
|
id: number;
|
|
@@ -1790,7 +1793,7 @@ interface EventSessionQuestionResponse extends BaseEventSessionQuestionResponse
|
|
|
1790
1793
|
}
|
|
1791
1794
|
interface BaseEventSessionPass {
|
|
1792
1795
|
id: true;
|
|
1793
|
-
|
|
1796
|
+
canceled: boolean;
|
|
1794
1797
|
}
|
|
1795
1798
|
interface EventSessionPass extends BaseEventSessionPass {
|
|
1796
1799
|
createdAt: true;
|