@schoolai/shipyard 3.10.0-rc.20260609.0 → 3.10.0

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.
@@ -669,7 +669,14 @@ var ParticipantSchema = external_exports.object({
669
669
  });
670
670
  var TextBlockSchema = external_exports.object({
671
671
  type: external_exports.literal("text"),
672
- text: external_exports.string()
672
+ text: external_exports.string(),
673
+ /**
674
+ * Set when this block belongs to a sub-agent (Task tool) turn — the parent
675
+ * Task tool_use id from the SDK. Drives `skipForMainChannel` suppression so
676
+ * a sub-agent's prose does not leak into the main channel. Additive/optional:
677
+ * older persisted blocks and main-agent turns omit it (null/undefined).
678
+ */
679
+ parentToolUseId: external_exports.string().nullable().optional()
673
680
  });
674
681
  var ToolUseBlockSchema = external_exports.object({
675
682
  type: external_exports.literal("tool_use"),
@@ -693,7 +700,9 @@ var ThinkingBlockSchema = external_exports.object({
693
700
  * `SDKThinkingMessage.thinking_duration_ms`). Additive/optional — older
694
701
  * persisted blocks and runtimes that don't report duration omit it.
695
702
  */
696
- durationMs: external_exports.number().optional()
703
+ durationMs: external_exports.number().optional(),
704
+ /** See `TextBlockSchema.parentToolUseId` — sub-agent suppression key. */
705
+ parentToolUseId: external_exports.string().nullable().optional()
697
706
  });
698
707
  var diffCommentSides = ["original", "modified"];
699
708
  var DiffReviewCommentSchema = external_exports.object({
@@ -27919,4 +27928,4 @@ export {
27919
27928
  toRecord,
27920
27929
  buildCursorUserPrompt
27921
27930
  };
27922
- //# sourceMappingURL=chunk-WMOR5Q6C.js.map
27931
+ //# sourceMappingURL=chunk-VKCGK333.js.map