types-nora-api 0.0.46 → 0.0.47
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 +17 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -338,6 +338,14 @@ interface IPerfilMestre {
|
|
|
338
338
|
}
|
|
339
339
|
type PerfilMestreDto = IPerfilMestre;
|
|
340
340
|
interface IFichaPersonagem {
|
|
341
|
+
fkPersonagensId: number;
|
|
342
|
+
fkNiveisId: number;
|
|
343
|
+
personagem: PersonagemDto;
|
|
344
|
+
nivel: NivelDto;
|
|
345
|
+
dataCriacao: Date;
|
|
346
|
+
ficha: ObjetoFicha;
|
|
347
|
+
detalhesEvolucao: string;
|
|
348
|
+
readonly fichaDeJogo: FichaDeJogo;
|
|
341
349
|
}
|
|
342
350
|
type FichaPersonagemDto = IFichaPersonagem;
|
|
343
351
|
type ObjetoFicha = {
|
|
@@ -353,12 +361,20 @@ type ObjetoFicha = {
|
|
|
353
361
|
id: number;
|
|
354
362
|
valorMaximo: number;
|
|
355
363
|
}[];
|
|
364
|
+
classe: {
|
|
365
|
+
id: number;
|
|
366
|
+
};
|
|
367
|
+
nivel: {
|
|
368
|
+
id: number;
|
|
369
|
+
};
|
|
356
370
|
};
|
|
357
371
|
type FichaDeJogo = {
|
|
358
372
|
atributos: AtributoFicha[];
|
|
359
373
|
pericias: PericiaFicha[];
|
|
360
374
|
estatisticasDanificaveis: EstatisticaDanificavelFicha[];
|
|
361
375
|
detalhe: DetalheFicha;
|
|
376
|
+
classe: ClasseDto;
|
|
377
|
+
nivel: NivelDto;
|
|
362
378
|
};
|
|
363
379
|
type AtributoFicha = {
|
|
364
380
|
atributo: AtributoDto;
|
|
@@ -395,6 +411,7 @@ type InformacaoPersonagemDto = IInformacaoPersonagem;
|
|
|
395
411
|
interface IPersonagem {
|
|
396
412
|
id: number;
|
|
397
413
|
tipoPersonagem: TipoPersonagemDto;
|
|
414
|
+
nivelVigente: NivelDto;
|
|
398
415
|
usuario: UsuarioDto;
|
|
399
416
|
imagemAvatar: ImagemDto | null;
|
|
400
417
|
informacao: InformacaoPersonagemDto;
|