mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-07 22:24:06 -05:00
118 lines
3.0 KiB
TypeScript
118 lines
3.0 KiB
TypeScript
import type { JsmGetParticipantsParams, JsmGetParticipantsResponse } from '@/tools/jsm/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const jsmGetParticipantsTool: ToolConfig<
|
|
JsmGetParticipantsParams,
|
|
JsmGetParticipantsResponse
|
|
> = {
|
|
id: 'jsm_get_participants',
|
|
name: 'JSM Get Participants',
|
|
description: 'Get participants for a request in Jira Service Management',
|
|
version: '1.0.0',
|
|
|
|
oauth: {
|
|
required: true,
|
|
provider: 'jira-service-management',
|
|
},
|
|
|
|
params: {
|
|
accessToken: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'hidden',
|
|
description: 'OAuth access token for Jira Service Management',
|
|
},
|
|
domain: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Your Jira domain (e.g., yourcompany.atlassian.net)',
|
|
},
|
|
cloudId: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'hidden',
|
|
description: 'Jira Cloud ID for the instance',
|
|
},
|
|
issueIdOrKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'Issue ID or key (e.g., SD-123)',
|
|
},
|
|
start: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Start index for pagination (default: 0)',
|
|
},
|
|
limit: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Maximum results to return (default: 50)',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: '/api/tools/jsm/participants',
|
|
method: 'POST',
|
|
headers: () => ({
|
|
'Content-Type': 'application/json',
|
|
}),
|
|
body: (params) => ({
|
|
domain: params.domain,
|
|
accessToken: params.accessToken,
|
|
cloudId: params.cloudId,
|
|
issueIdOrKey: params.issueIdOrKey,
|
|
start: params.start,
|
|
limit: params.limit,
|
|
action: 'get',
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const responseText = await response.text()
|
|
|
|
if (!responseText) {
|
|
return {
|
|
success: false,
|
|
output: {
|
|
ts: new Date().toISOString(),
|
|
issueIdOrKey: '',
|
|
participants: [],
|
|
total: 0,
|
|
isLastPage: true,
|
|
},
|
|
error: 'Empty response from API',
|
|
}
|
|
}
|
|
|
|
const data = JSON.parse(responseText)
|
|
|
|
if (data.success && data.output) {
|
|
return data
|
|
}
|
|
|
|
return {
|
|
success: data.success || false,
|
|
output: data.output || {
|
|
ts: new Date().toISOString(),
|
|
issueIdOrKey: '',
|
|
participants: [],
|
|
total: 0,
|
|
isLastPage: true,
|
|
},
|
|
error: data.error,
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
ts: { type: 'string', description: 'Timestamp of the operation' },
|
|
issueIdOrKey: { type: 'string', description: 'Issue ID or key' },
|
|
participants: { type: 'json', description: 'Array of participants' },
|
|
total: { type: 'number', description: 'Total number of participants' },
|
|
isLastPage: { type: 'boolean', description: 'Whether this is the last page' },
|
|
},
|
|
}
|