rulvar API reference / @rulvar/rulvar / RunMeta
Type Alias: RunMeta
ts
type RunMeta = {
hashVersionHigh?: number;
hashVersionLow?: number;
name?: string;
runId: string;
status: string;
tags?: string[];
updatedAt: string;
workflowHash?: string;
workflowName?: string;
workflowSourceRef?: string;
};Defined in: packages/core/dist/index.d.ts
Run-level metadata written by the ENGINE via putMeta as a separate record, so listRuns never parses payloads. The hashVersion range fields are advisory only; the journal is authoritative.
Properties
hashVersionHigh?
ts
optional hashVersionHigh?: number;Defined in: packages/core/dist/index.d.ts
hashVersionLow?
ts
optional hashVersionLow?: number;Defined in: packages/core/dist/index.d.ts
name?
ts
optional name?: string;Defined in: packages/core/dist/index.d.ts
runId
ts
runId: string;Defined in: packages/core/dist/index.d.ts
status
ts
status: string;Defined in: packages/core/dist/index.d.ts
tags?
ts
optional tags?: string[];Defined in: packages/core/dist/index.d.ts
updatedAt
ts
updatedAt: string;Defined in: packages/core/dist/index.d.ts
workflowHash?
ts
optional workflowHash?: string;Defined in: packages/core/dist/index.d.ts
workflowName?
ts
optional workflowName?: string;Defined in: packages/core/dist/index.d.ts
workflowSourceRef?
ts
optional workflowSourceRef?: string;Defined in: packages/core/dist/index.d.ts