/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Settings for a space */ export interface SpaceSettings { /** The sidebar configuration for the space. (This will eventually replace metadata.sidebarconfig) */ sidebarConfig?: Flatfile.SpaceSidebarConfig; /** The name of the job that needs to complete before navigating to file mapping */ filesMappedAfterJob?: string; /** The extraction options for CSV files. */ extractionOptions?: Flatfile.HeaderDetectionOptions; /** List of action names to omit from the space interface (e.g., 'file.import', 'records.delete', 'records.download') */ omitActions?: string[]; }