@gajae-code/natives 0.12.6 → 0.12.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 +1 -12
- package/native/index.js +1 -1
- package/package.json +6 -6
package/native/index.d.ts
CHANGED
|
@@ -491,7 +491,7 @@ export declare function __piNativesPublishOutcomeV1(): void
|
|
|
491
491
|
* `packages/natives/native/index.js` (which derives the name from
|
|
492
492
|
* `package.json#version`).
|
|
493
493
|
*/
|
|
494
|
-
export declare function
|
|
494
|
+
export declare function __piNativesV0_12_7(): void
|
|
495
495
|
|
|
496
496
|
/**
|
|
497
497
|
* Apply conservative pre-execution rewrites to a bash command.
|
|
@@ -2189,17 +2189,6 @@ export interface ShellRunResult {
|
|
|
2189
2189
|
cancelled: boolean
|
|
2190
2190
|
/** Whether the command timed out before completion. */
|
|
2191
2191
|
timedOut: boolean
|
|
2192
|
-
/**
|
|
2193
|
-
* Whether the core output reader failed to settle before execution
|
|
2194
|
-
* returned.
|
|
2195
|
-
*/
|
|
2196
|
-
outputCaptureIncomplete?: boolean
|
|
2197
|
-
/** Chunks dropped before the JavaScript output callback could receive them. */
|
|
2198
|
-
droppedOutputChunks?: number
|
|
2199
|
-
/** Bytes dropped before the JavaScript output callback could receive them. */
|
|
2200
|
-
droppedOutputBytes?: number
|
|
2201
|
-
/** Whether a loss counter exceeded JavaScript's exact integer range. */
|
|
2202
|
-
outputLossCountSaturated?: boolean
|
|
2203
2192
|
/**
|
|
2204
2193
|
* When the minimizer rewrote the captured output, this carries the
|
|
2205
2194
|
* original buffer + telemetry so the session layer can persist it as
|
package/native/index.js
CHANGED
|
@@ -30,7 +30,7 @@ export const Shell = nativeBindings.Shell;
|
|
|
30
30
|
|
|
31
31
|
// functions
|
|
32
32
|
export const __piNativesPublishOutcomeV1 = nativeBindings.__piNativesPublishOutcomeV1;
|
|
33
|
-
export const
|
|
33
|
+
export const __piNativesV0_12_7 = nativeBindings.__piNativesV0_12_7;
|
|
34
34
|
export const applyBashFixups = nativeBindings.applyBashFixups;
|
|
35
35
|
export const applyOwnerOnlyFdSecurity = nativeBindings.applyOwnerOnlyFdSecurity;
|
|
36
36
|
export const applyOwnerOnlyPathSecurity = nativeBindings.applyOwnerOnlyPathSecurity;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gajae-code/natives",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.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://gajae-code.com",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
"README.md"
|
|
62
62
|
],
|
|
63
63
|
"optionalDependencies": {
|
|
64
|
-
"@gajae-code/natives-darwin-arm64": "0.12.
|
|
65
|
-
"@gajae-code/natives-darwin-x64": "0.12.
|
|
66
|
-
"@gajae-code/natives-linux-arm64": "0.12.
|
|
67
|
-
"@gajae-code/natives-linux-x64": "0.12.
|
|
68
|
-
"@gajae-code/natives-win32-x64": "0.12.
|
|
64
|
+
"@gajae-code/natives-darwin-arm64": "0.12.7",
|
|
65
|
+
"@gajae-code/natives-darwin-x64": "0.12.7",
|
|
66
|
+
"@gajae-code/natives-linux-arm64": "0.12.7",
|
|
67
|
+
"@gajae-code/natives-linux-x64": "0.12.7",
|
|
68
|
+
"@gajae-code/natives-win32-x64": "0.12.7"
|
|
69
69
|
},
|
|
70
70
|
"exports": {
|
|
71
71
|
".": {
|