types-nora-api 0.0.62 → 0.0.63

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.
Files changed (2) hide show
  1. package/dist/classes.d.ts +10 -4
  2. package/package.json +1 -1
package/dist/classes.d.ts CHANGED
@@ -91,15 +91,21 @@ interface IGanhoNivelClasse {
91
91
  dados: DadosDoTipoGanho;
92
92
  }
93
93
  type GanhoNivelClasseDto = IGanhoNivelClasse;
94
- type DadosDoTipoGanho = DadosGanho_Atributos | DadosGanho_Pericias[] | DadosGanho_Estatisticas | DadosGanho_Classes | DadosGanho_ValorMaximoAtributo | DadosGanho_PontosHabilidadesEspeciais | DadosGanho_PontosHabilidadesParanormais | DadosGanho_PontosHabilidadeElemental;
94
+ type DadosDoTipoGanho = DadosGanho_Atributos | DadosGanho_Pericias | DadosGanho_Estatisticas | DadosGanho_Classes | DadosGanho_ValorMaximoAtributo | DadosGanho_PontosHabilidadesEspeciais | DadosGanho_PontosHabilidadesParanormais | DadosGanho_PontosHabilidadeElemental;
95
95
  type DadosGanho_Atributos = {
96
96
  ganhos: number;
97
97
  trocas: number;
98
98
  };
99
99
  type DadosGanho_Pericias = {
100
- ganhos: number;
101
- trocas: number;
102
- idPatente: number;
100
+ comum: {
101
+ ganhos: number;
102
+ trocas: number;
103
+ idPatente: number;
104
+ }[];
105
+ livre: {
106
+ ganhos: number;
107
+ trocas: number;
108
+ };
103
109
  };
104
110
  type DadosGanho_Estatisticas = {
105
111
  idEstatistica: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.62",
3
+ "version": "0.0.63",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",