@aldus-runtime/release 0.2.0-next.17 → 0.2.0-next.19
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/ports.d.ts +1 -1
- package/package.json +5 -5
- package/src/ports.ts +1 -1
package/dist/ports.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import type { EventStore, RunStore } from "@aldus-runtime/file-store";
|
|
|
14
14
|
* There is no update in place and no delete. §17's receipts are an audit record of what was
|
|
15
15
|
* attempted against a destination: an operation retried after a failure produces a second
|
|
16
16
|
* receipt, not an edit to the first, because the fact that the first attempt failed is what
|
|
17
|
-
* explains the retry. {@link
|
|
17
|
+
* explains the retry. {@link latestByKey} resolves the current outcome by reading them in order.
|
|
18
18
|
*/
|
|
19
19
|
export interface ReleaseReceiptStore {
|
|
20
20
|
/** Every receipt recorded for a Run, in the order they were appended. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aldus-runtime/release",
|
|
3
|
-
"version": "0.2.0-next.
|
|
3
|
+
"version": "0.2.0-next.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Aldus Release \u2014 release bundles, resumable idempotent operations, adapter contracts, and external-state reconciliation.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"typecheck:test": "tsc -p tsconfig.test.json"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@aldus-runtime/core": "0.2.0-next.
|
|
37
|
-
"@aldus-runtime/file-store": "0.2.0-next.
|
|
38
|
-
"@aldus-runtime/gate-engine": "0.2.0-next.
|
|
36
|
+
"@aldus-runtime/core": "0.2.0-next.19",
|
|
37
|
+
"@aldus-runtime/file-store": "0.2.0-next.19",
|
|
38
|
+
"@aldus-runtime/gate-engine": "0.2.0-next.19"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@aldus-runtime/testkit": "0.2.0-next.
|
|
41
|
+
"@aldus-runtime/testkit": "0.2.0-next.19",
|
|
42
42
|
"@types/node": "^26.2.0",
|
|
43
43
|
"typescript": "^7.0.2",
|
|
44
44
|
"vitest": "^4.1.10"
|
package/src/ports.ts
CHANGED
|
@@ -16,7 +16,7 @@ import type { EventStore, RunStore } from "@aldus-runtime/file-store";
|
|
|
16
16
|
* There is no update in place and no delete. §17's receipts are an audit record of what was
|
|
17
17
|
* attempted against a destination: an operation retried after a failure produces a second
|
|
18
18
|
* receipt, not an edit to the first, because the fact that the first attempt failed is what
|
|
19
|
-
* explains the retry. {@link
|
|
19
|
+
* explains the retry. {@link latestByKey} resolves the current outcome by reading them in order.
|
|
20
20
|
*/
|
|
21
21
|
export interface ReleaseReceiptStore {
|
|
22
22
|
/** Every receipt recorded for a Run, in the order they were appended. */
|