chore: update waku interface and sdk deps to latest version

This commit is contained in:
Arseniy Klempner 2024-04-15 10:29:12 -07:00
parent 5586ceb38b
commit f411e85fc9
No known key found for this signature in database
GPG Key ID: 51653F18863BD24B
4 changed files with 710 additions and 568 deletions

1266
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -87,8 +87,8 @@
"typescript": "^4.9.5"
},
"peerDependencies": {
"@waku/interfaces": "^0.0.22",
"@waku/sdk": "^0.0.23",
"@waku/interfaces": "^0.0.23",
"@waku/sdk": "^0.0.24",
"react": "^16.8.0 || ^17 || ^18"
},
"peerDependenciesMeta": {

View File

@ -1,14 +1,14 @@
import React from "react";
import type {
IEncoder,
ILightPush,
ILightPushSDK,
IMessage,
SendResult,
Waku,
} from "@waku/interfaces";
type AbstractLightPushNode = Waku & {
lightPush: ILightPush;
lightPush: ILightPushSDK;
};
type UseLightPushParams = {

View File

@ -2,7 +2,7 @@ import React from "react";
import type {
IDecodedMessage,
IDecoder,
IStore,
IStoreSDK,
StoreQueryOptions,
Waku,
} from "@waku/interfaces";
@ -10,7 +10,7 @@ import type {
import type { HookState } from "./types";
type AbstractStoreNode = Waku & {
store: IStore;
store: IStoreSDK;
};
type UseStoreMessagesParams = {