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 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 }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.326",
3
+ "version": "0.0.327",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",