GreggOD
Explore posts from serversAarktype
•Created by GreggOD on 3/3/2025 in #questions
Merge union?
How would I merge a union to have more options seeing as union doesnt have merge method?
Base Union
const payment_methods = type("'credit_card' | 'debit_card' | 'eft' | 'apple_pay' | 'samsung_pay' | 'visa_checkout'")
Extended Union
const payment_methods_south_africa = payment_methods.merge("'zapper' | 'capitec_pay' | 'mobicred' | 'mukuru_pay' | 'snap_scan'")
9 replies
Aarktype
•Created by GreggOD on 2/25/2025 in #questions
Omit is still parsing values
If I omit a field from a schema like so and the date_created is passed in, it will be validated.
I expected omit to ignore / drop the field from the dataset when parsing:
linkApi.schema.link.omit("date_created", "date_updated")
Is this correct and is there any way to ignore/remove fields that are not on the schema when parsing a piece of data?
If i pass {name: "John", email: "[email protected]"}
and my schema is omitting "email".. i would expect the parsed data to only have "name".2 replies
Aarktype
•Created by GreggOD on 2/12/2025 in #questions
Type is not assignable to type (unions)

2 replies
TTCTheo's Typesafe Cult
•Created by GreggOD on 2/14/2023 in #questions
T3 server entry file or similar to run code on boot?
Where would i put some server code that I want to run when the server boots up?
In Remix and Solid Start they have the entry.ts file, is there something similar in T3?
8 replies