oh-my-opencode 2.7.0 → 2.7.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.
@@ -1,2 +1,7 @@
1
+ import { type GrepBackend } from "./constants";
1
2
  import type { GlobOptions, GlobResult } from "./types";
2
- export declare function runRgFiles(options: GlobOptions): Promise<GlobResult>;
3
+ export interface ResolvedCli {
4
+ path: string;
5
+ backend: GrepBackend;
6
+ }
7
+ export declare function runRgFiles(options: GlobOptions, resolvedCli?: ResolvedCli): Promise<GlobResult>;
@@ -1,4 +1,4 @@
1
- export { resolveGrepCli, type GrepBackend } from "../grep/constants";
1
+ export { resolveGrepCli, resolveGrepCliWithAutoInstall, type GrepBackend } from "../grep/constants";
2
2
  export declare const DEFAULT_TIMEOUT_MS = 60000;
3
3
  export declare const DEFAULT_LIMIT = 100;
4
4
  export declare const DEFAULT_MAX_DEPTH = 20;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode",
3
- "version": "2.7.0",
3
+ "version": "2.7.2",
4
4
  "description": "OpenCode plugin - custom agents (oracle, librarian) and enhanced features",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",