fix(core): update

This commit is contained in:
Philipp Kunz 2022-10-26 10:54:18 +02:00
parent 899a46f9de
commit 5e5f493dfa
6 changed files with 4106 additions and 14339 deletions

14337
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -15,6 +15,7 @@
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.6",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
@ -24,6 +25,7 @@
"@apiglobal/typedrequest": "^2.0.8",
"@apiglobal/typedrequest-interfaces": "^1.0.15",
"@pushrocks/isohash": "^2.0.0",
"@pushrocks/smartjson": "^5.0.2",
"@pushrocks/smartsocket": "^2.0.7",
"@pushrocks/smartstring": "^4.0.2"
},

4098
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiglobal/typedsocket',
version: '2.0.5',
version: '2.0.6',
description: 'a typedrequest extension supporting websockets'
}

View File

@ -188,7 +188,9 @@ export class TypedSocket {
if (!payloadArg) {
result = !!(await socketConnectionArg.getTagById(keyArg));
} else {
result = !!((await socketConnectionArg.getTagById(keyArg))?.payload === payloadArg);
result = !!(
plugins.smartjson.stringify((await socketConnectionArg.getTagById(keyArg))?.payload) === plugins.smartjson.stringify(payloadArg)
);
}
return result;
})

View File

@ -9,11 +9,13 @@ export {
// @pushrocks scope
import * as isohash from '@pushrocks/isohash';
import * as smartjson from '@pushrocks/smartjson';
import * as smartsocket from '@pushrocks/smartsocket';
import * as smartstring from '@pushrocks/smartstring';
export {
isohash,
smartjson,
smartsocket,
smartstring
}