@connectedxm/client 6.7.2 → 6.7.4
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 +7 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -397,6 +397,11 @@ interface Event extends BaseEvent {
|
|
|
397
397
|
registration: boolean;
|
|
398
398
|
registrationStart: string;
|
|
399
399
|
registrationEnd: string;
|
|
400
|
+
registrationHeaderImageId: string | null;
|
|
401
|
+
registrationHeaderImage: BaseImage | null;
|
|
402
|
+
registrationFooterImageId: string | null;
|
|
403
|
+
registrationFooterImage: BaseImage | null;
|
|
404
|
+
registrationHideTitle: boolean;
|
|
400
405
|
publicRegistrants: boolean;
|
|
401
406
|
activityFeedEnabled: boolean;
|
|
402
407
|
chatBotNumber: string | null;
|
|
@@ -2465,7 +2470,7 @@ interface Meeting extends BaseMeeting {
|
|
|
2465
2470
|
event?: BaseEvent;
|
|
2466
2471
|
session?: BaseSession;
|
|
2467
2472
|
group?: BaseGroup;
|
|
2468
|
-
streams:
|
|
2473
|
+
streams: BaseStreamInput[];
|
|
2469
2474
|
}
|
|
2470
2475
|
interface BaseStreamInput {
|
|
2471
2476
|
id: string;
|
|
@@ -2474,9 +2479,9 @@ interface BaseStreamInput {
|
|
|
2474
2479
|
public: boolean;
|
|
2475
2480
|
image: BaseImage | null;
|
|
2476
2481
|
locale: string;
|
|
2482
|
+
cloudflareId: string;
|
|
2477
2483
|
}
|
|
2478
2484
|
interface StreamInput extends BaseStreamInput {
|
|
2479
|
-
cloudflareId: string;
|
|
2480
2485
|
eventId: string | null;
|
|
2481
2486
|
groupId: string | null;
|
|
2482
2487
|
sessionId: string | null;
|