types-nora-api 0.0.188 → 0.0.189
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 +18 -0
- package/dist/classes.js +5 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -936,6 +936,13 @@ declare namespace EventosWebSocket {
|
|
|
936
936
|
sucesso: boolean;
|
|
937
937
|
};
|
|
938
938
|
};
|
|
939
|
+
emitirEstouEmJogo: {
|
|
940
|
+
tipo: "emite";
|
|
941
|
+
payload: {};
|
|
942
|
+
response: {
|
|
943
|
+
estouEmJogo: boolean;
|
|
944
|
+
};
|
|
945
|
+
};
|
|
939
946
|
emitirSessaoEmAndamento: {
|
|
940
947
|
tipo: "emite";
|
|
941
948
|
payload: {};
|
|
@@ -1199,6 +1206,17 @@ declare const Eventos_Emite: {
|
|
|
1199
1206
|
};
|
|
1200
1207
|
readonly Jogo: {
|
|
1201
1208
|
eventos: {
|
|
1209
|
+
emitirEstouEmJogo: {
|
|
1210
|
+
tipo: "emite";
|
|
1211
|
+
payload: {};
|
|
1212
|
+
response: {
|
|
1213
|
+
estouEmJogo: boolean;
|
|
1214
|
+
};
|
|
1215
|
+
} & {
|
|
1216
|
+
readonly nome: "emitirEstouEmJogo";
|
|
1217
|
+
readonly gateway: "Jogo";
|
|
1218
|
+
readonly fullName: "Jogo:emitirEstouEmJogo";
|
|
1219
|
+
};
|
|
1202
1220
|
emitirSessaoEmAndamento: {
|
|
1203
1221
|
tipo: "emite";
|
|
1204
1222
|
payload: {};
|
package/dist/classes.js
CHANGED
|
@@ -131,6 +131,11 @@ var EventosWebSocket;
|
|
|
131
131
|
payload: { idSessao: 0 },
|
|
132
132
|
response: { sucesso: true },
|
|
133
133
|
},
|
|
134
|
+
emitirEstouEmJogo: {
|
|
135
|
+
tipo: 'emite',
|
|
136
|
+
payload: {},
|
|
137
|
+
response: { estouEmJogo: true },
|
|
138
|
+
},
|
|
134
139
|
emitirSessaoEmAndamento: {
|
|
135
140
|
tipo: 'emite',
|
|
136
141
|
payload: {},
|