types-nora-api 0.0.347 → 0.0.349
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 +9 -2
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -950,7 +950,10 @@ interface IGrupoAventura {
|
|
|
950
950
|
numeroSessoesFinalizadasGrupoAventura: number;
|
|
951
951
|
duracaoGrupoAventuraEmSegundos: number | null;
|
|
952
952
|
tempoProximaSessao: string | null;
|
|
953
|
-
|
|
953
|
+
imagemCapa: {
|
|
954
|
+
temCapaConfigurada: boolean;
|
|
955
|
+
caminhoCapa: string;
|
|
956
|
+
};
|
|
954
957
|
}
|
|
955
958
|
type GrupoAventuraDto = IGrupoAventura;
|
|
956
959
|
interface IGrupoAventuraPersonagem {
|
|
@@ -1018,6 +1021,7 @@ interface IDetalheSessaoUnica {
|
|
|
1018
1021
|
sessao: SessaoDto;
|
|
1019
1022
|
rascunho?: RascunhoDto;
|
|
1020
1023
|
usuarioMestre: UsuarioDto;
|
|
1024
|
+
imagemCapa?: ArquivoDto | null;
|
|
1021
1025
|
participantesSessaoUnica: ParticipanteSessaoUnicaDto[];
|
|
1022
1026
|
}
|
|
1023
1027
|
type DetalheSessaoUnicaDto = IDetalheSessaoUnica;
|
|
@@ -1609,7 +1613,10 @@ interface ISessao {
|
|
|
1609
1613
|
dataQueEncerrou: Date | null;
|
|
1610
1614
|
estadoAtual: EstadoSessao;
|
|
1611
1615
|
tituloInteligente: TituloSessaoInteligente;
|
|
1612
|
-
|
|
1616
|
+
imagemCapa: {
|
|
1617
|
+
temCapaConfigurada: boolean;
|
|
1618
|
+
caminhoCapa: string;
|
|
1619
|
+
};
|
|
1613
1620
|
detalheData: string;
|
|
1614
1621
|
dadosGerais: SessaoDadosGerais | null;
|
|
1615
1622
|
}
|