types-nora-api 0.0.48 → 0.0.49
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 -4
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -364,9 +364,6 @@ type ObjetoFicha = {
|
|
|
364
364
|
classe: {
|
|
365
365
|
id: number;
|
|
366
366
|
};
|
|
367
|
-
nivel: {
|
|
368
|
-
id: number;
|
|
369
|
-
};
|
|
370
367
|
};
|
|
371
368
|
type FichaDeJogo = {
|
|
372
369
|
atributos: AtributoFicha[];
|
|
@@ -374,7 +371,6 @@ type FichaDeJogo = {
|
|
|
374
371
|
estatisticasDanificaveis: EstatisticaDanificavelFicha[];
|
|
375
372
|
detalhe: DetalheFicha;
|
|
376
373
|
classe: ClasseDto;
|
|
377
|
-
nivel: NivelDto;
|
|
378
374
|
};
|
|
379
375
|
type AtributoFicha = {
|
|
380
376
|
atributo: AtributoDto;
|
|
@@ -420,6 +416,8 @@ interface IPersonagem {
|
|
|
420
416
|
fichas: FichaPersonagemDto[] | null;
|
|
421
417
|
caminhoAvatar: string;
|
|
422
418
|
fichaVigente: FichaPersonagemDto | null;
|
|
419
|
+
temFichaPendente: boolean;
|
|
420
|
+
temEvolucaoPendente: boolean;
|
|
423
421
|
pendencias: ObjetoPendeciaPersonagem;
|
|
424
422
|
indexEstadoOcupacaoAtual: EstadoOcupacaoPersonagem;
|
|
425
423
|
mensagemEstadoOcupacao: string;
|