/* 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 ``PATCH cron-jobs//`` — sent verbatim to * ``cron.update`` as the ``patch`` parameter. Every field is optional. * * Field names are camelCase here to match the wire schema (``CronJobPatch``) * since the patch dict is forwarded directly without translation. */ export type PatchedCronJobPatch = { name?: string; description?: string; enabled?: boolean; deleteAfterRun?: boolean; agentId?: string; sessionKey?: string; sessionTarget?: string; wakeMode?: WakeModeEnum; schedule?: CronSchedule; payload?: CronPayload; delivery?: CronDelivery; };