next-flow-interface 0.18.33 → 0.18.34
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/dist/index.d.ts +6 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2060,8 +2060,7 @@ interface PluginConfig {
|
|
|
2060
2060
|
official?: boolean;
|
|
2061
2061
|
necessary?: boolean;
|
|
2062
2062
|
private?: boolean;
|
|
2063
|
-
css?: boolean
|
|
2064
|
-
debug?: string;
|
|
2063
|
+
css?: boolean;
|
|
2065
2064
|
information: {
|
|
2066
2065
|
name: string;
|
|
2067
2066
|
icon?: FunctionComponent | string;
|
|
@@ -2518,6 +2517,7 @@ interface RvMeeting {
|
|
|
2518
2517
|
}
|
|
2519
2518
|
|
|
2520
2519
|
interface RvPluginConfig {
|
|
2520
|
+
id: string;
|
|
2521
2521
|
version: string | VersionPoint;
|
|
2522
2522
|
enable: {
|
|
2523
2523
|
viewer: EnableLevel;
|
|
@@ -2537,8 +2537,12 @@ declare enum VersionPoint {
|
|
|
2537
2537
|
}
|
|
2538
2538
|
|
|
2539
2539
|
interface RvPluginDebug {
|
|
2540
|
+
id: string;
|
|
2541
|
+
name: string;
|
|
2542
|
+
enable: boolean;
|
|
2540
2543
|
url: string;
|
|
2541
2544
|
hmr: string;
|
|
2545
|
+
css: boolean;
|
|
2542
2546
|
}
|
|
2543
2547
|
|
|
2544
2548
|
interface RvPlugin {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-flow-interface",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.34",
|
|
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",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"eslint-plugin-import-x": "^4.16.1",
|
|
61
61
|
"eslint-plugin-react": "^7.37.5",
|
|
62
62
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
63
|
-
"eslint-plugin-unused-imports": "^4.
|
|
63
|
+
"eslint-plugin-unused-imports": "^4.2.0",
|
|
64
64
|
"file-type": "^21.0.0",
|
|
65
65
|
"globals": "^16.3.0",
|
|
66
66
|
"jiti": "^2.5.1",
|