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 CHANGED
@@ -15,7 +15,7 @@ npm install plugnmeet-sdk-js
15
15
  JavaScript:
16
16
 
17
17
  ```js
18
- const plugNmeet = require('../dist').PlugNmeet;
18
+ const plugNmeet = require('plugnmeet-sdk-js').PlugNmeet;
19
19
 
20
20
  // now
21
21
  const pnm = new plugNmeet(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plugnmeet-sdk-js",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "plugNmeet JS SDK",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -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: SharedNotePadFeaturesParams;
25
- whiteboard_features: WhiteboardFeaturesParams;
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;