@rivetkit/react 2.0.42 → 2.1.0-rc.1
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/mod.d.mts +2 -0
- package/dist/mod.d.ts +2 -0
- package/package.json +3 -3
package/dist/mod.d.mts
CHANGED
|
@@ -17,6 +17,7 @@ declare function createRivetKit<Registry extends AnyActorRegistry>(clientInput?:
|
|
|
17
17
|
createInRegion?: string;
|
|
18
18
|
createWithInput?: unknown;
|
|
19
19
|
enabled?: boolean;
|
|
20
|
+
noCreate?: boolean;
|
|
20
21
|
};
|
|
21
22
|
handle: rivetkit_client.ActorHandle<ExtractActorsFromRegistry<Registry>[ActorName]> | null;
|
|
22
23
|
connection: rivetkit_client.ActorConn<ExtractActorsFromRegistry<Registry>[ActorName]> | null;
|
|
@@ -36,6 +37,7 @@ declare function createRivetKitWithClient<Registry extends AnyActorRegistry>(cli
|
|
|
36
37
|
createInRegion?: string;
|
|
37
38
|
createWithInput?: unknown;
|
|
38
39
|
enabled?: boolean;
|
|
40
|
+
noCreate?: boolean;
|
|
39
41
|
};
|
|
40
42
|
handle: rivetkit_client.ActorHandle<ExtractActorsFromRegistry<Registry>[ActorName]> | null;
|
|
41
43
|
connection: rivetkit_client.ActorConn<ExtractActorsFromRegistry<Registry>[ActorName]> | null;
|
package/dist/mod.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare function createRivetKit<Registry extends AnyActorRegistry>(clientInput?:
|
|
|
17
17
|
createInRegion?: string;
|
|
18
18
|
createWithInput?: unknown;
|
|
19
19
|
enabled?: boolean;
|
|
20
|
+
noCreate?: boolean;
|
|
20
21
|
};
|
|
21
22
|
handle: rivetkit_client.ActorHandle<ExtractActorsFromRegistry<Registry>[ActorName]> | null;
|
|
22
23
|
connection: rivetkit_client.ActorConn<ExtractActorsFromRegistry<Registry>[ActorName]> | null;
|
|
@@ -36,6 +37,7 @@ declare function createRivetKitWithClient<Registry extends AnyActorRegistry>(cli
|
|
|
36
37
|
createInRegion?: string;
|
|
37
38
|
createWithInput?: unknown;
|
|
38
39
|
enabled?: boolean;
|
|
40
|
+
noCreate?: boolean;
|
|
39
41
|
};
|
|
40
42
|
handle: rivetkit_client.ActorHandle<ExtractActorsFromRegistry<Registry>[ActorName]> | null;
|
|
41
43
|
connection: rivetkit_client.ActorConn<ExtractActorsFromRegistry<Registry>[ActorName]> | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rivetkit/react",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.1.0-rc.1",
|
|
4
4
|
"description": "React hooks and components for RivetKit client applications",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@tanstack/react-store": "^0.7.1",
|
|
36
|
-
"
|
|
37
|
-
"rivetkit": "
|
|
36
|
+
"rivetkit": "^2.1.0-rc.1",
|
|
37
|
+
"@rivetkit/framework-base": "2.1.0-rc.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": "^18 || ^19",
|