plugnmeet-sdk-js 1.0.0 → 1.0.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/README.md +1 -1
- package/package.json +1 -1
- package/types/createRoom.d.ts +15 -2
package/README.md
CHANGED
package/package.json
CHANGED
package/types/createRoom.d.ts
CHANGED
|
@@ -21,8 +21,11 @@ export declare type RoomFeaturesParams = {
|
|
|
21
21
|
allow_view_other_webcams: boolean;
|
|
22
22
|
allow_view_other_users_list: boolean;
|
|
23
23
|
chat_features: ChatFeaturesParams;
|
|
24
|
-
shared_note_pad_features
|
|
25
|
-
whiteboard_features
|
|
24
|
+
shared_note_pad_features?: SharedNotePadFeaturesParams;
|
|
25
|
+
whiteboard_features?: WhiteboardFeaturesParams;
|
|
26
|
+
external_media_player_features?: ExternalMediaPlayerFeatures;
|
|
27
|
+
waiting_room_features?: WaitingRoomFeatures;
|
|
28
|
+
breakout_room_features?: BreakoutRoomFeatures;
|
|
26
29
|
};
|
|
27
30
|
export declare type ChatFeaturesParams = {
|
|
28
31
|
allow_chat: boolean;
|
|
@@ -36,6 +39,16 @@ export declare type SharedNotePadFeaturesParams = {
|
|
|
36
39
|
export declare type WhiteboardFeaturesParams = {
|
|
37
40
|
allowed_whiteboard: boolean;
|
|
38
41
|
};
|
|
42
|
+
export declare type ExternalMediaPlayerFeatures = {
|
|
43
|
+
allowed_external_media_player: boolean;
|
|
44
|
+
};
|
|
45
|
+
export declare type WaitingRoomFeatures = {
|
|
46
|
+
is_active: boolean;
|
|
47
|
+
waiting_room_msg?: string;
|
|
48
|
+
};
|
|
49
|
+
export declare type BreakoutRoomFeatures = {
|
|
50
|
+
is_allow: boolean;
|
|
51
|
+
};
|
|
39
52
|
export declare type LockSettingsParams = {
|
|
40
53
|
lock_microphone?: boolean;
|
|
41
54
|
lock_webcam?: boolean;
|