types-nora-api 0.0.354 → 0.0.356

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
@@ -1765,7 +1765,7 @@ type ObjetoEmJogoDto = {
1765
1765
  tipoParticipante: SalaDeJogo_TipoParticipante.SALA__NARRADOR;
1766
1766
  } | {
1767
1767
  tipoParticipante: SalaDeJogo_TipoParticipante.SALA__JOGADOR;
1768
- objetoFicha: ObjetoFicha | null;
1768
+ fichaDeJogo: FichaDeJogo | null;
1769
1769
  };
1770
1770
  type MenuItemNode = {
1771
1771
  readonly tipo: 'item';
@@ -2118,6 +2118,10 @@ declare namespace EventosWebSocket {
2118
2118
  };
2119
2119
  delivery: "perRecipient";
2120
2120
  };
2121
+ executaTestePericia_PROTOTIPO: {
2122
+ tipo: "envia";
2123
+ payload: {};
2124
+ };
2121
2125
  };
2122
2126
  readonly UsuariosConectados: {
2123
2127
  emitirUsuariosConectadosAgora: {
@@ -2360,7 +2364,16 @@ declare const Eventos_Envia: {
2360
2364
  };
2361
2365
  };
2362
2366
  readonly Jogo: {
2363
- eventos: {};
2367
+ eventos: {
2368
+ executaTestePericia_PROTOTIPO: {
2369
+ tipo: "envia";
2370
+ payload: {};
2371
+ } & {
2372
+ readonly nome: "executaTestePericia_PROTOTIPO";
2373
+ readonly gateway: "Jogo";
2374
+ readonly fullName: "Jogo:executaTestePericia_PROTOTIPO";
2375
+ };
2376
+ };
2364
2377
  };
2365
2378
  readonly UsuariosConectados: {
2366
2379
  eventos: {};
package/dist/classes.js CHANGED
@@ -368,6 +368,10 @@ var EventosWebSocket;
368
368
  response: { objetoEmJogo: {} },
369
369
  delivery: 'perRecipient',
370
370
  },
371
+ executaTestePericia_PROTOTIPO: {
372
+ tipo: 'envia',
373
+ payload: {},
374
+ },
371
375
  // emitirDadosParaParticipanteDeSala: {
372
376
  // tipo: 'emite',
373
377
  // payload: { codigoSala: {} as SalaDeJogo_Codigo, idJogador: 0 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.354",
3
+ "version": "0.0.356",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",