@rudderhq/cli 0.3.3-canary.5 → 0.3.3-canary.6
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 +4 -1
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1649,7 +1649,7 @@ var init_project = __esm({
|
|
|
1649
1649
|
|
|
1650
1650
|
// ../packages/shared/dist/validators/issue.js
|
|
1651
1651
|
import { z as z14 } from "zod";
|
|
1652
|
-
var executionWorkspaceStrategySchema2, issueExecutionWorkspaceSettingsSchema, issueAssigneeAdapterOverridesSchema, createIssueSchema, createIssueLabelSchema, updateIssueLabelSchema, updateIssueSchema, reorderIssueSchema, checkoutIssueSchema, addIssueCommentSchema, reportIssueCommitSchema, linkIssueApprovalSchema, createIssueAttachmentMetadataSchema, createIssueWorkspaceAttachmentSchema, ISSUE_DOCUMENT_FORMATS, issueDocumentFormatSchema, issueDocumentKeySchema, upsertIssueDocumentSchema, createLibraryDocumentSchema, updateLibraryDocumentSchema, restoreLibraryDocumentRevisionSchema;
|
|
1652
|
+
var executionWorkspaceStrategySchema2, issueExecutionWorkspaceSettingsSchema, issueAssigneeAdapterOverridesSchema, createIssueSchema, createIssueLabelSchema, updateIssueLabelSchema, updateIssueSchema, reorderIssueSchema, checkoutIssueSchema, addIssueCommentSchema, updateIssueCommentSchema, reportIssueCommitSchema, linkIssueApprovalSchema, createIssueAttachmentMetadataSchema, createIssueWorkspaceAttachmentSchema, ISSUE_DOCUMENT_FORMATS, issueDocumentFormatSchema, issueDocumentKeySchema, upsertIssueDocumentSchema, createLibraryDocumentSchema, updateLibraryDocumentSchema, restoreLibraryDocumentRevisionSchema;
|
|
1653
1653
|
var init_issue = __esm({
|
|
1654
1654
|
"../packages/shared/dist/validators/issue.js"() {
|
|
1655
1655
|
"use strict";
|
|
@@ -1730,6 +1730,9 @@ var init_issue = __esm({
|
|
|
1730
1730
|
reopen: z14.boolean().optional(),
|
|
1731
1731
|
interrupt: z14.boolean().optional()
|
|
1732
1732
|
});
|
|
1733
|
+
updateIssueCommentSchema = z14.object({
|
|
1734
|
+
body: z14.string().trim().min(1)
|
|
1735
|
+
});
|
|
1733
1736
|
reportIssueCommitSchema = z14.object({
|
|
1734
1737
|
sha: z14.string().trim().regex(/^[0-9a-f]{7,64}$/i, "Commit SHA must be 7 to 64 hexadecimal characters"),
|
|
1735
1738
|
message: z14.string().trim().min(1).max(500),
|