add currency to organization update endpoint

This commit is contained in:
Gregor Vostrak
2026-06-09 12:37:20 +02:00
committed by Constantin Graf
parent 4975cf1dab
commit 24875f9424
5 changed files with 94 additions and 1 deletions

View File

@@ -330,6 +330,7 @@ const OrganizationResource = z
const OrganizationUpdateRequest = z
.object({
name: z.string().max(255),
currency: z.string(),
billable_rate: z.union([z.number(), z.null()]),
employees_can_see_billable_rates: z.boolean(),
employees_can_manage_tasks: z.boolean(),