@rudderhq/cli 0.2.10-canary.7 → 0.2.10-canary.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/dist/index.js CHANGED
@@ -877,6 +877,7 @@ var init_chat = __esm({
877
877
  chatIssueProposalSchema = z8.object({
878
878
  title: z8.string().trim().min(1).max(200),
879
879
  description: z8.string().trim().min(1).max(2e4),
880
+ status: z8.enum(ISSUE_STATUSES).optional().default("todo"),
880
881
  priority: z8.enum(["critical", "high", "medium", "low"]).optional().default("medium"),
881
882
  projectId: z8.string().uuid().optional().nullable(),
882
883
  goalId: z8.string().uuid().optional().nullable(),