finished jira

This commit is contained in:
waleed
2026-02-09 16:35:00 -08:00
parent cc7c23d594
commit e60e5157de
4 changed files with 4 additions and 1 deletions

View File

@@ -226,6 +226,7 @@ Retrieve detailed information about a specific Jira issue
| ↳ `avatarUrl` | string | URL to the user avatar \(48x48\) |
| ↳ `timeZone` | string | User timezone |
| ↳ `created` | string | ISO 8601 timestamp when the attachment was created |
| `issueKey` | string | Issue key \(e.g., PROJ-123\) |
### `jira_update`

View File

@@ -331,7 +331,7 @@ Return ONLY the comment text - no explanations.`,
{ label: 'Open', id: 'OPEN_REQUESTS' },
{ label: 'Closed', id: 'CLOSED_REQUESTS' },
],
value: () => 'ALL',
value: () => 'ALL_REQUESTS',
condition: { field: 'operation', value: 'get_requests' },
},
{

View File

@@ -13,6 +13,7 @@ function transformIssueData(data: any) {
const fields = data?.fields ?? {}
return {
id: data?.id ?? '',
issueKey: data?.key ?? '',
key: data?.key ?? '',
self: data?.self ?? '',
summary: fields.summary ?? '',

View File

@@ -615,6 +615,7 @@ export const ISSUE_ITEM_PROPERTIES = {
},
optional: true,
},
issueKey: { type: 'string', description: 'Issue key (e.g., PROJ-123)' },
} as const satisfies Record<string, OutputProperty>
/**