types-nora-api 0.0.72 → 0.0.73
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/dist/classes.js +2 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -534,9 +534,11 @@ interface IUsuario {
|
|
|
534
534
|
type UsuarioDto = IUsuario;
|
|
535
535
|
declare const PAGINAS: {
|
|
536
536
|
readonly PAGINA_INICIAL: {
|
|
537
|
+
readonly id: "PAGINA_INICIAL";
|
|
537
538
|
readonly nome: "Página Inicial";
|
|
538
539
|
};
|
|
539
540
|
readonly MINHA_PAGINA: {
|
|
541
|
+
readonly id: "MINHA_PAGINA";
|
|
540
542
|
readonly nome: "Minha Página";
|
|
541
543
|
};
|
|
542
544
|
};
|
package/dist/classes.js
CHANGED