types-nora-api 0.0.161 → 0.0.162

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
@@ -846,6 +846,15 @@ declare namespace EventosWebSocket {
846
846
  };
847
847
  };
848
848
  readonly GameEngine: {};
849
+ readonly PaginaAovivo: {
850
+ emitirSessaoEmAndamento: {
851
+ tipo: "emite";
852
+ payload: {};
853
+ response: {
854
+ sessaoEmAndamento: SessaoDto;
855
+ };
856
+ };
857
+ };
849
858
  readonly UsuariosConectados: {
850
859
  emitirUsuariosConectadosAgora: {
851
860
  tipo: "emite";
@@ -1049,6 +1058,9 @@ declare const Eventos_Envia: {
1049
1058
  readonly GameEngine: {
1050
1059
  eventos: {};
1051
1060
  };
1061
+ readonly PaginaAovivo: {
1062
+ eventos: {};
1063
+ };
1052
1064
  readonly UsuariosConectados: {
1053
1065
  eventos: {};
1054
1066
  };
@@ -1079,6 +1091,21 @@ declare const Eventos_Emite: {
1079
1091
  readonly GameEngine: {
1080
1092
  eventos: {};
1081
1093
  };
1094
+ readonly PaginaAovivo: {
1095
+ eventos: {
1096
+ emitirSessaoEmAndamento: {
1097
+ tipo: "emite";
1098
+ payload: {};
1099
+ response: {
1100
+ sessaoEmAndamento: SessaoDto;
1101
+ };
1102
+ } & {
1103
+ readonly nome: "emitirSessaoEmAndamento";
1104
+ readonly gateway: "PaginaAovivo";
1105
+ readonly fullName: "PaginaAovivo:emitirSessaoEmAndamento";
1106
+ };
1107
+ };
1108
+ };
1082
1109
  readonly UsuariosConectados: {
1083
1110
  eventos: {
1084
1111
  emitirUsuariosConectadosAgora: {
@@ -1117,6 +1144,9 @@ declare const Eventos_EnviaERecebe: {
1117
1144
  readonly GameEngine: {
1118
1145
  eventos: {};
1119
1146
  };
1147
+ readonly PaginaAovivo: {
1148
+ eventos: {};
1149
+ };
1120
1150
  readonly UsuariosConectados: {
1121
1151
  eventos: {};
1122
1152
  };
package/dist/classes.js CHANGED
@@ -95,6 +95,13 @@ var EventosWebSocket;
95
95
  },
96
96
  });
97
97
  const GameEngine = createGateway({});
98
+ const PaginaAovivo = createGateway({
99
+ emitirSessaoEmAndamento: {
100
+ tipo: 'emite',
101
+ payload: {},
102
+ response: { sessaoEmAndamento: {} }
103
+ },
104
+ });
98
105
  const UsuariosConectados = createGateway({
99
106
  emitirUsuariosConectadosAgora: {
100
107
  tipo: 'emite',
@@ -109,7 +116,7 @@ var EventosWebSocket;
109
116
  response: { usuariosExistentes: [] },
110
117
  },
111
118
  });
112
- EventosWebSocket.gateways = { Chat, GameEngine, UsuariosConectados, UsuariosExistentes };
119
+ EventosWebSocket.gateways = { Chat, GameEngine, PaginaAovivo, UsuariosConectados, UsuariosExistentes };
113
120
  })(EventosWebSocket || (EventosWebSocket = {}));
114
121
  // @tipoCompartilhadoFront
115
122
  var AventuraEstado;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "types-nora-api",
3
- "version": "0.0.161",
3
+ "version": "0.0.162",
4
4
  "description": "Tipagem da Nora-Api compartilhada com o universodomedo.com",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",