@oh-my-pi/pi-natives 16.0.5 → 16.0.7

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/native/index.d.ts CHANGED
@@ -155,7 +155,7 @@ export declare function __ompInstallTokioRuntime(): void
155
155
  * `packages/natives/native/index.js` (which derives the name from
156
156
  * `package.json#version`).
157
157
  */
158
- export declare function __piNativesV16_0_5(): void
158
+ export declare function __piNativesV16_0_7(): void
159
159
 
160
160
  /**
161
161
  * Apply conservative pre-execution rewrites to a bash command.
@@ -754,8 +754,6 @@ export interface GrepOptions {
754
754
  hidden?: boolean
755
755
  /** Respect .gitignore files (default: true). */
756
756
  gitignore?: boolean
757
- /** Enable shared filesystem scan cache (default: false). */
758
- cache?: boolean
759
757
  /** Maximum number of matches to return. */
760
758
  maxCount?: number
761
759
  /** Skip first N matches. */
package/native/index.js CHANGED
@@ -24,7 +24,7 @@ export const Shell = nativeBindings.Shell;
24
24
 
25
25
  // functions
26
26
  export const __ompInstallTokioRuntime = nativeBindings.__ompInstallTokioRuntime;
27
- export const __piNativesV16_0_5 = nativeBindings.__piNativesV16_0_5;
27
+ export const __piNativesV16_0_7 = nativeBindings.__piNativesV16_0_7;
28
28
  export const applyBashFixups = nativeBindings.applyBashFixups;
29
29
  export const astEdit = nativeBindings.astEdit;
30
30
  export const astGrep = nativeBindings.astGrep;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/pi-natives",
3
- "version": "16.0.5",
3
+ "version": "16.0.7",
4
4
  "description": "Native Rust bindings for grep, clipboard, image processing, syntax highlighting, PTY, and shell operations via N-API",
5
5
  "type": "module",
6
6
  "homepage": "https://omp.sh",
@@ -66,10 +66,10 @@
66
66
  }
67
67
  },
68
68
  "optionalDependencies": {
69
- "@oh-my-pi/pi-natives-linux-x64": "16.0.5",
70
- "@oh-my-pi/pi-natives-linux-arm64": "16.0.5",
71
- "@oh-my-pi/pi-natives-darwin-x64": "16.0.5",
72
- "@oh-my-pi/pi-natives-darwin-arm64": "16.0.5",
73
- "@oh-my-pi/pi-natives-win32-x64": "16.0.5"
69
+ "@oh-my-pi/pi-natives-linux-x64": "16.0.7",
70
+ "@oh-my-pi/pi-natives-linux-arm64": "16.0.7",
71
+ "@oh-my-pi/pi-natives-darwin-x64": "16.0.7",
72
+ "@oh-my-pi/pi-natives-darwin-arm64": "16.0.7",
73
+ "@oh-my-pi/pi-natives-win32-x64": "16.0.7"
74
74
  }
75
75
  }