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.
Files changed (2) hide show
  1. package/dist/classes.d.ts +13 -2
  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
- temFichaPendente: boolean;
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 | undefined;
436
+ tempoProximaSessaoPersonagem: string;
426
437
  }
427
438
  type PersonagemDto = IPersonagem;
428
439
  interface IResumoPersonagemAventura {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.53",
3
+ "version": "0.0.55",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",