blazen 0.1.119 → 0.1.120
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.
- package/README.md +35 -0
- package/index.d.ts +72 -0
- package/index.js +56 -52
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -342,6 +342,8 @@ console.log(result.data); // { answer: 42 }
|
|
|
342
342
|
|
|
343
343
|
**Important:** `handler.result()` and `handler.pause()` each consume the handler. You can only call one of them, and only once.
|
|
344
344
|
|
|
345
|
+
> **Note:** Values stored via `ctx.session.set(...)` are **excluded** from snapshots. The workflow's `session_pause_policy` (default `pickle_or_error`; other policies: `warn_drop`, `hard_error`) governs what happens to session entries at pause time -- see the Rust docs for policy details. For anything that must survive pause/resume, use `ctx.state.set(...)` (or the legacy `ctx.set(...)` shortcut).
|
|
346
|
+
|
|
345
347
|
### Human-in-the-Loop
|
|
346
348
|
|
|
347
349
|
Pause/resume is the foundation for human-in-the-loop workflows. Pause after a step to wait for human review, then resume when approved:
|
|
@@ -419,6 +421,35 @@ await ctx.setBytes("image-pixels", pixels);
|
|
|
419
421
|
const restored = await ctx.getBytes("image-pixels");
|
|
420
422
|
```
|
|
421
423
|
|
|
424
|
+
### State vs Session namespaces
|
|
425
|
+
|
|
426
|
+
The `Context` class exposes two explicit namespaces alongside the legacy smart-routing shortcuts (`ctx.set` / `ctx.get` / `ctx.setBytes` / `ctx.getBytes`):
|
|
427
|
+
|
|
428
|
+
- **`ctx.state`** -- persistable values. Routes through the same dispatch as `ctx.set` (bytes / JSON / pickle). Survives `pause()` / `resume()` and checkpoint stores.
|
|
429
|
+
- **`ctx.session`** -- in-process-only values. **Excluded from snapshots.** Use this for request IDs, rate-limit counters, ephemeral caches, and anything that should not survive pause/resume.
|
|
430
|
+
|
|
431
|
+
```typescript
|
|
432
|
+
wf.addStep("step", ["blazen::StartEvent"], async (event, ctx) => {
|
|
433
|
+
// Persistable state
|
|
434
|
+
await ctx.state.set("counter", 5);
|
|
435
|
+
const count = await ctx.state.get("counter");
|
|
436
|
+
|
|
437
|
+
// Bytes also work on the state namespace
|
|
438
|
+
await ctx.state.setBytes("blob", Buffer.from([1, 2, 3]));
|
|
439
|
+
const blob = await ctx.state.getBytes("blob");
|
|
440
|
+
|
|
441
|
+
// In-process-only state
|
|
442
|
+
await ctx.session.set("reqId", "abc123");
|
|
443
|
+
const hasReq = await ctx.session.has("reqId");
|
|
444
|
+
const reqId = await ctx.session.get("reqId");
|
|
445
|
+
await ctx.session.remove("reqId");
|
|
446
|
+
|
|
447
|
+
return { type: "blazen::StopEvent", result: { count, hasReq } };
|
|
448
|
+
});
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
**Important -- JS object identity is NOT preserved on Node.** Session values are routed through `serde_json::Value` because napi-rs's `Reference<T>` is `!Send` (its `Drop` must run on the v8 main thread). `await ctx.session.get("k")` returns a plain object equal to the one you passed in, not the same object. Session is still functionally distinct from state -- session values are excluded from snapshots, state values are not -- but for true identity preservation of live JS objects across steps you must use the Python or WASM bindings.
|
|
452
|
+
|
|
422
453
|
---
|
|
423
454
|
|
|
424
455
|
## Timeout
|
|
@@ -472,6 +503,10 @@ import type {
|
|
|
472
503
|
| `Context.sendEvent(event)` | Route an event to matching steps (async) |
|
|
473
504
|
| `Context.writeEventToStream(event)` | Publish to external stream consumers (async) |
|
|
474
505
|
| `Context.runId()` | Get the workflow run ID (async) |
|
|
506
|
+
| `Context.state` | `StateNamespace` getter -- persistable values (survives pause/resume) |
|
|
507
|
+
| `Context.session` | `SessionNamespace` getter -- in-process-only values (excluded from snapshots) |
|
|
508
|
+
| `StateNamespace.set / get / setBytes / getBytes` | Async persistable storage routed through the same dispatch as `ctx.set` |
|
|
509
|
+
| `SessionNamespace.set / get / has / remove` | Async in-process-only storage; values are routed through `serde_json::Value` (no JS identity preservation) |
|
|
475
510
|
| `CompletionModel` | Unified LLM client with 15 provider factory methods |
|
|
476
511
|
| `CompletionModel.complete(messages)` | Chat completion with typed `ChatMessage[]` input, returns `CompletionResponse` (async) |
|
|
477
512
|
| `CompletionModel.completeWithOptions(messages, opts)` | Chat completion with `CompletionOptions` (async) |
|
package/index.d.ts
CHANGED
|
@@ -221,6 +221,26 @@ export declare class Context {
|
|
|
221
221
|
getBytes(key: string): Promise<Buffer | null>
|
|
222
222
|
/** Get the workflow run ID. */
|
|
223
223
|
runId(): Promise<string>
|
|
224
|
+
/**
|
|
225
|
+
* Persistable workflow state. Survives `pause()` / `resume()`,
|
|
226
|
+
* checkpoints, and durable storage.
|
|
227
|
+
*
|
|
228
|
+
* ```javascript
|
|
229
|
+
* await ctx.state.set("counter", 5);
|
|
230
|
+
* const count = await ctx.state.get("counter");
|
|
231
|
+
* ```
|
|
232
|
+
*/
|
|
233
|
+
get state(): JsStateNamespace
|
|
234
|
+
/**
|
|
235
|
+
* In-process-only values. Excluded from snapshots — use this for
|
|
236
|
+
* things that should not survive `pause()` / `resume()`.
|
|
237
|
+
*
|
|
238
|
+
* ```javascript
|
|
239
|
+
* await ctx.session.set("reqId", 42);
|
|
240
|
+
* const n = await ctx.session.get("reqId");
|
|
241
|
+
* ```
|
|
242
|
+
*/
|
|
243
|
+
get session(): JsSessionNamespace
|
|
224
244
|
}
|
|
225
245
|
export type JsContext = Context
|
|
226
246
|
|
|
@@ -503,6 +523,58 @@ export declare class Memory {
|
|
|
503
523
|
}
|
|
504
524
|
export type JsMemory = Memory
|
|
505
525
|
|
|
526
|
+
/**
|
|
527
|
+
* Namespace for in-process-only workflow values.
|
|
528
|
+
*
|
|
529
|
+
* Values stored via `session.set` are kept in the
|
|
530
|
+
* `ContextInner.objects` side-channel and are **excluded** from
|
|
531
|
+
* snapshots. Use this for state that should not survive a
|
|
532
|
+
* `pause()` / `resume()` round-trip (request IDs, rate-limit
|
|
533
|
+
* counters, ephemeral caches, …).
|
|
534
|
+
*
|
|
535
|
+
* For `session.set` values, identity preservation of JS class
|
|
536
|
+
* instances through this namespace is **not** supported on the Node
|
|
537
|
+
* bindings (see the module-level note on napi-rs threading). Values
|
|
538
|
+
* are serialised via `serde_json::Value`, so you will get a plain
|
|
539
|
+
* object back on `session.get`.
|
|
540
|
+
*/
|
|
541
|
+
export declare class SessionNamespace {
|
|
542
|
+
/**
|
|
543
|
+
* Store a JSON-serializable value under the given key. The value
|
|
544
|
+
* is excluded from snapshots.
|
|
545
|
+
*/
|
|
546
|
+
set(key: string, value: unknown): Promise<void>
|
|
547
|
+
/**
|
|
548
|
+
* Retrieve a value previously stored under the given key. Returns
|
|
549
|
+
* `null` if the key does not exist.
|
|
550
|
+
*/
|
|
551
|
+
get(key: string): Promise<unknown>
|
|
552
|
+
/** Check whether a value exists under the given key. */
|
|
553
|
+
has(key: string): Promise<boolean>
|
|
554
|
+
/** Remove the value stored under the given key. */
|
|
555
|
+
remove(key: string): Promise<void>
|
|
556
|
+
}
|
|
557
|
+
export type JsSessionNamespace = SessionNamespace
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* Namespace for persistable workflow state.
|
|
561
|
+
*
|
|
562
|
+
* Values stored via `state.set` / `state.setBytes` go into the
|
|
563
|
+
* underlying `ContextInner.state` map and survive snapshots,
|
|
564
|
+
* `pause()` / `resume()`, and checkpoint stores.
|
|
565
|
+
*/
|
|
566
|
+
export declare class StateNamespace {
|
|
567
|
+
/** Store a JSON-serializable value under the given key. */
|
|
568
|
+
set(key: string, value: Exclude<StateValue, Buffer>): Promise<void>
|
|
569
|
+
/** Retrieve a value previously stored under the given key. */
|
|
570
|
+
get(key: string): Promise<StateValue | null>
|
|
571
|
+
/** Store raw binary data under the given key. */
|
|
572
|
+
setBytes(key: string, data: Buffer): Promise<void>
|
|
573
|
+
/** Retrieve raw binary data previously stored under the given key. */
|
|
574
|
+
getBytes(key: string): Promise<Buffer | null>
|
|
575
|
+
}
|
|
576
|
+
export type JsStateNamespace = StateNamespace
|
|
577
|
+
|
|
506
578
|
/**
|
|
507
579
|
* A Valkey/Redis-backed backend for the memory store.
|
|
508
580
|
*
|
package/index.js
CHANGED
|
@@ -77,8 +77,8 @@ function requireNative() {
|
|
|
77
77
|
try {
|
|
78
78
|
const binding = require('blazen-android-arm64')
|
|
79
79
|
const bindingPackageVersion = require('blazen-android-arm64/package.json').version
|
|
80
|
-
if (bindingPackageVersion !== '0.1.
|
|
81
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
80
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
82
|
}
|
|
83
83
|
return binding
|
|
84
84
|
} catch (e) {
|
|
@@ -93,8 +93,8 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require('blazen-android-arm-eabi')
|
|
95
95
|
const bindingPackageVersion = require('blazen-android-arm-eabi/package.json').version
|
|
96
|
-
if (bindingPackageVersion !== '0.1.
|
|
97
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
96
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
98
|
}
|
|
99
99
|
return binding
|
|
100
100
|
} catch (e) {
|
|
@@ -114,8 +114,8 @@ function requireNative() {
|
|
|
114
114
|
try {
|
|
115
115
|
const binding = require('blazen-win32-x64-gnu')
|
|
116
116
|
const bindingPackageVersion = require('blazen-win32-x64-gnu/package.json').version
|
|
117
|
-
if (bindingPackageVersion !== '0.1.
|
|
118
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
117
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
119
|
}
|
|
120
120
|
return binding
|
|
121
121
|
} catch (e) {
|
|
@@ -130,8 +130,8 @@ function requireNative() {
|
|
|
130
130
|
try {
|
|
131
131
|
const binding = require('blazen-win32-x64-msvc')
|
|
132
132
|
const bindingPackageVersion = require('blazen-win32-x64-msvc/package.json').version
|
|
133
|
-
if (bindingPackageVersion !== '0.1.
|
|
134
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
133
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
135
|
}
|
|
136
136
|
return binding
|
|
137
137
|
} catch (e) {
|
|
@@ -147,8 +147,8 @@ function requireNative() {
|
|
|
147
147
|
try {
|
|
148
148
|
const binding = require('blazen-win32-ia32-msvc')
|
|
149
149
|
const bindingPackageVersion = require('blazen-win32-ia32-msvc/package.json').version
|
|
150
|
-
if (bindingPackageVersion !== '0.1.
|
|
151
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
150
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
152
|
}
|
|
153
153
|
return binding
|
|
154
154
|
} catch (e) {
|
|
@@ -163,8 +163,8 @@ function requireNative() {
|
|
|
163
163
|
try {
|
|
164
164
|
const binding = require('blazen-win32-arm64-msvc')
|
|
165
165
|
const bindingPackageVersion = require('blazen-win32-arm64-msvc/package.json').version
|
|
166
|
-
if (bindingPackageVersion !== '0.1.
|
|
167
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
166
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
168
|
}
|
|
169
169
|
return binding
|
|
170
170
|
} catch (e) {
|
|
@@ -182,8 +182,8 @@ function requireNative() {
|
|
|
182
182
|
try {
|
|
183
183
|
const binding = require('blazen-darwin-universal')
|
|
184
184
|
const bindingPackageVersion = require('blazen-darwin-universal/package.json').version
|
|
185
|
-
if (bindingPackageVersion !== '0.1.
|
|
186
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
185
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
187
|
}
|
|
188
188
|
return binding
|
|
189
189
|
} catch (e) {
|
|
@@ -198,8 +198,8 @@ function requireNative() {
|
|
|
198
198
|
try {
|
|
199
199
|
const binding = require('blazen-darwin-x64')
|
|
200
200
|
const bindingPackageVersion = require('blazen-darwin-x64/package.json').version
|
|
201
|
-
if (bindingPackageVersion !== '0.1.
|
|
202
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
201
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
203
|
}
|
|
204
204
|
return binding
|
|
205
205
|
} catch (e) {
|
|
@@ -214,8 +214,8 @@ function requireNative() {
|
|
|
214
214
|
try {
|
|
215
215
|
const binding = require('blazen-darwin-arm64')
|
|
216
216
|
const bindingPackageVersion = require('blazen-darwin-arm64/package.json').version
|
|
217
|
-
if (bindingPackageVersion !== '0.1.
|
|
218
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
217
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
219
|
}
|
|
220
220
|
return binding
|
|
221
221
|
} catch (e) {
|
|
@@ -234,8 +234,8 @@ function requireNative() {
|
|
|
234
234
|
try {
|
|
235
235
|
const binding = require('blazen-freebsd-x64')
|
|
236
236
|
const bindingPackageVersion = require('blazen-freebsd-x64/package.json').version
|
|
237
|
-
if (bindingPackageVersion !== '0.1.
|
|
238
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
237
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
239
|
}
|
|
240
240
|
return binding
|
|
241
241
|
} catch (e) {
|
|
@@ -250,8 +250,8 @@ function requireNative() {
|
|
|
250
250
|
try {
|
|
251
251
|
const binding = require('blazen-freebsd-arm64')
|
|
252
252
|
const bindingPackageVersion = require('blazen-freebsd-arm64/package.json').version
|
|
253
|
-
if (bindingPackageVersion !== '0.1.
|
|
254
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
253
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
255
|
}
|
|
256
256
|
return binding
|
|
257
257
|
} catch (e) {
|
|
@@ -271,8 +271,8 @@ function requireNative() {
|
|
|
271
271
|
try {
|
|
272
272
|
const binding = require('blazen-linux-x64-musl')
|
|
273
273
|
const bindingPackageVersion = require('blazen-linux-x64-musl/package.json').version
|
|
274
|
-
if (bindingPackageVersion !== '0.1.
|
|
275
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
274
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
276
|
}
|
|
277
277
|
return binding
|
|
278
278
|
} catch (e) {
|
|
@@ -287,8 +287,8 @@ function requireNative() {
|
|
|
287
287
|
try {
|
|
288
288
|
const binding = require('blazen-linux-x64-gnu')
|
|
289
289
|
const bindingPackageVersion = require('blazen-linux-x64-gnu/package.json').version
|
|
290
|
-
if (bindingPackageVersion !== '0.1.
|
|
291
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
290
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
292
|
}
|
|
293
293
|
return binding
|
|
294
294
|
} catch (e) {
|
|
@@ -305,8 +305,8 @@ function requireNative() {
|
|
|
305
305
|
try {
|
|
306
306
|
const binding = require('blazen-linux-arm64-musl')
|
|
307
307
|
const bindingPackageVersion = require('blazen-linux-arm64-musl/package.json').version
|
|
308
|
-
if (bindingPackageVersion !== '0.1.
|
|
309
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
308
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
310
|
}
|
|
311
311
|
return binding
|
|
312
312
|
} catch (e) {
|
|
@@ -321,8 +321,8 @@ function requireNative() {
|
|
|
321
321
|
try {
|
|
322
322
|
const binding = require('blazen-linux-arm64-gnu')
|
|
323
323
|
const bindingPackageVersion = require('blazen-linux-arm64-gnu/package.json').version
|
|
324
|
-
if (bindingPackageVersion !== '0.1.
|
|
325
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
324
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
326
|
}
|
|
327
327
|
return binding
|
|
328
328
|
} catch (e) {
|
|
@@ -339,8 +339,8 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require('blazen-linux-arm-musleabihf')
|
|
341
341
|
const bindingPackageVersion = require('blazen-linux-arm-musleabihf/package.json').version
|
|
342
|
-
if (bindingPackageVersion !== '0.1.
|
|
343
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
342
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
344
|
}
|
|
345
345
|
return binding
|
|
346
346
|
} catch (e) {
|
|
@@ -355,8 +355,8 @@ function requireNative() {
|
|
|
355
355
|
try {
|
|
356
356
|
const binding = require('blazen-linux-arm-gnueabihf')
|
|
357
357
|
const bindingPackageVersion = require('blazen-linux-arm-gnueabihf/package.json').version
|
|
358
|
-
if (bindingPackageVersion !== '0.1.
|
|
359
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
358
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
360
|
}
|
|
361
361
|
return binding
|
|
362
362
|
} catch (e) {
|
|
@@ -373,8 +373,8 @@ function requireNative() {
|
|
|
373
373
|
try {
|
|
374
374
|
const binding = require('blazen-linux-loong64-musl')
|
|
375
375
|
const bindingPackageVersion = require('blazen-linux-loong64-musl/package.json').version
|
|
376
|
-
if (bindingPackageVersion !== '0.1.
|
|
377
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
376
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
378
|
}
|
|
379
379
|
return binding
|
|
380
380
|
} catch (e) {
|
|
@@ -389,8 +389,8 @@ function requireNative() {
|
|
|
389
389
|
try {
|
|
390
390
|
const binding = require('blazen-linux-loong64-gnu')
|
|
391
391
|
const bindingPackageVersion = require('blazen-linux-loong64-gnu/package.json').version
|
|
392
|
-
if (bindingPackageVersion !== '0.1.
|
|
393
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
392
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
394
|
}
|
|
395
395
|
return binding
|
|
396
396
|
} catch (e) {
|
|
@@ -407,8 +407,8 @@ function requireNative() {
|
|
|
407
407
|
try {
|
|
408
408
|
const binding = require('blazen-linux-riscv64-musl')
|
|
409
409
|
const bindingPackageVersion = require('blazen-linux-riscv64-musl/package.json').version
|
|
410
|
-
if (bindingPackageVersion !== '0.1.
|
|
411
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
410
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
412
|
}
|
|
413
413
|
return binding
|
|
414
414
|
} catch (e) {
|
|
@@ -423,8 +423,8 @@ function requireNative() {
|
|
|
423
423
|
try {
|
|
424
424
|
const binding = require('blazen-linux-riscv64-gnu')
|
|
425
425
|
const bindingPackageVersion = require('blazen-linux-riscv64-gnu/package.json').version
|
|
426
|
-
if (bindingPackageVersion !== '0.1.
|
|
427
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
426
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
428
|
}
|
|
429
429
|
return binding
|
|
430
430
|
} catch (e) {
|
|
@@ -440,8 +440,8 @@ function requireNative() {
|
|
|
440
440
|
try {
|
|
441
441
|
const binding = require('blazen-linux-ppc64-gnu')
|
|
442
442
|
const bindingPackageVersion = require('blazen-linux-ppc64-gnu/package.json').version
|
|
443
|
-
if (bindingPackageVersion !== '0.1.
|
|
444
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
443
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
445
|
}
|
|
446
446
|
return binding
|
|
447
447
|
} catch (e) {
|
|
@@ -456,8 +456,8 @@ function requireNative() {
|
|
|
456
456
|
try {
|
|
457
457
|
const binding = require('blazen-linux-s390x-gnu')
|
|
458
458
|
const bindingPackageVersion = require('blazen-linux-s390x-gnu/package.json').version
|
|
459
|
-
if (bindingPackageVersion !== '0.1.
|
|
460
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
459
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
461
|
}
|
|
462
462
|
return binding
|
|
463
463
|
} catch (e) {
|
|
@@ -476,8 +476,8 @@ function requireNative() {
|
|
|
476
476
|
try {
|
|
477
477
|
const binding = require('blazen-openharmony-arm64')
|
|
478
478
|
const bindingPackageVersion = require('blazen-openharmony-arm64/package.json').version
|
|
479
|
-
if (bindingPackageVersion !== '0.1.
|
|
480
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
479
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
481
|
}
|
|
482
482
|
return binding
|
|
483
483
|
} catch (e) {
|
|
@@ -492,8 +492,8 @@ function requireNative() {
|
|
|
492
492
|
try {
|
|
493
493
|
const binding = require('blazen-openharmony-x64')
|
|
494
494
|
const bindingPackageVersion = require('blazen-openharmony-x64/package.json').version
|
|
495
|
-
if (bindingPackageVersion !== '0.1.
|
|
496
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
495
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
497
|
}
|
|
498
498
|
return binding
|
|
499
499
|
} catch (e) {
|
|
@@ -508,8 +508,8 @@ function requireNative() {
|
|
|
508
508
|
try {
|
|
509
509
|
const binding = require('blazen-openharmony-arm')
|
|
510
510
|
const bindingPackageVersion = require('blazen-openharmony-arm/package.json').version
|
|
511
|
-
if (bindingPackageVersion !== '0.1.
|
|
512
|
-
throw new Error(`Native binding package version mismatch, expected 0.1.
|
|
511
|
+
if (bindingPackageVersion !== '0.1.120' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 0.1.120 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
513
|
}
|
|
514
514
|
return binding
|
|
515
515
|
} catch (e) {
|
|
@@ -594,6 +594,10 @@ module.exports.JsonlBackend = nativeBinding.JsonlBackend
|
|
|
594
594
|
module.exports.JsJsonlBackend = nativeBinding.JsJsonlBackend
|
|
595
595
|
module.exports.Memory = nativeBinding.Memory
|
|
596
596
|
module.exports.JsMemory = nativeBinding.JsMemory
|
|
597
|
+
module.exports.SessionNamespace = nativeBinding.SessionNamespace
|
|
598
|
+
module.exports.JsSessionNamespace = nativeBinding.JsSessionNamespace
|
|
599
|
+
module.exports.StateNamespace = nativeBinding.StateNamespace
|
|
600
|
+
module.exports.JsStateNamespace = nativeBinding.JsStateNamespace
|
|
597
601
|
module.exports.ValkeyBackend = nativeBinding.ValkeyBackend
|
|
598
602
|
module.exports.JsValkeyBackend = nativeBinding.JsValkeyBackend
|
|
599
603
|
module.exports.Workflow = nativeBinding.Workflow
|