/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CronDelivery } from './CronDelivery'; import type { CronPayload } from './CronPayload'; import type { CronSchedule } from './CronSchedule'; import type { WakeModeEnum } from './WakeModeEnum'; /** * Body for ``POST cron-jobs/`` — sent to ``cron.add``. * * Field names use camelCase / snake_case as appropriate so they map 1:1 to * the OpenClawClient wrapper kwargs. */ export type CronJobCreate = { name: string; agent_id?: string; description?: string; enabled?: boolean; delete_after_run?: boolean; session_target?: string; wake_mode?: WakeModeEnum; schedule: CronSchedule; payload: CronPayload; delivery?: CronDelivery; };