types-nora-api 0.0.53 → 0.0.55
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 +13 -2
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -365,6 +365,16 @@ type ObjetoFicha = {
|
|
|
365
365
|
id: number;
|
|
366
366
|
};
|
|
367
367
|
detalhe: DetalheFicha;
|
|
368
|
+
rituais: {}[];
|
|
369
|
+
habilidadesEspeciais: {
|
|
370
|
+
id: number;
|
|
371
|
+
}[];
|
|
372
|
+
habilidadesParanormais: {
|
|
373
|
+
id: number;
|
|
374
|
+
}[];
|
|
375
|
+
habilidadesElementais: {
|
|
376
|
+
id: number;
|
|
377
|
+
}[];
|
|
368
378
|
};
|
|
369
379
|
type FichaDeJogo = {
|
|
370
380
|
atributos: AtributoFicha[];
|
|
@@ -417,12 +427,13 @@ interface IPersonagem {
|
|
|
417
427
|
fichas: FichaPersonagemDto[] | null;
|
|
418
428
|
caminhoAvatar: string;
|
|
419
429
|
fichaVigente: FichaPersonagemDto | null;
|
|
420
|
-
|
|
430
|
+
temCriacaoPendente: boolean;
|
|
421
431
|
temEvolucaoPendente: boolean;
|
|
422
432
|
pendencias: ObjetoPendeciaPersonagem;
|
|
433
|
+
ultimoGrupoParticipado: GrupoAventuraPersonagemDto | null;
|
|
423
434
|
indexEstadoOcupacaoAtual: EstadoOcupacaoPersonagem;
|
|
424
435
|
mensagemEstadoOcupacao: string;
|
|
425
|
-
tempoProximaSessaoPersonagem: string
|
|
436
|
+
tempoProximaSessaoPersonagem: string;
|
|
426
437
|
}
|
|
427
438
|
type PersonagemDto = IPersonagem;
|
|
428
439
|
interface IResumoPersonagemAventura {
|