types-nora-api 0.0.97 → 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 +6 -4
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -36,14 +36,14 @@ interface IGrupoAventura {
|
|
|
36
36
|
linkSerieSpotify: LinkDto;
|
|
37
37
|
detalhesSessaoesCanonicas: DetalheSessaoCanonicaDto[];
|
|
38
38
|
personagensDaAventura: GrupoAventuraPersonagemDto[] | null;
|
|
39
|
+
sessaoFinal: SessaoDto | null;
|
|
39
40
|
dataPrevisaoInicio: Date | null;
|
|
40
|
-
dataInicio: Date | null;
|
|
41
|
-
dataFim: Date | null;
|
|
42
41
|
ddsPadrao: number | null;
|
|
43
42
|
recorrencia: string | null;
|
|
44
43
|
horaInicio: string | null;
|
|
45
|
-
horaFim: string | null;
|
|
46
44
|
nomeUnicoGrupoAventura: string;
|
|
45
|
+
dataQueIniciou: Date | null;
|
|
46
|
+
dataQueEncerrou: Date | null;
|
|
47
47
|
estadoAtual: AventuraEstado;
|
|
48
48
|
obtemTextoInformacionalOcorrencia: string | null;
|
|
49
49
|
sessaoMaisRecente: SessaoDto | null;
|
|
@@ -529,9 +529,11 @@ interface ISessao {
|
|
|
529
529
|
dataCriacao: Date;
|
|
530
530
|
dataPrevisaoInicio: Date;
|
|
531
531
|
dataInicio: Date | null;
|
|
532
|
-
|
|
532
|
+
duracaoEmSegundos: number | null;
|
|
533
533
|
canonica: boolean;
|
|
534
|
+
dataQueEncerrou: Date | null;
|
|
534
535
|
estadoAtual: EstadoSessao;
|
|
536
|
+
duracaoFormatada: Momento | null;
|
|
535
537
|
}
|
|
536
538
|
type SessaoDto = ISessao;
|
|
537
539
|
interface ITipoLinkSessao {
|