fix(core): update

This commit is contained in:
2023-08-06 16:37:39 +02:00
parent 1b41d5e3ad
commit 64e5f30bad
5 changed files with 107 additions and 226 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@api.global/typedsocket',
version: '2.0.27',
version: '2.0.28',
description: 'a typedrequest extension supporting websockets'
}

View File

@ -113,7 +113,7 @@ export class TypedSocket {
// INSTANCE
public side: TTypedSocketSide;
public typedrouter: plugins.typedrequest.TypedRouter;
public get eventSubject() {
public get eventSubject(): plugins.smartrx.rxjs.Subject<plugins.smartsocket.TConnectionStatus> {
return this.socketServerOrClient.eventSubject;
}
private postMethod: plugins.typedrequest.IPostMethod &

View File

@ -7,8 +7,9 @@ export { typedrequest, typedrequestInterfaces };
// @pushrocks scope
import * as isohash from '@push.rocks/isohash';
import * as smartjson from '@push.rocks/smartjson';
import * as smartrx from '@push.rocks/smartrx';
import * as smartsocket from '@push.rocks/smartsocket';
import * as smartstring from '@push.rocks/smartstring';
import * as smarturl from '@push.rocks/smarturl';
export { isohash, smartjson, smartsocket, smartstring, smarturl };
export { isohash, smartjson, smartrx, smartsocket, smartstring, smarturl };