types-nora-api 0.0.83 → 0.0.85

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
@@ -25,6 +25,7 @@ interface IGrupoAventura {
25
25
  linkTrailerYoutube: LinkDto;
26
26
  linkPlaylistYoutube: LinkDto;
27
27
  linkSerieSpotify: LinkDto;
28
+ sessoes: SessaoDto[];
28
29
  personagensDaAventura: GrupoAventuraPersonagemDto[] | null;
29
30
  dataPrevisaoInicio: Date | null;
30
31
  dataInicio: Date | null;
@@ -573,6 +574,10 @@ declare const PAGINAS: {
573
574
  readonly id: "AVENTURAS";
574
575
  readonly nome: "Aventuras";
575
576
  };
577
+ readonly AVENTURA: {
578
+ readonly id: "AVENTURA";
579
+ readonly nome: "Página de Aventura";
580
+ };
576
581
  readonly DEFINICOES: {
577
582
  readonly id: "DEFINICOES";
578
583
  readonly nome: "Definições";
@@ -597,9 +602,13 @@ declare const PAGINAS: {
597
602
  readonly id: "DISPONIBILIDADES";
598
603
  readonly nome: "Página de Disponibilidades";
599
604
  };
605
+ readonly SESSAO_AOVIVO: {
606
+ readonly id: "SESSAO_AOVIVO";
607
+ readonly nome: "Ao vivo em Sessão";
608
+ };
600
609
  readonly SESSAO: {
601
610
  readonly id: "SESSAO";
602
- readonly nome: "Página de Sessão";
611
+ readonly nome: "Assistindo Sessão";
603
612
  };
604
613
  };
605
614
  type PaginaChave = keyof typeof PAGINAS;
package/dist/classes.js CHANGED
@@ -32,6 +32,10 @@ const PAGINAS = {
32
32
  id: 'AVENTURAS',
33
33
  nome: 'Aventuras',
34
34
  },
35
+ AVENTURA: {
36
+ id: 'AVENTURA',
37
+ nome: 'Página de Aventura',
38
+ },
35
39
  DEFINICOES: {
36
40
  id: 'DEFINICOES',
37
41
  nome: 'Definições',
@@ -56,9 +60,13 @@ const PAGINAS = {
56
60
  id: 'DISPONIBILIDADES',
57
61
  nome: 'Página de Disponibilidades',
58
62
  },
63
+ SESSAO_AOVIVO: {
64
+ id: 'SESSAO_AOVIVO',
65
+ nome: 'Ao vivo em Sessão',
66
+ },
59
67
  SESSAO: {
60
68
  id: 'SESSAO',
61
- nome: 'Página de Sessão',
69
+ nome: 'Assistindo Sessão',
62
70
  }
63
71
  };
64
72
  const SOCKET_EVENTOS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.83",
3
+ "version": "0.0.85",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",