types-nora-api 0.0.125 → 0.0.127

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
@@ -123,6 +123,7 @@ interface IDetalheSessaoUnica {
123
123
  sessao: SessaoDto;
124
124
  detalheRascunhoSessaoUnica: DetalheRascunhoSessaoUnicaCanonicaDto;
125
125
  usuarioMestre: UsuarioDto;
126
+ participantesSessaoUnica: ParticipanteSessaoUnicaDto[];
126
127
  }
127
128
  type DetalheSessaoUnicaDto = IDetalheSessaoUnica;
128
129
  interface IParticipanteSessaoUnica {
@@ -560,6 +561,7 @@ interface IDetalheRascunhoSessaoUnica {
560
561
  rascunho: RascunhoDto;
561
562
  tipoSessao: TipoSessaoDto;
562
563
  dificuldadeSessao: DificuldadeSessaoDto;
564
+ sessoesUnicas: DetalheSessaoUnicaDto[];
563
565
  nivelPersonagem: NivelDto;
564
566
  numeroMinimoJogadores: number;
565
567
  numeroMaximoJogadores: number | null;
@@ -572,6 +574,7 @@ interface IDetalheRascunhoSessaoUnicaCanonica {
572
574
  rascunho: RascunhoDto;
573
575
  tipoSessao: TipoSessaoDto;
574
576
  dificuldadeSessao: DificuldadeSessaoDto;
577
+ sessaoUnica: DetalheSessaoUnicaDto;
575
578
  descricao: Record<string, any>;
576
579
  dataAtualizacao: Date;
577
580
  }
@@ -585,7 +588,6 @@ interface IRascunho {
585
588
  detalheRascunhoSessaoUnica: DetalheRascunhoSessaoUnicaDto | null;
586
589
  titulo: string;
587
590
  dataCriacao: Date;
588
- possuiDetalhesConfigurados: boolean;
589
591
  detalheUtilizacaoRascunho: DetalheUtilizacaoRascunho;
590
592
  }
591
593
  type RascunhoDto = IRascunho;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.125",
3
+ "version": "0.0.127",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",