FlowMetadata interface exported
Last updated: 2026-03-05T10:53:28.859Z
Location
Metrics
LOC: 18
Complexity: 1
Params: 0
Signature
interface FlowMetadata
Summary
Metadata describing a FlowScript
Source Code
export interface FlowMetadata {
/** Human-readable name */
name: string;
/** Optional description */
description?: string;
/** Base URL where the flow was recorded */
baseUrl: string;
/** Seed string for deterministic PRNG */
seed: string;
/** When the flow was created (epoch ms) */
createdAt: number;
/** When the flow was last updated (epoch ms) */
updatedAt: number;
/** Schema version for forward-compatibility */
version: number;
/** Tags for categorisation */
tags?: string[];
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| parseFlowScript | uses |
| isValidFieldType | uses |