FlowMetadata interface exported

Last updated: 2026-03-05T10:53:28.859Z

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)

graph LR FlowMetadata["FlowMetadata"] parseFlowScript["parseFlowScript"] isValidFieldType["isValidFieldType"] parseFlowScript -->|uses| FlowMetadata isValidFieldType -->|uses| FlowMetadata style FlowMetadata fill:#dbeafe,stroke:#2563eb,stroke-width:2px click FlowMetadata "7d431af192375aa6.html" click parseFlowScript "010c355825278e12.html" click isValidFieldType "a95b73445027ba7e.html"
SourceType
parseFlowScript uses
isValidFieldType uses