mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-18 17:57:26 +00:00
34 lines
699 B
TypeScript
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: "",
|
|
};
|