Variable SupplierLegalIdentifierSchemaConst
SupplierLegalIdentifierSchema: ZodObject<
{
type: ZodEnum<
[
"ICE",
"RC",
"IF",
"CNSS",
"PATENTE",
"SIRET",
"SIREN",
"DUNS",
"VAT",
"OTHER",
],
>;
value: ZodString;
country: ZodOptional<ZodString>;
isActive: ZodBoolean;
},
"strip",
ZodTypeAny,
{
type: | "OTHER"
| "ICE"
| "RC"
| "SIRET"
| "DUNS"
| "VAT"
| "IF"
| "CNSS"
| "PATENTE"
| "SIREN";
value: string;
country?: string;
isActive: boolean;
},
{
type: | "OTHER"
| "ICE"
| "RC"
| "SIRET"
| "DUNS"
| "VAT"
| "IF"
| "CNSS"
| "PATENTE"
| "SIREN";
value: string;
country?: string;
isActive: boolean;
},
> = ...