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 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
@@ -67,6 +67,10 @@ const PAGINAS = {
67
67
  SESSAO: {
68
68
  id: 'SESSAO',
69
69
  nome: 'Assistindo Sessão',
70
+ },
71
+ MESTRE: {
72
+ id: 'MESTRE',
73
+ nome: 'Página de Mestre',
70
74
  }
71
75
  };
72
76
  const SOCKET_EVENTOS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.86",
3
+ "version": "0.0.88",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",