@rivetkit/rivetkit-napi 0.0.0-pr.4848.30c00ff → 0.0.0-pr.4849.db044a5

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/index.d.ts +9 -0
  2. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -92,6 +92,14 @@ export interface QueryResult {
92
92
  columns: Array<string>
93
93
  rows: Array<Array<any>>
94
94
  }
95
+ export interface JsSqliteVfsMetrics {
96
+ requestBuildNs: number
97
+ serializeNs: number
98
+ transportNs: number
99
+ stateUpdateNs: number
100
+ totalNs: number
101
+ commitCount: number
102
+ }
95
103
  export interface JsQueueNextOptions {
96
104
  names?: Array<string>
97
105
  timeoutMs?: number
@@ -238,6 +246,7 @@ export declare class ConnHandle {
238
246
  }
239
247
  export declare class JsNativeDatabase {
240
248
  takeLastKvError(): string | null
249
+ getSqliteVfsMetrics(): JsSqliteVfsMetrics | null
241
250
  run(sql: string, params?: Array<JsBindParam> | undefined | null): Promise<ExecuteResult>
242
251
  query(sql: string, params?: Array<JsBindParam> | undefined | null): Promise<QueryResult>
243
252
  exec(sql: string): Promise<QueryResult>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivetkit/rivetkit-napi",
3
- "version": "0.0.0-pr.4848.30c00ff",
3
+ "version": "0.0.0-pr.4849.db044a5",
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",
@@ -43,15 +43,15 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@napi-rs/cli": "^2.18.4",
46
- "@rivetkit/engine-envoy-protocol": "0.0.0-pr.4848.30c00ff"
46
+ "@rivetkit/engine-envoy-protocol": "0.0.0-pr.4849.db044a5"
47
47
  },
48
48
  "optionalDependencies": {
49
- "@rivetkit/rivetkit-napi-darwin-arm64": "0.0.0-pr.4848.30c00ff",
50
- "@rivetkit/rivetkit-napi-darwin-x64": "0.0.0-pr.4848.30c00ff",
51
- "@rivetkit/rivetkit-napi-linux-arm64-gnu": "0.0.0-pr.4848.30c00ff",
52
- "@rivetkit/rivetkit-napi-linux-arm64-musl": "0.0.0-pr.4848.30c00ff",
53
- "@rivetkit/rivetkit-napi-linux-x64-gnu": "0.0.0-pr.4848.30c00ff",
54
- "@rivetkit/rivetkit-napi-linux-x64-musl": "0.0.0-pr.4848.30c00ff",
55
- "@rivetkit/rivetkit-napi-win32-x64-msvc": "0.0.0-pr.4848.30c00ff"
49
+ "@rivetkit/rivetkit-napi-darwin-arm64": "0.0.0-pr.4849.db044a5",
50
+ "@rivetkit/rivetkit-napi-darwin-x64": "0.0.0-pr.4849.db044a5",
51
+ "@rivetkit/rivetkit-napi-linux-arm64-gnu": "0.0.0-pr.4849.db044a5",
52
+ "@rivetkit/rivetkit-napi-linux-arm64-musl": "0.0.0-pr.4849.db044a5",
53
+ "@rivetkit/rivetkit-napi-linux-x64-gnu": "0.0.0-pr.4849.db044a5",
54
+ "@rivetkit/rivetkit-napi-linux-x64-musl": "0.0.0-pr.4849.db044a5",
55
+ "@rivetkit/rivetkit-napi-win32-x64-msvc": "0.0.0-pr.4849.db044a5"
56
56
  }
57
57
  }