Skip to content

Commit

Permalink
release: bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ju4n97 committed Nov 17, 2023
1 parent 5f64711 commit f99c4ef
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions apps/server/src/modules/session/gateways/session.gateway.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { XsighubLoggerService } from '@lib/logger';
import { ApiExtras } from '@lib/types/api-extras';
import {
ConnectedSocket,
MessageBody,
OnGatewayConnection,
OnGatewayDisconnect,
Expand Down Expand Up @@ -110,8 +111,8 @@ export class SessionGateway implements OnGatewayInit, OnGatewayConnection, OnGat
}

@SubscribeMessage('openReference')
handleOpenReference(@MessageBody() body: unknown): void {
this._server.emit('referenceOpenedRequested', {
handleOpenReference(@MessageBody() body: unknown, @ConnectedSocket() client: Socket): void {
client.emit('referenceOpenedRequested', {
message: `Web client requested to open a reference on the mobile client`,
body,
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xsighub",
"version": "0.3.0",
"version": "0.4.0",
"description": "Sistema Hub para capturar, transferir y mostrar las firmas de los usuarios en aplicaciones móviles y web en tiempo real.",
"author": "Ekisa-Team",
"license": "ISC",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ekisa-xsighub/eslint-config",
"version": "0.3.0",
"version": "0.4.0",
"main": "src/index.js",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ekisa-xsighub/tsconfig",
"version": "0.3.0",
"version": "0.4.0",
"private": true,
"publishConfig": {
"access": "restricted"
Expand Down
2 changes: 1 addition & 1 deletion packages/xsighub-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ekisa-xsighub/core",
"version": "0.3.0",
"version": "0.4.0",
"description": "El motor central de Xsighub sin ajustes preestablecidos.",
"author": "Ekisa-Team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/xsighub-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ekisa-xsighub/sdk",
"version": "0.3.0",
"version": "0.4.0",
"description": "SDK de emparejamiento que permite la integración de la aplicación móvil con el servidor centralizado para capturar y transferir las firmas de los usuarios en tiempo real.",
"author": "Ekisa-Team",
"license": "MIT",
Expand Down

0 comments on commit f99c4ef

Please sign in to comment.