Files
clawdbot/src/config/merge-config.ts
Peter Steinberger 1b2957d050 style: lint cleanup
2026-01-08 08:40:02 +01:00

36 lines
971 B
TypeScript

import type { ClawdbotConfig } from "./config.js";
import type { WhatsAppConfig } from "./types.js";
export type MergeSectionOptions<T> = {
unsetOnUndefined?: Array<keyof T>;
};
export function mergeConfigSection<T extends Record<string, unknown>>(
base: T | undefined,
patch: Partial<T>,
options: MergeSectionOptions<T> = {},
): T {
const next: Record<string, unknown> = { ...(base ?? undefined) };
for (const [key, value] of Object.entries(patch) as [keyof T, T[keyof T]][]) {
if (value === undefined) {
if (options.unsetOnUndefined?.includes(key)) {
delete next[key as string];
}
continue;
}
next[key as string] = value as unknown;
}
return next as T;
}
export function mergeWhatsAppConfig(
cfg: ClawdbotConfig,
patch: Partial<WhatsAppConfig>,
options?: MergeSectionOptions<WhatsAppConfig>,
): ClawdbotConfig {
return {
...cfg,
whatsapp: mergeConfigSection(cfg.whatsapp, patch, options),
};
}