Files
cfw-autumn/shared/api/customers/apiSubjectV0.ts
2026-03-12 12:00:29 +00:00

8 lines
291 B
TypeScript

import type { z } from "zod/v4";
import { ApiEntityV2Schema } from "../entities/apiEntityV2";
import { ApiCustomerV5Schema } from "./apiCustomerV5";
export const ApiSubjectV0Schema = ApiCustomerV5Schema.or(ApiEntityV2Schema);
export type ApiSubjectV0 = z.infer<typeof ApiSubjectV0Schema>;