next-flow-interface 0.17.29 → 0.17.30

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 +1 -8
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2889,15 +2889,8 @@ interface RvNode {
2889
2889
  }
2890
2890
 
2891
2891
  interface RvMeetingServiceApi {
2892
- PACKAGE_INTERVAL: number;
2893
- ANIMATION_DURATION: number;
2894
- CLICK_STORAGE_TIME: number;
2895
- CLICK_STORAGE_NUMBER: number;
2896
- CLICK_ANIMATION_DURATION: number;
2897
- CLICK_ALLOW_DELAY: number;
2898
2892
  meetings: RecursiveMap<RvMeeting>;
2899
- currentMeeting: StoredRhineVar<RvMeeting> | null;
2900
- getRvMeetingById(id: string): StoredRhineVar<RvMeeting> | null;
2893
+ getRvMeeting(meetingId: string): StoredRhineVar<RvMeeting> | null;
2901
2894
  generateId(): string;
2902
2895
  removeAllMeetings(): void;
2903
2896
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-flow-interface",
3
- "version": "0.17.29",
3
+ "version": "0.17.30",
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",