types-nora-api 0.0.179 → 0.0.180

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
@@ -388,7 +388,7 @@ interface ILink {
388
388
  sufixo: string;
389
389
  descricao: string;
390
390
  dataCriacao: Date;
391
- urlCompleta: string;
391
+ urlCompleta: string | null;
392
392
  }
393
393
  type LinkDto = ILink;
394
394
  interface ITipoLink {
@@ -439,7 +439,7 @@ interface IFichaPersonagem {
439
439
  dataCriacao: Date;
440
440
  ficha: ObjetoFicha;
441
441
  detalhesEvolucao: DetalheEvolucao[];
442
- readonly fichaDeJogo: FichaDeJogo;
442
+ readonly fichaDeJogo: FichaDeJogo | null;
443
443
  }
444
444
  type FichaPersonagemDto = IFichaPersonagem;
445
445
  type ObjetoFicha = {
@@ -623,7 +623,7 @@ type SessaoDadosGerais = {
623
623
  participantes: ParticipanteSessao[];
624
624
  };
625
625
  type ParticipanteSessao = {
626
- jogador: UsuarioDto | null;
626
+ jogador: UsuarioDto;
627
627
  personagem: PersonagemDto | null;
628
628
  };
629
629
  declare class AuthSession {
@@ -883,7 +883,7 @@ declare namespace EventosWebSocket {
883
883
  tipo: "emite";
884
884
  payload: {};
885
885
  response: {
886
- sessaoEmAndamento: SessaoDto;
886
+ sessaoEmAndamento: SessaoDto | null;
887
887
  };
888
888
  };
889
889
  emitirDadosSessao: {
@@ -1152,7 +1152,7 @@ declare const Eventos_Emite: {
1152
1152
  tipo: "emite";
1153
1153
  payload: {};
1154
1154
  response: {
1155
- sessaoEmAndamento: SessaoDto;
1155
+ sessaoEmAndamento: SessaoDto | null;
1156
1156
  };
1157
1157
  } & {
1158
1158
  readonly nome: "emitirSessaoEmAndamento";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.179",
3
+ "version": "0.0.180",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",