@rfprodz/backend-diagnostics 1.0.25 → 1.0.26
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,5 +1,5 @@
|
|
|
1
1
|
import { OnGatewayConnection, OnGatewayDisconnect } from '@nestjs/websockets';
|
|
2
|
-
import
|
|
2
|
+
import { Server, WebSocket } from 'ws';
|
|
3
3
|
import { AppDiagnosticsService } from '../services/diagnostics.service';
|
|
4
4
|
export declare class AppDiagnosticsGateway implements OnGatewayConnection, OnGatewayDisconnect {
|
|
5
5
|
private readonly service;
|
|
@@ -14,7 +14,7 @@ export declare class AppDiagnosticsGateway implements OnGatewayConnection, OnGat
|
|
|
14
14
|
* @param client web socket client
|
|
15
15
|
* @param data stringified event data
|
|
16
16
|
*/
|
|
17
|
-
sendEvent(client: WebSocket
|
|
17
|
+
sendEvent(client: WebSocket, data: string): void;
|
|
18
18
|
/**
|
|
19
19
|
* Broadcasts an event to all connected users.
|
|
20
20
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"diagnostics.gateway.d.ts","sourceRoot":"","sources":["../../../../../libs/backend-diagnostics/src/lib/gateway/diagnostics.gateway.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EAKpB,MAAM,oBAAoB,CAAC;AAE5B,OAAO,
|
|
1
|
+
{"version":3,"file":"diagnostics.gateway.d.ts","sourceRoot":"","sources":["../../../../../libs/backend-diagnostics/src/lib/gateway/diagnostics.gateway.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EAKpB,MAAM,oBAAoB,CAAC;AAE5B,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,IAAI,CAAC;AAGvC,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AAExE,qBAIa,qBAAsB,YAAW,mBAAmB,EAAE,mBAAmB;IASxE,OAAO,CAAC,QAAQ,CAAC,OAAO;IARpC;;OAEG;IAEH,SAAS,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAE1B,OAAO,CAAC,cAAc,CAAC,CAAe;gBAET,OAAO,EAAE,qBAAqB;IAE3D;;;;OAIG;IACI,SAAS,CAAC,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM;IAIhD;;OAEG;IACI,cAAc,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI;IAUlE,OAAO,CAAC,qBAAqB;IAehB,gBAAgB;IAIhB,gBAAgB;IAKtB,4BAA4B;IAkB5B,2BAA2B;CAMnC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rfprodz/backend-diagnostics",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"description": "NestJS API diagnostics module.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nestjs-controller",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"ws": "8.14.2"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@nestjs/common": "10.2.
|
|
28
|
-
"@nestjs/platform-ws": "10.2.
|
|
29
|
-
"@nestjs/websockets": "10.2.
|
|
27
|
+
"@nestjs/common": "10.2.8",
|
|
28
|
+
"@nestjs/platform-ws": "10.2.8",
|
|
29
|
+
"@nestjs/websockets": "10.2.8",
|
|
30
30
|
"dotenv": "16.3.1",
|
|
31
31
|
"rxjs": "7.8.1"
|
|
32
32
|
},
|