@atbash/sdk 0.10.10-dev.0 → 0.10.12-dev.0
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/README.md +12 -2
- package/dist/browser.d.mts +33 -7
- package/dist/browser.mjs +44 -16
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +33 -7
- package/dist/index.d.ts +33 -7
- package/dist/index.js +56 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +56 -20
- package/dist/index.mjs.map +1 -1
- package/index.d.ts +0 -2
- package/index.js +0 -1
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -123,8 +123,6 @@ export declare function formatEntryForScan(entry: MemoryEntryJs, hasEvasion: boo
|
|
|
123
123
|
|
|
124
124
|
export declare function generateKeypair(): KeyPairJs
|
|
125
125
|
|
|
126
|
-
export const HONEYCOMB_KEY: string
|
|
127
|
-
|
|
128
126
|
export declare function isValidPrivateKey(s: string): boolean
|
|
129
127
|
|
|
130
128
|
export interface JudgeSignatureCheckJs {
|
package/index.js
CHANGED
|
@@ -739,7 +739,6 @@ module.exports.encryptForOrg = nativeBinding.encryptForOrg
|
|
|
739
739
|
module.exports.encryptMemoryContent = nativeBinding.encryptMemoryContent
|
|
740
740
|
module.exports.formatEntryForScan = nativeBinding.formatEntryForScan
|
|
741
741
|
module.exports.generateKeypair = nativeBinding.generateKeypair
|
|
742
|
-
module.exports.HONEYCOMB_KEY = nativeBinding.HONEYCOMB_KEY
|
|
743
742
|
module.exports.isValidPrivateKey = nativeBinding.isValidPrivateKey
|
|
744
743
|
module.exports.loadAgent = nativeBinding.loadAgent
|
|
745
744
|
module.exports.mapVerdict = nativeBinding.mapVerdict
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atbash/sdk",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.12-dev.0",
|
|
4
4
|
"description": "TypeScript SDK for Atbash — the safety layer that evaluates AI agent actions against operator-defined policies before execution.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"atbash",
|
|
@@ -88,9 +88,9 @@
|
|
|
88
88
|
"typescript-eslint": "^8.62.1"
|
|
89
89
|
},
|
|
90
90
|
"optionalDependencies": {
|
|
91
|
-
"@atbash/sdk-linux-x64-gnu": "0.10.
|
|
92
|
-
"@atbash/sdk-linux-arm64-gnu": "0.10.
|
|
93
|
-
"@atbash/sdk-darwin-arm64": "0.10.
|
|
94
|
-
"@atbash/sdk-win32-x64-msvc": "0.10.
|
|
91
|
+
"@atbash/sdk-linux-x64-gnu": "0.10.12-dev.0",
|
|
92
|
+
"@atbash/sdk-linux-arm64-gnu": "0.10.12-dev.0",
|
|
93
|
+
"@atbash/sdk-darwin-arm64": "0.10.12-dev.0",
|
|
94
|
+
"@atbash/sdk-win32-x64-msvc": "0.10.12-dev.0"
|
|
95
95
|
}
|
|
96
96
|
}
|