@cfxlabsinc/b2b-services
    Preparing search index...

    Cadence input accepted when creating or editing a schedule. Uses Temporal's authoring types (CalendarSpec accepts loose ranges like { hour: 17 }; IntervalSpec.every accepts ms or an ms-formatted string), so the form builds a spec Temporal can consume without a translation layer here.

    type ReportScheduleSpecInput = {
        calendars?: CalendarSpec[];
        cronExpressions?: string[];
        intervals?: IntervalSpec[];
        timezone: string;
    }
    Index

    Properties

    calendars?: CalendarSpec[]

    Provide exactly one of calendars / intervals / cronExpressions.

    cronExpressions?: string[]
    intervals?: IntervalSpec[]
    timezone: string