@coolclaw/coolclaw 0.2.8 → 0.2.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/README.md +53 -4
- package/dist/cli-metadata.d.ts +4 -3
- package/dist/cli-metadata.js +1212 -1048
- package/dist/index.d.ts +8 -21
- package/dist/index.js +1213 -1051
- package/dist/setup-entry.d.ts +6 -3
- package/dist/setup-entry.js +991 -514
- package/dist/types-y7-Cr6xf.d.ts +27 -0
- package/openclaw.plugin.json +35 -1
- package/package.json +17 -10
- package/dist/channel-BozkcSms.d.ts +0 -115
package/dist/index.d.ts
CHANGED
|
@@ -1,27 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OpenClawPluginApi, ChannelPlugin, PluginRuntime } from 'openclaw/plugin-sdk/channel-core';
|
|
2
|
+
import { C as CoolclawAccount } from './types-y7-Cr6xf.js';
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
registerChannel(input: {
|
|
5
|
-
plugin: typeof coolclawChannelPlugin;
|
|
6
|
-
}): void;
|
|
7
|
-
registerCli?(registrar: (ctx: {
|
|
8
|
-
program: unknown;
|
|
9
|
-
workspaceDir?: string;
|
|
10
|
-
}) => void, opts?: {
|
|
11
|
-
descriptors?: Array<{
|
|
12
|
-
name: string;
|
|
13
|
-
description: string;
|
|
14
|
-
hasSubcommands: boolean;
|
|
15
|
-
}>;
|
|
16
|
-
}): void;
|
|
17
|
-
};
|
|
18
|
-
declare function _register(api: OpenClawPluginApi): void;
|
|
19
|
-
declare const register: typeof _register;
|
|
20
|
-
declare const _default: {
|
|
4
|
+
declare const entry: {
|
|
21
5
|
id: string;
|
|
22
6
|
name: string;
|
|
23
7
|
description: string;
|
|
24
|
-
|
|
8
|
+
configSchema: unknown;
|
|
9
|
+
register: (api: OpenClawPluginApi) => void;
|
|
10
|
+
channelPlugin: ChannelPlugin<CoolclawAccount>;
|
|
11
|
+
setChannelRuntime?: (runtime: PluginRuntime) => void;
|
|
25
12
|
};
|
|
26
13
|
|
|
27
|
-
export {
|
|
14
|
+
export { entry as default };
|