@rivetkit/framework-base 2.0.2 → 2.0.4
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/README.md +3 -3
- package/dist/mod.d.ts +2 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# RivetKit Framework Base
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
_Library to build and scale stateful workloads_
|
|
4
4
|
|
|
5
|
-
[Learn More →](https://github.com/rivet-
|
|
5
|
+
[Learn More →](https://github.com/rivet-dev/rivetkit)
|
|
6
6
|
|
|
7
|
-
[Discord](https://rivet.
|
|
7
|
+
[Discord](https://rivet.dev/discord) — [Documentation](https://rivetkit.org) — [Issues](https://github.com/rivet-dev/rivetkit/issues)
|
|
8
8
|
|
|
9
9
|
## License
|
|
10
10
|
|
package/dist/mod.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { AnyActorDefinition, Registry } from '@rivetkit/core';
|
|
2
|
-
import { ActorConn, ActorHandle, Client, ExtractActorsFromRegistry } from '@rivetkit/core/client';
|
|
3
1
|
import { Derived, Store, Updater } from '@tanstack/store';
|
|
2
|
+
import { AnyActorDefinition, Registry } from 'rivetkit';
|
|
3
|
+
import { ActorConn, ActorHandle, Client, ExtractActorsFromRegistry } from 'rivetkit/client';
|
|
4
4
|
export type AnyActorRegistry = Registry<any>;
|
|
5
5
|
interface ActorStateReference<AD extends AnyActorDefinition> {
|
|
6
6
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rivetkit/framework-base",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
|
+
"description": "Base framework utilities for RivetKit client integrations",
|
|
4
5
|
"license": "Apache-2.0",
|
|
5
6
|
"keywords": [
|
|
6
7
|
"rivetkit",
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
"stableVersion": "0.8.0",
|
|
37
38
|
"dependencies": {
|
|
38
39
|
"@tanstack/store": "^0.7.1",
|
|
39
|
-
"
|
|
40
|
+
"rivetkit": "2.0.4"
|
|
40
41
|
},
|
|
41
42
|
"scripts": {
|
|
42
43
|
"dev": "vite build --watch",
|