types-nora-api 0.0.374 → 0.0.375
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 +1 -9
- package/dist/classes.js +5 -5
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -1083,7 +1083,7 @@ type BaseDetalheSessaoCanonicaParaAssistirDto = {
|
|
|
1083
1083
|
};
|
|
1084
1084
|
type DetalheSessaoCanonicaParaAssistir_AventuraDto = BaseDetalheSessaoCanonicaParaAssistirDto & {
|
|
1085
1085
|
tipoSessao: 'AVENTURA';
|
|
1086
|
-
|
|
1086
|
+
idGrupoAventura: number;
|
|
1087
1087
|
episodio: number;
|
|
1088
1088
|
tituloPrincipal: string;
|
|
1089
1089
|
tituloDetalhado: string;
|
|
@@ -2827,8 +2827,6 @@ declare const PAGINAS: {
|
|
|
2827
2827
|
readonly home: PaginaDef<"/", PaginaInfoBase>;
|
|
2828
2828
|
readonly acessar: PaginaDef<"/acessar", PaginaInfoBase>;
|
|
2829
2829
|
readonly cadastrar: PaginaDef<"/cadastrar", PaginaInfoBase>;
|
|
2830
|
-
readonly aventura: PaginaDef<"/aventura/[id]", PaginaInfoComLayoutContextualizado>;
|
|
2831
|
-
readonly aventuras: PaginaDef<"/aventuras", PaginaInfoComLayoutContextualizado>;
|
|
2832
2830
|
readonly definicoes: PaginaDef<"/definicoes/[[...slug]]", PaginaInfoBase>;
|
|
2833
2831
|
readonly dicas: PaginaDef<"/dicas/[[...slug]]", PaginaInfoBase>;
|
|
2834
2832
|
readonly jogo: {
|
|
@@ -2995,12 +2993,6 @@ declare const MENUS_INTERNOS: {
|
|
|
2995
2993
|
};
|
|
2996
2994
|
declare const MENUS_INTERNOS_LAYOUTCONTEXTO: {
|
|
2997
2995
|
readonly PAGINAS: {
|
|
2998
|
-
readonly aventura: {
|
|
2999
|
-
readonly tipo: "dinamico";
|
|
3000
|
-
};
|
|
3001
|
-
readonly aventuras: {
|
|
3002
|
-
readonly tipo: "dinamico";
|
|
3003
|
-
};
|
|
3004
2996
|
readonly assistir: {
|
|
3005
2997
|
readonly tipo: "dinamico";
|
|
3006
2998
|
};
|
package/dist/classes.js
CHANGED
|
@@ -609,8 +609,8 @@ const PAGINAS = {
|
|
|
609
609
|
home: pagina('/', { label: 'Página Inicial', comCabecalho: true }),
|
|
610
610
|
acessar: pagina('/acessar', { label: 'Acessar' }),
|
|
611
611
|
cadastrar: pagina('/cadastrar', { label: 'Cadastrar', acesso: { cadastroPermitido: true } }),
|
|
612
|
-
aventura: paginaComLayoutContextualizado('/aventura/[id]', { label: 'Aventura' }, { titulo: 'TROCAR', proporcaoConteudo: 87 }),
|
|
613
|
-
aventuras: paginaComLayoutContextualizado('/aventuras', { label: 'Aventuras' }, { titulo: 'Assistir Aventuras', proporcaoConteudo: 80 }),
|
|
612
|
+
// aventura: paginaComLayoutContextualizado('/aventura/[id]', { label: 'Aventura' }, { titulo: 'TROCAR', proporcaoConteudo: 87 }),
|
|
613
|
+
// aventuras: paginaComLayoutContextualizado('/aventuras', { label: 'Aventuras' }, { titulo: 'Assistir Aventuras', proporcaoConteudo: 80 }),
|
|
614
614
|
definicoes: pagina('/definicoes/[[...slug]]', { label: 'Definições', comCabecalho: true }),
|
|
615
615
|
dicas: pagina('/dicas/[[...slug]]', { label: 'Dicas', comCabecalho: true }),
|
|
616
616
|
jogo: {
|
|
@@ -717,7 +717,7 @@ const MENU_PRINCIPAL = [
|
|
|
717
717
|
menuItem('Personagens', { pagina: PAGINAS.personagens }),
|
|
718
718
|
menuItem('Jogue Agora!', { pagina: PAGINAS.jogo }),
|
|
719
719
|
menuItem('Assistir', { pagina: PAGINAS.assistir }),
|
|
720
|
-
menuItem('Assistir 2', { pagina: PAGINAS.aventuras }),
|
|
720
|
+
// menuItem('Assistir 2', { pagina: PAGINAS.aventuras }),
|
|
721
721
|
menuItem('Sessão Ao Vivo', { pagina: PAGINAS.sessaoAovivo }),
|
|
722
722
|
menuItem('Hall', { pagina: PAGINAS.minhaPagina }),
|
|
723
723
|
menuItem('Definições', { pagina: PAGINAS.definicoes, params: { slug: [] } }),
|
|
@@ -805,8 +805,8 @@ const MENUS_INTERNOS = {
|
|
|
805
805
|
};
|
|
806
806
|
const MENUS_INTERNOS_LAYOUTCONTEXTO = {
|
|
807
807
|
PAGINAS: {
|
|
808
|
-
aventura: menuDinamico(),
|
|
809
|
-
aventuras: menuDinamico(),
|
|
808
|
+
// aventura: menuDinamico(),
|
|
809
|
+
// aventuras: menuDinamico(),
|
|
810
810
|
assistir: menuDinamico(),
|
|
811
811
|
jogo: {
|
|
812
812
|
menu: MENUS_INTERNOS.PAGINAS.jogo,
|