@opra/nestjs-socketio 1.27.1 → 1.27.2

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.
@@ -1,4 +1,4 @@
1
- import { type DynamicModule, OnApplicationBootstrap, OnApplicationShutdown, OnModuleInit } from '@nestjs/common';
1
+ import { type DynamicModule, type OnApplicationBootstrap, type OnApplicationShutdown, type OnModuleInit } from '@nestjs/common';
2
2
  import { HttpAdapterHost } from '@nestjs/core';
3
3
  import { WSControllerFactory } from '@opra/nestjs';
4
4
  import { SocketioAdapter } from '@opra/socketio';
@@ -1,5 +1,6 @@
1
1
  var OpraSocketioCoreModule_1;
2
2
  import { __decorate, __metadata, __param } from "tslib";
3
+ import * as http from 'node:http';
3
4
  import { isConstructor } from '@jsopen/objects';
4
5
  import { Global, Inject, Logger, Module, } from '@nestjs/common';
5
6
  import { HttpAdapterHost, ModuleRef } from '@nestjs/core';
@@ -1,6 +1,7 @@
1
1
  var OpraSocketioModule_1;
2
2
  import { __decorate } from "tslib";
3
- import { Module } from '@nestjs/common';
3
+ import { Logger, Module } from '@nestjs/common';
4
+ import * as socketio from 'socket.io';
4
5
  import { OpraSocketioCoreModule } from './opra-socketio-core.module.js';
5
6
  /**
6
7
  * OpraSocketioModule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opra/nestjs-socketio",
3
- "version": "1.27.1",
3
+ "version": "1.27.2",
4
4
  "description": "Opra NestJS Socket.io Module",
5
5
  "author": "Panates",
6
6
  "license": "MIT",
@@ -9,10 +9,10 @@
9
9
  "tslib": "^2.8.1"
10
10
  },
11
11
  "peerDependencies": {
12
- "@opra/common": "^1.27.1",
13
- "@opra/core": "^1.27.1",
14
- "@opra/nestjs": "^1.27.1",
15
- "@opra/socketio": "^1.27.1",
12
+ "@opra/common": "^1.27.2",
13
+ "@opra/core": "^1.27.2",
14
+ "@opra/nestjs": "^1.27.2",
15
+ "@opra/socketio": "^1.27.2",
16
16
  "@nestjs/common": "^10.0.0 || ^11.0.0",
17
17
  "@nestjs/core": "^10.0.0 || ^11.0.0",
18
18
  "socket.io": "^4.8.3"