@connectedxm/client 7.4.4 → 7.4.6
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 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -925,6 +925,7 @@ interface Session extends BaseSession {
|
|
|
925
925
|
meeting: BaseMeeting | null;
|
|
926
926
|
streams: BaseStreamInput[];
|
|
927
927
|
surveys: BaseSurvey[];
|
|
928
|
+
activation: BaseEventActivation | null;
|
|
928
929
|
_count: {
|
|
929
930
|
sections: number;
|
|
930
931
|
};
|
|
@@ -935,6 +936,7 @@ interface BaseBlock {
|
|
|
935
936
|
description: string | null;
|
|
936
937
|
limit: number;
|
|
937
938
|
grouped: boolean;
|
|
939
|
+
collapsed: boolean;
|
|
938
940
|
}
|
|
939
941
|
interface Block extends BaseBlock {
|
|
940
942
|
sessions: BaseSession[];
|
|
@@ -1609,6 +1611,7 @@ interface EventActivation extends BaseEventActivation {
|
|
|
1609
1611
|
longDescription: string | null;
|
|
1610
1612
|
completions?: BaseEventActivationCompletion[];
|
|
1611
1613
|
survey: BaseSurvey | null;
|
|
1614
|
+
session: BaseSession | null;
|
|
1612
1615
|
createdAt: string;
|
|
1613
1616
|
updatedAt: string;
|
|
1614
1617
|
}
|