types-nora-api 0.0.33 → 0.0.35
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 +53 -33
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -71,10 +71,52 @@ interface ITipoConquista {
|
|
|
71
71
|
nome: string;
|
|
72
72
|
}
|
|
73
73
|
type TipoConquistaDto = ITipoConquista;
|
|
74
|
+
interface IAtributoFicha {
|
|
75
|
+
fkFichaPersonagemId: number;
|
|
76
|
+
fkAtributoId: number;
|
|
77
|
+
ficha: FichaPersonagemDto;
|
|
78
|
+
atributo: AtributoDto;
|
|
79
|
+
valor: number;
|
|
80
|
+
valorTotal: number;
|
|
81
|
+
detalhesValor: string[];
|
|
82
|
+
}
|
|
83
|
+
type AtributoFichaDto = IAtributoFicha;
|
|
84
|
+
interface IEstatisticaDanificavelFicha {
|
|
85
|
+
fkFichaPersonagemId: number;
|
|
86
|
+
fkEstatisticasDanificaveisId: number;
|
|
87
|
+
ficha: FichaPersonagemDto;
|
|
88
|
+
estatisticaDanificavel: EstatisticaDanificavelDto;
|
|
89
|
+
valorMaximo: number;
|
|
90
|
+
}
|
|
91
|
+
type EstatisticaDanificavelFichaDto = IEstatisticaDanificavelFicha;
|
|
74
92
|
interface IFichaPersonagem {
|
|
93
|
+
id: number;
|
|
94
|
+
personagem: PersonagemDto;
|
|
95
|
+
nivel: NivelDto;
|
|
96
|
+
atributos: AtributoFichaDto[];
|
|
97
|
+
pericias: PericiaFichaDto[];
|
|
98
|
+
estatisticasDanificaveis: EstatisticaDanificavelFichaDto[];
|
|
75
99
|
}
|
|
76
100
|
type FichaPersonagemDto = IFichaPersonagem;
|
|
101
|
+
interface IPericiaFicha {
|
|
102
|
+
fkFichaPersonagemId: number;
|
|
103
|
+
fkPericiasId: number;
|
|
104
|
+
ficha: FichaPersonagemDto;
|
|
105
|
+
pericia: PericiaDto;
|
|
106
|
+
patentePericia: PatentePericiaDto;
|
|
107
|
+
valorEfeito: number;
|
|
108
|
+
valorTotal: number;
|
|
109
|
+
detalhesValor: string[];
|
|
110
|
+
}
|
|
111
|
+
type PericiaFichaDto = IPericiaFicha;
|
|
77
112
|
interface IGanhoNivelClasse {
|
|
113
|
+
fkNivelId: number;
|
|
114
|
+
fkTipoGanhoNivelId: number;
|
|
115
|
+
fkClassesId: number;
|
|
116
|
+
nivel: NivelDto;
|
|
117
|
+
tipoGanhoNivel: TipoGanhoNivelDto;
|
|
118
|
+
classe: ClasseDto;
|
|
119
|
+
valor: number;
|
|
78
120
|
}
|
|
79
121
|
type GanhoNivelClasseDto = IGanhoNivelClasse;
|
|
80
122
|
interface ITipoGanhoNivel {
|
|
@@ -187,7 +229,7 @@ interface ILinhaEfeito {
|
|
|
187
229
|
type LinhaEfeitoDto = ILinhaEfeito;
|
|
188
230
|
interface INivel {
|
|
189
231
|
id: number;
|
|
190
|
-
valoNivel: number;
|
|
232
|
+
valoNivel: number | null;
|
|
191
233
|
nomeVisualizacao: string;
|
|
192
234
|
}
|
|
193
235
|
type NivelDto = INivel;
|
|
@@ -281,25 +323,6 @@ interface IPerfilMestre {
|
|
|
281
323
|
descricao: string;
|
|
282
324
|
}
|
|
283
325
|
type PerfilMestreDto = IPerfilMestre;
|
|
284
|
-
interface IAtributoPersonagem {
|
|
285
|
-
fkPersonagemId: number;
|
|
286
|
-
fkAtributoId: number;
|
|
287
|
-
personagem: PersonagemDto;
|
|
288
|
-
atributo: AtributoDto;
|
|
289
|
-
valor: number;
|
|
290
|
-
valorTotal: number;
|
|
291
|
-
detalhesValor: string[];
|
|
292
|
-
}
|
|
293
|
-
type AtributoPersonagemDto = IAtributoPersonagem;
|
|
294
|
-
interface IEstatisticaDanificavelPersonagem {
|
|
295
|
-
fkPersonagemId: number;
|
|
296
|
-
fkEstatisticaDanificavelId: number;
|
|
297
|
-
personagem: PersonagemDto;
|
|
298
|
-
estatisticaDanificavel: EstatisticaDanificavelDto;
|
|
299
|
-
valorMaximo: number;
|
|
300
|
-
valorAtual: number;
|
|
301
|
-
}
|
|
302
|
-
type EstatisticaDanificavelPersonagemDto = IEstatisticaDanificavelPersonagem;
|
|
303
326
|
interface IInformacaoPersonagem {
|
|
304
327
|
fkPersonagensId: number;
|
|
305
328
|
personagem: PersonagemDto;
|
|
@@ -307,29 +330,22 @@ interface IInformacaoPersonagem {
|
|
|
307
330
|
anoNascimento: number;
|
|
308
331
|
}
|
|
309
332
|
type InformacaoPersonagemDto = IInformacaoPersonagem;
|
|
310
|
-
interface IPericiaPersonagem {
|
|
311
|
-
fkPersonagemId: number;
|
|
312
|
-
fkPericiaId: number;
|
|
313
|
-
personagem: PersonagemDto;
|
|
314
|
-
pericia: PericiaDto;
|
|
315
|
-
patentePericia: PatentePericiaDto;
|
|
316
|
-
valorEfeito: number;
|
|
317
|
-
valorTotal: number;
|
|
318
|
-
detalhesValor: string[];
|
|
319
|
-
}
|
|
320
|
-
type PericiaPersonagemDto = IPericiaPersonagem;
|
|
321
333
|
interface IPersonagem {
|
|
322
334
|
id: number;
|
|
323
335
|
tipoPersonagem: TipoPersonagemDto;
|
|
324
336
|
usuario: UsuarioDto;
|
|
325
337
|
imagemAvatar: ImagemDto | null;
|
|
326
|
-
informacao: InformacaoPersonagemDto
|
|
338
|
+
informacao: InformacaoPersonagemDto;
|
|
339
|
+
gruposAventuraPersonagem: GrupoAventuraPersonagemDto[] | null;
|
|
340
|
+
resumosPersonagemAventura: ResumoPersonagemAventuraDto[] | null;
|
|
341
|
+
fichas: FichaPersonagemDto[] | null;
|
|
327
342
|
caminhoAvatar: string;
|
|
328
343
|
estadoPendencia: EstadoPendenciaPersonagem;
|
|
329
344
|
mensagemPendencia: string | null;
|
|
330
345
|
indexEstadoOcupacaoAtual: EstadoOcupacaoPersonagem;
|
|
331
346
|
mensagemEstadoOcupacao: string;
|
|
332
347
|
tempoProximaSessaoPersonagem: string | undefined;
|
|
348
|
+
estadoPendenciaAdministrativa: EstadoPendenciaAdministrativaPersonagem;
|
|
333
349
|
}
|
|
334
350
|
type PersonagemDto = IPersonagem;
|
|
335
351
|
interface IResumoPersonagemAventura {
|
|
@@ -513,5 +529,9 @@ type ObjetoAutenticacao = {
|
|
|
513
529
|
usuarioLogado: UsuarioDto | null;
|
|
514
530
|
variaveisAmbiente: VariavelAmbienteDto[];
|
|
515
531
|
};
|
|
532
|
+
type ObjetoNumeroFichasPendentes = {
|
|
533
|
+
numeroPendenciasDeUsuario: number;
|
|
534
|
+
numeroPendenciasDeAdministrador: number;
|
|
535
|
+
};
|
|
516
536
|
type TipoVariavelAmbiente = 'boolean' | 'string' | 'number';
|
|
517
|
-
export { IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto, IVariavelAmbiente, VariavelAmbienteDto, IConquista, ConquistaDto, ITipoConquista, TipoConquistaDto, IFichaPersonagem, FichaPersonagemDto, IGanhoNivelClasse, GanhoNivelClasseDto, ITipoGanhoNivel, TipoGanhoNivelDto, IGeracao, GeracaoDto, IImagem, ImagemDto, ITipoImagem, TipoImagemDto, IAlcance, AlcanceDto, IAtributo, AtributoDto, ICategoriaRitual, CategoriaRitualDto, ICirculoRitual, CirculoRitualDto, IClasse, ClasseDto, IDuracao, DuracaoDto, IElemento, ElementoDto, IEstatisticaDanificavel, EstatisticaDanificavelDto, IExecucao, ExecucaoDto, IFormatoAlcance, FormatoAlcanceDto, ILinhaEfeito, LinhaEfeitoDto, INivel, NivelDto, INivelComponente, NivelComponenteDto, INivelProficiencia, NivelProficienciaDto, INivelRitual, NivelRitualDto, IPatentePericia, PatentePericiaDto, IPericia, PericiaDto, IProficiencia, ProficienciaDto, ITipoAlvo, TipoAlvoDto, ITipoCategoria, TipoCategoriaDto, ITipoDano, TipoDanoDto, ITipoEfeito, TipoEfeitoDto, ITipoItem, TipoItemDto, ITipoProficiencia, TipoProficienciaDto, IPerfilAdmin, PerfilAdminDto, IPerfilJogador, PerfilJogadorDto, IPerfilMestre, PerfilMestreDto,
|
|
537
|
+
export { IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto, IVariavelAmbiente, VariavelAmbienteDto, IConquista, ConquistaDto, ITipoConquista, TipoConquistaDto, IAtributoFicha, AtributoFichaDto, IEstatisticaDanificavelFicha, EstatisticaDanificavelFichaDto, IFichaPersonagem, FichaPersonagemDto, IPericiaFicha, PericiaFichaDto, IGanhoNivelClasse, GanhoNivelClasseDto, ITipoGanhoNivel, TipoGanhoNivelDto, IGeracao, GeracaoDto, IImagem, ImagemDto, ITipoImagem, TipoImagemDto, IAlcance, AlcanceDto, IAtributo, AtributoDto, ICategoriaRitual, CategoriaRitualDto, ICirculoRitual, CirculoRitualDto, IClasse, ClasseDto, IDuracao, DuracaoDto, IElemento, ElementoDto, IEstatisticaDanificavel, EstatisticaDanificavelDto, IExecucao, ExecucaoDto, IFormatoAlcance, FormatoAlcanceDto, ILinhaEfeito, LinhaEfeitoDto, INivel, NivelDto, INivelComponente, NivelComponenteDto, INivelProficiencia, NivelProficienciaDto, INivelRitual, NivelRitualDto, IPatentePericia, PatentePericiaDto, IPericia, PericiaDto, IProficiencia, ProficienciaDto, ITipoAlvo, TipoAlvoDto, ITipoCategoria, TipoCategoriaDto, ITipoDano, TipoDanoDto, ITipoEfeito, TipoEfeitoDto, ITipoItem, TipoItemDto, ITipoProficiencia, TipoProficienciaDto, IPerfilAdmin, PerfilAdminDto, IPerfilJogador, PerfilJogadorDto, IPerfilMestre, PerfilMestreDto, IInformacaoPersonagem, InformacaoPersonagemDto, IPersonagem, PersonagemDto, IResumoPersonagemAventura, ResumoPersonagemAventuraDto, ITipoPersonagem, TipoPersonagemDto, IEstudo, EstudoDto, ILinkSessao, LinkSessaoDto, IRegistroSessao, RegistroSessaoDto, ISessao, SessaoDto, ITipoLinkSessao, TipoLinkSessaoDto, AuthSession, ICustomizacaoUsuario, CustomizacaoUsuarioDto, IDisponibilidadeUsuario, DisponibilidadeUsuarioDto, IUsuario, UsuarioDto, Done, SOCKET_UsuarioContato, PaletaCores, EstruturaPaginaDefinicao, ConteudoItem, DefinicaoElemento, ListaItem, DadosMinhasDisponibilidades, AventuraEstado, EstadoPendenciaPersonagem, EstadoPendenciaAdministrativaPersonagem, EstadoOcupacaoPersonagem, EstadoSessao, dds, CargoExibicaoUsuario, CargosUsuario, ObjetoAutenticacao, ObjetoNumeroFichasPendentes, TipoVariavelAmbiente };
|