types-nora-api 0.0.86 → 0.0.88
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 +5 -0
- package/dist/classes.js +4 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -333,6 +333,7 @@ interface ILink {
|
|
|
333
333
|
id: number;
|
|
334
334
|
tipoLink: TipoLinkDto;
|
|
335
335
|
sufixo: string;
|
|
336
|
+
descricao: string;
|
|
336
337
|
dataCriacao: Date;
|
|
337
338
|
urlCompleta: string;
|
|
338
339
|
}
|
|
@@ -611,6 +612,10 @@ declare const PAGINAS: {
|
|
|
611
612
|
readonly id: "SESSAO";
|
|
612
613
|
readonly nome: "Assistindo Sessão";
|
|
613
614
|
};
|
|
615
|
+
readonly MESTRE: {
|
|
616
|
+
readonly id: "MESTRE";
|
|
617
|
+
readonly nome: "Página de Mestre";
|
|
618
|
+
};
|
|
614
619
|
};
|
|
615
620
|
type PaginaChave = keyof typeof PAGINAS;
|
|
616
621
|
type PaginaObjeto = typeof PAGINAS[PaginaChave];
|
package/dist/classes.js
CHANGED