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-import/residuos/index.d.ts
vendored
6
dist-import/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"]>;
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ export const zEmpreendimentoSincronizar = z.object({
|
|||
documento: z.string(),
|
||||
excluido: z.boolean(),
|
||||
nome: z.string(),
|
||||
unidade_sinir: z.string(),
|
||||
unidade_sinir: z.string().nullable().optional(),
|
||||
versao: z.number().int(),
|
||||
});
|
||||
export const nomesSincronizacoes = z.enum([
|
||||
|
|
|
|||
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([
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "p-drives",
|
||||
"version": "0.192.0",
|
||||
"version": "0.193.0",
|
||||
"description": "",
|
||||
"main": "src/index.ts",
|
||||
"exports": {
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ export const zEmpreendimentoSincronizar = z.object({
|
|||
documento: z.string(),
|
||||
excluido: z.boolean(),
|
||||
nome: z.string(),
|
||||
unidade_sinir: z.string(),
|
||||
unidade_sinir: z.string().nullable().optional(),
|
||||
versao: z.number().int(),
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue