@laburen/openclaw-plugin-whatsapp-api 0.2.1 → 0.2.3
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/index.d.ts +0 -2
- package/index.js +0 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import * as openclaw_plugin_sdk0 from "openclaw/plugin-sdk";
|
|
2
1
|
import { OpenClawPluginApi } from "openclaw/plugin-sdk";
|
|
3
2
|
|
|
4
3
|
//#region index.d.ts
|
|
@@ -9,7 +8,6 @@ declare const plugin: {
|
|
|
9
8
|
id: string;
|
|
10
9
|
name: string;
|
|
11
10
|
description: string;
|
|
12
|
-
configSchema: openclaw_plugin_sdk0.OpenClawPluginConfigSchema;
|
|
13
11
|
/**
|
|
14
12
|
* Wires the channel into OpenClaw: saves plugin API, registers `whatsapp-api`.
|
|
15
13
|
*
|
package/index.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { emptyPluginConfigSchema } from "openclaw/plugin-sdk";
|
|
2
1
|
import { mkdir, readFile, writeFile } from "node:fs/promises";
|
|
3
2
|
import path from "node:path";
|
|
4
3
|
import { tmpdir } from "node:os";
|
|
@@ -1345,7 +1344,6 @@ const plugin = {
|
|
|
1345
1344
|
id: "whatsapp-api",
|
|
1346
1345
|
name: "WhatsApp API",
|
|
1347
1346
|
description: "WhatsApp API channel plugin with inbound webhook and direct Meta outbound",
|
|
1348
|
-
configSchema: emptyPluginConfigSchema(),
|
|
1349
1347
|
register(api) {
|
|
1350
1348
|
setPluginApi(api);
|
|
1351
1349
|
api.registerChannel({ plugin: createWhatsAppApiChannel(api) });
|