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 +2 -1
- package/package.json +1 -1
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
|
};
|