@gajae-code/natives 0.17.2 → 0.17.4
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 +7 -1
- package/native/index.js +1 -1
- package/package.json +6 -6
package/native/index.d.ts
CHANGED
|
@@ -583,7 +583,7 @@ export declare function __piNativesPublishOutcomeV1(): void
|
|
|
583
583
|
* `packages/natives/native/index.js` (which derives the name from
|
|
584
584
|
* `package.json#version`).
|
|
585
585
|
*/
|
|
586
|
-
export declare function
|
|
586
|
+
export declare function __piNativesV0_17_4(): void
|
|
587
587
|
|
|
588
588
|
/**
|
|
589
589
|
* Apply conservative pre-execution rewrites to a bash command.
|
|
@@ -1962,6 +1962,12 @@ export interface NativeExactFileIdentity {
|
|
|
1962
1962
|
* hard links. Remaining links are retained after exact quarantine cleanup.
|
|
1963
1963
|
*/
|
|
1964
1964
|
allowHardLink?: boolean
|
|
1965
|
+
/**
|
|
1966
|
+
* Require the authorized regular file to retain at least two hard links at
|
|
1967
|
+
* every identity check. This is used by cleanup paths that remove only a
|
|
1968
|
+
* surplus alias while preserving the live transcript link.
|
|
1969
|
+
*/
|
|
1970
|
+
requireHardLink?: boolean
|
|
1965
1971
|
}
|
|
1966
1972
|
|
|
1967
1973
|
/** Typed result of an identity-bound regular-file deletion or directory detach. */
|
package/native/index.js
CHANGED
|
@@ -31,7 +31,7 @@ export const Shell = nativeBindings.Shell;
|
|
|
31
31
|
|
|
32
32
|
// functions
|
|
33
33
|
export const __piNativesPublishOutcomeV1 = nativeBindings.__piNativesPublishOutcomeV1;
|
|
34
|
-
export const
|
|
34
|
+
export const __piNativesV0_17_4 = nativeBindings.__piNativesV0_17_4;
|
|
35
35
|
export const applyBashFixups = nativeBindings.applyBashFixups;
|
|
36
36
|
export const applyOwnerOnlyFdSecurity = nativeBindings.applyOwnerOnlyFdSecurity;
|
|
37
37
|
export const applyOwnerOnlyPathSecurity = nativeBindings.applyOwnerOnlyPathSecurity;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gajae-code/natives",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.4",
|
|
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.17.
|
|
65
|
-
"@gajae-code/natives-darwin-x64": "0.17.
|
|
66
|
-
"@gajae-code/natives-linux-arm64": "0.17.
|
|
67
|
-
"@gajae-code/natives-linux-x64": "0.17.
|
|
68
|
-
"@gajae-code/natives-win32-x64": "0.17.
|
|
64
|
+
"@gajae-code/natives-darwin-arm64": "0.17.4",
|
|
65
|
+
"@gajae-code/natives-darwin-x64": "0.17.4",
|
|
66
|
+
"@gajae-code/natives-linux-arm64": "0.17.4",
|
|
67
|
+
"@gajae-code/natives-linux-x64": "0.17.4",
|
|
68
|
+
"@gajae-code/natives-win32-x64": "0.17.4"
|
|
69
69
|
},
|
|
70
70
|
"exports": {
|
|
71
71
|
".": {
|