types-nora-api 0.0.326 → 0.0.327
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/dist/classes.d.ts +2 -0
- package/dist/classes.js +1 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -1058,6 +1058,7 @@ interface IFicha {
|
|
|
1058
1058
|
nome: string | null;
|
|
1059
1059
|
nomeComDetalhe: string | null;
|
|
1060
1060
|
nivel: NivelDto | null;
|
|
1061
|
+
usuario: UsuarioDto | null;
|
|
1061
1062
|
}
|
|
1062
1063
|
type FichaDto = IFicha;
|
|
1063
1064
|
type FichaEmProcessoDeEvolucaoDto = {
|
|
@@ -1649,6 +1650,7 @@ interface IUsuario {
|
|
|
1649
1650
|
permissoes: PermissoesUsuarioDto[];
|
|
1650
1651
|
customizacao: CustomizacaoUsuarioDto;
|
|
1651
1652
|
personagens: PersonagemDto[] | null;
|
|
1653
|
+
githubUsuario: GithubUsuarioDto | null;
|
|
1652
1654
|
username: string;
|
|
1653
1655
|
email: string | null;
|
|
1654
1656
|
discordId: string;
|
package/dist/classes.js
CHANGED
|
@@ -640,6 +640,7 @@ const MENU_PRINCIPAL = [
|
|
|
640
640
|
// menuItem('Mestre', { pagina: PAGINAS.minhasPaginas.mestre }),
|
|
641
641
|
// menuItem('Artista', { pagina: PAGINAS.minhasPaginas.artista }),
|
|
642
642
|
// ]),
|
|
643
|
+
menuItem('Fichas', { pagina: PAGINAS.fichas }),
|
|
643
644
|
menuItem('Personagens', { pagina: PAGINAS.personagens }),
|
|
644
645
|
menuItem('Jogue Agora!', { pagina: PAGINAS.jogo }),
|
|
645
646
|
menuItem('Assistir', { pagina: PAGINAS.aventuras }),
|