Add moduleSnapshot() across all modules for uniform state export.

Completes the sixth expansion pass: zero-arg moduleSnapshot aliases snapshot() (or clusterSnapshot/stateSnapshot where specialized), with async variants for temporal, spatial, semantic-vector, and reactive-state indexes.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-05-21 04:42:45 -04:00
co-authored by Cursor
parent faf152a8ac
commit f509060710
203 changed files with 892 additions and 0 deletions
@@ -149,6 +149,10 @@ class HyperP2PMultisigThreshold extends EventEmitter {
return this.toJSON()
}
moduleSnapshot () {
return this.snapshot()
}
createProposalBatch (entries) {
if (!Array.isArray(entries)) throw new Error('entries array required')
return entries.map((e) => this.createProposal(e.id, e.signers, e.threshold))