@ic-reactor/core 0.2.6 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { ReActorQuery, ReActorUpdate } from "./types";
|
|
|
3
3
|
export type ReActorContextType<A = ActorSubclass<any>> = ReActorAuthStore<A>;
|
|
4
4
|
export declare const createReActor: <A extends unknown>(options: ReActorOptions) => {
|
|
5
5
|
unsubscribe: () => void;
|
|
6
|
-
initialize: (agentOptions?: import("@dfinity/agent").HttpAgentOptions | undefined, isLocal?: boolean | undefined) =>
|
|
6
|
+
initialize: (agentOptions?: import("@dfinity/agent").HttpAgentOptions | undefined, isLocal?: boolean | undefined) => void;
|
|
7
7
|
authenticate: () => Promise<void>;
|
|
8
8
|
actorStore: import("@ic-reactor/store").ReActorActorStore<A>;
|
|
9
9
|
authStore: ReActorAuthStore<A>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ic-reactor/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"description": "A React library for interacting with Dfinity actors",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"node": ">=10"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@ic-reactor/store": "^0.2.
|
|
38
|
+
"@ic-reactor/store": "^0.2.8"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@dfinity/agent": "^0.20",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"@peculiar/webcrypto": "1.4",
|
|
47
47
|
"zustand": "4.4"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "e967ca5fbc0d4b2fe76dc0af7c801fad49b2bb88"
|
|
50
50
|
}
|