style(voice-call): fix oxfmt formatting in config.ts

Break chained .string().regex().optional() calls across
multiple lines to satisfy oxfmt --check.
This commit is contained in:
giumex 2026-02-28 14:38:31 +01:00
parent 5f3b4b17c6
commit e5efc5bb87

View File

@ -65,7 +65,10 @@ export const TwilioConfigSchema = z
* @see https://www.twilio.com/docs/global-infrastructure/understanding-twilio-regions
* @see https://www.twilio.com/docs/global-infrastructure/api-domain-migration-guide
*/
region: z.string().regex(/^[a-z0-9]+$/).optional(),
region: z
.string()
.regex(/^[a-z0-9]+$/)
.optional(),
/**
* Twilio Edge Location (e.g. "dublin", "sydney", "ashburn").
* Used together with `region` to construct the API FQDN.
@ -73,7 +76,10 @@ export const TwilioConfigSchema = z
* Must be specified with `region` to avoid the deprecated domain pattern.
* @see https://www.twilio.com/docs/global-infrastructure/understanding-edge-locations
*/
edge: z.string().regex(/^[a-z-]+$/).optional(),
edge: z
.string()
.regex(/^[a-z-]+$/)
.optional(),
})
.strict();
export type TwilioConfig = z.infer<typeof TwilioConfigSchema>;