@rivetkit/rivetkit-native 0.0.0-pr.4600.db261bc → 0.0.0-pr.4614.822b57f

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.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/wrapper.d.ts +0 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivetkit/rivetkit-native",
3
- "version": "0.0.0-pr.4600.db261bc",
3
+ "version": "0.0.0-pr.4614.822b57f",
4
4
  "description": "Native N-API addon for RivetKit providing envoy client and SQLite access",
5
5
  "license": "Apache-2.0",
6
6
  "main": "index.js",
@@ -49,15 +49,15 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@napi-rs/cli": "^2.18.4",
52
- "@rivetkit/engine-envoy-protocol": "0.0.0-pr.4600.db261bc"
52
+ "@rivetkit/engine-envoy-protocol": "0.0.0-pr.4614.822b57f"
53
53
  },
54
54
  "optionalDependencies": {
55
- "@rivetkit/rivetkit-native-darwin-arm64": "0.0.0-pr.4600.db261bc",
56
- "@rivetkit/rivetkit-native-darwin-x64": "0.0.0-pr.4600.db261bc",
57
- "@rivetkit/rivetkit-native-linux-arm64-gnu": "0.0.0-pr.4600.db261bc",
58
- "@rivetkit/rivetkit-native-linux-arm64-musl": "0.0.0-pr.4600.db261bc",
59
- "@rivetkit/rivetkit-native-linux-x64-gnu": "0.0.0-pr.4600.db261bc",
60
- "@rivetkit/rivetkit-native-linux-x64-musl": "0.0.0-pr.4600.db261bc",
61
- "@rivetkit/rivetkit-native-win32-x64-msvc": "0.0.0-pr.4600.db261bc"
55
+ "@rivetkit/rivetkit-native-darwin-arm64": "0.0.0-pr.4614.822b57f",
56
+ "@rivetkit/rivetkit-native-darwin-x64": "0.0.0-pr.4614.822b57f",
57
+ "@rivetkit/rivetkit-native-linux-arm64-gnu": "0.0.0-pr.4614.822b57f",
58
+ "@rivetkit/rivetkit-native-linux-arm64-musl": "0.0.0-pr.4614.822b57f",
59
+ "@rivetkit/rivetkit-native-linux-x64-gnu": "0.0.0-pr.4614.822b57f",
60
+ "@rivetkit/rivetkit-native-linux-x64-musl": "0.0.0-pr.4614.822b57f",
61
+ "@rivetkit/rivetkit-native-win32-x64-msvc": "0.0.0-pr.4614.822b57f"
62
62
  }
63
63
  }
package/wrapper.d.ts CHANGED
@@ -136,9 +136,4 @@ export interface NativeRawDatabase {
136
136
  close: () => Promise<void>;
137
137
  }
138
138
 
139
- export declare function openRawDatabaseFromEnvoy(
140
- handle: EnvoyHandle,
141
- actorId: string,
142
- ): Promise<NativeRawDatabase>;
143
-
144
139
  export declare const utils: {};