Type alias CloudLogFilters

CloudLogFilters: {
    auditRowId?: string;
    buildLogExpanded?: number;
    column?: string[];
    extension?: string[];
    functionType?: ("connector" | "derivative-script" | "action" | "derivative-function" | "extension" | "defaultValue" | "hooks")[];
    loggingSource?: ("backend-scripts" | "backend-function" | "hooks")[];
    severity?: (keyof typeof SEVERITY_LEVELS)[];
    timeRange: {
        type: "seconds" | "minutes" | "hours" | "days";
        value: number;
    } | {
        end: Date;
        start: Date;
        type: "range";
    };
    type: "extension" | "webhook" | "column" | "audit" | "build" | "functions";
    webhook?: string[];
}

Type declaration

  • Optional auditRowId?: string
  • Optional buildLogExpanded?: number
  • Optional column?: string[]
  • Optional extension?: string[]
  • Optional functionType?: ("connector" | "derivative-script" | "action" | "derivative-function" | "extension" | "defaultValue" | "hooks")[]
  • Optional loggingSource?: ("backend-scripts" | "backend-function" | "hooks")[]
  • Optional severity?: (keyof typeof SEVERITY_LEVELS)[]
  • timeRange: {
        type: "seconds" | "minutes" | "hours" | "days";
        value: number;
    } | {
        end: Date;
        start: Date;
        type: "range";
    }
  • type: "extension" | "webhook" | "column" | "audit" | "build" | "functions"
  • Optional webhook?: string[]

Generated using TypeDoc