Compare commits
3 Commits
v0.2.0-dev
...
v0.2.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | c3c9dc3e66 | |
Derrick Hammer | 2a4a246799 | |
Derrick Hammer | b2007a6c81 |
|
@ -1,3 +1,5 @@
|
|||
# [0.2.0-develop.37](https://git.lumeweb.com/LumeWeb/libweb/compare/v0.2.0-develop.36...v0.2.0-develop.37) (2023-09-02)
|
||||
|
||||
# [0.2.0-develop.36](https://git.lumeweb.com/LumeWeb/libweb/compare/v0.2.0-develop.35...v0.2.0-develop.36) (2023-09-02)
|
||||
|
||||
# [0.2.0-develop.35](https://git.lumeweb.com/LumeWeb/libweb/compare/v0.2.0-develop.34...v0.2.0-develop.35) (2023-09-02)
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@lumeweb/libweb",
|
||||
"version": "0.2.0-develop.36",
|
||||
"version": "0.2.0-develop.37",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@lumeweb/libweb",
|
||||
"version": "0.2.0-develop.36",
|
||||
"version": "0.2.0-develop.37",
|
||||
"dependencies": {
|
||||
"@lumeweb/community-portals": "^0.1.0-develop.6",
|
||||
"@lumeweb/libportal": "0.2.0-develop.20",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lumeweb/libweb",
|
||||
"version": "0.2.0-develop.36",
|
||||
"version": "0.2.0-develop.37",
|
||||
"main": "lib/index.js",
|
||||
"type": "module",
|
||||
"repository": {
|
||||
|
|
|
@ -29,7 +29,7 @@ type ErrFn = (errMsg: string) => void;
|
|||
// returned, the err should be 'null'. If an error is returned, the data field
|
||||
// should generally be empty. Callers are expected to check the error before
|
||||
// they access any part of the data field.
|
||||
type ErrTuple = [data: any, err: Err];
|
||||
type ErrTuple<T = any> = [data: T, err: Err];
|
||||
|
||||
// KernelAuthStatus is the structure of a message that gets sent by the kernel
|
||||
// containing its auth status. Auth occurs in 5 stages.
|
||||
|
|
Loading…
Reference in New Issue