build
This commit is contained in:
parent
87309f5b39
commit
94d2989c60
6 changed files with 27 additions and 27 deletions
20
dist-import/residuos/index.d.ts
vendored
20
dist-import/residuos/index.d.ts
vendored
|
|
@ -58,14 +58,14 @@ export declare const zUsuarioSincronizar: z.ZodObject<{
|
|||
permicoes: z.ZodRecord<z.ZodString, z.ZodAny>;
|
||||
versao: z.ZodNumber;
|
||||
credenciais_sinir: z.ZodOptional<z.ZodObject<{
|
||||
login: z.ZodString;
|
||||
senha: z.ZodString;
|
||||
login: z.ZodOptional<z.ZodString>;
|
||||
senha: z.ZodOptional<z.ZodString>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
login: string;
|
||||
senha: string;
|
||||
login?: string | undefined;
|
||||
senha?: string | undefined;
|
||||
}, {
|
||||
login: string;
|
||||
senha: string;
|
||||
login?: string | undefined;
|
||||
senha?: string | undefined;
|
||||
}>>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
codigo: string;
|
||||
|
|
@ -75,8 +75,8 @@ export declare const zUsuarioSincronizar: z.ZodObject<{
|
|||
permicoes: Record<string, any>;
|
||||
versao: number;
|
||||
credenciais_sinir?: {
|
||||
login: string;
|
||||
senha: string;
|
||||
login?: string | undefined;
|
||||
senha?: string | undefined;
|
||||
} | undefined;
|
||||
}, {
|
||||
codigo: string;
|
||||
|
|
@ -86,8 +86,8 @@ export declare const zUsuarioSincronizar: z.ZodObject<{
|
|||
permicoes: Record<string, any>;
|
||||
versao: number;
|
||||
credenciais_sinir?: {
|
||||
login: string;
|
||||
senha: string;
|
||||
login?: string | undefined;
|
||||
senha?: string | undefined;
|
||||
} | undefined;
|
||||
}>;
|
||||
export type tipo_zUsuarioSincronizar = z.infer<typeof zUsuarioSincronizar>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue