-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathget_customers.ts
More file actions
117 lines (107 loc) · 2.94 KB
/
get_customers.ts
File metadata and controls
117 lines (107 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import type { JsmGetCustomersParams, JsmGetCustomersResponse } from '@/tools/jsm/types'
import type { ToolConfig } from '@/tools/types'
export const jsmGetCustomersTool: ToolConfig<JsmGetCustomersParams, JsmGetCustomersResponse> = {
id: 'jsm_get_customers',
name: 'JSM Get Customers',
description: 'Get customers for a service desk in Jira Service Management',
version: '1.0.0',
oauth: {
required: true,
provider: 'jira',
},
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',
},
serviceDeskId: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Service Desk ID to get customers for',
},
query: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Search query to filter customers',
},
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/customers',
method: 'POST',
headers: () => ({
'Content-Type': 'application/json',
}),
body: (params) => ({
domain: params.domain,
accessToken: params.accessToken,
cloudId: params.cloudId,
serviceDeskId: params.serviceDeskId,
query: params.query,
start: params.start,
limit: params.limit,
}),
},
transformResponse: async (response: Response) => {
const responseText = await response.text()
if (!responseText) {
return {
success: false,
output: {
ts: new Date().toISOString(),
customers: [],
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(),
customers: [],
total: 0,
isLastPage: true,
},
error: data.error,
}
},
outputs: {
ts: { type: 'string', description: 'Timestamp of the operation' },
customers: { type: 'json', description: 'Array of customers' },
total: { type: 'number', description: 'Total number of customers' },
isLastPage: { type: 'boolean', description: 'Whether this is the last page' },
},
}