@tagma/sdk 0.4.8 → 0.4.9

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/src/schema.ts CHANGED
@@ -99,7 +99,6 @@ export function resolveConfig(raw: RawPipelineConfig, workDir: string): Pipeline
99
99
  continue_from: rawTask.continue_from
100
100
  ? qualifyContinueFrom(rawTask.continue_from, rawTrack.id)
101
101
  : undefined,
102
- output: rawTask.output,
103
102
  // Inheritance: Task > Track > Pipeline
104
103
  model: rawTask.model ?? rawTrack.model ?? raw.model,
105
104
  reasoning_effort: rawTask.reasoning_effort ?? rawTrack.reasoning_effort ?? raw.reasoning_effort,
@@ -224,7 +223,6 @@ export function deresolvePipeline(config: PipelineConfig, workDir: string): RawP
224
223
  ...(task.depends_on?.length ? { depends_on: task.depends_on } : {}),
225
224
  ...(task.trigger ? { trigger: task.trigger } : {}),
226
225
  ...(task.continue_from ? { continue_from: task.continue_from } : {}),
227
- ...(task.output ? { output: task.output } : {}),
228
226
  ...(taskCwdRel ? { cwd: taskCwdRel } : {}),
229
227
  ...(task.model && task.model !== effectiveTrackModel ? { model: task.model } : {}),
230
228
  ...(task.reasoning_effort && task.reasoning_effort !== effectiveTrackReasoning
package/src/sdk.ts CHANGED
@@ -29,8 +29,8 @@ export {
29
29
  export { validateRaw } from './validate-raw';
30
30
  export type { ValidationError } from './validate-raw';
31
31
 
32
- // ── Schema: parse / resolve / load / serialize / validate ──
33
- export { parseYaml, resolveConfig, loadPipeline, serializePipeline, deresolvePipeline, validateConfig } from './schema';
32
+ // ── Schema: parse / resolve / load / serialize / validate ──
33
+ export { parseYaml, resolveConfig, loadPipeline, serializePipeline, deresolvePipeline, validateConfig } from './schema';
34
34
 
35
35
  // ── DAG ──
36
36
  export { buildDag, buildRawDag } from './dag';
package/src/utils.ts CHANGED
@@ -33,7 +33,7 @@ export function validatePath(filePath: string, projectRoot: string): string {
33
33
  return resolved;
34
34
  }
35
35
 
36
- let runCounter = 0;
36
+ let runCounter = 0;
37
37
 
38
38
  export function generateRunId(): string {
39
39
  const ts = Date.now().toString(36);