@signetai/signet-memory-openclaw 0.116.4 → 0.116.6

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10823,12 +10823,16 @@ class SignetClient extends SignetClientHelpers {
10823
10823
  async deleteSecret(name) {
10824
10824
  return this.transport.del(`/api/secrets/${name}`);
10825
10825
  }
10826
- async execWithSecrets(command, secrets) {
10826
+ async execWithSecrets(command, secrets, options = {}) {
10827
10827
  return this.transport.post("/api/secrets/exec", {
10828
10828
  command,
10829
- secrets
10829
+ secrets,
10830
+ ...options
10830
10831
  });
10831
10832
  }
10833
+ async getSecretExecJob(jobId) {
10834
+ return this.transport.get(`/api/secrets/exec/${jobId}`);
10835
+ }
10832
10836
  async getOnePasswordStatus() {
10833
10837
  return this.transport.get("/api/secrets/1password/status");
10834
10838
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/signet-memory-openclaw",
3
- "version": "0.116.4",
3
+ "version": "0.116.6",
4
4
  "description": "Signet adapter for OpenClaw — runtime plugin for AI agent memory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",