types-nora-api 0.0.87 → 0.0.89

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
@@ -34,6 +34,7 @@ interface IGrupoAventura {
34
34
  recorrencia: string | null;
35
35
  horaInicio: string | null;
36
36
  horaFim: string | null;
37
+ nomeUnicoGrupoAventura: string;
37
38
  estadoAtual: AventuraEstado;
38
39
  obtemTextoInformacionalOcorrencia: string | null;
39
40
  tempoProximaSessao: string | undefined;
@@ -612,6 +613,10 @@ declare const PAGINAS: {
612
613
  readonly id: "SESSAO";
613
614
  readonly nome: "Assistindo Sessão";
614
615
  };
616
+ readonly MESTRE: {
617
+ readonly id: "MESTRE";
618
+ readonly nome: "Página de Mestre";
619
+ };
615
620
  };
616
621
  type PaginaChave = keyof typeof PAGINAS;
617
622
  type PaginaObjeto = typeof PAGINAS[PaginaChave];
package/dist/classes.js CHANGED
@@ -67,7 +67,11 @@ const PAGINAS = {
67
67
  SESSAO: {
68
68
  id: 'SESSAO',
69
69
  nome: 'Assistindo Sessão',
70
- }
70
+ },
71
+ MESTRE: {
72
+ id: 'MESTRE',
73
+ nome: 'Página de Mestre',
74
+ },
71
75
  };
72
76
  const SOCKET_EVENTOS = {
73
77
  AcessosUsuarios: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.87",
3
+ "version": "0.0.89",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",