Bug Report: type generation for enum of non English text missing Elements value
- 0
- 3
- Self Hosted
- Tools
- Web
- Cloud
π Reproduction steps
in the enum element value, instead of English, use another language (Khmer), in my case Khmer text.
export enum ProvinceType {
= "ααΆαααΆααΈ",
= "ααααα",
TEST = "Test"
}
π Expected behavior
export enum ProvinceType {
CAPITAL = "ααΆαααΆααΈ",
PROVINCE = "ααααα",
TEST = "Test"
}
Maybe configurable mapping enum value ?
π Actual Behavior
Missing value
export enum ProvinceType {
= "ααΆαααΆααΈ",
= "ααααα",
TEST = "Test"
}
:appwriteupvote:
:appwriteupvote:
:appwriteupvote:
:appwriterocket:
will look into language conversions, thanks for pointing this issue
it would be cool if enum value is not in English , there is prompt to ask to provide English naming
would be awesome, i havnt worked or seen code in different languages yet tho. would be awesome if u can share some examples on how this can look!
How about above example reproduction
Recommended threads
- Bulk API limitations in self-hosted serv...
Environment: Appwrite Selfhost SDK: node-appwrite 28.0 Calling `upsertRows` (also applies to `createRows`/`updateRows`/`deleteRows`) with more than 100 rows fa...
- Self Hosted GitHub connection not adding...
After upgrading to 1.9.6 i noticed that i cannot search for new repositories when trying to add new functions. I removed the existing github connection via Set...
- Android SDK: Kotlin null Value Not Updat...
Hi team, I think you should check the Android SDK implementation once, as it seems to have an issue handling Kotlin **null** values. For example: When I send:...