@substrat-run/contracts 0.74.0 → 0.76.0
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/introspection.d.ts
CHANGED
|
@@ -80,7 +80,7 @@ export type ScopeQueryResult = z.infer<typeof scopeQueryResult>;
|
|
|
80
80
|
* scope: every table, its DDL, and every row, so it can rebuild the scope elsewhere.
|
|
81
81
|
*
|
|
82
82
|
* It is the privileged primitive the preview/snapshot machinery is built on
|
|
83
|
-
* (docs/
|
|
83
|
+
* (docs/architecture/preview-and-snapshots.md §3) — the source a fork or a local pull
|
|
84
84
|
* reads. It KEEPS the `_substrat_*` spine (a fork must carry the event/migration
|
|
85
85
|
* state) and drops only SQLite's own `sqlite_*` internals (auto-managed, and
|
|
86
86
|
* `CREATE TABLE sqlite_*` is rejected on reload). Because it exfiltrates a whole
|
package/dist/introspection.js
CHANGED
|
@@ -80,7 +80,7 @@ export const scopeQueryResult = z.object({
|
|
|
80
80
|
* scope: every table, its DDL, and every row, so it can rebuild the scope elsewhere.
|
|
81
81
|
*
|
|
82
82
|
* It is the privileged primitive the preview/snapshot machinery is built on
|
|
83
|
-
* (docs/
|
|
83
|
+
* (docs/architecture/preview-and-snapshots.md §3) — the source a fork or a local pull
|
|
84
84
|
* reads. It KEEPS the `_substrat_*` spine (a fork must carry the event/migration
|
|
85
85
|
* state) and drops only SQLite's own `sqlite_*` internals (auto-managed, and
|
|
86
86
|
* `CREATE TABLE sqlite_*` is rejected on reload). Because it exfiltrates a whole
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
/**
|
|
3
|
-
* Platform intents (docs/
|
|
3
|
+
* Platform intents (docs/architecture/platform-intents.md) — how a sandbox-clean vertical asks the
|
|
4
4
|
* platform to perform a privileged action (provision a sibling scope, request quota, …) without
|
|
5
5
|
* an upward call. A vertical operation enqueues a typed intent into its own scope's
|
|
6
6
|
* `_substrat_platform_requests` spine table via `ctx.requestPlatform`; the platform pulls and
|
package/dist/platform-request.js
CHANGED
|
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
import { instant, platformRequestId, scopeId } from './ids.js';
|
|
3
3
|
import { actor, domainEvent } from './events.js';
|
|
4
4
|
/**
|
|
5
|
-
* Platform intents (docs/
|
|
5
|
+
* Platform intents (docs/architecture/platform-intents.md) — how a sandbox-clean vertical asks the
|
|
6
6
|
* platform to perform a privileged action (provision a sibling scope, request quota, …) without
|
|
7
7
|
* an upward call. A vertical operation enqueues a typed intent into its own scope's
|
|
8
8
|
* `_substrat_platform_requests` spine table via `ctx.requestPlatform`; the platform pulls and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@substrat-run/contracts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.76.0",
|
|
4
4
|
"description": "Substrat kernel contract schemas — Zod is the source of truth (master plan D-22); OAS/JSON Schema are emitted artifacts",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|