types-nora-api 0.0.165 → 0.0.166

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
@@ -729,6 +729,10 @@ declare const PAGINAS: {
729
729
  readonly id: "MESTRE";
730
730
  readonly nome: "Página de Mestre";
731
731
  };
732
+ readonly PLAY: {
733
+ readonly id: "PLAY";
734
+ readonly nome: "Página de Jogo";
735
+ };
732
736
  };
733
737
  type PaginaChave = keyof typeof PAGINAS;
734
738
  type PaginaObjeto = typeof PAGINAS[PaginaChave];
@@ -1046,10 +1050,10 @@ type DetalheUtilizacaoRascunho = {
1046
1050
  detalhe: string;
1047
1051
  };
1048
1052
  declare enum EstiloSessao {
1049
- SESSAO_DE_AVENTURA = 0,
1050
- SESSAO_UNICA_CANONICA = 1,
1051
- SESSAO_UNICA_NAO_CANONICA = 2,
1052
- ERRO = 3
1053
+ SESSAO_DE_AVENTURA = "Sess\u00E3o de Aventura",
1054
+ SESSAO_UNICA_CANONICA = "Sess\u00E3o \u00DAnica Can\u00F4nica",
1055
+ SESSAO_UNICA_NAO_CANONICA = "Sess\u00E3o \u00DAnica n\u00E3o Can\u00F4nica",
1056
+ ERRO = "ERRO!"
1053
1057
  }
1054
1058
  type Gateways = typeof EventosWebSocket.gateways;
1055
1059
  type EventoTipoLiteral = EventoTipo;
package/dist/classes.js CHANGED
@@ -73,6 +73,10 @@ const PAGINAS = {
73
73
  id: 'MESTRE',
74
74
  nome: 'Página de Mestre',
75
75
  },
76
+ PLAY: {
77
+ id: 'PLAY',
78
+ nome: 'Página de Jogo',
79
+ },
76
80
  };
77
81
  function createGateway(def) { return def; }
78
82
  //
@@ -208,10 +212,10 @@ var FormatoMomento;
208
212
  // @tipoCompartilhadoFront
209
213
  var EstiloSessao;
210
214
  (function (EstiloSessao) {
211
- EstiloSessao[EstiloSessao["SESSAO_DE_AVENTURA"] = 0] = "SESSAO_DE_AVENTURA";
212
- EstiloSessao[EstiloSessao["SESSAO_UNICA_CANONICA"] = 1] = "SESSAO_UNICA_CANONICA";
213
- EstiloSessao[EstiloSessao["SESSAO_UNICA_NAO_CANONICA"] = 2] = "SESSAO_UNICA_NAO_CANONICA";
214
- EstiloSessao[EstiloSessao["ERRO"] = 3] = "ERRO";
215
+ EstiloSessao["SESSAO_DE_AVENTURA"] = "Sess\u00E3o de Aventura";
216
+ EstiloSessao["SESSAO_UNICA_CANONICA"] = "Sess\u00E3o \u00DAnica Can\u00F4nica";
217
+ EstiloSessao["SESSAO_UNICA_NAO_CANONICA"] = "Sess\u00E3o \u00DAnica n\u00E3o Can\u00F4nica";
218
+ EstiloSessao["ERRO"] = "ERRO!";
215
219
  })(EstiloSessao || (EstiloSessao = {}));
216
220
  function criarEventosFiltrados(tipo) {
217
221
  const result = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.165",
3
+ "version": "0.0.166",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",