@parmanasystems/execution-runtime 1.83.0 → 1.87.0

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/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @parmanasystems/execution-runtime
1
+ # @parmanasystems/execution-runtime
2
2
 
3
3
  High-level orchestration layer for Parmana Systems governed execution.
4
4
 
@@ -8,7 +8,7 @@ High-level orchestration layer for Parmana Systems governed execution.
8
8
 
9
9
  ## Overview
10
10
 
11
- `@parmanasystems/execution-runtime` is the orchestration layer that sits above `@parmanasystems/execution`. It wires together policy evaluation, replay protection, signing, and verification into a single `executeFromSignals` call the primary entry point for most Parmana Systems integrations.
11
+ `@parmanasystems/execution-runtime` is the orchestration layer that sits above `@parmanasystems/execution`. It wires together policy evaluation, replay protection, signing, and verification into a single `executeFromSignals` call - the primary entry point for most Parmana Systems integrations.
12
12
 
13
13
  Most applications should use `@parmanasystems/core`, which re-exports everything from this package. Use this package directly only if you need the runtime orchestration layer without the full SDK surface.
14
14
 
@@ -77,7 +77,7 @@ const attestation = await executeFromSignals(context, signer, verifier, replaySt
77
77
 
78
78
  | Export | Description |
79
79
  |---|---|
80
- | `executeFromSignals` | Primary execution entry point evaluates a policy, signs the result, returns `ExecutionAttestation` |
80
+ | `executeFromSignals` | Primary execution entry point - evaluates a policy, signs the result, returns `ExecutionAttestation` |
81
81
  | `MemoryReplayStore` | In-process replay store for development and testing |
82
82
  | `RedisReplayStore` | Distributed replay store for production use |
83
83
 
@@ -89,7 +89,7 @@ const attestation = await executeFromSignals(context, signer, verifier, replaySt
89
89
  |---|---|
90
90
  | `@parmanasystems/execution` | Deterministic evaluation engine and attestation primitives |
91
91
  | `@parmanasystems/execution-runtime` | Orchestration: wires evaluation, signing, verification, replay |
92
- | `@parmanasystems/core` | Unified public SDK re-exports both of the above |
92
+ | `@parmanasystems/core` | Unified public SDK - re-exports both of the above |
93
93
 
94
94
  ---
95
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parmanasystems/execution-runtime",
3
- "version": "1.83.0",
3
+ "version": "1.87.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Runtime orchestration layer for Parmana Systems.",
@@ -21,7 +21,7 @@
21
21
  "build": "tsup"
22
22
  },
23
23
  "dependencies": {
24
- "@parmanasystems/execution": "^1.83.0",
24
+ "@parmanasystems/execution": "^1.87.0",
25
25
  "ioredis": "^5.4.1"
26
26
  },
27
27
  "devDependencies": {