@lucern/events 1.0.1 → 1.0.2

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/dist/outbox.js CHANGED
@@ -14295,7 +14295,7 @@ var worktreeMetadataArgs = z.object({
14295
14295
  id: z.string().optional().describe("Worktree ID alias."),
14296
14296
  topicId: z.string().optional().describe("Primary topic scope."),
14297
14297
  additionalTopicIds: z.array(z.string()).optional().describe("Additional topic scopes associated with this worktree."),
14298
- status: z.string().optional().describe("Worktree lifecycle status."),
14298
+ status: z.enum(["planning", "active", "paused", "completed", "dismissed", "abandoned", "merged"]).optional().describe("Worktree lifecycle status."),
14299
14299
  campaign: z.number().optional().describe("Top-level pipeline campaign."),
14300
14300
  lane: z.string().optional().describe("Campaign lane."),
14301
14301
  laneOrderInCampaign: z.number().optional().describe("Ordering for this lane within its campaign."),