@rivetkit/rivetkit-napi 2.3.2 → 2.3.3-rc.2

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 +1 -0
  2. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -328,6 +328,7 @@ export declare class Queue {
328
328
  tryNext(options?: JsQueueTryNextOptions | undefined | null): QueueMessage | null
329
329
  tryNextBatch(options?: JsQueueTryNextBatchOptions | undefined | null): Array<QueueMessage>
330
330
  maxSize(): number
331
+ reset(): Promise<void>
331
332
  inspectMessages(): Promise<Array<JsQueueInspectMessage>>
332
333
  }
333
334
  export declare class QueueMessage {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivetkit/rivetkit-napi",
3
- "version": "2.3.2",
3
+ "version": "2.3.3-rc.2",
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",
@@ -44,15 +44,15 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@napi-rs/cli": "^2.18.4",
47
- "@rivetkit/engine-envoy-protocol": "2.3.2"
47
+ "@rivetkit/engine-envoy-protocol": "2.3.3-rc.2"
48
48
  },
49
49
  "optionalDependencies": {
50
- "@rivetkit/rivetkit-napi-darwin-arm64": "2.3.2",
51
- "@rivetkit/rivetkit-napi-darwin-x64": "2.3.2",
52
- "@rivetkit/rivetkit-napi-linux-arm64-gnu": "2.3.2",
53
- "@rivetkit/rivetkit-napi-linux-arm64-musl": "2.3.2",
54
- "@rivetkit/rivetkit-napi-linux-x64-gnu": "2.3.2",
55
- "@rivetkit/rivetkit-napi-linux-x64-musl": "2.3.2",
56
- "@rivetkit/rivetkit-napi-win32-x64-msvc": "2.3.2"
50
+ "@rivetkit/rivetkit-napi-darwin-arm64": "2.3.3-rc.2",
51
+ "@rivetkit/rivetkit-napi-darwin-x64": "2.3.3-rc.2",
52
+ "@rivetkit/rivetkit-napi-linux-arm64-gnu": "2.3.3-rc.2",
53
+ "@rivetkit/rivetkit-napi-linux-arm64-musl": "2.3.3-rc.2",
54
+ "@rivetkit/rivetkit-napi-linux-x64-gnu": "2.3.3-rc.2",
55
+ "@rivetkit/rivetkit-napi-linux-x64-musl": "2.3.3-rc.2",
56
+ "@rivetkit/rivetkit-napi-win32-x64-msvc": "2.3.3-rc.2"
57
57
  }
58
58
  }