@nextclaw/server 0.12.11 → 0.12.12

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.d.ts CHANGED
@@ -935,9 +935,12 @@ type CronScheduleView = {
935
935
  type CronPayloadView = {
936
936
  kind?: "system_event" | "agent_turn";
937
937
  message: string;
938
+ agentId?: string | null;
939
+ sessionId?: string | null;
938
940
  deliver?: boolean;
939
941
  channel?: string | null;
940
942
  to?: string | null;
943
+ accountId?: string | null;
941
944
  };
942
945
  type CronJobStateView = {
943
946
  nextRunAt?: string | null;
@@ -965,6 +968,7 @@ type CronCreateRequest = {
965
968
  message: string;
966
969
  schedule: CronScheduleView;
967
970
  agentId?: string | null;
971
+ sessionId?: string | null;
968
972
  deliver?: boolean;
969
973
  channel?: string | null;
970
974
  to?: string | null;
package/dist/index.js CHANGED
@@ -2792,6 +2792,7 @@ function readCronCreateParams(input) {
2792
2792
  message,
2793
2793
  schedule,
2794
2794
  agentId: readNonEmptyString(input.agentId),
2795
+ sessionId: readNonEmptyString(input.sessionId),
2795
2796
  deliver: input.deliver === true,
2796
2797
  channel: readNonEmptyString(input.channel),
2797
2798
  to: readNonEmptyString(input.to),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextclaw/server",
3
- "version": "0.12.11",
3
+ "version": "0.12.12",
4
4
  "private": false,
5
5
  "description": "Nextclaw UI/API server.",
6
6
  "type": "module",
@@ -18,12 +18,12 @@
18
18
  "@hono/node-server": "^1.13.3",
19
19
  "hono": "^4.6.2",
20
20
  "ws": "^8.18.0",
21
- "@nextclaw/core": "0.12.11",
22
- "@nextclaw/mcp": "0.1.76",
21
+ "@nextclaw/core": "0.12.12",
22
+ "@nextclaw/mcp": "0.1.77",
23
23
  "@nextclaw/ncp": "0.5.5",
24
24
  "@nextclaw/ncp-http-agent-server": "0.3.17",
25
- "@nextclaw/openclaw-compat": "1.0.11",
26
- "@nextclaw/runtime": "0.2.43"
25
+ "@nextclaw/openclaw-compat": "1.0.12",
26
+ "@nextclaw/runtime": "0.2.44"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/node": "^20.17.6",