mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-09 22:25:33 -05:00
finished jira
This commit is contained in:
@@ -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`
|
||||
|
||||
|
||||
@@ -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' },
|
||||
},
|
||||
{
|
||||
|
||||
@@ -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 ?? '',
|
||||
|
||||
@@ -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>
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user