@fidacy/openclaw-plugin 0.1.4 → 0.1.5

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
@@ -38,3 +38,9 @@ First release. Fidacy payment firewall as a native OpenClaw plugin:
38
38
  audit log at boot, so restarting the agent no longer re-opens a paid invoice
39
39
  or resets the running total. Torn-tail audit logs (crash mid-append) are
40
40
  salvaged instead of quarantined.
41
+
42
+ ## 0.1.5 — 2026-07-02
43
+
44
+ - Version sync only: `openclaw.plugin.json` had shipped 0.1.4 with a stale
45
+ manifest version (Plugin Inspector `package-manifest-version-drift` warning).
46
+ No code changes over 0.1.4.
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.4" : "dev";
4674
+ var CLIENT_VERSION = true ? "0.1.5" : "dev";
4675
4675
  var currentShell = "mcp";
4676
4676
  function setTelemetryShell(shell) {
4677
4677
  currentShell = shell;
@@ -4794,7 +4794,7 @@ function requestUpgrade() {
4794
4794
  }
4795
4795
 
4796
4796
  // ../mcp/src/provision.ts
4797
- var CLIENT_VERSION2 = true ? "0.1.4" : "dev";
4797
+ var CLIENT_VERSION2 = true ? "0.1.5" : "dev";
4798
4798
  function provisionEnabled() {
4799
4799
  const v = (process.env.FIDACY_DISABLE_PROVISION ?? "").trim().toLowerCase();
4800
4800
  return !(v === "1" || v === "true" || v === "yes");
@@ -2,7 +2,7 @@
2
2
  "id": "fidacy",
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
- "version": "0.1.3",
5
+ "version": "0.1.5",
6
6
  "contracts": {
7
7
  "tools": [
8
8
  "request_payment",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fidacy/openclaw-plugin",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
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",