types-nora-api 0.0.408 → 0.0.410

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
@@ -966,7 +966,7 @@ type AventuraCompletaDto = {
966
966
  imagemCapa: ImagemCompletaDto | null;
967
967
  detalheRascunhoAventura: DetalheRascunhoAventuraCompletaDto | null;
968
968
  arco: ArcoAventuraCompletaDto | null;
969
- gruposAventura: GrupoAventuraCompletaDto[] | null;
969
+ gruposAventura: GrupoAventuraParaAssistirDto[] | null;
970
970
  titulo: string;
971
971
  dataCriacao: Date;
972
972
  nomeCompletoAventura: string;
@@ -1668,6 +1668,7 @@ type PersonagemVisualizacaoDetalhadaDto = {
1668
1668
  classe: ClasseDto | null;
1669
1669
  nivel: NivelDto | null;
1670
1670
  usuario: UsuarioVisualizacaoSimplesDto;
1671
+ idFichaVigente: number | null;
1671
1672
  };
1672
1673
  type ResumoPersonagemAventuraSemPersonagemDto = {
1673
1674
  fkPersonagensId: number;
@@ -1946,9 +1947,10 @@ type UsuarioVisualizacaoSimplesDto = {
1946
1947
  username: string;
1947
1948
  };
1948
1949
  type LayoutContextualizadoInicial = {
1949
- readonly titulo?: string;
1950
+ readonly titulo?: string | null;
1950
1951
  readonly escondeFundo?: boolean;
1951
1952
  readonly proporcaoConteudo?: number;
1953
+ readonly esconderMenu?: boolean;
1952
1954
  };
1953
1955
  /**
1954
1956
  * Estrutura persistida da ficha.
package/dist/classes.js CHANGED
@@ -637,8 +637,6 @@ const PAGINAS = {
637
637
  home: pagina('/', { label: 'Página Inicial', comCabecalho: true }),
638
638
  acessar: pagina('/acessar', { label: 'Acessar' }),
639
639
  cadastrar: pagina('/cadastrar', { label: 'Cadastrar', acesso: { cadastroPermitido: true } }),
640
- // aventura: paginaComLayoutContextualizado('/aventura/[id]', { label: 'Aventura' }, { titulo: 'TROCAR', proporcaoConteudo: 87 }),
641
- // aventuras: paginaComLayoutContextualizado('/aventuras', { label: 'Aventuras' }, { titulo: 'Assistir Aventuras', proporcaoConteudo: 80 }),
642
640
  definicoes: pagina('/definicoes/[[...slug]]', { label: 'Definições', comCabecalho: true }),
643
641
  dicas: pagina('/dicas/[[...slug]]', { label: 'Dicas', comCabecalho: true }),
644
642
  jogo: {
@@ -833,8 +831,6 @@ const MENUS_INTERNOS = {
833
831
  };
834
832
  const MENUS_INTERNOS_LAYOUTCONTEXTO = {
835
833
  PAGINAS: {
836
- // aventura: menuDinamico(),
837
- // aventuras: menuDinamico(),
838
834
  assistir: menuDinamico(),
839
835
  jogo: {
840
836
  menu: MENUS_INTERNOS.PAGINAS.jogo,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.408",
3
+ "version": "0.0.410",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",