alteração de pacote

This commit is contained in:
Luiz Silva 2025-01-30 10:57:22 -03:00
parent 6d21f02dde
commit 7c01cd197c
9 changed files with 26 additions and 27 deletions

View file

@ -1,3 +1,4 @@
import { chaves_produto } from 'autenticacao-drive';
import * as zod from 'zod';
import { z } from 'zod';
import * as p_respostas from 'p-respostas';
@ -12,7 +13,7 @@ declare const ztokenQuipo: z.ZodObject<{
nome_conta: z.ZodString;
codigo_acesso_produto: z.ZodString;
codigo_autenticacao: z.ZodString;
chave_produto: z.ZodEnum<["betha-meio-ambiente", "e-licencie-gov"]>;
chave_produto: z.ZodEnum<[(typeof chaves_produto)["betha-meio-ambiente"], (typeof chaves_produto)["e-licencie-gov"]]>;
tipo_de_acesso: z.ZodEnum<["publico", "governo", "sociedade"]>;
exp: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
@ -23,7 +24,7 @@ declare const ztokenQuipo: z.ZodObject<{
nome_conta: string;
codigo_acesso_produto: string;
codigo_autenticacao: string;
chave_produto: "betha-meio-ambiente" | "e-licencie-gov";
chave_produto: (typeof chaves_produto)["betha-meio-ambiente"] | (typeof chaves_produto)["e-licencie-gov"];
tipo_de_acesso: "publico" | "governo" | "sociedade";
exp?: number | undefined;
}, {
@ -34,7 +35,7 @@ declare const ztokenQuipo: z.ZodObject<{
nome_conta: string;
codigo_acesso_produto: string;
codigo_autenticacao: string;
chave_produto: "betha-meio-ambiente" | "e-licencie-gov";
chave_produto: (typeof chaves_produto)["betha-meio-ambiente"] | (typeof chaves_produto)["e-licencie-gov"];
tipo_de_acesso: "publico" | "governo" | "sociedade";
exp?: number | undefined;
}>;
@ -84,8 +85,6 @@ declare const pAutenticacao: {
}) => Promise<p_respostas.tipoResposta<string>>;
};
declare const chaves_produto: z.ZodEnum<["suporte", "betha-meio-ambiente", "e-licencie-gov", "e-licencie"]>;
/** aplica a todas as consultas */
declare const z_padroes: z.ZodObject<{
tabela: z.ZodString;
@ -1141,4 +1140,4 @@ declare const abrirNps: (emDesenvolvimento: boolean) => (parametros: tipo_proxim
declare const $clienteStatus: z.ZodEnum<["ativo", "inativo"]>;
declare const status$cliente: z.ZodEnum<["ativo", "inativo"]>;
export { $clienteStatus, ClassPilao, PREFIXO_PILAO, Pilao, abrirNps, chaves_produto, nomesSincronizacoes, type nomesVisoes, pAutenticacao, pPilao, pilao_enderecos, type retornoSerieConsultar, status$cliente, type tipoConstrutorPilao, type tipoRetornoSerieconsulta, type tipoTokenQuipo, type tipoUsuarioExterno, type tipo_pilao_api, type tipo_proxima_avaliacao, type tipo_zUsuarioSincronizar, tipos_acesso_quipo, type tipos_de_acesso_quipo, urlPilao, zAuntenticacaoResiduosSolicitar, zEmpreendedorSincronizar, zEmpreendimentoSincronizar, zUsuarioSincronizar, type z_tipagem_registros, ztokenQuipo };
export { $clienteStatus, ClassPilao, PREFIXO_PILAO, Pilao, abrirNps, nomesSincronizacoes, type nomesVisoes, pAutenticacao, pPilao, pilao_enderecos, type retornoSerieConsultar, status$cliente, type tipoConstrutorPilao, type tipoRetornoSerieconsulta, type tipoTokenQuipo, type tipoUsuarioExterno, type tipo_pilao_api, type tipo_proxima_avaliacao, type tipo_zUsuarioSincronizar, tipos_acesso_quipo, type tipos_de_acesso_quipo, urlPilao, zAuntenticacaoResiduosSolicitar, zEmpreendedorSincronizar, zEmpreendimentoSincronizar, zUsuarioSincronizar, type z_tipagem_registros, ztokenQuipo };

File diff suppressed because one or more lines are too long