@signetai/signet-memory-openclaw 0.113.0 → 0.113.1
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/index.js +15 -14
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -10206,28 +10206,29 @@ class SignetClientP2 {
|
|
|
10206
10206
|
async sendAgentMessage(opts) {
|
|
10207
10207
|
return this.transport.post("/api/cross-agent/messages", opts);
|
|
10208
10208
|
}
|
|
10209
|
+
predictorDeprecated() {
|
|
10210
|
+
throw new Error("Signet predictor APIs were removed in v0.112. Use memory search telemetry and pipeline diagnostics instead.");
|
|
10211
|
+
}
|
|
10209
10212
|
async getPredictorStatus() {
|
|
10210
|
-
|
|
10213
|
+
this.predictorDeprecated();
|
|
10211
10214
|
}
|
|
10212
|
-
async getComparisonsByProject(
|
|
10213
|
-
|
|
10215
|
+
async getComparisonsByProject(_project) {
|
|
10216
|
+
this.predictorDeprecated();
|
|
10214
10217
|
}
|
|
10215
|
-
async getComparisonsByEntity(
|
|
10216
|
-
|
|
10217
|
-
entity_id: entityId
|
|
10218
|
-
});
|
|
10218
|
+
async getComparisonsByEntity(_entityId) {
|
|
10219
|
+
this.predictorDeprecated();
|
|
10219
10220
|
}
|
|
10220
|
-
async listComparisons(
|
|
10221
|
-
|
|
10221
|
+
async listComparisons(_opts) {
|
|
10222
|
+
this.predictorDeprecated();
|
|
10222
10223
|
}
|
|
10223
|
-
async listTrainingRuns(
|
|
10224
|
-
|
|
10224
|
+
async listTrainingRuns(_opts) {
|
|
10225
|
+
this.predictorDeprecated();
|
|
10225
10226
|
}
|
|
10226
10227
|
async getTrainingPairsCount() {
|
|
10227
|
-
|
|
10228
|
+
this.predictorDeprecated();
|
|
10228
10229
|
}
|
|
10229
|
-
async trainPredictor(
|
|
10230
|
-
|
|
10230
|
+
async trainPredictor(_opts) {
|
|
10231
|
+
this.predictorDeprecated();
|
|
10231
10232
|
}
|
|
10232
10233
|
}
|
|
10233
10234
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/signet-memory-openclaw",
|
|
3
|
-
"version": "0.113.
|
|
3
|
+
"version": "0.113.1",
|
|
4
4
|
"description": "Signet adapter for OpenClaw — runtime plugin for AI agent memory",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"@sinclair/typebox": "0.34.47"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@signet/core": "0.113.
|
|
40
|
-
"@signet/sdk": "0.113.
|
|
39
|
+
"@signet/core": "0.113.1",
|
|
40
|
+
"@signet/sdk": "0.113.1",
|
|
41
41
|
"@types/node": "^22.0.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|