diff --git a/dist-front/index.d.mts b/dist-front/index.d.mts index 5017648..2a3f8df 100644 --- a/dist-front/index.d.mts +++ b/dist-front/index.d.mts @@ -88,13 +88,13 @@ declare const orgaos: { declare const objetoCredencial: { [k in keyof typeof orgaos]: z.ZodObject; }; -type TipoCredenciais = { +type TipoCredenciais = Partial<{ SINIR: z.infer; IEMA: z.infer; INEA: z.infer; SIGOR: z.infer; teste: z.infer; -}; +}>; type TipoCredenciaisLista = { [K in keyof TipoCredenciais]: { K: TipoCredenciais[K]; diff --git a/package.json b/package.json index 0284704..517adde 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "p-drives", - "version": "0.265.0", + "version": "0.266.0", "description": "", "main": "./src/index.ts", "exports": { diff --git a/pacote.tgz b/pacote.tgz index 3f22b6d..424e73a 100644 Binary files a/pacote.tgz and b/pacote.tgz differ diff --git a/src/residuos/index.ts b/src/residuos/index.ts index f32a9dc..5782353 100644 --- a/src/residuos/index.ts +++ b/src/residuos/index.ts @@ -103,13 +103,13 @@ export const objetoCredencial: { [k in keyof typeof orgaos]: z.ZodObject } = { teste: teste, } -export type TipoCredenciais = { +export type TipoCredenciais = Partial<{ SINIR: z.infer IEMA: z.infer INEA: z.infer SIGOR: z.infer teste: z.infer -} +}> export type TipoCredenciaisLista = { [K in keyof TipoCredenciais]: {