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 +5 -0
- package/dist/classes.js +5 -1
- package/package.json +1 -1
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