refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -1,5 +1,5 @@
import { loadWebMedia, resolveChannelMediaMaxBytes } from "clawdbot/plugin-sdk";
import type { MoltbotConfig } from "clawdbot/plugin-sdk";
import { loadWebMedia, resolveChannelMediaMaxBytes } from "openclaw/plugin-sdk";
import type { OpenClawConfig } from "openclaw/plugin-sdk";
import { createMSTeamsConversationStoreFs } from "./conversation-store-fs.js";
import {
classifyMSTeamsSendError,
@@ -21,7 +21,7 @@ import { resolveMSTeamsSendContext, type MSTeamsProactiveContext } from "./send-
export type SendMSTeamsMessageParams = {
/** Full config (for credentials) */
cfg: MoltbotConfig;
cfg: OpenClawConfig;
/** Conversation ID or user ID to send to */
to: string;
/** Message text */
@@ -48,7 +48,7 @@ const MSTEAMS_MAX_MEDIA_BYTES = 100 * 1024 * 1024;
export type SendMSTeamsPollParams = {
/** Full config (for credentials) */
cfg: MoltbotConfig;
cfg: OpenClawConfig;
/** Conversation ID or user ID to send to */
to: string;
/** Poll question */
@@ -67,7 +67,7 @@ export type SendMSTeamsPollResult = {
export type SendMSTeamsCardParams = {
/** Full config (for credentials) */
cfg: MoltbotConfig;
cfg: OpenClawConfig;
/** Conversation ID or user ID to send to */
to: string;
/** Adaptive Card JSON object */