@lmzhen/dsh-evolution-state-storage 0.3.65 → 0.3.66
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/lib/types/index.d.ts +10 -1
- package/package.json +1 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -11,7 +11,16 @@ export * from './constants.ts';
|
|
|
11
11
|
export * from './record-contract.ts';
|
|
12
12
|
/** 0.3.17 (S3.5, D-4): 'skill_batch' removed — nothing ever created one
|
|
13
13
|
* (dead enum member); the historic value, if it ever reached disk, is read as
|
|
14
|
-
* an unknown kind by consumers rather than minted here.
|
|
14
|
+
* an unknown kind by consumers rather than minted here.
|
|
15
|
+
*
|
|
16
|
+
* 0.3.66: 'capability' is retained with NO producer — the evolution-capability
|
|
17
|
+
* adapter was removed. It is a read-compatibility member: state written by an
|
|
18
|
+
* install that used that adapter (≤0.3.65) still holds such records, and they
|
|
19
|
+
* must keep loading, listing in `/evolution pending`, and answering approve or
|
|
20
|
+
* reject. Dropping it would strand them two ways: json quarantines the row to
|
|
21
|
+
* `<file>.corrupt` and refuses the resolving write, while the domain provider
|
|
22
|
+
* validates every stored record at mount, so one such row fails the whole domain
|
|
23
|
+
* with `invalid-record`. */
|
|
15
24
|
export type PendingKind = 'memory' | 'skill' | 'capability';
|
|
16
25
|
/** 0.3.17 (S3.3, E-24): 'executing' = claimed, runner in flight — a fresh
|
|
17
26
|
* claim only takes 'pending', and resolve accepts 'pending'/'executing', so a
|