@openclaw/diffs 2026.5.2-beta.2 → 2026.5.3-beta.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.
@@ -0,0 +1,2 @@
1
+ import { resolveRequestClientIp } from "openclaw/plugin-sdk/webhook-ingress";
2
+ export { resolveRequestClientIp };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/diffs",
3
- "version": "2026.5.2-beta.2",
3
+ "version": "2026.5.3-beta.1",
4
4
  "description": "OpenClaw diff viewer plugin",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,14 +30,37 @@
30
30
  "minHostVersion": ">=2026.4.30"
31
31
  },
32
32
  "compat": {
33
- "pluginApi": ">=2026.5.2-beta.2"
33
+ "pluginApi": ">=2026.5.3-beta.1"
34
34
  },
35
35
  "build": {
36
- "openclawVersion": "2026.5.2-beta.2"
36
+ "openclawVersion": "2026.5.3-beta.1",
37
+ "staticAssets": [
38
+ {
39
+ "source": "./assets/viewer-runtime.js",
40
+ "output": "assets/viewer-runtime.js"
41
+ }
42
+ ]
37
43
  },
38
44
  "release": {
39
45
  "publishToClawHub": true,
40
46
  "publishToNpm": true
47
+ },
48
+ "runtimeExtensions": [
49
+ "./dist/index.js"
50
+ ]
51
+ },
52
+ "files": [
53
+ "dist/**",
54
+ "openclaw.plugin.json",
55
+ "README.md",
56
+ "skills/**"
57
+ ],
58
+ "peerDependencies": {
59
+ "openclaw": ">=2026.5.3-beta.1"
60
+ },
61
+ "peerDependenciesMeta": {
62
+ "openclaw": {
63
+ "optional": true
41
64
  }
42
65
  }
43
66
  }
package/api.ts DELETED
@@ -1,10 +0,0 @@
1
- export type { OpenClawConfig } from "openclaw/plugin-sdk/config-types";
2
- export {
3
- definePluginEntry,
4
- type AnyAgentTool,
5
- type OpenClawPluginApi,
6
- type OpenClawPluginConfigSchema,
7
- type OpenClawPluginToolContext,
8
- type PluginLogger,
9
- } from "openclaw/plugin-sdk/plugin-entry";
10
- export { resolvePreferredOpenClawTmpDir } from "openclaw/plugin-sdk/temp-path";
package/index.ts DELETED
@@ -1,11 +0,0 @@
1
- import { definePluginEntry } from "./api.js";
2
- import { diffsPluginConfigSchema } from "./src/config.js";
3
- import { registerDiffsPlugin } from "./src/plugin.js";
4
-
5
- export default definePluginEntry({
6
- id: "diffs",
7
- name: "Diffs",
8
- description: "Read-only diff viewer and PNG/PDF renderer for agents.",
9
- configSchema: diffsPluginConfigSchema,
10
- register: registerDiffsPlugin,
11
- });
package/runtime-api.ts DELETED
@@ -1 +0,0 @@
1
- export { resolveRequestClientIp } from "openclaw/plugin-sdk/webhook-ingress";