next-flow-interface 0.17.31 → 0.18.2

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1017,7 +1017,7 @@ interface RsSelectionServiceApi {
1017
1017
 
1018
1018
  interface RsClickApi {
1019
1019
  simplifyDoneList(): void;
1020
- show(position: V3, color: string, id: string, time: number): void;
1020
+ show(position: V3, color: string, timestamp: number, id?: string): void;
1021
1021
  }
1022
1022
 
1023
1023
  interface RsEnvironmentApi {
@@ -1689,7 +1689,7 @@ interface RvAwarenessDevice {
1689
1689
  }
1690
1690
  interface RvAwarenessClick {
1691
1691
  position: V3;
1692
- time: number;
1692
+ timestamp: number;
1693
1693
  }
1694
1694
  interface RvAwarenessWindow {
1695
1695
  innerWidth: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-flow-interface",
3
- "version": "0.17.31",
3
+ "version": "0.18.2",
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",