@rulvar/core 1.45.0 → 1.46.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/dist/index.d.ts CHANGED
@@ -965,7 +965,9 @@ interface TranscriptStore {
965
965
  * sources). The shipped file and in-memory transcript stores do NOT
966
966
  * declare it (they are single-writer by contract); a fenced
967
967
  * implementation needs the blobs and the lease state in one
968
- * transactional domain.
968
+ * transactional domain, which is exactly how the sqlite twin ships:
969
+ * `SqliteStore.transcripts()` in `@rulvar/store-sqlite` keeps blobs
970
+ * beside the lease rows of the same database.
969
971
  */
970
972
  readonly fencedWrites?: true;
971
973
  }
@@ -6821,7 +6823,9 @@ declare function hasFencedWrites(store: JournalStore | TranscriptStore): boolean
6821
6823
  * Deployment-time assertion for queue hosts that require the full
6822
6824
  * fence: throws a typed ConfigError naming each store that does NOT
6823
6825
  * declare `fencedWrites`. A host that tolerates advisory meta or
6824
- * transcript writes simply never calls this.
6826
+ * transcript writes simply never calls this. The shipped pair that
6827
+ * satisfies it with transcripts present is `@rulvar/store-sqlite`:
6828
+ * the store as the journal plus its `transcripts()` twin.
6825
6829
  */
6826
6830
  declare function assertFencedWrites(stores: {
6827
6831
  journal: JournalStore;
package/dist/index.js CHANGED
@@ -6539,7 +6539,9 @@ function hasFencedWrites(store) {
6539
6539
  * Deployment-time assertion for queue hosts that require the full
6540
6540
  * fence: throws a typed ConfigError naming each store that does NOT
6541
6541
  * declare `fencedWrites`. A host that tolerates advisory meta or
6542
- * transcript writes simply never calls this.
6542
+ * transcript writes simply never calls this. The shipped pair that
6543
+ * satisfies it with transcripts present is `@rulvar/store-sqlite`:
6544
+ * the store as the journal plus its `transcripts()` twin.
6543
6545
  */
6544
6546
  function assertFencedWrites(stores) {
6545
6547
  const unfenced = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulvar/core",
3
- "version": "1.45.0",
3
+ "version": "1.46.0",
4
4
  "description": "Rulvar core: L0 contracts, journal kernel, ctx primitives, agent runtime, model router, tool system, dynamic orchestrator, InMemory and JSONL stores, event stream.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",