@cynodia/axiom-server 0.8.2-alpha.1 → 0.9.0-alpha.2
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 +4 -0
- package/conformance/blob-authorized-read.json +810 -0
- package/conformance/blob-commit-not-dispatched-when-the-transaction-is-refused.json +822 -0
- package/conformance/blob-delete-failure-leaves-state-correct.json +821 -0
- package/conformance/blob-metadata-lookup.json +814 -0
- package/conformance/blob-metadata-missing-refuses-the-action.json +807 -0
- package/conformance/blob-restart-preserves-references.json +801 -0
- package/conformance/blob-unauthorized-read-and-guessed-key.json +812 -0
- package/conformance/blob-upload-and-commit.json +832 -0
- package/conformance/blob-upload-unauthorized.json +813 -0
- package/conformance/manifest.json +280 -0
- package/conformance/subscription-becomes-active-at-startup.json +786 -0
- package/conformance/subscription-client-cannot-forge-a-delivery.json +794 -0
- package/conformance/subscription-delivery-after-shutdown.json +807 -0
- package/conformance/subscription-delivery-applies.json +801 -0
- package/conformance/subscription-duplicate-delivery.json +808 -0
- package/conformance/subscription-invalid-payload.json +804 -0
- package/conformance/subscription-permanent-failure-leaves-application-running.json +810 -0
- package/conformance/subscription-poison-delivery.json +801 -0
- package/conformance/subscription-reconnects-after-transport-loss.json +828 -0
- package/conformance/subscription-sequential-delivery.json +807 -0
- package/dist/blobs.d.ts +103 -0
- package/dist/blobs.js +122 -0
- package/dist/conformance-runner.js +135 -3
- package/dist/conformance-types.d.ts +83 -0
- package/dist/deps.d.ts +2 -1
- package/dist/deps.js +1 -0
- package/dist/effects.d.ts +5 -1
- package/dist/effects.js +35 -2
- package/dist/host.d.ts +3 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/node-host.d.ts +27 -0
- package/dist/node-host.js +92 -0
- package/dist/persistence.d.ts +13 -0
- package/dist/persistence.js +16 -0
- package/dist/server.d.ts +83 -3
- package/dist/server.js +274 -12
- package/dist/subscription.d.ts +145 -0
- package/dist/subscription.js +82 -0
- package/dist/subscriptions.d.ts +97 -0
- package/dist/subscriptions.js +368 -0
- package/dist/triggers.d.ts +11 -2
- package/dist/triggers.js +9 -5
- package/package.json +3 -3
- package/schema/server-ir.v5.schema.json +2059 -0
package/README.md
CHANGED
|
@@ -5,6 +5,10 @@ framework.
|
|
|
5
5
|
|
|
6
6
|
**Status: experimental / alpha.** The API may change between alpha releases.
|
|
7
7
|
|
|
8
|
+
**AI agents:** read `docs/AGENT_REFERENCE.md` and `docs/AUTHORITY.md` inside the installed
|
|
9
|
+
`@cynodia/axiom` package before authoring an application. This package's semantics are
|
|
10
|
+
contracted there, and both ship in that tarball.
|
|
11
|
+
|
|
8
12
|
The authoritative runtime. It executes a **Server IR** — the half of an application graph
|
|
9
13
|
that decides things — with the same semantic engine the client runs, so transaction
|
|
10
14
|
boundaries, provisional writes, `for-each` ordering, constraints, transition constraints
|