types-nora-api 0.0.355 → 0.0.357

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
@@ -2118,6 +2118,20 @@ declare namespace EventosWebSocket {
2118
2118
  };
2119
2119
  delivery: "perRecipient";
2120
2120
  };
2121
+ executaTestePericia_PROTOTIPO: {
2122
+ tipo: "envia";
2123
+ payload: {};
2124
+ };
2125
+ emitirMensagemSalaDeJogo: {
2126
+ tipo: "emite";
2127
+ payload: {
2128
+ conteudoMensagem: string;
2129
+ };
2130
+ response: {
2131
+ conteudoMensagem: string;
2132
+ };
2133
+ delivery: "broadcast";
2134
+ };
2121
2135
  };
2122
2136
  readonly UsuariosConectados: {
2123
2137
  emitirUsuariosConectadosAgora: {
@@ -2360,7 +2374,16 @@ declare const Eventos_Envia: {
2360
2374
  };
2361
2375
  };
2362
2376
  readonly Jogo: {
2363
- eventos: {};
2377
+ eventos: {
2378
+ executaTestePericia_PROTOTIPO: {
2379
+ tipo: "envia";
2380
+ payload: {};
2381
+ } & {
2382
+ readonly nome: "executaTestePericia_PROTOTIPO";
2383
+ readonly gateway: "Jogo";
2384
+ readonly fullName: "Jogo:executaTestePericia_PROTOTIPO";
2385
+ };
2386
+ };
2364
2387
  };
2365
2388
  readonly UsuariosConectados: {
2366
2389
  eventos: {};
@@ -2438,6 +2461,20 @@ declare const Eventos_Emite: {
2438
2461
  readonly gateway: "Jogo";
2439
2462
  readonly fullName: "Jogo:emitirObjetoEmJogo";
2440
2463
  };
2464
+ emitirMensagemSalaDeJogo: {
2465
+ tipo: "emite";
2466
+ payload: {
2467
+ conteudoMensagem: string;
2468
+ };
2469
+ response: {
2470
+ conteudoMensagem: string;
2471
+ };
2472
+ delivery: "broadcast";
2473
+ } & {
2474
+ readonly nome: "emitirMensagemSalaDeJogo";
2475
+ readonly gateway: "Jogo";
2476
+ readonly fullName: "Jogo:emitirMensagemSalaDeJogo";
2477
+ };
2441
2478
  };
2442
2479
  };
2443
2480
  readonly UsuariosConectados: {
package/dist/classes.js CHANGED
@@ -368,6 +368,16 @@ var EventosWebSocket;
368
368
  response: { objetoEmJogo: {} },
369
369
  delivery: 'perRecipient',
370
370
  },
371
+ executaTestePericia_PROTOTIPO: {
372
+ tipo: 'envia',
373
+ payload: {},
374
+ },
375
+ emitirMensagemSalaDeJogo: {
376
+ tipo: 'emite',
377
+ payload: { conteudoMensagem: '' },
378
+ response: { conteudoMensagem: '' },
379
+ delivery: 'broadcast',
380
+ },
371
381
  // emitirDadosParaParticipanteDeSala: {
372
382
  // tipo: 'emite',
373
383
  // 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.355",
3
+ "version": "0.0.357",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",