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

@@ -9,7 +9,7 @@ import type {
import { formatInboundEnvelope, resolveEnvelopeFormatOptions } from "../auto-reply/envelope.js";
import { finalizeInboundContext } from "../auto-reply/reply/inbound-context.js";
import { formatLocationText, toLocationContext } from "../channels/location.js";
import type { MoltbotConfig } from "../config/config.js";
import type { OpenClawConfig } from "../config/config.js";
import {
readSessionUpdatedAt,
recordSessionMetaFromInbound,
@@ -29,7 +29,7 @@ interface MediaRef {
interface BuildLineMessageContextParams {
event: MessageEvent;
allMedia: MediaRef[];
cfg: MoltbotConfig;
cfg: OpenClawConfig;
account: ResolvedLineAccount;
}
@@ -315,7 +315,7 @@ export async function buildLineMessageContext(params: BuildLineMessageContextPar
export async function buildLinePostbackContext(params: {
event: PostbackEvent;
cfg: MoltbotConfig;
cfg: OpenClawConfig;
account: ResolvedLineAccount;
}) {
const { event, cfg, account } = params;