infra-kit 0.1.51 → 0.1.53
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/.env.example +4 -0
- package/dist/cli.js +14 -12
- package/dist/cli.js.map +4 -4
- package/dist/mcp.js +14 -12
- package/dist/mcp.js.map +4 -4
- package/package.json +1 -1
- package/src/commands/gh-release-create/gh-release-create.ts +19 -74
- package/src/commands/gh-release-deliver/gh-release-deliver.ts +26 -2
- package/src/commands/gh-release-deploy/gh-release-deploy.ts +1 -1
- package/src/commands/worktrees-add/worktrees-add.ts +1 -1
- package/src/commands/worktrees-sync/worktrees-sync.ts +1 -1
- package/src/entry/cli.ts +1 -2
- package/src/entry/mcp.ts +1 -2
- package/src/integrations/gh/gh-release-prs/gh-release-prs.ts +31 -0
- package/src/integrations/gh/gh-release-prs/index.ts +1 -1
- package/src/integrations/gh/index.ts +1 -1
- package/src/integrations/jira/api.ts +239 -43
- package/src/integrations/jira/index.ts +5 -1
- package/src/integrations/jira/types.ts +30 -3
|
@@ -48,11 +48,38 @@ export interface JiraConfig {
|
|
|
48
48
|
/** Jira project ID */
|
|
49
49
|
projectId: number
|
|
50
50
|
/** Email associated with Jira account (for Basic Auth) */
|
|
51
|
-
email
|
|
51
|
+
email: string
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
export interface CreateJiraVersionResult {
|
|
55
55
|
success: boolean
|
|
56
|
-
version
|
|
57
|
-
|
|
56
|
+
version: JiraVersion
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface UpdateJiraVersionParams {
|
|
60
|
+
/** ID of the version to update */
|
|
61
|
+
versionId: string
|
|
62
|
+
/** Whether the version is released */
|
|
63
|
+
released?: boolean
|
|
64
|
+
/** Release date in ISO format (YYYY-MM-DD) */
|
|
65
|
+
releaseDate?: string
|
|
66
|
+
/** Description of the version */
|
|
67
|
+
description?: string
|
|
68
|
+
/** Whether the version is archived */
|
|
69
|
+
archived?: boolean
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface UpdateJiraVersionResult {
|
|
73
|
+
success: boolean
|
|
74
|
+
version: JiraVersion
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface DeliverJiraReleaseParams {
|
|
78
|
+
/** Name of the version to deliver (e.g., "v1.33.10") */
|
|
79
|
+
versionName: string
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface DeliverJiraReleaseResult {
|
|
83
|
+
success: boolean
|
|
84
|
+
version: JiraVersion
|
|
58
85
|
}
|