/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Properties used to create a new environment * * @example * { * name: "dev", * isProd: false, * guestAuthentication: [Flatfile.GuestAuthenticationEnum.MagicLink], * metadata: { * "key": "value" * }, * namespaces: ["default"] * } */ export interface EnvironmentConfigCreate { /** The name of the environment */ name: string; /** Whether or not the environment is a production environment */ isProd: boolean; guestAuthentication?: Flatfile.GuestAuthenticationEnum[]; metadata?: Record; translationsPath?: string; namespaces?: string[]; languageOverride?: string; }