fix: ajsute
This commit is contained in:
parent
b430100bab
commit
6db0272010
3 changed files with 14 additions and 10 deletions
|
|
@ -89,12 +89,14 @@ declare const objetoCredencial: {
|
|||
[k in keyof typeof orgaos]: z.ZodObject;
|
||||
};
|
||||
type TipoCredenciais = {
|
||||
SINIR: z.infer<typeof zCredenciaisSinir>;
|
||||
IEMA: z.infer<typeof zCredenciaisIema>;
|
||||
teste: z.infer<typeof teste>;
|
||||
SINIR?: z.infer<typeof zCredenciaisSinir>;
|
||||
IEMA?: z.infer<typeof zCredenciaisIema>;
|
||||
teste?: z.infer<typeof teste>;
|
||||
};
|
||||
type TipoCredenciaisLista = {
|
||||
[K in keyof TipoCredenciais]: TipoCredenciais[K];
|
||||
[K in keyof TipoCredenciais]: {
|
||||
K: TipoCredenciais[K];
|
||||
};
|
||||
}[keyof TipoCredenciais];
|
||||
type tipo_zUsuarioSincronizar = z.infer<typeof zUsuarioSincronizar>;
|
||||
/** Tipagem usada para o processo de sincronização entre modulos */
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "p-drives",
|
||||
"version": "0.258.0",
|
||||
"version": "0.260.0",
|
||||
"description": "",
|
||||
"main": "./src/index.ts",
|
||||
"exports": {
|
||||
|
|
|
|||
|
|
@ -100,13 +100,15 @@ export const objetoCredencial: { [k in keyof typeof orgaos]: z.ZodObject } = {
|
|||
}
|
||||
|
||||
export type TipoCredenciais = {
|
||||
SINIR: z.infer<typeof zCredenciaisSinir>
|
||||
IEMA: z.infer<typeof zCredenciaisIema>
|
||||
teste: z.infer<typeof teste>
|
||||
SINIR?: z.infer<typeof zCredenciaisSinir>
|
||||
IEMA?: z.infer<typeof zCredenciaisIema>
|
||||
teste?: z.infer<typeof teste>
|
||||
}
|
||||
|
||||
export type TipoCredenciaisLista = {
|
||||
[K in keyof TipoCredenciais]: TipoCredenciais[K]
|
||||
[K in keyof TipoCredenciais]: {
|
||||
K: TipoCredenciais[K]
|
||||
}
|
||||
}[keyof TipoCredenciais]
|
||||
|
||||
export type tipo_zUsuarioSincronizar = z.infer<typeof zUsuarioSincronizar>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue