fix(core): update

This commit is contained in:
Philipp Kunz 2023-08-05 11:46:39 +02:00
parent b726669c4b
commit f765e60e1f
4 changed files with 58 additions and 13 deletions

View File

@ -23,8 +23,8 @@
"@types/node": "^20.4.7"
},
"dependencies": {
"@api.global/typedrequest": "^3.0.0",
"@api.global/typedrequest-interfaces": "^2.0.2",
"@api.global/typedrequest": "^3.0.1",
"@api.global/typedrequest-interfaces": "^3.0.1",
"@push.rocks/isohash": "^2.0.0",
"@push.rocks/smartjson": "^5.0.5",
"@push.rocks/smartsocket": "^2.0.20",

View File

@ -5,12 +5,12 @@ settings:
excludeLinksFromLockfile: false
dependencies:
'@apiglobal/typedrequest':
specifier: ^2.0.8
version: 2.0.12
'@apiglobal/typedrequest-interfaces':
specifier: 2.0.1
version: 2.0.1
'@api.global/typedrequest':
specifier: ^3.0.1
version: 3.0.1
'@api.global/typedrequest-interfaces':
specifier: ^3.0.1
version: 3.0.1
'@push.rocks/isohash':
specifier: ^2.0.0
version: 2.0.1
@ -72,6 +72,25 @@ packages:
transitivePeerDependencies:
- supports-color
/@api.global/typedrequest-interfaces@3.0.1:
resolution: {integrity: sha512-eR2Cr01BYRwIq/X2ajOenWhm8l+/YE4A5kK/9V6I8ZnhtEBMFHG6YjF6Fg8npLJWbvhZXhOms+axZ6JKI71o8g==}
dev: false
/@api.global/typedrequest@3.0.1:
resolution: {integrity: sha512-ed7wIqK7ErjHsiy+5UMB6lhtRzwfnaurNu/pbjQz67Pugk5DLUuuw36YyIlDhRepoPS4L2EY6zL+wsCciTCcoQ==}
dependencies:
'@api.global/typedrequest-interfaces': 3.0.1
'@push.rocks/isounique': 1.0.5
'@push.rocks/lik': 6.0.3
'@push.rocks/smartdelay': 3.0.5
'@push.rocks/smartpromise': 4.0.3
'@push.rocks/webrequest': 3.0.32
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
dev: false
/@apiglobal/typedrequest-interfaces@1.0.20:
resolution: {integrity: sha512-ybsDtavYbzGJYSLodSbkxDvSLYtfMzBTuNZDJpiANt1rZA2MO/GCq8zk5MVLlrUUQIr/7oxPGWqxi1QDwR+RHQ==}
@ -816,6 +835,34 @@ packages:
- utf-8-validate
dev: true
/@push.rocks/webrequest@3.0.32:
resolution: {integrity: sha512-9DSzN0rKpu0M9jt+MoWuvba5NrlPngYC7FMcmb2bVCR9HFlQvKJMMxytCDUOrZP38OdnIfWsJmVaxUcnjTKEzA==}
dependencies:
'@apiglobal/typedserver': 2.0.65
'@push.rocks/smartdelay': 3.0.5
'@push.rocks/smartenv': 5.0.5
'@push.rocks/smartjson': 5.0.6
'@push.rocks/smartpromise': 4.0.3
'@push.rocks/webstore': 2.0.9
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
dev: false
/@push.rocks/webstore@2.0.9:
resolution: {integrity: sha512-B/a/M+udyr0pByGdOEcWyY+gugIx36YJXWwNUrslh9XjIWs+0NKSFJRnZKuVYSCHOnc/WblAOceSlGVwFmYVBw==}
dependencies:
'@apiglobal/typedrequest-interfaces': 2.0.1
'@push.rocks/lik': 6.0.3
'@push.rocks/smartenv': 5.0.5
'@push.rocks/smartjson': 5.0.6
'@push.rocks/smartpromise': 4.0.3
'@push.rocks/smartrx': 3.0.6
fake-indexeddb: 4.0.2
idb: 7.1.1
dev: false
/@pushrocks/consolecolor@2.0.1:
resolution: {integrity: sha512-iOFCHVeFZ2OywbdwSxVI4/wokkcLrXVdHLgvMmkNhJ220eeLgjNZWx3EJo3vNW3zq5ybCSCUIq0878djBxrWpw==}
deprecated: This package has been deprecated in favour of the new package at @push.rocks/consolecolor
@ -994,9 +1041,7 @@ packages:
express: 4.18.2
express-force-ssl: 0.3.2
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
/@pushrocks/smartfeed@1.0.11:
resolution: {integrity: sha512-PcsiQ4tkwTpGxOdLiEpAR5vfFpn8Utnlind4mmX+FLIZVuuONaApefWMvaYv5ysmfnWQuCE2qkFq1J5ulDcBbQ==}

View File

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

View File

@ -1,6 +1,6 @@
// @apiglobal scope
import * as typedrequest from '@apiglobal/typedrequest';
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
import * as typedrequest from '@api.global/typedrequest';
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
export { typedrequest, typedrequestInterfaces };