sinir como string nulo ou indefinido
This commit is contained in:
parent
195c9f3ab9
commit
79c33dd63e
6 changed files with 10 additions and 10 deletions
6
dist-require/residuos/index.d.ts
vendored
6
dist-require/residuos/index.d.ts
vendored
|
|
@ -118,7 +118,7 @@ export declare const zEmpreendimentoSincronizar: z.ZodObject<{
|
|||
documento: z.ZodString;
|
||||
excluido: z.ZodBoolean;
|
||||
nome: z.ZodString;
|
||||
unidade_sinir: z.ZodString;
|
||||
unidade_sinir: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
||||
versao: z.ZodNumber;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
codigo: string;
|
||||
|
|
@ -127,7 +127,7 @@ export declare const zEmpreendimentoSincronizar: z.ZodObject<{
|
|||
nome: string;
|
||||
versao: number;
|
||||
codigo_empreendedor: string;
|
||||
unidade_sinir: string;
|
||||
unidade_sinir?: string | null | undefined;
|
||||
}, {
|
||||
codigo: string;
|
||||
documento: string;
|
||||
|
|
@ -135,6 +135,6 @@ export declare const zEmpreendimentoSincronizar: z.ZodObject<{
|
|||
nome: string;
|
||||
versao: number;
|
||||
codigo_empreendedor: string;
|
||||
unidade_sinir: string;
|
||||
unidade_sinir?: string | null | undefined;
|
||||
}>;
|
||||
export declare const nomesSincronizacoes: z.ZodEnum<["usuarios", "empreendedores", "empreendimentos"]>;
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ exports.zEmpreendimentoSincronizar = zod_1.z.object({
|
|||
documento: zod_1.z.string(),
|
||||
excluido: zod_1.z.boolean(),
|
||||
nome: zod_1.z.string(),
|
||||
unidade_sinir: zod_1.z.string(),
|
||||
unidade_sinir: zod_1.z.string().nullable().optional(),
|
||||
versao: zod_1.z.number().int(),
|
||||
});
|
||||
exports.nomesSincronizacoes = zod_1.z.enum([
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue