types-nora-api 0.0.80 → 0.0.82
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 +2 -0
- package/dist/classes.js +1 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ interface IAventura {
|
|
|
7
7
|
dataCriacao: Date;
|
|
8
8
|
temApenasUmGrupo: boolean;
|
|
9
9
|
estadoAtual: AventuraEstado;
|
|
10
|
+
dataFimAventura: Date | null;
|
|
10
11
|
}
|
|
11
12
|
type AventuraDto = IAventura;
|
|
12
13
|
interface IConviteGrupoAventuraPersonagem {
|
|
@@ -606,6 +607,7 @@ declare const SOCKET_EVENTOS: {
|
|
|
606
607
|
readonly Chat: {
|
|
607
608
|
readonly enviaMensagem: "Chat_enviaMensagem";
|
|
608
609
|
readonly enviaTeste: "Chat_enviaTeste";
|
|
610
|
+
readonly receberMensagem: "Chat_receberMensagem";
|
|
609
611
|
};
|
|
610
612
|
};
|
|
611
613
|
type ExtractValues<T> = T extends object ? {
|
package/dist/classes.js
CHANGED