@forgezero/runtime 0.1.16 → 0.1.17

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  and commit the generator and rendered files together.
6
6
  -->
7
7
 
8
- # @forgezero/runtime
8
+ # Platform runtime
9
9
 
10
10
  The machinery behind a request handler — jobs, queues, an outbox, a hash-chained audit trail, mail, backups, schema validation and exact money. 30 public modules, each imported on its own.
11
11
 
package/dist/jobs.d.ts CHANGED
@@ -199,7 +199,7 @@ export interface CursorJobSpec<T> extends Omit<JobSpec, 'run'> {
199
199
  * item three of ten throws, the whole batch is retried from the same cursor on
200
200
  * the next run. That means `process` must be idempotent — items one and two will
201
201
  * be seen again — and idempotent retries are strictly better than the
202
- * alternative, which is deposits that are never seen at all.
202
+ * alternative, which is records that are never processed at all.
203
203
  *
204
204
  * The lease is re-checked between batches. A run that stalled past its lease and
205
205
  * woke up must not keep writing while another process is doing the same work.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forgezero/runtime",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -134,7 +134,7 @@
134
134
  "prepublishOnly": "bun ../tools/package-task.ts prepublish runtime"
135
135
  },
136
136
  "dependencies": {
137
- "@forgezero/access": "^0.1.11"
137
+ "@forgezero/access": "^0.1.12"
138
138
  },
139
139
  "peerDependencies": {
140
140
  "@noble/ciphers": "^2.2.0",