types-nora-api 0.0.97 → 0.0.99

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
@@ -36,14 +36,14 @@ interface IGrupoAventura {
36
36
  linkSerieSpotify: LinkDto;
37
37
  detalhesSessaoesCanonicas: DetalheSessaoCanonicaDto[];
38
38
  personagensDaAventura: GrupoAventuraPersonagemDto[] | null;
39
+ sessaoFinal: SessaoDto | null;
39
40
  dataPrevisaoInicio: Date | null;
40
- dataInicio: Date | null;
41
- dataFim: Date | null;
42
41
  ddsPadrao: number | null;
43
42
  recorrencia: string | null;
44
43
  horaInicio: string | null;
45
- horaFim: string | null;
46
44
  nomeUnicoGrupoAventura: string;
45
+ dataQueIniciou: Date | null;
46
+ dataQueEncerrou: Date | null;
47
47
  estadoAtual: AventuraEstado;
48
48
  obtemTextoInformacionalOcorrencia: string | null;
49
49
  sessaoMaisRecente: SessaoDto | null;
@@ -529,9 +529,11 @@ interface ISessao {
529
529
  dataCriacao: Date;
530
530
  dataPrevisaoInicio: Date;
531
531
  dataInicio: Date | null;
532
- dataFim: Date | null;
532
+ duracaoEmSegundos: number | null;
533
533
  canonica: boolean;
534
+ dataQueEncerrou: Date | null;
534
535
  estadoAtual: EstadoSessao;
536
+ duracaoFormatada: Momento | null;
535
537
  }
536
538
  type SessaoDto = ISessao;
537
539
  interface ITipoLinkSessao {
@@ -665,6 +667,7 @@ declare const SOCKET_EVENTOS: {
665
667
  };
666
668
  readonly Chat: {
667
669
  readonly enviarMensagem: "Chat_enviarMensagem";
670
+ readonly enviarTeste: "Chat_enviarTeste";
668
671
  readonly receberMensagem: "Chat_receberMensagem";
669
672
  readonly receberSalasDisponiveis: "Chat_receberSalasDisponiveis";
670
673
  readonly obterSalasDisponiveis: "Chat_obterSalasDisponiveis";
package/dist/classes.js CHANGED
@@ -80,6 +80,7 @@ const SOCKET_EVENTOS = {
80
80
  },
81
81
  Chat: {
82
82
  enviarMensagem: 'Chat_enviarMensagem',
83
+ enviarTeste: 'Chat_enviarTeste', // provisorio
83
84
  receberMensagem: 'Chat_receberMensagem',
84
85
  receberSalasDisponiveis: 'Chat_receberSalasDisponiveis',
85
86
  obterSalasDisponiveis: 'Chat_obterSalasDisponiveis',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.97",
3
+ "version": "0.0.99",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",