types-nora-api 0.0.46 → 0.0.48
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 -1
- package/dist/classes.js +0 -1
- 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;
|
|
@@ -559,7 +576,6 @@ declare enum EstadoPendenciaPersonagem {
|
|
|
559
576
|
SEM_PENDENCIAS = ""
|
|
560
577
|
}
|
|
561
578
|
declare enum EstadoPendenciaAdministrativaPersonagem {
|
|
562
|
-
SEM_CONFIGURACAO_FICHA = "O Administrador ainda n\u00E3o realizou a configura\u00E7\u00E3o inicial da ficha",
|
|
563
579
|
SEM_AVATAR = "O Administrador ainda n\u00E3o vinculou o avatar do personagem",
|
|
564
580
|
SEM_PENDENCIAS = ""
|
|
565
581
|
}
|
package/dist/classes.js
CHANGED
|
@@ -53,7 +53,6 @@ var EstadoPendenciaPersonagem;
|
|
|
53
53
|
// @tipoCompartilhadoFront
|
|
54
54
|
var EstadoPendenciaAdministrativaPersonagem;
|
|
55
55
|
(function (EstadoPendenciaAdministrativaPersonagem) {
|
|
56
|
-
EstadoPendenciaAdministrativaPersonagem["SEM_CONFIGURACAO_FICHA"] = "O Administrador ainda n\u00E3o realizou a configura\u00E7\u00E3o inicial da ficha";
|
|
57
56
|
EstadoPendenciaAdministrativaPersonagem["SEM_AVATAR"] = "O Administrador ainda n\u00E3o vinculou o avatar do personagem";
|
|
58
57
|
EstadoPendenciaAdministrativaPersonagem["SEM_PENDENCIAS"] = "";
|
|
59
58
|
})(EstadoPendenciaAdministrativaPersonagem || (EstadoPendenciaAdministrativaPersonagem = {}));
|