next-flow-interface 0.17.26 → 0.17.27

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -4
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2042,7 +2042,7 @@ declare enum ShareMode {
2042
2042
 
2043
2043
  interface Meeting {
2044
2044
  mid: string;
2045
- presenterId: string;
2045
+ presenterId: number;
2046
2046
  status: MeetingStatus;
2047
2047
  allFollow: boolean;
2048
2048
  clickShareMode: ShareMode;
@@ -2231,7 +2231,6 @@ interface Page {
2231
2231
  viewing: boolean;
2232
2232
  pid: string;
2233
2233
  sid: string;
2234
- clientId: string;
2235
2234
  }
2236
2235
 
2237
2236
  declare enum ScreenSize {
@@ -2502,7 +2501,7 @@ interface RvHistory {
2502
2501
  }
2503
2502
 
2504
2503
  interface RvMeetingCurrent {
2505
- presenter: string;
2504
+ presenterId: number;
2506
2505
  state: {
2507
2506
  personNumber: number;
2508
2507
  };
@@ -2511,7 +2510,7 @@ interface RvMeetingCurrent {
2511
2510
  clickShareMode: ShareMode;
2512
2511
  cursorShareMode: ShareMode;
2513
2512
  };
2514
- visitors: string[];
2513
+ visitors: number[];
2515
2514
  }
2516
2515
  interface RvMeetingStatistic {
2517
2516
  total: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-flow-interface",
3
- "version": "0.17.26",
3
+ "version": "0.17.27",
4
4
  "description": "Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",