@fidacy/openclaw-plugin 0.1.9 → 0.1.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.10 — 2026-07-03
4
+
5
+ - Artifact tools gain the `conversation` kind (chatbot session digests via
6
+ `@fidacy/session`, conversation receipts).
7
+
3
8
  ## 0.1.9 — 2026-07-03
4
9
 
5
10
  - New tools: `anchor_artifact` and `check_artifact` (hash-only artifact anchoring
package/dist/index.js CHANGED
@@ -4671,7 +4671,7 @@ function resolveMandateRules(cfg) {
4671
4671
  }
4672
4672
 
4673
4673
  // ../mcp/src/telemetry.ts
4674
- var CLIENT_VERSION = true ? "0.1.9" : "dev";
4674
+ var CLIENT_VERSION = true ? "0.1.10" : "dev";
4675
4675
  var currentShell = "mcp";
4676
4676
  function setTelemetryShell(shell) {
4677
4677
  currentShell = shell;
@@ -4799,7 +4799,7 @@ function requestUpgrade() {
4799
4799
  }
4800
4800
 
4801
4801
  // ../mcp/src/provision.ts
4802
- var CLIENT_VERSION2 = true ? "0.1.9" : "dev";
4802
+ var CLIENT_VERSION2 = true ? "0.1.10" : "dev";
4803
4803
  function provisionEnabled() {
4804
4804
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
4805
4805
  return !(v === "1" || v === "true" || v === "yes");
@@ -5001,6 +5001,7 @@ var ARTIFACT_KINDS = [
5001
5001
  "image",
5002
5002
  "audio",
5003
5003
  "video",
5004
+ "conversation",
5004
5005
  "custom"
5005
5006
  ];
5006
5007
  async function hashFile(path) {
@@ -3,7 +3,7 @@
3
3
  "name": "Fidacy \u2014 Payment Firewall",
4
4
  "description": "A signed, independently-verifiable verdict on every money-moving agent action. Blocks wrong/lookalike payee, over-cap, and duplicate-invoice fraud before money moves. Non-custodial, local-first, deny-by-default.",
5
5
  "icon": "https://fidacy.com/logo.png",
6
- "version": "0.1.9",
6
+ "version": "0.1.10",
7
7
  "contracts": {
8
8
  "tools": [
9
9
  "request_payment",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fidacy/openclaw-plugin",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "Fidacy payment firewall as a native OpenClaw plugin: signed, verifiable verdicts on every money-moving agent action, in-process (no MCP subprocess).",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://fidacy.com",