types-nora-api 0.0.56 → 0.0.58

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
@@ -410,7 +410,6 @@ type DetalheFicha = {
410
410
  interface IInformacaoPersonagem {
411
411
  fkPersonagensId: number;
412
412
  personagem: PersonagemDto;
413
- nivelAtual: NivelDto;
414
413
  nome: string;
415
414
  anoNascimento: number;
416
415
  }
@@ -625,10 +624,12 @@ type TipoVariavelAmbiente = 'boolean' | 'string' | 'number';
625
624
  type ObjetoGanhosEvolucao = {
626
625
  personagem: PersonagemDto;
627
626
  fichaDeJogoVigente: FichaDeJogo;
627
+ nivelDoProcedimento: NivelDto;
628
628
  listaReferenciaTodosAtributos: AtributoDto[];
629
629
  listaReferenciaTodasPericias: PericiaDto[];
630
630
  listaReferenciaTodasPatentes: PatentePericiaDto[];
631
631
  listaReferenciaTodasEstatisticasDanificaveis: EstatisticaDanificavelDto[];
632
+ listaReferenciaTodasClasses: ClasseDto[];
632
633
  listaGanhos: GanhoNivelClasseDto[];
633
634
  listaGanhosEstatisticasPorAtributos: GanhoEstatisticaAtributoClasseDto[];
634
635
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.56",
3
+ "version": "0.0.58",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",