@thelioo/opencode-balancer 0.1.4 → 0.1.5

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 CHANGED
@@ -1 +1,5 @@
1
- export { serverPlugin as default } from "./server/index";
1
+ declare const _default: (({ client }: import("@opencode-ai/plugin").PluginInput) => Promise<import("@opencode-ai/plugin").Hooks>) & {
2
+ id: string;
3
+ tui: import("@opencode-ai/plugin/tui").TuiPlugin;
4
+ };
5
+ export default _default;
package/dist/index.js CHANGED
@@ -1,2 +1,4 @@
1
- export { serverPlugin as default } from "./server/index";
1
+ import { serverPlugin } from "./server/index";
2
+ import tuiModule from "./tui/tui";
3
+ export default Object.assign(serverPlugin, tuiModule);
2
4
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,IAAI,OAAO,EAAE,MAAM,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,SAAS,MAAM,WAAW,CAAC;AAElC,eAAe,MAAM,CAAC,MAAM,CAAC,YAAY,EAAE,SAAS,CAAC,CAAC"}
@@ -41,5 +41,5 @@ export declare function dashboardSelectionMarker(input: {
41
41
  focusedArea: DashboardFocusArea;
42
42
  itemArea: DashboardFocusArea;
43
43
  selected: boolean;
44
- }): " " | "";
44
+ }): "" | " ";
45
45
  export declare function reduceDashboardKey(key: DashboardKey): DashboardIntent;
@@ -32,7 +32,7 @@ export declare function prioritySelectionMarker(input: {
32
32
  focusedArea: PriorityFocusArea;
33
33
  itemArea: PriorityFocusArea;
34
34
  selected: boolean;
35
- }): " " | "";
35
+ }): "" | " ";
36
36
  /**
37
37
  * Pure keybinding logic for the BIOS-style priority screen. Kept separate from
38
38
  * rendering so the whole keyboard contract is testable without a terminal.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thelioo/opencode-balancer",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Account balancer plugin for opencode.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",