Tightened frontend zod schemas where backend required fields the frontend marked optional, and matched enum/format constraints. Schemas: - vehicle-document: document_type required - parts: shop_type, category, unit_type, department, sku required - inspections: customer, vehicle, department, inspection_category, employee, order_number, date, time required - appointments: service_writer required, cross-field to_time > from_time - vendor-credits: vendor + vendor_credit_date required - job-cards: documents[].document_type_id required - expense-items: category, unit_type, department, sku required - inventory-adjustments: reference_number, date required - tasks: task_type, task_section required - shop-timings: in_time, out_time enforce HH:MM:SS regex - vendor-credit: subject + vendor + vendor_credit_date required Settings: - shop-type: shop_type + note required - insurance-types: description field added, required - make-and-models: shop_type required, year 1900..2100 - departments: assignment_type required enum (AssignmentType) - company: website URL validation, latitude/longitude range, first_day_of_work enum, string max lengths - configurations: 4 fields enum-typed (was raw strings) Inline forms: - job-card service/part/expense-item: relations required (part/service/expense_item/department) - job-card recommendation: max 255 - vehicles/inline-forms/shop-type: shop_type + note required - vehicles/inline-forms/body-type: shop_type_id pulled from parent form context, guard on submit - vehicles/inline-forms/color: code field added, required - services/inline-forms/department: assignment_type required enum - tasks/task-section: arrangement required integer - invoices/invoice-edit: status + discount enum-typed Auth: - login: password min 6 (was 8; backend allows 6) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
57 lines
2.2 KiB
TypeScript
57 lines
2.2 KiB
TypeScript
import { z } from "zod"
|
|
import { FirstDayOfWork } from "@garage/api"
|
|
|
|
export const relationFieldSchema = z
|
|
.object({ value: z.string(), label: z.string() })
|
|
.nullable()
|
|
|
|
const optionalLatitude = z
|
|
.string()
|
|
.optional()
|
|
.refine(
|
|
(v) => v == null || v === "" || (!Number.isNaN(Number(v)) && Number(v) >= -90 && Number(v) <= 90),
|
|
"Latitude must be between -90 and 90",
|
|
)
|
|
|
|
const optionalLongitude = z
|
|
.string()
|
|
.optional()
|
|
.refine(
|
|
(v) => v == null || v === "" || (!Number.isNaN(Number(v)) && Number(v) >= -180 && Number(v) <= 180),
|
|
"Longitude must be between -180 and 180",
|
|
)
|
|
|
|
const optionalUrl = z
|
|
.string()
|
|
.max(255, "Website cannot exceed 255 characters")
|
|
.optional()
|
|
.refine(
|
|
(v) => v == null || v === "" || z.string().url().safeParse(v).success,
|
|
"Enter a valid website URL",
|
|
)
|
|
|
|
export const settingsFormSchema = z.object({
|
|
name: z.string().min(1, "Name is required").max(100, "Name cannot exceed 100 characters"),
|
|
email: z.union([z.string().email("Invalid email address"), z.literal("")]).optional(),
|
|
phone: z.string().max(30, "Phone cannot exceed 30 characters").optional(),
|
|
alternative_phone: z.string().max(30, "Phone cannot exceed 30 characters").optional(),
|
|
website: optionalUrl,
|
|
time_zone: z.string().max(100, "Time zone cannot exceed 100 characters").optional(),
|
|
upi_id: z.string().max(100, "UPI cannot exceed 100 characters").optional(),
|
|
first_day_of_work: z.union([z.enum(FirstDayOfWork), z.literal("")]).optional(),
|
|
latitude: optionalLatitude,
|
|
longitude: optionalLongitude,
|
|
bank_details: z.string().optional(),
|
|
first_address_line: z.string().max(255, "Address cannot exceed 255 characters").optional(),
|
|
second_address_line: z.string().max(255, "Address cannot exceed 255 characters").optional(),
|
|
country: relationFieldSchema,
|
|
state: relationFieldSchema,
|
|
city: z.string().max(100, "City cannot exceed 100 characters").optional(),
|
|
zip_code: z.string().max(20, "Zip code cannot exceed 20 characters").optional(),
|
|
description: z.string().optional(),
|
|
security: z.string().optional(),
|
|
privacy_policy: z.string().optional(),
|
|
})
|
|
|
|
export type SettingsFormValues = z.infer<typeof settingsFormSchema>
|