/** * This file was auto-generated by Fern from our API Definition. */ /** * The type of job * * @example * Flatfile.JobType.File * * @example * Flatfile.JobType.Workbook * * @example * Flatfile.JobType.Sheet */ export type JobType = "file" | "workbook" | "sheet" | "space" | "document" | "app" | "agent" | "autobuild" | "onboarding"; export declare const JobType: { readonly File: "file"; readonly Workbook: "workbook"; readonly Sheet: "sheet"; readonly Space: "space"; readonly Document: "document"; readonly App: "app"; readonly Agent: "agent"; readonly Autobuild: "autobuild"; readonly Onboarding: "onboarding"; };