@connectedxm/admin 1.1.10 → 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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1716,6 +1716,9 @@ interface BaseEventSession {
|
|
|
1716
1716
|
nonSession: boolean;
|
|
1717
1717
|
visible: boolean;
|
|
1718
1718
|
location: BaseEventSession | null;
|
|
1719
|
+
registrationEnabled: boolean;
|
|
1720
|
+
price: number | null;
|
|
1721
|
+
limit: number | null;
|
|
1719
1722
|
createdAt: string;
|
|
1720
1723
|
updatedAt: string;
|
|
1721
1724
|
}
|
|
@@ -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
|
@@ -1716,6 +1716,9 @@ interface BaseEventSession {
|
|
|
1716
1716
|
nonSession: boolean;
|
|
1717
1717
|
visible: boolean;
|
|
1718
1718
|
location: BaseEventSession | null;
|
|
1719
|
+
registrationEnabled: boolean;
|
|
1720
|
+
price: number | null;
|
|
1721
|
+
limit: number | null;
|
|
1719
1722
|
createdAt: string;
|
|
1720
1723
|
updatedAt: string;
|
|
1721
1724
|
}
|
|
@@ -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;
|