types-nora-api 0.0.52 → 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 +15 -2
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -364,6 +364,17 @@ type ObjetoFicha = {
|
|
|
364
364
|
classe: {
|
|
365
365
|
id: number;
|
|
366
366
|
};
|
|
367
|
+
detalhe: DetalheFicha;
|
|
368
|
+
rituais: {}[];
|
|
369
|
+
habilidadesEspeciais: {
|
|
370
|
+
id: number;
|
|
371
|
+
}[];
|
|
372
|
+
habilidadesParanormais: {
|
|
373
|
+
id: number;
|
|
374
|
+
}[];
|
|
375
|
+
habilidadesElementais: {
|
|
376
|
+
id: number;
|
|
377
|
+
}[];
|
|
367
378
|
};
|
|
368
379
|
type FichaDeJogo = {
|
|
369
380
|
atributos: AtributoFicha[];
|
|
@@ -416,12 +427,13 @@ interface IPersonagem {
|
|
|
416
427
|
fichas: FichaPersonagemDto[] | null;
|
|
417
428
|
caminhoAvatar: string;
|
|
418
429
|
fichaVigente: FichaPersonagemDto | null;
|
|
419
|
-
|
|
430
|
+
temCriacaoPendente: boolean;
|
|
420
431
|
temEvolucaoPendente: boolean;
|
|
421
432
|
pendencias: ObjetoPendeciaPersonagem;
|
|
433
|
+
ultimoGrupoParticipado: GrupoAventuraPersonagemDto | null;
|
|
422
434
|
indexEstadoOcupacaoAtual: EstadoOcupacaoPersonagem;
|
|
423
435
|
mensagemEstadoOcupacao: string;
|
|
424
|
-
tempoProximaSessaoPersonagem: string
|
|
436
|
+
tempoProximaSessaoPersonagem: string;
|
|
425
437
|
}
|
|
426
438
|
type PersonagemDto = IPersonagem;
|
|
427
439
|
interface IResumoPersonagemAventura {
|
|
@@ -611,6 +623,7 @@ type ObjetoPendeciaPersonagem = {
|
|
|
611
623
|
type TipoVariavelAmbiente = 'boolean' | 'string' | 'number';
|
|
612
624
|
type ObjetoGanhosEvolucao = {
|
|
613
625
|
personagem: PersonagemDto;
|
|
626
|
+
fichaDeJogoVigente: FichaDeJogo;
|
|
614
627
|
listaReferenciaTodosAtributos: AtributoDto[];
|
|
615
628
|
listaReferenciaTodasPericias: PericiaDto[];
|
|
616
629
|
listaReferenciaTodasPatentes: PatentePericiaDto[];
|