Types: fix optional cluster check follow-ups

This commit is contained in:
Vincent Koc
2026-03-18 10:02:21 -07:00
parent 05b1cdec3c
commit 467ec4d5f3
5 changed files with 22 additions and 5 deletions

View File

@@ -1,2 +1 @@
export * from "openclaw/plugin-sdk/nostr";
export * from "./setup-api.js";

View File

@@ -1,2 +1 @@
export * from "openclaw/plugin-sdk/tlon";
export * from "./setup-api.js";

View File

@@ -167,5 +167,18 @@ export function createWhatsAppPluginBase(params: {
},
setup: params.setup,
groups: params.groups,
});
}) as Pick<
ChannelPlugin<ResolvedWhatsAppAccount>,
| "id"
| "meta"
| "setupWizard"
| "capabilities"
| "reload"
| "gatewayMethods"
| "configSchema"
| "config"
| "security"
| "setup"
| "groups"
>;
}