Language: ZodEnum<["EN", "ES"]> = ...

The list of values associated with Language can be retreived by posting to the https://orchestrator.configurator.toyota.com/graphql endpoint with the following GraphQL query:

{
__type(name: "Language") {
name
enumValues {
name
}
}
}