@rulvar/store-conformance 1.5.2 → 1.7.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.
- package/README.md +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @rulvar/store-conformance
|
|
2
2
|
|
|
3
|
-
The executable conformance kit for
|
|
3
|
+
The executable conformance kit for Rulvar store adapters: append
|
|
4
4
|
atomicity, total per-run order, read-your-writes, payload opacity, lease
|
|
5
5
|
fencing, and golden fold-state fixtures. If you implement a custom
|
|
6
6
|
store, this suite is the contract your implementation must pass. Exports
|
|
7
7
|
`journalStoreConformance`, `leasableStoreConformance`, and
|
|
8
8
|
`registerConformance`.
|
|
9
9
|
|
|
10
|
-
Part of [
|
|
10
|
+
Part of [Rulvar](https://rulvar.com), an embeddable TypeScript engine
|
|
11
11
|
for durable, budget-bounded multi-agent LLM workflows, where a completed
|
|
12
12
|
LLM call is never paid for twice. Full documentation:
|
|
13
13
|
[docs.rulvar.com](https://docs.rulvar.com).
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { JournalEntry, JournalStore, LeasableStore } from "@rulvar/core";
|
|
|
4
4
|
/**
|
|
5
5
|
* Conformance kit surface (M2-T11, DEF-4): an executable suite
|
|
6
6
|
* parameterized by a store factory. A store implementation passes or it
|
|
7
|
-
* is not a
|
|
7
|
+
* is not a Rulvar store.
|
|
8
8
|
*/
|
|
9
9
|
/** One mandatory check; `run` rejects with a descriptive Error on violation. */
|
|
10
10
|
interface ConformanceCheck {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rulvar/store-conformance",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.7.0",
|
|
4
|
+
"description": "Rulvar executable store conformance kit (DEF-4).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"engines": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@rulvar/core": "1.
|
|
25
|
+
"@rulvar/core": "1.7.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^22.20.0",
|