interface ExportOptions {
    allow?: ExportFields[];
    block?: ExportFields[];
    enrich_inputs?: boolean;
    values?: boolean;
}

Properties

allow?: ExportFields[]

limit the export byte size by specifying an allowlist

block?: ExportFields[]

limit the export byte size by specifying a block list

enrich_inputs?: boolean

When true, fetches stream message history and produces a structured activities array with input/output per activity, timing, dimensional cycle info, and retry attempts. This is the dashboard-friendly format.

false
values?: boolean

If false, do not return timeline values (like child job response, proxy activity response, etc)

true