types-nora-api 0.0.82 → 0.0.84

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
@@ -329,6 +329,11 @@ interface ITipoProficiencia {
329
329
  }
330
330
  type TipoProficienciaDto = ITipoProficiencia;
331
331
  interface ILink {
332
+ id: number;
333
+ tipoLink: TipoLinkDto;
334
+ sufixo: string;
335
+ dataCriacao: Date;
336
+ urlCompleta: string;
332
337
  }
333
338
  type LinkDto = ILink;
334
339
  interface ITipoLink {
@@ -568,6 +573,10 @@ declare const PAGINAS: {
568
573
  readonly id: "AVENTURAS";
569
574
  readonly nome: "Aventuras";
570
575
  };
576
+ readonly AVENTURA: {
577
+ readonly id: "AVENTURA";
578
+ readonly nome: "Página de Aventura";
579
+ };
571
580
  readonly DEFINICOES: {
572
581
  readonly id: "DEFINICOES";
573
582
  readonly nome: "Definições";
@@ -592,9 +601,13 @@ declare const PAGINAS: {
592
601
  readonly id: "DISPONIBILIDADES";
593
602
  readonly nome: "Página de Disponibilidades";
594
603
  };
604
+ readonly SESSAO_AOVIVO: {
605
+ readonly id: "SESSAO_AOVIVO";
606
+ readonly nome: "Ao vivo em Sessão";
607
+ };
595
608
  readonly SESSAO: {
596
609
  readonly id: "SESSAO";
597
- readonly nome: "Página de Sessão";
610
+ readonly nome: "Assistindo Sessão";
598
611
  };
599
612
  };
600
613
  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.82",
3
+ "version": "0.0.84",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",