Getting Started
Authoring
Access Control
Reference
-
- Overview
-
- Overview
- collection
- collection/client
- collection/schemas
- manifest/context
- manifest/parse
- manifest/types
- remote
- remote/collection\_wire\_schemas
- remote/sveltekit-guard.server
- runtime/binding
- scope/types
- seed/authoring
- seed/execute
- seed/manifest
- seed/plan
- storage/minio
- system/collections
- system/column\_names
- system/types
- system/workspace-schema
- tenant\_db/bootstrap
- tenant\_db/neon-branch-utils
- tenant\_db/neon-provider
- tenant\_db/provider
- tenant\_db/schema
- tenant\_workspace
- tenant\_workspace/build-output
- tenant\_workspace/migrations/apply
- tenant\_workspace/migrations/errors
- tenant\_workspace/migrations/generate
- tenant\_workspace/migrations/read
- tenant\_workspace/source
Examples
seed/manifest
seed/manifest
Type Aliases
SeedManifest
type SeedManifest = object;Defined in: platform-utils/src/seed/manifest.ts:17
DAG-bearing seed artifact emitted at build time (separate from build manifest).
Properties
| Property | Modifier | Type | Defined in |
|---|---|---|---|
clearBefore? |
readonly |
readonly string[] |
platform-utils/src/seed/manifest.ts:19 |
steps |
readonly |
readonly SeedManifestStep[] |
platform-utils/src/seed/manifest.ts:20 |
version |
readonly |
typeof SEED_MANIFEST_CONTRACT_VERSION |
platform-utils/src/seed/manifest.ts:18 |
SeedManifestStep
type SeedManifestStep = object;Defined in: platform-utils/src/seed/manifest.ts:9
Properties
| Property | Modifier | Type | Defined in |
|---|---|---|---|
collection |
readonly |
string |
platform-utils/src/seed/manifest.ts:11 |
dependsOn? |
readonly |
readonly SeedStepId[] |
platform-utils/src/seed/manifest.ts:12 |
id |
readonly |
SeedStepId |
platform-utils/src/seed/manifest.ts:10 |
payloads |
readonly |
readonly Record<string, unknown>[] |
platform-utils/src/seed/manifest.ts:13 |
Variables
SEED_MANIFEST_CONTRACT_VERSION
const SEED_MANIFEST_CONTRACT_VERSION: 1;Defined in: platform-utils/src/seed/manifest.ts:7
Functions
parseSeedManifest()
function parseSeedManifest(raw): SeedManifest;Defined in: platform-utils/src/seed/manifest.ts:23
Parameters
| Parameter | Type |
|---|---|
raw |
unknown |
Returns
seedManifestJson()
function seedManifestJson(manifest): string;Defined in: platform-utils/src/seed/manifest.ts:39
Parameters
| Parameter | Type |
|---|---|
manifest |
SeedManifest |
Returns
string