@rudderhq/cli 0.1.0-canary.20 → 0.1.0-canary.21
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 +2 -0
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -113,6 +113,7 @@ var init_constants = __esm({
|
|
|
113
113
|
"issue_proposal",
|
|
114
114
|
"operation_proposal",
|
|
115
115
|
"routing_suggestion",
|
|
116
|
+
"user_input_request",
|
|
116
117
|
"system_event"
|
|
117
118
|
];
|
|
118
119
|
CHAT_MESSAGE_STATUSES = ["completed", "stopped", "failed"];
|
|
@@ -689,6 +690,7 @@ var init_chat = __esm({
|
|
|
689
690
|
title: z6.string().trim().min(1).max(200),
|
|
690
691
|
description: z6.string().trim().min(1).max(2e4),
|
|
691
692
|
priority: z6.enum(["critical", "high", "medium", "low"]).optional().default("medium"),
|
|
693
|
+
status: z6.enum(ISSUE_STATUSES).optional(),
|
|
692
694
|
projectId: z6.string().uuid().optional().nullable(),
|
|
693
695
|
goalId: z6.string().uuid().optional().nullable(),
|
|
694
696
|
parentId: z6.string().uuid().optional().nullable(),
|