types-nora-api 0.0.77 → 0.0.79

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
@@ -547,6 +547,10 @@ interface IUsuario {
547
547
  }
548
548
  type UsuarioDto = IUsuario;
549
549
  declare const PAGINAS: {
550
+ readonly VAZIA: {
551
+ readonly id: "";
552
+ readonly nome: "";
553
+ };
550
554
  readonly ADMIN: {
551
555
  readonly id: "ADMIN";
552
556
  readonly nome: "Administrando";
@@ -563,6 +567,34 @@ declare const PAGINAS: {
563
567
  readonly id: "AVENTURAS";
564
568
  readonly nome: "Aventuras";
565
569
  };
570
+ readonly DEFINICOES: {
571
+ readonly id: "DEFINICOES";
572
+ readonly nome: "Definições";
573
+ };
574
+ readonly DICAS: {
575
+ readonly id: "DICAS";
576
+ readonly nome: "Dicas";
577
+ };
578
+ readonly EVOLUINDO: {
579
+ readonly id: "EVOLUINDO";
580
+ readonly nome: "Página de Evolução";
581
+ };
582
+ readonly LINHA_DO_TEMPO: {
583
+ readonly id: "LINHA_DO_TEMPO";
584
+ readonly nome: "Linha do Tempo";
585
+ };
586
+ readonly MEUS_PERSONAGENS: {
587
+ readonly id: "MEUS_PERSONAGENS";
588
+ readonly nome: "Página de Personagens";
589
+ };
590
+ readonly DISPONIBILIDADES: {
591
+ readonly id: "DISPONIBILIDADES";
592
+ readonly nome: "Página de Disponibilidades";
593
+ };
594
+ readonly SESSAO: {
595
+ readonly id: "SESSAO";
596
+ readonly nome: "Página de Sessão";
597
+ };
566
598
  };
567
599
  type PaginaChave = keyof typeof PAGINAS;
568
600
  type PaginaObjeto = typeof PAGINAS[PaginaChave];
package/dist/classes.js CHANGED
@@ -12,6 +12,10 @@ class AuthSession {
12
12
  }
13
13
  }
14
14
  const PAGINAS = {
15
+ VAZIA: {
16
+ id: '',
17
+ nome: '',
18
+ },
15
19
  ADMIN: {
16
20
  id: 'ADMIN',
17
21
  nome: 'Administrando'
@@ -28,6 +32,34 @@ const PAGINAS = {
28
32
  id: 'AVENTURAS',
29
33
  nome: 'Aventuras',
30
34
  },
35
+ DEFINICOES: {
36
+ id: 'DEFINICOES',
37
+ nome: 'Definições',
38
+ },
39
+ DICAS: {
40
+ id: 'DICAS',
41
+ nome: 'Dicas',
42
+ },
43
+ EVOLUINDO: {
44
+ id: 'EVOLUINDO',
45
+ nome: 'Página de Evolução',
46
+ },
47
+ LINHA_DO_TEMPO: {
48
+ id: 'LINHA_DO_TEMPO',
49
+ nome: 'Linha do Tempo',
50
+ },
51
+ MEUS_PERSONAGENS: {
52
+ id: 'MEUS_PERSONAGENS',
53
+ nome: 'Página de Personagens',
54
+ },
55
+ DISPONIBILIDADES: {
56
+ id: 'DISPONIBILIDADES',
57
+ nome: 'Página de Disponibilidades',
58
+ },
59
+ SESSAO: {
60
+ id: 'SESSAO',
61
+ nome: 'Página de Sessão',
62
+ }
31
63
  };
32
64
  const SOCKET_EVENTOS = {
33
65
  AcessosUsuarios: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.77",
3
+ "version": "0.0.79",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",