/** * This file was auto-generated by Fern from our API Definition. */ /** * Update an app * * @example * { * name: "Nightly Data Loads", * namespace: "nightly-data", * entity: "Sync", * entityPlural: "Syncs", * icon: "\n \n", * metadata: { * "foo": "bar" * } * } */ export interface AppPatch { name?: string; namespace?: string; entity?: string; entityPlural?: string; icon?: string; metadata?: any; environmentFilters?: any; blueprint?: any; activatedAt?: Date; }