@nextclaw/service 0.1.12 → 0.1.13

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.
@@ -1,6 +1,5 @@
1
1
  import { CronAddOptions } from "../../../../shared/types/cli.types.js";
2
2
  import { CronJobView } from "../utils/cron-job.utils.js";
3
- import { AutomationManager } from "@nextclaw/kernel";
4
3
  import { CronCreateRequest } from "@nextclaw/server";
5
4
 
6
5
  //#region src/cli/commands/cron/services/cron-local.service.d.ts
@@ -10,7 +9,7 @@ declare function createCronCreateRequest(opts: CronAddOptions): {
10
9
  };
11
10
  declare class CronLocalService {
12
11
  private readonly automation;
13
- constructor(automation?: AutomationManager);
12
+ constructor(automation?: any);
14
13
  readonly list: (all: boolean) => CronJobView[];
15
14
  readonly addRequest: (request: CronCreateRequest) => CronJobView;
16
15
  readonly add: (opts: CronAddOptions) => {
@@ -1,4 +1,3 @@
1
- import * as _$_nextclaw_kernel0 from "@nextclaw/kernel";
2
1
  import { LocalizedTextMap } from "@nextclaw/kernel";
3
2
 
4
3
  //#region src/cli/commands/skills/skills-query.service.d.ts
@@ -73,11 +72,11 @@ declare class SkillsQueryService {
73
72
  workdir: string;
74
73
  query?: string;
75
74
  scope?: string;
76
- }) => _$_nextclaw_kernel0.InstalledSkillsList;
75
+ }) => any;
77
76
  getInstalledInfo: (params: {
78
77
  workdir: string;
79
78
  selector: string;
80
- }) => _$_nextclaw_kernel0.InstalledSkillDetail;
79
+ }) => any;
81
80
  searchMarketplaceSkills: (params: {
82
81
  apiBaseUrl?: string;
83
82
  query?: string;
@@ -1,6 +1,5 @@
1
1
  import { NextclawGatewayRuntime } from "../nextclaw-gateway-runtime.service.js";
2
2
  import { Config } from "@nextclaw/core";
3
- import * as _$_nextclaw_openclaw_compat0 from "@nextclaw/openclaw-compat";
4
3
  import { PluginChannelBinding } from "@nextclaw/openclaw-compat";
5
4
 
6
5
  //#region src/shared/services/gateway/managers/gateway-plugin.manager.d.ts
@@ -9,7 +8,7 @@ declare class GatewayPluginManager {
9
8
  private gatewayHandles;
10
9
  constructor(gateway: NextclawGatewayRuntime);
11
10
  getChannelBindings: () => PluginChannelBinding[];
12
- getUiMetadata: () => _$_nextclaw_openclaw_compat0.PluginUiMetadata[];
11
+ getUiMetadata: () => any;
13
12
  load: () => Promise<void>;
14
13
  reloadForConfigChange: (params: {
15
14
  config: Config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextclaw/service",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "private": false,
5
5
  "description": "NextClaw long-running service host and runtime lifecycle.",
6
6
  "type": "module",
@@ -36,23 +36,23 @@
36
36
  "commander": "^12.1.0",
37
37
  "jszip": "^3.10.1",
38
38
  "@nextclaw/channel-extension-feishu": "0.1.4",
39
- "@nextclaw/core": "0.12.20",
40
39
  "@nextclaw/channel-extension-qq": "0.1.1",
41
- "@nextclaw/channel-extension-weixin": "0.1.7",
42
- "@nextclaw/kernel": "0.1.9",
40
+ "@nextclaw/kernel": "0.1.10",
43
41
  "@nextclaw/mcp": "0.1.85",
42
+ "@nextclaw/core": "0.12.20",
43
+ "@nextclaw/ncp-agent-runtime": "0.3.24",
44
+ "@nextclaw/channel-extension-weixin": "0.1.7",
44
45
  "@nextclaw/ncp": "0.5.13",
45
- "@nextclaw/ncp-toolkit": "0.5.18",
46
46
  "@nextclaw/ncp-mcp": "0.1.87",
47
- "@nextclaw/nextclaw-ncp-runtime-http-client": "0.1.12",
48
- "@nextclaw/openclaw-compat": "1.0.20",
49
47
  "@nextclaw/nextclaw-hermes-acp-bridge": "0.1.12",
50
- "@nextclaw/ncp-agent-runtime": "0.3.23",
48
+ "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.13",
49
+ "@nextclaw/openclaw-compat": "1.0.20",
50
+ "@nextclaw/ncp-toolkit": "0.5.18",
51
+ "@nextclaw/nextclaw-ncp-runtime-http-client": "0.1.12",
52
+ "@nextclaw/server": "0.12.21",
51
53
  "@nextclaw/runtime": "0.2.52",
52
- "@nextclaw/remote": "0.1.97",
53
- "@nextclaw/shared": "0.1.7",
54
- "@nextclaw/server": "0.12.20",
55
- "@nextclaw/nextclaw-ncp-runtime-stdio-client": "0.1.13"
54
+ "@nextclaw/remote": "0.1.98",
55
+ "@nextclaw/shared": "0.1.7"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@types/node": "^20.17.6",