types-nora-api 0.0.84 → 0.0.86
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 +2 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ interface IGrupoAventura {
|
|
|
25
25
|
linkTrailerYoutube: LinkDto;
|
|
26
26
|
linkPlaylistYoutube: LinkDto;
|
|
27
27
|
linkSerieSpotify: LinkDto;
|
|
28
|
+
sessoes: SessaoDto[];
|
|
28
29
|
personagensDaAventura: GrupoAventuraPersonagemDto[] | null;
|
|
29
30
|
dataPrevisaoInicio: Date | null;
|
|
30
31
|
dataInicio: Date | null;
|
|
@@ -505,6 +506,7 @@ interface ISessao {
|
|
|
505
506
|
dataFimReal: Date | null;
|
|
506
507
|
episodio: number;
|
|
507
508
|
estadoAtual: EstadoSessao;
|
|
509
|
+
episodioPorExtenso: string;
|
|
508
510
|
}
|
|
509
511
|
type SessaoDto = ISessao;
|
|
510
512
|
interface ITipoLinkSessao {
|