@rivetkit/rivetkit-napi 0.0.0-pr.4722.75d4644 → 0.0.0-pr.4724.ecbb955

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 +4 -0
  2. package/package.json +9 -9
package/index.d.ts CHANGED
@@ -44,6 +44,9 @@ export interface JsQueueSendResult {
44
44
  status: string
45
45
  response?: Buffer
46
46
  }
47
+ export interface JsActionDefinition {
48
+ name: string
49
+ }
47
50
  export interface JsActorConfig {
48
51
  name?: string
49
52
  icon?: string
@@ -72,6 +75,7 @@ export interface JsActorConfig {
72
75
  maxOutgoingMessageSize?: number
73
76
  preloadMaxWorkflowBytes?: number
74
77
  preloadMaxConnectionsBytes?: number
78
+ actions?: Array<JsActionDefinition>
75
79
  }
76
80
  export interface JsBindParam {
77
81
  kind: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivetkit/rivetkit-napi",
3
- "version": "0.0.0-pr.4722.75d4644",
3
+ "version": "0.0.0-pr.4724.ecbb955",
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.4722.75d4644"
46
+ "@rivetkit/engine-envoy-protocol": "0.0.0-pr.4724.ecbb955"
47
47
  },
48
48
  "optionalDependencies": {
49
- "@rivetkit/rivetkit-napi-darwin-arm64": "0.0.0-pr.4722.75d4644",
50
- "@rivetkit/rivetkit-napi-darwin-x64": "0.0.0-pr.4722.75d4644",
51
- "@rivetkit/rivetkit-napi-linux-arm64-gnu": "0.0.0-pr.4722.75d4644",
52
- "@rivetkit/rivetkit-napi-linux-arm64-musl": "0.0.0-pr.4722.75d4644",
53
- "@rivetkit/rivetkit-napi-linux-x64-gnu": "0.0.0-pr.4722.75d4644",
54
- "@rivetkit/rivetkit-napi-linux-x64-musl": "0.0.0-pr.4722.75d4644",
55
- "@rivetkit/rivetkit-napi-win32-x64-msvc": "0.0.0-pr.4722.75d4644"
49
+ "@rivetkit/rivetkit-napi-darwin-arm64": "0.0.0-pr.4724.ecbb955",
50
+ "@rivetkit/rivetkit-napi-darwin-x64": "0.0.0-pr.4724.ecbb955",
51
+ "@rivetkit/rivetkit-napi-linux-arm64-gnu": "0.0.0-pr.4724.ecbb955",
52
+ "@rivetkit/rivetkit-napi-linux-arm64-musl": "0.0.0-pr.4724.ecbb955",
53
+ "@rivetkit/rivetkit-napi-linux-x64-gnu": "0.0.0-pr.4724.ecbb955",
54
+ "@rivetkit/rivetkit-napi-linux-x64-musl": "0.0.0-pr.4724.ecbb955",
55
+ "@rivetkit/rivetkit-napi-win32-x64-msvc": "0.0.0-pr.4724.ecbb955"
56
56
  }
57
57
  }