@apteva/integrations 0.15.10 → 0.15.12

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.
Files changed (54) hide show
  1. package/dist/http-executor.d.ts.map +1 -1
  2. package/dist/http-executor.js +144 -8
  3. package/dist/http-executor.js.map +1 -1
  4. package/dist/mcp-generator.js +24 -0
  5. package/dist/mcp-generator.js.map +1 -1
  6. package/dist/types.d.ts +7 -0
  7. package/dist/types.d.ts.map +1 -1
  8. package/package.json +1 -1
  9. package/src/apps/anthropic-admin.json +183 -0
  10. package/src/apps/aws-ses.json +1 -1
  11. package/src/apps/braintree.json +53 -0
  12. package/src/apps/bunny-stream.json +50 -28
  13. package/src/apps/ccbill.json +142 -0
  14. package/src/apps/close.json +238 -301
  15. package/src/apps/craftcloud.json +251 -202
  16. package/src/apps/dataforseo.json +1700 -2
  17. package/src/apps/deepgram.json +288 -1
  18. package/src/apps/elevenlabs.json +9 -0
  19. package/src/apps/fal-ai.json +278 -290
  20. package/src/apps/gladia.json +158 -0
  21. package/src/apps/gmail.json +2 -5
  22. package/src/apps/gumroad.json +569 -0
  23. package/src/apps/imaterialise.json +171 -262
  24. package/src/apps/jlcpcb.json +43 -0
  25. package/src/apps/jungle-scout.json +166 -0
  26. package/src/apps/kling-ai.json +197 -161
  27. package/src/apps/ko-fi.json +34 -0
  28. package/src/apps/leadbyte.json +16 -54
  29. package/src/apps/lemon-squeezy.json +270 -0
  30. package/src/apps/mollie.json +219 -0
  31. package/src/apps/paddle.json +199 -9
  32. package/src/apps/payhip.json +162 -0
  33. package/src/apps/paystack.json +207 -0
  34. package/src/apps/pipedrive.json +221 -212
  35. package/src/apps/razorpay.json +207 -0
  36. package/src/apps/replicate.json +315 -61
  37. package/src/apps/ringover.json +69 -0
  38. package/src/apps/runpod.json +727 -0
  39. package/src/apps/runway.json +386 -0
  40. package/src/apps/salesforce-crm.json +192 -233
  41. package/src/apps/sculpteo.json +98 -180
  42. package/src/apps/segpay.json +215 -0
  43. package/src/apps/shapeways.json +114 -136
  44. package/src/apps/slant3d.json +260 -168
  45. package/src/apps/soniox.json +194 -0
  46. package/src/apps/speechmatics.json +167 -0
  47. package/src/apps/stability-ai.json +356 -0
  48. package/src/apps/stripe.json +1 -0
  49. package/src/apps/surfer.json +511 -0
  50. package/src/apps/twitter-api.json +19 -21
  51. package/src/apps/verotel.json +124 -0
  52. package/src/apps/whop.json +364 -0
  53. package/src/apps/zendesk-sell.json +248 -0
  54. package/src/apps/zendesk.json +190 -259
@@ -0,0 +1,248 @@
1
+ {
2
+ "slug": "zendesk-sell",
3
+ "name": "Zendesk Sell",
4
+ "description": "Zendesk Sell CRM API for leads, contacts, deals, tasks, notes, pipelines, stages, users, sources, loss reasons, and custom fields.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=zendesk.com&sz=128",
6
+ "categories": ["crm", "zendesk", "sell", "deals", "sales"],
7
+ "base_url": "https://api.getbase.com/v2",
8
+ "auth": {
9
+ "types": ["bearer"],
10
+ "headers": {
11
+ "Authorization": "Bearer {{token}}"
12
+ },
13
+ "credential_fields": [
14
+ {
15
+ "name": "token",
16
+ "label": "Access Token",
17
+ "type": "password",
18
+ "description": "Zendesk Sell OAuth access token or personal access token with CRM permissions."
19
+ }
20
+ ]
21
+ },
22
+ "health_check": {
23
+ "tool": "list_users"
24
+ },
25
+ "tools": [
26
+ {
27
+ "name": "list_leads",
28
+ "description": "List Zendesk Sell leads.",
29
+ "method": "GET",
30
+ "path": "/leads",
31
+ "query_params": ["page", "per_page", "sort_by", "sort_order", "ids", "email", "phone", "name", "query", "owner_id", "creator_id", "status"],
32
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "ids": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "name": {"type": "string"}, "query": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "status": {"type": "string"}}}
33
+ },
34
+ {
35
+ "name": "get_lead",
36
+ "description": "Get one Zendesk Sell lead by ID.",
37
+ "method": "GET",
38
+ "path": "/leads/{leadId}",
39
+ "path_params": ["leadId"],
40
+ "input_schema": {"type": "object", "properties": {"leadId": {"type": "number"}}, "required": ["leadId"]}
41
+ },
42
+ {
43
+ "name": "create_lead",
44
+ "description": "Create a lead. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
45
+ "method": "POST",
46
+ "path": "/leads",
47
+ "body_root_param": "body",
48
+ "input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
49
+ },
50
+ {
51
+ "name": "update_lead",
52
+ "description": "Update a lead. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
53
+ "method": "PUT",
54
+ "path": "/leads/{leadId}",
55
+ "path_params": ["leadId"],
56
+ "body_root_param": "body",
57
+ "input_schema": {"type": "object", "properties": {"leadId": {"type": "number"}, "body": {"type": "object"}}, "required": ["leadId", "body"]}
58
+ },
59
+ {
60
+ "name": "delete_lead",
61
+ "description": "Delete one lead by ID.",
62
+ "method": "DELETE",
63
+ "path": "/leads/{leadId}",
64
+ "path_params": ["leadId"],
65
+ "input_schema": {"type": "object", "properties": {"leadId": {"type": "number"}}, "required": ["leadId"]}
66
+ },
67
+ {
68
+ "name": "list_contacts",
69
+ "description": "List Zendesk Sell contacts, including people and companies.",
70
+ "method": "GET",
71
+ "path": "/contacts",
72
+ "query_params": ["page", "per_page", "sort_by", "sort_order", "ids", "email", "phone", "name", "query", "owner_id", "creator_id", "is_organization"],
73
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "ids": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "name": {"type": "string"}, "query": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "is_organization": {"type": "boolean"}}}
74
+ },
75
+ {
76
+ "name": "get_contact",
77
+ "description": "Get one contact by ID.",
78
+ "method": "GET",
79
+ "path": "/contacts/{contactId}",
80
+ "path_params": ["contactId"],
81
+ "input_schema": {"type": "object", "properties": {"contactId": {"type": "number"}}, "required": ["contactId"]}
82
+ },
83
+ {
84
+ "name": "create_contact",
85
+ "description": "Create a contact. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
86
+ "method": "POST",
87
+ "path": "/contacts",
88
+ "body_root_param": "body",
89
+ "input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
90
+ },
91
+ {
92
+ "name": "update_contact",
93
+ "description": "Update a contact. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
94
+ "method": "PUT",
95
+ "path": "/contacts/{contactId}",
96
+ "path_params": ["contactId"],
97
+ "body_root_param": "body",
98
+ "input_schema": {"type": "object", "properties": {"contactId": {"type": "number"}, "body": {"type": "object"}}, "required": ["contactId", "body"]}
99
+ },
100
+ {
101
+ "name": "delete_contact",
102
+ "description": "Delete one contact by ID.",
103
+ "method": "DELETE",
104
+ "path": "/contacts/{contactId}",
105
+ "path_params": ["contactId"],
106
+ "input_schema": {"type": "object", "properties": {"contactId": {"type": "number"}}, "required": ["contactId"]}
107
+ },
108
+ {
109
+ "name": "list_deals",
110
+ "description": "List Zendesk Sell deals.",
111
+ "method": "GET",
112
+ "path": "/deals",
113
+ "query_params": ["page", "per_page", "sort_by", "sort_order", "ids", "name", "query", "owner_id", "creator_id", "contact_id", "organization_id", "pipeline_id", "stage_id", "status"],
114
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "ids": {"type": "string"}, "name": {"type": "string"}, "query": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "contact_id": {"type": "number"}, "organization_id": {"type": "number"}, "pipeline_id": {"type": "number"}, "stage_id": {"type": "number"}, "status": {"type": "string"}}}
115
+ },
116
+ {
117
+ "name": "get_deal",
118
+ "description": "Get one deal by ID.",
119
+ "method": "GET",
120
+ "path": "/deals/{dealId}",
121
+ "path_params": ["dealId"],
122
+ "input_schema": {"type": "object", "properties": {"dealId": {"type": "number"}}, "required": ["dealId"]}
123
+ },
124
+ {
125
+ "name": "create_deal",
126
+ "description": "Create a deal. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
127
+ "method": "POST",
128
+ "path": "/deals",
129
+ "body_root_param": "body",
130
+ "input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
131
+ },
132
+ {
133
+ "name": "update_deal",
134
+ "description": "Update a deal. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
135
+ "method": "PUT",
136
+ "path": "/deals/{dealId}",
137
+ "path_params": ["dealId"],
138
+ "body_root_param": "body",
139
+ "input_schema": {"type": "object", "properties": {"dealId": {"type": "number"}, "body": {"type": "object"}}, "required": ["dealId", "body"]}
140
+ },
141
+ {
142
+ "name": "delete_deal",
143
+ "description": "Delete one deal by ID.",
144
+ "method": "DELETE",
145
+ "path": "/deals/{dealId}",
146
+ "path_params": ["dealId"],
147
+ "input_schema": {"type": "object", "properties": {"dealId": {"type": "number"}}, "required": ["dealId"]}
148
+ },
149
+ {
150
+ "name": "list_tasks",
151
+ "description": "List Zendesk Sell tasks.",
152
+ "method": "GET",
153
+ "path": "/tasks",
154
+ "query_params": ["page", "per_page", "sort_by", "sort_order", "ids", "owner_id", "creator_id", "lead_id", "contact_id", "deal_id", "completed"],
155
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "ids": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "lead_id": {"type": "number"}, "contact_id": {"type": "number"}, "deal_id": {"type": "number"}, "completed": {"type": "boolean"}}}
156
+ },
157
+ {
158
+ "name": "create_task",
159
+ "description": "Create a task. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
160
+ "method": "POST",
161
+ "path": "/tasks",
162
+ "body_root_param": "body",
163
+ "input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
164
+ },
165
+ {
166
+ "name": "update_task",
167
+ "description": "Update a task. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
168
+ "method": "PUT",
169
+ "path": "/tasks/{taskId}",
170
+ "path_params": ["taskId"],
171
+ "body_root_param": "body",
172
+ "input_schema": {"type": "object", "properties": {"taskId": {"type": "number"}, "body": {"type": "object"}}, "required": ["taskId", "body"]}
173
+ },
174
+ {
175
+ "name": "delete_task",
176
+ "description": "Delete one task by ID.",
177
+ "method": "DELETE",
178
+ "path": "/tasks/{taskId}",
179
+ "path_params": ["taskId"],
180
+ "input_schema": {"type": "object", "properties": {"taskId": {"type": "number"}}, "required": ["taskId"]}
181
+ },
182
+ {
183
+ "name": "list_notes",
184
+ "description": "List notes, optionally filtered by lead, contact, deal, or owner.",
185
+ "method": "GET",
186
+ "path": "/notes",
187
+ "query_params": ["page", "per_page", "sort_by", "sort_order", "owner_id", "creator_id", "lead_id", "contact_id", "deal_id"],
188
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "sort_by": {"type": "string"}, "sort_order": {"type": "string"}, "owner_id": {"type": "number"}, "creator_id": {"type": "number"}, "lead_id": {"type": "number"}, "contact_id": {"type": "number"}, "deal_id": {"type": "number"}}}
189
+ },
190
+ {
191
+ "name": "create_note",
192
+ "description": "Create a note. Pass body as the Zendesk Sell payload, normally {\"data\":{...}}.",
193
+ "method": "POST",
194
+ "path": "/notes",
195
+ "body_root_param": "body",
196
+ "input_schema": {"type": "object", "properties": {"body": {"type": "object"}}, "required": ["body"]}
197
+ },
198
+ {
199
+ "name": "list_pipelines",
200
+ "description": "List pipelines.",
201
+ "method": "GET",
202
+ "path": "/pipelines",
203
+ "query_params": ["page", "per_page"],
204
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
205
+ },
206
+ {
207
+ "name": "list_stages",
208
+ "description": "List stages, optionally filtered by pipeline.",
209
+ "method": "GET",
210
+ "path": "/stages",
211
+ "query_params": ["page", "per_page", "pipeline_id"],
212
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}, "pipeline_id": {"type": "number"}}}
213
+ },
214
+ {
215
+ "name": "list_users",
216
+ "description": "List Zendesk Sell users.",
217
+ "method": "GET",
218
+ "path": "/users",
219
+ "query_params": ["page", "per_page"],
220
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
221
+ },
222
+ {
223
+ "name": "list_sources",
224
+ "description": "List lead/deal sources.",
225
+ "method": "GET",
226
+ "path": "/sources",
227
+ "query_params": ["page", "per_page"],
228
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
229
+ },
230
+ {
231
+ "name": "list_loss_reasons",
232
+ "description": "List configured deal loss reasons.",
233
+ "method": "GET",
234
+ "path": "/loss_reasons",
235
+ "query_params": ["page", "per_page"],
236
+ "input_schema": {"type": "object", "properties": {"page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}}
237
+ },
238
+ {
239
+ "name": "list_custom_fields",
240
+ "description": "List custom fields for a resource type, for example leads, contacts, deals, tasks, or notes.",
241
+ "method": "GET",
242
+ "path": "/custom_fields/{resource}",
243
+ "path_params": ["resource"],
244
+ "query_params": ["page", "per_page"],
245
+ "input_schema": {"type": "object", "properties": {"resource": {"type": "string"}, "page": {"type": "number"}, "per_page": {"type": "number", "default": 100}}, "required": ["resource"]}
246
+ }
247
+ ]
248
+ }