@connectedxm/client 6.7.0 → 6.7.1
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 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2455,9 +2455,9 @@ interface BaseMeeting {
|
|
|
2455
2455
|
title?: string;
|
|
2456
2456
|
}
|
|
2457
2457
|
interface Meeting extends BaseMeeting {
|
|
2458
|
-
event
|
|
2459
|
-
session
|
|
2460
|
-
group
|
|
2458
|
+
event?: BaseEvent;
|
|
2459
|
+
session?: BaseSession;
|
|
2460
|
+
group?: BaseGroup;
|
|
2461
2461
|
streams: StreamInput[];
|
|
2462
2462
|
}
|
|
2463
2463
|
interface BaseStreamInput {
|