interface FullTask {
    activity: History[];
    createdAt: Date;
    enabled: boolean;
    extends: Template;
    id: string;
    lastExtended?: {
        id: string;
        name: string;
        tags: {
            color?: string;
            name: string;
        }[];
    };
    lastRun?: Date;
    name: string;
    namespace: Namespace;
    nextRun: Date;
    recurrence: Recurrence;
    targets: string[];
    template: {
        fetchOptions?: {
            dateField?: string;
            filters?: Record<string, any>;
            index: string;
        };
        inserts?: (Layout & {
            at: number;
        })[];
    };
    updatedAt?: Date;
}

Hierarchy (view full)

Properties

activity: History[]
createdAt: Date
enabled: boolean
extends: Template
id: string
lastExtended?: {
    id: string;
    name: string;
    tags: {
        color?: string;
        name: string;
    }[];
}

Type declaration

  • id: string
  • name: string
  • tags: {
        color?: string;
        name: string;
    }[]
lastRun?: Date
name: string
namespace: Namespace
nextRun: Date
recurrence: Recurrence
targets: string[]
template: {
    fetchOptions?: {
        dateField?: string;
        filters?: Record<string, any>;
        index: string;
    };
    inserts?: (Layout & {
        at: number;
    })[];
}

Type declaration

  • Optional fetchOptions?: {
        dateField?: string;
        filters?: Record<string, any>;
        index: string;
    }
    • Optional dateField?: string
    • Optional filters?: Record<string, any>
    • index: string
  • Optional inserts?: (Layout & {
        at: number;
    })[]
updatedAt?: Date

Generated using TypeDoc