types-nora-api 0.0.77 → 0.0.78
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 +28 -0
- package/dist/classes.js +28 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -563,6 +563,34 @@ declare const PAGINAS: {
|
|
|
563
563
|
readonly id: "AVENTURAS";
|
|
564
564
|
readonly nome: "Aventuras";
|
|
565
565
|
};
|
|
566
|
+
readonly DEFINICOES: {
|
|
567
|
+
readonly id: "DEFINICOES";
|
|
568
|
+
readonly nome: "Definições";
|
|
569
|
+
};
|
|
570
|
+
readonly DICAS: {
|
|
571
|
+
readonly id: "DICAS";
|
|
572
|
+
readonly nome: "Dicas";
|
|
573
|
+
};
|
|
574
|
+
readonly EVOLUINDO: {
|
|
575
|
+
readonly id: "EVOLUINDO";
|
|
576
|
+
readonly nome: "Página de Evolução";
|
|
577
|
+
};
|
|
578
|
+
readonly LINHA_DO_TEMPO: {
|
|
579
|
+
readonly id: "LINHA_DO_TEMPO";
|
|
580
|
+
readonly nome: "Linha do Tempo";
|
|
581
|
+
};
|
|
582
|
+
readonly MEUS_PERSONAGENS: {
|
|
583
|
+
readonly id: "MEUS_PERSONAGENS";
|
|
584
|
+
readonly nome: "Página de Personagens";
|
|
585
|
+
};
|
|
586
|
+
readonly DISPONIBILIDADES: {
|
|
587
|
+
readonly id: "DISPONIBILIDADES";
|
|
588
|
+
readonly nome: "Página de Disponibilidades";
|
|
589
|
+
};
|
|
590
|
+
readonly SESSAO: {
|
|
591
|
+
readonly id: "SESSAO";
|
|
592
|
+
readonly nome: "Página de Sessão";
|
|
593
|
+
};
|
|
566
594
|
};
|
|
567
595
|
type PaginaChave = keyof typeof PAGINAS;
|
|
568
596
|
type PaginaObjeto = typeof PAGINAS[PaginaChave];
|
package/dist/classes.js
CHANGED
|
@@ -28,6 +28,34 @@ const PAGINAS = {
|
|
|
28
28
|
id: 'AVENTURAS',
|
|
29
29
|
nome: 'Aventuras',
|
|
30
30
|
},
|
|
31
|
+
DEFINICOES: {
|
|
32
|
+
id: 'DEFINICOES',
|
|
33
|
+
nome: 'Definições',
|
|
34
|
+
},
|
|
35
|
+
DICAS: {
|
|
36
|
+
id: 'DICAS',
|
|
37
|
+
nome: 'Dicas',
|
|
38
|
+
},
|
|
39
|
+
EVOLUINDO: {
|
|
40
|
+
id: 'EVOLUINDO',
|
|
41
|
+
nome: 'Página de Evolução',
|
|
42
|
+
},
|
|
43
|
+
LINHA_DO_TEMPO: {
|
|
44
|
+
id: 'LINHA_DO_TEMPO',
|
|
45
|
+
nome: 'Linha do Tempo',
|
|
46
|
+
},
|
|
47
|
+
MEUS_PERSONAGENS: {
|
|
48
|
+
id: 'MEUS_PERSONAGENS',
|
|
49
|
+
nome: 'Página de Personagens',
|
|
50
|
+
},
|
|
51
|
+
DISPONIBILIDADES: {
|
|
52
|
+
id: 'DISPONIBILIDADES',
|
|
53
|
+
nome: 'Página de Disponibilidades',
|
|
54
|
+
},
|
|
55
|
+
SESSAO: {
|
|
56
|
+
id: 'SESSAO',
|
|
57
|
+
nome: 'Página de Sessão',
|
|
58
|
+
}
|
|
31
59
|
};
|
|
32
60
|
const SOCKET_EVENTOS = {
|
|
33
61
|
AcessosUsuarios: {
|