/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * An app * * @example * { * id: "us_app_YOUR_ID", * name: "Nightly Data Loads", * namespace: "nightly-data", * type: Flatfile.AppType.Custom, * entity: "Sync", * entityPlural: "Syncs", * icon: "\n \n", * metadata: { * "foo": "bar" * }, * environmentFilters: { * "type": [ * "PROD", * "DEV" * ], * "exclude_ids": [ * "us_env_123456" * ] * }, * createdAt: "2023-10-30T16:59:45.735Z", * updatedAt: "2023-10-30T16:59:45.735Z" * } */ export interface App { id: Flatfile.AppId; name: string; namespace: string; type: Flatfile.AppType; entity: string; entityPlural: string; icon?: string; metadata?: any; environmentFilters?: any; blueprint?: any; createdAt: Date; updatedAt: Date; deletedAt?: Date; activatedAt?: Date; }