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.
@@ -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?: string
51
+ email: string
52
52
  }
53
53
 
54
54
  export interface CreateJiraVersionResult {
55
55
  success: boolean
56
- version?: JiraVersion
57
- error?: string
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
  }