types-nora-api 0.0.96 → 0.0.98
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 +38 -14
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
|
+
interface IArcoAventura {
|
|
2
|
+
id: number;
|
|
3
|
+
nome: string;
|
|
4
|
+
aplicaNomeArcoAventura: boolean;
|
|
5
|
+
}
|
|
6
|
+
type ArcoAventuraDto = IArcoAventura;
|
|
1
7
|
interface IAventura {
|
|
2
8
|
id: number;
|
|
3
9
|
geracao: GeracaoDto;
|
|
4
10
|
imagemCapa: ImagemDto | null;
|
|
11
|
+
arco: ArcoAventuraDto | null;
|
|
5
12
|
gruposAventura: GrupoAventuraDto[] | null;
|
|
6
13
|
titulo: string;
|
|
7
14
|
dataCriacao: Date;
|
|
15
|
+
nomeCompletoAventura: string;
|
|
8
16
|
temApenasUmGrupo: boolean;
|
|
9
17
|
estadoAtual: AventuraEstado;
|
|
10
18
|
dataInicioAventura: Date | null;
|
|
@@ -26,16 +34,16 @@ interface IGrupoAventura {
|
|
|
26
34
|
linkTrailerYoutube: LinkDto;
|
|
27
35
|
linkPlaylistYoutube: LinkDto;
|
|
28
36
|
linkSerieSpotify: LinkDto;
|
|
29
|
-
|
|
37
|
+
detalhesSessaoesCanonicas: DetalheSessaoCanonicaDto[];
|
|
30
38
|
personagensDaAventura: GrupoAventuraPersonagemDto[] | null;
|
|
39
|
+
sessaoFinal: SessaoDto | null;
|
|
31
40
|
dataPrevisaoInicio: Date | null;
|
|
32
|
-
dataInicio: Date | null;
|
|
33
|
-
dataFim: Date | null;
|
|
34
41
|
ddsPadrao: number | null;
|
|
35
42
|
recorrencia: string | null;
|
|
36
43
|
horaInicio: string | null;
|
|
37
|
-
horaFim: string | null;
|
|
38
44
|
nomeUnicoGrupoAventura: string;
|
|
45
|
+
dataQueIniciou: Date | null;
|
|
46
|
+
dataQueEncerrou: Date | null;
|
|
39
47
|
estadoAtual: AventuraEstado;
|
|
40
48
|
obtemTextoInformacionalOcorrencia: string | null;
|
|
41
49
|
sessaoMaisRecente: SessaoDto | null;
|
|
@@ -80,6 +88,22 @@ interface ITipoConquista {
|
|
|
80
88
|
nome: string;
|
|
81
89
|
}
|
|
82
90
|
type TipoConquistaDto = ITipoConquista;
|
|
91
|
+
interface IDetalheSessaoCanonica {
|
|
92
|
+
fkSessaoId: number;
|
|
93
|
+
sessao: SessaoDto;
|
|
94
|
+
grupoAventura: GrupoAventuraDto | null;
|
|
95
|
+
linkSessaoYoutube: LinkDto;
|
|
96
|
+
linkSessaoSpotify: LinkDto;
|
|
97
|
+
episodio: number;
|
|
98
|
+
capitulos: CapituloSessaoCanonica[];
|
|
99
|
+
detalhes: string;
|
|
100
|
+
episodioPorExtenso: string;
|
|
101
|
+
}
|
|
102
|
+
type DetalheSessaoCanonicaDto = IDetalheSessaoCanonica;
|
|
103
|
+
type CapituloSessaoCanonica = {
|
|
104
|
+
descricao: string;
|
|
105
|
+
momentoInicioEmSegundos: number;
|
|
106
|
+
};
|
|
83
107
|
interface ICoeficienteGanhoEstatisticaClasse {
|
|
84
108
|
id: number;
|
|
85
109
|
classe: ClasseDto;
|
|
@@ -501,16 +525,15 @@ interface IRegistroSessao {
|
|
|
501
525
|
type RegistroSessaoDto = IRegistroSessao;
|
|
502
526
|
interface ISessao {
|
|
503
527
|
id: number;
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
episodio: number;
|
|
528
|
+
detalheSessaoCanonica: DetalheSessaoCanonicaDto;
|
|
529
|
+
dataCriacao: Date;
|
|
530
|
+
dataPrevisaoInicio: Date;
|
|
531
|
+
dataInicio: Date | null;
|
|
532
|
+
duracaoEmSegundos: number | null;
|
|
533
|
+
canonica: boolean;
|
|
534
|
+
dataQueEncerrou: Date | null;
|
|
512
535
|
estadoAtual: EstadoSessao;
|
|
513
|
-
|
|
536
|
+
duracaoFormatada: Momento | null;
|
|
514
537
|
}
|
|
515
538
|
type SessaoDto = ISessao;
|
|
516
539
|
interface ITipoLinkSessao {
|
|
@@ -779,4 +802,5 @@ type GanhoEstatistica = {
|
|
|
779
802
|
valorPorUnidade: number;
|
|
780
803
|
}[];
|
|
781
804
|
};
|
|
782
|
-
|
|
805
|
+
type Momento = `${number}:${0 | 1 | 2 | 3 | 4 | 5}${number}:${0 | 1 | 2 | 3 | 4 | 5}${number}`;
|
|
806
|
+
export { IArcoAventura, ArcoAventuraDto, IAventura, AventuraDto, IConviteGrupoAventuraPersonagem, ConviteGrupoAventuraPersonagemDto, IGrupoAventura, GrupoAventuraDto, IGrupoAventuraPersonagem, GrupoAventuraPersonagemDto, IRespostaConvite, RespostaConviteDto, IVariavelAmbiente, VariavelAmbienteDto, IConquista, ConquistaDto, ITipoConquista, TipoConquistaDto, IDetalheSessaoCanonica, DetalheSessaoCanonicaDto, CapituloSessaoCanonica, ICoeficienteGanhoEstatisticaClasse, CoeficienteGanhoEstatisticaClasseDto, IGanhoNivelClasse, GanhoNivelClasseDto, DadosDoTipoGanho, DadosGanho_Atributos, DadosGanho_Pericias, DadosGanho_Estatisticas, DadosGanho_Classes, DadosGanho_ValorMaximoAtributo, DadosGanho_PontosHabilidadesEspeciais, DadosGanho_PontosHabilidadesParanormais, DadosGanho_PontosHabilidadeElemental, IGanhoRelativoCoeficienteAtributo, GanhoRelativoCoeficienteAtributoDto, 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, ILink, LinkDto, ITipoLink, TipoLinkDto, IPerfilAdmin, PerfilAdminDto, IPerfilJogador, PerfilJogadorDto, IPerfilMestre, PerfilMestreDto, IFichaPersonagem, FichaPersonagemDto, ObjetoFicha, DetalheEvolucao, DetalhesExtras, FichaDeJogo, AtributoFicha, PericiaFicha, EstatisticaDanificavelFicha, DetalheFicha, RegistroPericiaLivre, 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, MensagemChatRecebida, SalaChatFront, MensagemChatPayload, PAGINAS, PaginaChave, PaginaObjeto, SOCKET_EVENTOS, ExtractValues, EventoSocket, SOCKET_UsuarioExistente, Done, SOCKET_AcessoUsuario, PaletaCores, EstruturaPaginaDefinicao, ConteudoItem, DefinicaoElemento, ListaItem, DadosMinhasDisponibilidades, AventuraEstado, EstadoPendenciaPersonagem, EstadoPendenciaAdministrativaPersonagem, EstadoOcupacaoPersonagem, EstadoSessao, dds, CargoExibicaoUsuario, CargosUsuario, ObjetoAutenticacao, ObjetoPendeciaPersonagem, TipoVariavelAmbiente, ObjetoEvolucaoCompleto, ObjetoEvolucao, ObjetoGanhosEvolucao, GanhoEstatistica, Momento };
|