@tpsdev-ai/flair 0.3.11 → 0.3.12
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/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -83,8 +83,8 @@ async function api(method, path, body) {
|
|
|
83
83
|
if (keyPath) {
|
|
84
84
|
try {
|
|
85
85
|
// Sign the path without query params — auth middleware verifies the clean path
|
|
86
|
-
|
|
87
|
-
authHeader = buildEd25519Auth(agentId, method,
|
|
86
|
+
// Auth middleware verifies the full request path including query params
|
|
87
|
+
authHeader = buildEd25519Auth(agentId, method, path, keyPath);
|
|
88
88
|
}
|
|
89
89
|
catch (err) {
|
|
90
90
|
// Key exists but auth build failed — warn and continue without auth
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tpsdev-ai/flair",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
4
4
|
"description": "Identity, memory, and soul for AI agents. Cryptographic identity (Ed25519), semantic memory with local embeddings, and persistent personality — all in a single process.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|