@rivetkit/rivetkit-napi 0.0.0-pr.4727.e649173 → 0.0.0-pr.4738.bcfa930

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 +8 -0
  2. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -290,6 +290,14 @@ export declare class CoreRegistry {
290
290
  constructor()
291
291
  register(name: string, factory: NapiActorFactory): void
292
292
  serve(config: JsServeConfig): Promise<void>
293
+ /**
294
+ * Trip the shutdown token and tear down any live serverless runtime.
295
+ *
296
+ * Idempotent. Safe to call when neither mode has been activated.
297
+ * Does not block on the `serve()` future; TS awaits that promise
298
+ * separately to avoid re-entrancy.
299
+ */
300
+ shutdown(): Promise<void>
293
301
  handleServerlessRequest(req: JsServerlessRequest, onStreamEvent: (...args: any[]) => any, cancelToken: CancellationToken, config: JsServeConfig): Promise<JsServerlessResponseHead>
294
302
  }
295
303
  export declare class Schedule {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivetkit/rivetkit-napi",
3
- "version": "0.0.0-pr.4727.e649173",
3
+ "version": "0.0.0-pr.4738.bcfa930",
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.4727.e649173"
46
+ "@rivetkit/engine-envoy-protocol": "0.0.0-pr.4738.bcfa930"
47
47
  },
48
48
  "optionalDependencies": {
49
- "@rivetkit/rivetkit-napi-darwin-arm64": "0.0.0-pr.4727.e649173",
50
- "@rivetkit/rivetkit-napi-darwin-x64": "0.0.0-pr.4727.e649173",
51
- "@rivetkit/rivetkit-napi-linux-arm64-gnu": "0.0.0-pr.4727.e649173",
52
- "@rivetkit/rivetkit-napi-linux-arm64-musl": "0.0.0-pr.4727.e649173",
53
- "@rivetkit/rivetkit-napi-linux-x64-gnu": "0.0.0-pr.4727.e649173",
54
- "@rivetkit/rivetkit-napi-linux-x64-musl": "0.0.0-pr.4727.e649173",
55
- "@rivetkit/rivetkit-napi-win32-x64-msvc": "0.0.0-pr.4727.e649173"
49
+ "@rivetkit/rivetkit-napi-darwin-arm64": "0.0.0-pr.4738.bcfa930",
50
+ "@rivetkit/rivetkit-napi-darwin-x64": "0.0.0-pr.4738.bcfa930",
51
+ "@rivetkit/rivetkit-napi-linux-arm64-gnu": "0.0.0-pr.4738.bcfa930",
52
+ "@rivetkit/rivetkit-napi-linux-arm64-musl": "0.0.0-pr.4738.bcfa930",
53
+ "@rivetkit/rivetkit-napi-linux-x64-gnu": "0.0.0-pr.4738.bcfa930",
54
+ "@rivetkit/rivetkit-napi-linux-x64-musl": "0.0.0-pr.4738.bcfa930",
55
+ "@rivetkit/rivetkit-napi-win32-x64-msvc": "0.0.0-pr.4738.bcfa930"
56
56
  }
57
57
  }