@prmichaelsen/remember-mcp 3.17.2 → 3.17.3
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/server-factory.js +2 -1
- package/dist/server.js +2 -1
- package/package.json +2 -2
package/dist/server-factory.js
CHANGED
|
@@ -5719,7 +5719,8 @@ var INITIAL_PERCEPTION = {
|
|
|
5719
5719
|
import { createHmac } from "node:crypto";
|
|
5720
5720
|
function signWebhookPayload(webhookId, timestamp, body, secret) {
|
|
5721
5721
|
const content = `${webhookId}.${timestamp}.${body}`;
|
|
5722
|
-
const
|
|
5722
|
+
const secretBytes = Buffer.from(secret, "base64");
|
|
5723
|
+
const hmac = createHmac("sha256", secretBytes).update(content).digest("base64");
|
|
5723
5724
|
return `v1,${hmac}`;
|
|
5724
5725
|
}
|
|
5725
5726
|
|
package/dist/server.js
CHANGED
|
@@ -5723,7 +5723,8 @@ var INITIAL_PERCEPTION = {
|
|
|
5723
5723
|
import { createHmac } from "node:crypto";
|
|
5724
5724
|
function signWebhookPayload(webhookId, timestamp, body, secret) {
|
|
5725
5725
|
const content = `${webhookId}.${timestamp}.${body}`;
|
|
5726
|
-
const
|
|
5726
|
+
const secretBytes = Buffer.from(secret, "base64");
|
|
5727
|
+
const hmac = createHmac("sha256", secretBytes).update(content).digest("base64");
|
|
5727
5728
|
return `v1,${hmac}`;
|
|
5728
5729
|
}
|
|
5729
5730
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prmichaelsen/remember-mcp",
|
|
3
|
-
"version": "3.17.
|
|
3
|
+
"version": "3.17.3",
|
|
4
4
|
"description": "Multi-tenant memory system MCP server with vector search and relationships",
|
|
5
5
|
"main": "dist/server.js",
|
|
6
6
|
"type": "module",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@google-cloud/vision": "^5.3.4",
|
|
52
52
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
53
53
|
"@prmichaelsen/firebase-admin-sdk-v8": "^2.2.0",
|
|
54
|
-
"@prmichaelsen/remember-core": "^0.55.
|
|
54
|
+
"@prmichaelsen/remember-core": "^0.55.1",
|
|
55
55
|
"dotenv": "^16.4.5",
|
|
56
56
|
"uuid": "^13.0.0",
|
|
57
57
|
"weaviate-client": "^3.2.0"
|