@navservice/usuario 1.49.0 → 1.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/es/biblioteca/src/componentes/auth/RefreshToken/RefreshToken.d.ts +7 -0
- package/build/es/biblioteca/src/componentes/auth/RefreshToken/index.d.ts +1 -0
- package/build/es/biblioteca/src/contexto/contexto_usuario.d.ts +1 -0
- package/build/es/biblioteca/src/index.d.ts +1 -0
- package/build/es/index.js +94 -1
- package/build/es/shared/types/controller/type_controller_usuario.d.ts +36 -12
- package/package.json +1 -1
- package/build/lib/biblioteca/src/componentes/auth/AuthAtivarDesativarAuthenticator/AuthAtivarDesativarAuthenticator.d.ts +0 -2
- package/build/lib/biblioteca/src/componentes/auth/AuthAtivarDesativarAuthenticator/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/AuthGoogle/AuthGoogle.d.ts +0 -5
- package/build/lib/biblioteca/src/componentes/auth/AuthGoogle/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/AuthLogin/AuthLogin.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/AuthLogin/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/AuthRegister/AuthRegister.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/AuthRegister/index.d.ts +0 -2
- package/build/lib/biblioteca/src/componentes/auth/EnviarCodigoOtpParaEmail/EnviarCodigoOtpParaEmail.d.ts +0 -12
- package/build/lib/biblioteca/src/componentes/auth/EnviarCodigoOtpParaEmail/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/EsqueciMinhaSenha/EsqueciMinhaSenha.d.ts +0 -5
- package/build/lib/biblioteca/src/componentes/auth/EsqueciMinhaSenha/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/RecuperarSenhaComCodigoOtp/RecuperarSenhaComCodigoOtp.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/RecuperarSenhaComCodigoOtp/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/auth/VerificarAuthenticator/VerificarAuthenticator.d.ts +0 -2
- package/build/lib/biblioteca/src/componentes/auth/VerificarAuthenticator/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/drawer/DraweFullScreen/DraweFullScreen.d.ts +0 -12
- package/build/lib/biblioteca/src/componentes/drawer/DraweFullScreen/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/drawer/DrawerPadrao/DrawerPadrao.d.ts +0 -12
- package/build/lib/biblioteca/src/componentes/drawer/DrawerPadrao/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/geral/FormularioZod/index.d.ts +0 -45
- package/build/lib/biblioteca/src/componentes/geral/PaginaEmDesenvolvimento/index.d.ts +0 -5
- package/build/lib/biblioteca/src/componentes/geral/TopTabs/index.d.ts +0 -10
- package/build/lib/biblioteca/src/componentes/layout/Layout.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/layout/NavBar/DarkMode.d.ts +0 -2
- package/build/lib/biblioteca/src/componentes/layout/NavBar/Logo.d.ts +0 -2
- package/build/lib/biblioteca/src/componentes/layout/NavBar/Profile.d.ts +0 -5
- package/build/lib/biblioteca/src/componentes/layout/NavBar/index.d.ts +0 -3
- package/build/lib/biblioteca/src/componentes/layout/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/layoutPublic/Header.d.ts +0 -7
- package/build/lib/biblioteca/src/componentes/layoutPublic/index.d.ts +0 -1
- package/build/lib/biblioteca/src/componentes/layoutPublic/layoutPublic.d.ts +0 -7
- package/build/lib/biblioteca/src/config_env/index.d.ts +0 -16
- package/build/lib/biblioteca/src/contexto/contexto_codigo_otp.d.ts +0 -19
- package/build/lib/biblioteca/src/contexto/contexto_layout.d.ts +0 -74
- package/build/lib/biblioteca/src/contexto/contexto_usuario.d.ts +0 -32
- package/build/lib/biblioteca/src/index.d.ts +0 -15
- package/build/lib/index.js +0 -51339
- package/build/lib/shared/configuracoes/_sistema.d.ts +0 -49
- package/build/lib/shared/configuracoes/_theme.d.ts +0 -91
- package/build/lib/shared/configuracoes/index.d.ts +0 -142
- package/build/lib/shared/types/controller/type_codigo_verificacao_otp.d.ts +0 -88
- package/build/lib/shared/types/controller/type_controller_authenticator.d.ts +0 -88
- package/build/lib/shared/types/controller/type_controller_usuario.d.ts +0 -263
- package/build/lib/shared/types/geral/type_response.d.ts +0 -54
- package/build/lib/shared/types/index.d.ts +0 -50
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { AxiosResponse } from "axios";
|
|
2
|
-
import t from "../../../shared/types";
|
|
3
|
-
declare const contexto_usuario: {
|
|
4
|
-
new (): {};
|
|
5
|
-
api: {
|
|
6
|
-
new (): {};
|
|
7
|
-
register(props: t.Controller.Usuario.Register.Input): Promise<t.Controller.Usuario.Register.Response>;
|
|
8
|
-
login(props: t.Controller.Usuario.Login.Input): Promise<AxiosResponse>;
|
|
9
|
-
entrar_com_codigo_otp(props: t.Controller.CodigoOtp.EntrarComCodigoOtp.Input): Promise<t.Controller.CodigoOtp.EntrarComCodigoOtp.Response>;
|
|
10
|
-
login_register_google(props: t.Controller.Usuario.RegisterLoginGoogle.Input): Promise<AxiosResponse<any, any, {}>>;
|
|
11
|
-
};
|
|
12
|
-
contexto: {
|
|
13
|
-
new (): {};
|
|
14
|
-
jsx: {
|
|
15
|
-
new (): {};
|
|
16
|
-
get_user(): t.Controller.Usuario.Login.Output;
|
|
17
|
-
get_signed(): boolean;
|
|
18
|
-
get_loading(): boolean;
|
|
19
|
-
};
|
|
20
|
-
state: {
|
|
21
|
-
new (): {};
|
|
22
|
-
set_signed(): void;
|
|
23
|
-
set_user(userData: t.Controller.Usuario.Login.Output | null): void;
|
|
24
|
-
set_loading(value: boolean): void;
|
|
25
|
-
set_signout(): void;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
websocket: {
|
|
29
|
-
new (): {};
|
|
30
|
-
};
|
|
31
|
-
};
|
|
32
|
-
export default contexto_usuario;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export { default as config_env_usuario } from "./config_env";
|
|
2
|
-
export { default as contexto_usuario } from "./contexto/contexto_usuario";
|
|
3
|
-
export { default as contexto_layout } from "./contexto/contexto_layout";
|
|
4
|
-
export { AuthAtivarDesativarAuthenticatorButton } from "./componentes/auth/AuthAtivarDesativarAuthenticator";
|
|
5
|
-
export { RecuperarSenhaComCodigoOtpButton } from "./componentes/auth/RecuperarSenhaComCodigoOtp";
|
|
6
|
-
export { EsqueciMinhaSenha } from "./componentes/auth/EsqueciMinhaSenha";
|
|
7
|
-
export { AuthGoogle } from "./componentes/auth/AuthGoogle";
|
|
8
|
-
export { AuthLogin } from "./componentes/auth/AuthLogin";
|
|
9
|
-
export { AuthRegister } from "./componentes/auth/AuthRegister";
|
|
10
|
-
export { VerificarAuthenticator } from "./componentes/auth/VerificarAuthenticator";
|
|
11
|
-
export { DrawerFullScreen, TypeDrawerFullScreenRef } from "./componentes/drawer/DraweFullScreen";
|
|
12
|
-
export { DrawerPadrao, TypeDrawerPadraoRef } from "./componentes/drawer/DrawerPadrao";
|
|
13
|
-
export { Layout } from "./componentes/layout";
|
|
14
|
-
export { LayoutPublic } from "./componentes/layoutPublic";
|
|
15
|
-
export { default as TypesUsuario } from "../../shared/types";
|