types-nora-api 0.0.78 → 0.0.79

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
@@ -547,6 +547,10 @@ interface IUsuario {
547
547
  }
548
548
  type UsuarioDto = IUsuario;
549
549
  declare const PAGINAS: {
550
+ readonly VAZIA: {
551
+ readonly id: "";
552
+ readonly nome: "";
553
+ };
550
554
  readonly ADMIN: {
551
555
  readonly id: "ADMIN";
552
556
  readonly nome: "Administrando";
package/dist/classes.js CHANGED
@@ -12,6 +12,10 @@ class AuthSession {
12
12
  }
13
13
  }
14
14
  const PAGINAS = {
15
+ VAZIA: {
16
+ id: '',
17
+ nome: '',
18
+ },
15
19
  ADMIN: {
16
20
  id: 'ADMIN',
17
21
  nome: 'Administrando'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.78",
3
+ "version": "0.0.79",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",