types-nora-api 0.0.184 → 0.0.185

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 CHANGED
@@ -98,6 +98,7 @@ interface IDetalheSessaoAventura {
98
98
  grupoAventura: GrupoAventuraDto;
99
99
  episodio: number;
100
100
  episodioPorExtenso: string;
101
+ nomeUnico: string;
101
102
  }
102
103
  type DetalheSessaoAventuraDto = IDetalheSessaoAventura;
103
104
  interface IDetalheSessaoCanonica {
@@ -616,7 +617,7 @@ interface ISessao {
616
617
  tituloInteligente: TituloSessaoInteligente;
617
618
  pathCapaInteligente: string;
618
619
  detalheData: string;
619
- dadosGerais: SessaoDadosGerais;
620
+ dadosGerais: SessaoDadosGerais | null;
620
621
  }
621
622
  type SessaoDto = ISessao;
622
623
  type SessaoDadosGerais = {
@@ -1123,6 +1124,7 @@ declare enum EstiloSessao {
1123
1124
  }
1124
1125
  declare const PathTokenPadrao: string;
1125
1126
  type TituloSessaoInteligente = {
1127
+ tituloCompleto: string;
1126
1128
  titulo: string;
1127
1129
  subtitulo?: string;
1128
1130
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.184",
3
+ "version": "0.0.185",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",