@connectedxm/client 6.7.2 → 6.7.3
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 +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2465,7 +2465,7 @@ interface Meeting extends BaseMeeting {
|
|
|
2465
2465
|
event?: BaseEvent;
|
|
2466
2466
|
session?: BaseSession;
|
|
2467
2467
|
group?: BaseGroup;
|
|
2468
|
-
streams:
|
|
2468
|
+
streams: BaseStreamInput[];
|
|
2469
2469
|
}
|
|
2470
2470
|
interface BaseStreamInput {
|
|
2471
2471
|
id: string;
|
|
@@ -2474,9 +2474,9 @@ interface BaseStreamInput {
|
|
|
2474
2474
|
public: boolean;
|
|
2475
2475
|
image: BaseImage | null;
|
|
2476
2476
|
locale: string;
|
|
2477
|
+
cloudflareId: string;
|
|
2477
2478
|
}
|
|
2478
2479
|
interface StreamInput extends BaseStreamInput {
|
|
2479
|
-
cloudflareId: string;
|
|
2480
2480
|
eventId: string | null;
|
|
2481
2481
|
groupId: string | null;
|
|
2482
2482
|
sessionId: string | null;
|