Files
openclaw/ui/src/ui/app-defaults.ts

34 lines
699 B
TypeScript

import type { LogLevel } from "./types.ts";
import type { CronFormState } from "./ui-types.ts";
export const DEFAULT_LOG_LEVEL_FILTERS: Record<LogLevel, boolean> = {
trace: true,
debug: true,
info: true,
warn: true,
error: true,
fatal: true,
};
export const DEFAULT_CRON_FORM: CronFormState = {
name: "",
description: "",
agentId: "",
enabled: true,
scheduleKind: "every",
scheduleAt: "",
everyAmount: "30",
everyUnit: "minutes",
cronExpr: "0 7 * * *",
cronTz: "",
sessionTarget: "main",
wakeMode: "next-heartbeat",
payloadKind: "systemEvent",
payloadText: "",
deliver: false,
channel: "last",
to: "",
timeoutSeconds: "",
postToMainPrefix: "",
};