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;
|
documento: z.ZodString;
|
||||||
excluido: z.ZodBoolean;
|
excluido: z.ZodBoolean;
|
||||||
nome: z.ZodString;
|
nome: z.ZodString;
|
||||||
unidade_sinir: z.ZodString;
|
unidade_sinir: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
||||||
versao: z.ZodNumber;
|
versao: z.ZodNumber;
|
||||||
}, "strip", z.ZodTypeAny, {
|
}, "strip", z.ZodTypeAny, {
|
||||||
codigo: string;
|
codigo: string;
|
||||||
|
|
@ -127,7 +127,7 @@ export declare const zEmpreendimentoSincronizar: z.ZodObject<{
|
||||||
nome: string;
|
nome: string;
|
||||||
versao: number;
|
versao: number;
|
||||||
codigo_empreendedor: string;
|
codigo_empreendedor: string;
|
||||||
unidade_sinir: string;
|
unidade_sinir?: string | null | undefined;
|
||||||
}, {
|
}, {
|
||||||
codigo: string;
|
codigo: string;
|
||||||
documento: string;
|
documento: string;
|
||||||
|
|
@ -135,6 +135,6 @@ export declare const zEmpreendimentoSincronizar: z.ZodObject<{
|
||||||
nome: string;
|
nome: string;
|
||||||
versao: number;
|
versao: number;
|
||||||
codigo_empreendedor: string;
|
codigo_empreendedor: string;
|
||||||
unidade_sinir: string;
|
unidade_sinir?: string | null | undefined;
|
||||||
}>;
|
}>;
|
||||||
export declare const nomesSincronizacoes: z.ZodEnum<["usuarios", "empreendedores", "empreendimentos"]>;
|
export declare const nomesSincronizacoes: z.ZodEnum<["usuarios", "empreendedores", "empreendimentos"]>;
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ export const zEmpreendimentoSincronizar = z.object({
|
||||||
documento: z.string(),
|
documento: z.string(),
|
||||||
excluido: z.boolean(),
|
excluido: z.boolean(),
|
||||||
nome: z.string(),
|
nome: z.string(),
|
||||||
unidade_sinir: z.string(),
|
unidade_sinir: z.string().nullable().optional(),
|
||||||
versao: z.number().int(),
|
versao: z.number().int(),
|
||||||
});
|
});
|
||||||
export const nomesSincronizacoes = z.enum([
|
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;
|
documento: z.ZodString;
|
||||||
excluido: z.ZodBoolean;
|
excluido: z.ZodBoolean;
|
||||||
nome: z.ZodString;
|
nome: z.ZodString;
|
||||||
unidade_sinir: z.ZodString;
|
unidade_sinir: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
||||||
versao: z.ZodNumber;
|
versao: z.ZodNumber;
|
||||||
}, "strip", z.ZodTypeAny, {
|
}, "strip", z.ZodTypeAny, {
|
||||||
codigo: string;
|
codigo: string;
|
||||||
|
|
@ -127,7 +127,7 @@ export declare const zEmpreendimentoSincronizar: z.ZodObject<{
|
||||||
nome: string;
|
nome: string;
|
||||||
versao: number;
|
versao: number;
|
||||||
codigo_empreendedor: string;
|
codigo_empreendedor: string;
|
||||||
unidade_sinir: string;
|
unidade_sinir?: string | null | undefined;
|
||||||
}, {
|
}, {
|
||||||
codigo: string;
|
codigo: string;
|
||||||
documento: string;
|
documento: string;
|
||||||
|
|
@ -135,6 +135,6 @@ export declare const zEmpreendimentoSincronizar: z.ZodObject<{
|
||||||
nome: string;
|
nome: string;
|
||||||
versao: number;
|
versao: number;
|
||||||
codigo_empreendedor: string;
|
codigo_empreendedor: string;
|
||||||
unidade_sinir: string;
|
unidade_sinir?: string | null | undefined;
|
||||||
}>;
|
}>;
|
||||||
export declare const nomesSincronizacoes: z.ZodEnum<["usuarios", "empreendedores", "empreendimentos"]>;
|
export declare const nomesSincronizacoes: z.ZodEnum<["usuarios", "empreendedores", "empreendimentos"]>;
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ exports.zEmpreendimentoSincronizar = zod_1.z.object({
|
||||||
documento: zod_1.z.string(),
|
documento: zod_1.z.string(),
|
||||||
excluido: zod_1.z.boolean(),
|
excluido: zod_1.z.boolean(),
|
||||||
nome: zod_1.z.string(),
|
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(),
|
versao: zod_1.z.number().int(),
|
||||||
});
|
});
|
||||||
exports.nomesSincronizacoes = zod_1.z.enum([
|
exports.nomesSincronizacoes = zod_1.z.enum([
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "p-drives",
|
"name": "p-drives",
|
||||||
"version": "0.192.0",
|
"version": "0.193.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "src/index.ts",
|
"main": "src/index.ts",
|
||||||
"exports": {
|
"exports": {
|
||||||
|
|
|
||||||
|
|
@ -82,7 +82,7 @@ export const zEmpreendimentoSincronizar = z.object({
|
||||||
documento: z.string(),
|
documento: z.string(),
|
||||||
excluido: z.boolean(),
|
excluido: z.boolean(),
|
||||||
nome: z.string(),
|
nome: z.string(),
|
||||||
unidade_sinir: z.string(),
|
unidade_sinir: z.string().nullable().optional(),
|
||||||
versao: z.number().int(),
|
versao: z.number().int(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue