veryfront 0.1.260 → 0.1.261
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.
- package/esm/cli/templates/manifest.d.ts +473 -473
- package/esm/cli/templates/manifest.js +521 -521
- package/esm/deno.js +1 -1
- package/esm/src/agent/ag-ui-runtime-chat-stream-encoder.d.ts +17 -0
- package/esm/src/agent/ag-ui-runtime-chat-stream-encoder.d.ts.map +1 -0
- package/esm/src/agent/ag-ui-runtime-chat-stream-encoder.js +304 -0
- package/esm/src/agent/index.d.ts +1 -0
- package/esm/src/agent/index.d.ts.map +1 -1
- package/esm/src/agent/index.js +1 -0
- package/esm/src/server/dev-ui/manifest.d.ts +17 -17
- package/esm/src/server/dev-ui/manifest.js +17 -17
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/cli/templates/manifest.js +521 -521
- package/src/deno.js +1 -1
- package/src/src/agent/ag-ui-runtime-chat-stream-encoder.ts +359 -0
- package/src/src/agent/index.ts +6 -0
- package/src/src/server/dev-ui/manifest.js +17 -17
- package/src/src/utils/version-constant.ts +1 -1
|
@@ -1,724 +1,724 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
2
|
let version: number;
|
|
3
3
|
let templates: {
|
|
4
|
-
"
|
|
4
|
+
"saas-starter": {
|
|
5
5
|
files: {
|
|
6
|
+
"tsconfig.json": string;
|
|
6
7
|
"README.md": string;
|
|
7
|
-
"tools/web-search.ts": string;
|
|
8
|
-
"agents/orchestrator.ts": string;
|
|
9
|
-
"agents/writer.ts": string;
|
|
10
|
-
"agents/researcher.ts": string;
|
|
11
8
|
"globals.css": string;
|
|
12
|
-
"
|
|
9
|
+
"tools/search.ts": string;
|
|
10
|
+
"agents/assistant.ts": string;
|
|
11
|
+
"app/login/page.tsx": string;
|
|
12
|
+
"app/dashboard/page.tsx": string;
|
|
13
13
|
"app/layout.tsx": string;
|
|
14
14
|
"app/api/chat/route.ts": string;
|
|
15
|
-
"
|
|
15
|
+
"app/page.tsx": string;
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
|
-
"
|
|
18
|
+
"coding-agent": {
|
|
19
19
|
files: {
|
|
20
|
+
"tsconfig.json": string;
|
|
20
21
|
"README.md": string;
|
|
21
|
-
"tools/calculator.ts": string;
|
|
22
|
-
"agents/assistant.ts": string;
|
|
23
22
|
"globals.css": string;
|
|
24
|
-
"
|
|
23
|
+
"tools/list-files.ts": string;
|
|
24
|
+
"tools/read-file.ts": string;
|
|
25
|
+
"tools/edit-file.ts": string;
|
|
26
|
+
"agents/coder.ts": string;
|
|
25
27
|
"app/layout.tsx": string;
|
|
26
28
|
"app/api/chat/route.ts": string;
|
|
27
|
-
"
|
|
29
|
+
"app/page.tsx": string;
|
|
28
30
|
};
|
|
29
31
|
};
|
|
30
|
-
"
|
|
32
|
+
"ai-agent": {
|
|
31
33
|
files: {
|
|
34
|
+
"tsconfig.json": string;
|
|
32
35
|
"README.md": string;
|
|
33
|
-
"tools/edit-file.ts": string;
|
|
34
|
-
"tools/read-file.ts": string;
|
|
35
|
-
"tools/list-files.ts": string;
|
|
36
|
-
"agents/coder.ts": string;
|
|
37
36
|
"globals.css": string;
|
|
38
|
-
"
|
|
37
|
+
"tools/calculator.ts": string;
|
|
38
|
+
"agents/assistant.ts": string;
|
|
39
39
|
"app/layout.tsx": string;
|
|
40
40
|
"app/api/chat/route.ts": string;
|
|
41
|
-
"
|
|
41
|
+
"app/page.tsx": string;
|
|
42
42
|
};
|
|
43
43
|
};
|
|
44
44
|
minimal: {
|
|
45
45
|
files: {
|
|
46
46
|
"README.md": string;
|
|
47
|
-
"app/page.tsx": string;
|
|
48
47
|
"app/layout.tsx": string;
|
|
48
|
+
"app/page.tsx": string;
|
|
49
49
|
"app/about/page.mdx": string;
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
"agentic-workflow": {
|
|
53
53
|
files: {
|
|
54
|
+
"workflows/content-pipeline.ts": string;
|
|
55
|
+
"tsconfig.json": string;
|
|
54
56
|
"README.md": string;
|
|
57
|
+
"globals.css": string;
|
|
55
58
|
"agents/writer.ts": string;
|
|
56
59
|
"agents/researcher.ts": string;
|
|
57
|
-
"globals.css": string;
|
|
58
|
-
"app/page.tsx": string;
|
|
59
|
-
"app/layout.tsx": string;
|
|
60
60
|
"app/workflows/[id]/page.tsx": string;
|
|
61
|
-
"
|
|
62
|
-
"
|
|
61
|
+
"app/layout.tsx": string;
|
|
62
|
+
"app/page.tsx": string;
|
|
63
63
|
};
|
|
64
64
|
};
|
|
65
|
-
"
|
|
65
|
+
"multi-agent-system": {
|
|
66
66
|
files: {
|
|
67
|
+
"tsconfig.json": string;
|
|
67
68
|
"README.md": string;
|
|
68
|
-
"tools/search.ts": string;
|
|
69
|
-
"agents/assistant.ts": string;
|
|
70
69
|
"globals.css": string;
|
|
71
|
-
"
|
|
70
|
+
"tools/web-search.ts": string;
|
|
71
|
+
"agents/writer.ts": string;
|
|
72
|
+
"agents/orchestrator.ts": string;
|
|
73
|
+
"agents/researcher.ts": string;
|
|
72
74
|
"app/layout.tsx": string;
|
|
73
|
-
"app/login/page.tsx": string;
|
|
74
75
|
"app/api/chat/route.ts": string;
|
|
75
|
-
"app/
|
|
76
|
-
"tsconfig.json": string;
|
|
76
|
+
"app/page.tsx": string;
|
|
77
77
|
};
|
|
78
78
|
};
|
|
79
79
|
"docs-agent": {
|
|
80
80
|
files: {
|
|
81
|
-
"
|
|
82
|
-
"agents/rag.ts": string;
|
|
83
|
-
"content/architecture.md": string;
|
|
81
|
+
"tsconfig.json": string;
|
|
84
82
|
"content/getting-started.md": string;
|
|
83
|
+
"content/architecture.md": string;
|
|
84
|
+
"README.md": string;
|
|
85
85
|
"globals.css": string;
|
|
86
|
-
"
|
|
86
|
+
"agents/rag.ts": string;
|
|
87
87
|
"app/layout.tsx": string;
|
|
88
|
+
"app/api/chat/route.ts": string;
|
|
88
89
|
"app/api/uploads/route.ts": string;
|
|
89
90
|
"app/api/uploads/[id]/route.ts": string;
|
|
90
|
-
"app/
|
|
91
|
-
"tsconfig.json": string;
|
|
91
|
+
"app/page.tsx": string;
|
|
92
92
|
"store.ts": string;
|
|
93
93
|
};
|
|
94
94
|
};
|
|
95
|
-
"integration:
|
|
95
|
+
"integration:zendesk": {
|
|
96
96
|
files: {
|
|
97
|
-
"tools/list-campaigns.ts": string;
|
|
98
|
-
"tools/list-lists.ts": string;
|
|
99
|
-
"tools/get-campaign.ts": string;
|
|
100
|
-
"tools/list-members.ts": string;
|
|
101
|
-
"tools/get-list.ts": string;
|
|
102
97
|
".env.example": string;
|
|
103
|
-
"lib/
|
|
104
|
-
"
|
|
105
|
-
"
|
|
98
|
+
"lib/zendesk-client.ts": string;
|
|
99
|
+
"tools/get-ticket.ts": string;
|
|
100
|
+
"tools/list-tickets.ts": string;
|
|
101
|
+
"tools/create-ticket.ts": string;
|
|
102
|
+
"tools/search-tickets.ts": string;
|
|
103
|
+
"app/api/auth/zendesk/route.ts": string;
|
|
104
|
+
"app/api/auth/zendesk/callback/route.ts": string;
|
|
106
105
|
};
|
|
107
106
|
};
|
|
108
|
-
"integration:
|
|
107
|
+
"integration:snowflake": {
|
|
109
108
|
files: {
|
|
110
|
-
"tools/get-conversation.ts": string;
|
|
111
|
-
"tools/list-contacts.ts": string;
|
|
112
|
-
"tools/list-conversations.ts": string;
|
|
113
|
-
"tools/send-message.ts": string;
|
|
114
|
-
"tools/get-contact.ts": string;
|
|
115
109
|
".env.example": string;
|
|
116
|
-
"lib/
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
|
|
120
|
-
};
|
|
121
|
-
"integration:neon": {
|
|
122
|
-
files: {
|
|
123
|
-
"tools/list-tables.ts": string;
|
|
110
|
+
"lib/snowflake-client.ts": string;
|
|
111
|
+
"tools/list-schemas.ts": string;
|
|
112
|
+
"tools/list-databases.ts": string;
|
|
113
|
+
"tools/run-query.ts": string;
|
|
124
114
|
"tools/describe-table.ts": string;
|
|
125
|
-
"tools/
|
|
126
|
-
"tools/list-projects.ts": string;
|
|
127
|
-
"tools/list-branches.ts": string;
|
|
128
|
-
".env.example": string;
|
|
129
|
-
"lib/neon-client.ts": string;
|
|
130
|
-
"app/api/auth/neon/route.ts": string;
|
|
131
|
-
};
|
|
132
|
-
};
|
|
133
|
-
"integration:gitlab": {
|
|
134
|
-
files: {
|
|
135
|
-
"tools/list-merge-requests.ts": string;
|
|
136
|
-
"tools/create-issue.ts": string;
|
|
137
|
-
"tools/list-projects.ts": string;
|
|
138
|
-
"tools/get-issue.ts": string;
|
|
139
|
-
"tools/search-issues.ts": string;
|
|
140
|
-
".env.example": string;
|
|
141
|
-
"lib/gitlab-client.ts": string;
|
|
142
|
-
"app/api/auth/gitlab/callback/route.ts": string;
|
|
143
|
-
"app/api/auth/gitlab/route.ts": string;
|
|
115
|
+
"tools/list-tables.ts": string;
|
|
144
116
|
};
|
|
145
117
|
};
|
|
146
|
-
"integration:
|
|
118
|
+
"integration:slack": {
|
|
147
119
|
files: {
|
|
148
|
-
"
|
|
149
|
-
"tools/
|
|
150
|
-
"tools/
|
|
151
|
-
".
|
|
152
|
-
"
|
|
153
|
-
"app/api/auth/
|
|
154
|
-
"app/api/auth/twitter/route.ts": string;
|
|
120
|
+
"lib/slack-client.ts": string;
|
|
121
|
+
"tools/send-message.ts": string;
|
|
122
|
+
"tools/get-messages.ts": string;
|
|
123
|
+
"tools/list-channels.ts": string;
|
|
124
|
+
"app/api/auth/slack/route.ts": string;
|
|
125
|
+
"app/api/auth/slack/callback/route.ts": string;
|
|
155
126
|
};
|
|
156
127
|
};
|
|
157
|
-
"integration:
|
|
128
|
+
"integration:confluence": {
|
|
158
129
|
files: {
|
|
159
|
-
"tools/list-workspaces.ts": string;
|
|
160
|
-
"tools/list-api-keys.ts": string;
|
|
161
|
-
"tools/get-usage.ts": string;
|
|
162
|
-
"tools/list-members.ts": string;
|
|
163
|
-
"tools/get-organization.ts": string;
|
|
164
130
|
".env.example": string;
|
|
165
|
-
"lib/
|
|
131
|
+
"lib/confluence-client.ts": string;
|
|
132
|
+
"tools/list-spaces.ts": string;
|
|
133
|
+
"tools/search-content.ts": string;
|
|
134
|
+
"tools/get-page.ts": string;
|
|
135
|
+
"tools/create-page.ts": string;
|
|
136
|
+
"tools/update-page.ts": string;
|
|
137
|
+
"app/api/auth/confluence/route.ts": string;
|
|
138
|
+
"app/api/auth/confluence/callback/route.ts": string;
|
|
166
139
|
};
|
|
167
140
|
};
|
|
168
|
-
"integration:
|
|
141
|
+
"integration:xero": {
|
|
169
142
|
files: {
|
|
170
|
-
"tools/get-messages.ts": string;
|
|
171
|
-
"tools/list-guilds.ts": string;
|
|
172
|
-
"tools/get-user.ts": string;
|
|
173
|
-
"tools/list-channels.ts": string;
|
|
174
|
-
"tools/send-message.ts": string;
|
|
175
143
|
".env.example": string;
|
|
176
|
-
"lib/
|
|
177
|
-
"
|
|
178
|
-
"
|
|
144
|
+
"lib/xero-client.ts": string;
|
|
145
|
+
"tools/list-invoices.ts": string;
|
|
146
|
+
"tools/list-contacts.ts": string;
|
|
147
|
+
"tools/get-contact.ts": string;
|
|
148
|
+
"tools/get-invoice.ts": string;
|
|
149
|
+
"tools/create-invoice.ts": string;
|
|
150
|
+
"app/api/auth/xero/route.ts": string;
|
|
151
|
+
"app/api/auth/xero/callback/route.ts": string;
|
|
179
152
|
};
|
|
180
153
|
};
|
|
181
|
-
"integration:
|
|
154
|
+
"integration:quickbooks": {
|
|
182
155
|
files: {
|
|
183
|
-
"tools/list-databases.ts": string;
|
|
184
|
-
"tools/list-schemas.ts": string;
|
|
185
|
-
"tools/list-tables.ts": string;
|
|
186
|
-
"tools/describe-table.ts": string;
|
|
187
|
-
"tools/run-query.ts": string;
|
|
188
156
|
".env.example": string;
|
|
189
|
-
"lib/
|
|
157
|
+
"lib/quickbooks-client.ts": string;
|
|
158
|
+
"tools/get-customer.ts": string;
|
|
159
|
+
"tools/list-invoices.ts": string;
|
|
160
|
+
"tools/list-customers.ts": string;
|
|
161
|
+
"tools/get-invoice.ts": string;
|
|
162
|
+
"tools/create-invoice.ts": string;
|
|
163
|
+
"app/api/auth/quickbooks/route.ts": string;
|
|
164
|
+
"app/api/auth/quickbooks/callback/route.ts": string;
|
|
190
165
|
};
|
|
191
166
|
};
|
|
192
|
-
"integration:
|
|
167
|
+
"integration:bitbucket": {
|
|
193
168
|
files: {
|
|
194
|
-
"tools/list-boards.ts": string;
|
|
195
|
-
"tools/get-item.ts": string;
|
|
196
|
-
"tools/create-item.ts": string;
|
|
197
|
-
"tools/update-item.ts": string;
|
|
198
|
-
"tools/list-items.ts": string;
|
|
199
169
|
".env.example": string;
|
|
200
|
-
"lib/
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
"SETUP.md": string;
|
|
208
|
-
"lib/oauth-memory-store.ts": string;
|
|
209
|
-
"lib/oauth.ts": string;
|
|
210
|
-
"lib/token-store-examples.ts": string;
|
|
211
|
-
"lib/token-store.ts": string;
|
|
212
|
-
"app/setup/page.tsx": string;
|
|
213
|
-
"app/setup/page-helpers.tsx": string;
|
|
214
|
-
"app/components/ServiceConnections.tsx": string;
|
|
215
|
-
"app/page.tsx": string;
|
|
216
|
-
"app/api/integrations/status/route.ts": string;
|
|
217
|
-
"app/api/integrations/token-storage/route.ts": string;
|
|
170
|
+
"lib/bitbucket-client.ts": string;
|
|
171
|
+
"tools/create-pull-request.ts": string;
|
|
172
|
+
"tools/list-pull-requests.ts": string;
|
|
173
|
+
"tools/list-issues.ts": string;
|
|
174
|
+
"tools/list-repositories.ts": string;
|
|
175
|
+
"app/api/auth/bitbucket/route.ts": string;
|
|
176
|
+
"app/api/auth/bitbucket/callback/route.ts": string;
|
|
218
177
|
};
|
|
219
178
|
};
|
|
220
179
|
"integration:calendar": {
|
|
221
180
|
files: {
|
|
222
|
-
"tools/find-free-time.ts": string;
|
|
223
|
-
"tools/create-event.ts": string;
|
|
224
|
-
"tools/list-events.ts": string;
|
|
225
181
|
".env.example": string;
|
|
226
182
|
"lib/calendar-client.ts": string;
|
|
227
|
-
"
|
|
183
|
+
"tools/list-events.ts": string;
|
|
184
|
+
"tools/create-event.ts": string;
|
|
185
|
+
"tools/find-free-time.ts": string;
|
|
228
186
|
"app/api/auth/calendar/route.ts": string;
|
|
187
|
+
"app/api/auth/calendar/callback/route.ts": string;
|
|
229
188
|
};
|
|
230
189
|
};
|
|
231
|
-
"integration:
|
|
190
|
+
"integration:webex": {
|
|
232
191
|
files: {
|
|
233
|
-
"tools/create-contact.ts": string;
|
|
234
|
-
"tools/list-contacts.ts": string;
|
|
235
|
-
"tools/list-deals.ts": string;
|
|
236
|
-
"tools/create-deal.ts": string;
|
|
237
|
-
"tools/get-contact.ts": string;
|
|
238
192
|
".env.example": string;
|
|
239
|
-
"lib/
|
|
240
|
-
"
|
|
241
|
-
"
|
|
193
|
+
"lib/webex-client.ts": string;
|
|
194
|
+
"tools/send-message.ts": string;
|
|
195
|
+
"tools/list-meetings.ts": string;
|
|
196
|
+
"tools/list-rooms.ts": string;
|
|
197
|
+
"tools/create-meeting.ts": string;
|
|
198
|
+
"tools/get-meeting.ts": string;
|
|
199
|
+
"app/api/auth/webex/route.ts": string;
|
|
200
|
+
"app/api/auth/webex/callback/route.ts": string;
|
|
242
201
|
};
|
|
243
202
|
};
|
|
244
|
-
"integration:
|
|
203
|
+
"integration:asana": {
|
|
245
204
|
files: {
|
|
246
|
-
"tools/list-products.ts": string;
|
|
247
|
-
"tools/list-orders.ts": string;
|
|
248
|
-
"tools/get-order.ts": string;
|
|
249
|
-
"tools/list-customers.ts": string;
|
|
250
|
-
"tools/get-product.ts": string;
|
|
251
205
|
".env.example": string;
|
|
252
|
-
"lib/
|
|
253
|
-
"
|
|
254
|
-
"
|
|
206
|
+
"lib/asana-client.ts": string;
|
|
207
|
+
"tools/list-projects.ts": string;
|
|
208
|
+
"tools/create-task.ts": string;
|
|
209
|
+
"tools/update-task.ts": string;
|
|
210
|
+
"tools/get-task.ts": string;
|
|
211
|
+
"tools/list-tasks.ts": string;
|
|
212
|
+
"app/api/auth/asana/route.ts": string;
|
|
213
|
+
"app/api/auth/asana/callback/route.ts": string;
|
|
255
214
|
};
|
|
256
215
|
};
|
|
257
|
-
"integration:
|
|
216
|
+
"integration:jira": {
|
|
217
|
+
files: {
|
|
218
|
+
"lib/jira-client.ts": string;
|
|
219
|
+
"tools/list-projects.ts": string;
|
|
220
|
+
"tools/search-issues.ts": string;
|
|
221
|
+
"tools/update-issue.ts": string;
|
|
222
|
+
"tools/get-issue.ts": string;
|
|
223
|
+
"tools/create-issue.ts": string;
|
|
224
|
+
"app/api/auth/jira/route.ts": string;
|
|
225
|
+
"app/api/auth/jira/callback/route.ts": string;
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
"integration:discord": {
|
|
258
229
|
files: {
|
|
259
|
-
"tools/list-ec2-instances.ts": string;
|
|
260
|
-
"tools/list-s3-objects.ts": string;
|
|
261
|
-
"tools/list-lambda-functions.ts": string;
|
|
262
|
-
"tools/list-s3-buckets.ts": string;
|
|
263
|
-
"tools/get-s3-object.ts": string;
|
|
264
230
|
".env.example": string;
|
|
265
|
-
"lib/
|
|
231
|
+
"lib/discord-client.ts": string;
|
|
232
|
+
"tools/send-message.ts": string;
|
|
233
|
+
"tools/get-messages.ts": string;
|
|
234
|
+
"tools/list-guilds.ts": string;
|
|
235
|
+
"tools/list-channels.ts": string;
|
|
236
|
+
"tools/get-user.ts": string;
|
|
237
|
+
"app/api/auth/discord/route.ts": string;
|
|
238
|
+
"app/api/auth/discord/callback/route.ts": string;
|
|
266
239
|
};
|
|
267
240
|
};
|
|
268
|
-
"integration:
|
|
241
|
+
"integration:twitter": {
|
|
269
242
|
files: {
|
|
270
|
-
"tools/query-database.ts": string;
|
|
271
|
-
"tools/read-page.ts": string;
|
|
272
|
-
"tools/create-page.ts": string;
|
|
273
|
-
"tools/search-notion.ts": string;
|
|
274
243
|
".env.example": string;
|
|
275
|
-
"lib/
|
|
276
|
-
"
|
|
277
|
-
"
|
|
244
|
+
"lib/twitter-client.ts": string;
|
|
245
|
+
"tools/search-tweets.ts": string;
|
|
246
|
+
"tools/post-tweet.ts": string;
|
|
247
|
+
"tools/get-timeline.ts": string;
|
|
248
|
+
"app/api/auth/twitter/route.ts": string;
|
|
249
|
+
"app/api/auth/twitter/callback/route.ts": string;
|
|
278
250
|
};
|
|
279
251
|
};
|
|
280
|
-
"integration:
|
|
252
|
+
"integration:supabase": {
|
|
281
253
|
files: {
|
|
282
|
-
"
|
|
283
|
-
"
|
|
284
|
-
"tools/
|
|
285
|
-
"tools/
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"
|
|
254
|
+
".env.example": string;
|
|
255
|
+
"lib/supabase-client.ts": string;
|
|
256
|
+
"tools/delete-row.ts": string;
|
|
257
|
+
"tools/update-row.ts": string;
|
|
258
|
+
"tools/insert-row.ts": string;
|
|
259
|
+
"tools/query-table.ts": string;
|
|
260
|
+
"tools/list-tables.ts": string;
|
|
261
|
+
"app/api/auth/supabase/route.ts": string;
|
|
289
262
|
};
|
|
290
263
|
};
|
|
291
|
-
"integration:
|
|
264
|
+
"integration:salesforce": {
|
|
292
265
|
files: {
|
|
293
|
-
"
|
|
294
|
-
"tools/
|
|
295
|
-
"tools/
|
|
266
|
+
"lib/salesforce-client.ts": string;
|
|
267
|
+
"tools/create-lead.ts": string;
|
|
268
|
+
"tools/get-account.ts": string;
|
|
269
|
+
"tools/list-accounts.ts": string;
|
|
296
270
|
"tools/list-contacts.ts": string;
|
|
297
|
-
"tools/
|
|
298
|
-
".
|
|
299
|
-
"
|
|
300
|
-
"app/api/auth/xero/callback/route.ts": string;
|
|
301
|
-
"app/api/auth/xero/route.ts": string;
|
|
271
|
+
"tools/list-opportunities.ts": string;
|
|
272
|
+
"app/api/auth/salesforce/route.ts": string;
|
|
273
|
+
"app/api/auth/salesforce/callback/route.ts": string;
|
|
302
274
|
};
|
|
303
275
|
};
|
|
304
|
-
"integration:
|
|
276
|
+
"integration:shopify": {
|
|
305
277
|
files: {
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"tools/
|
|
278
|
+
".env.example": string;
|
|
279
|
+
"lib/shopify-client.ts": string;
|
|
280
|
+
"tools/list-orders.ts": string;
|
|
281
|
+
"tools/list-products.ts": string;
|
|
282
|
+
"tools/get-order.ts": string;
|
|
309
283
|
"tools/list-customers.ts": string;
|
|
310
|
-
"tools/get-
|
|
284
|
+
"tools/get-product.ts": string;
|
|
285
|
+
"app/api/auth/shopify/route.ts": string;
|
|
286
|
+
"app/api/auth/shopify/callback/route.ts": string;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
"integration:zoom": {
|
|
290
|
+
files: {
|
|
311
291
|
".env.example": string;
|
|
312
|
-
"lib/
|
|
313
|
-
"
|
|
292
|
+
"lib/zoom-client.ts": string;
|
|
293
|
+
"tools/update-meeting.ts": string;
|
|
294
|
+
"tools/list-meetings.ts": string;
|
|
295
|
+
"tools/create-meeting.ts": string;
|
|
296
|
+
"tools/delete-meeting.ts": string;
|
|
297
|
+
"tools/get-meeting.ts": string;
|
|
298
|
+
"app/api/auth/zoom/route.ts": string;
|
|
299
|
+
"app/api/auth/zoom/callback/route.ts": string;
|
|
314
300
|
};
|
|
315
301
|
};
|
|
316
|
-
"integration:
|
|
302
|
+
"integration:dropbox": {
|
|
317
303
|
files: {
|
|
304
|
+
".env.example": string;
|
|
305
|
+
"lib/dropbox-client.ts": string;
|
|
306
|
+
"tools/search-files.ts": string;
|
|
318
307
|
"tools/get-file.ts": string;
|
|
319
|
-
"tools/get-comments.ts": string;
|
|
320
|
-
"tools/list-projects.ts": string;
|
|
321
|
-
"tools/post-comment.ts": string;
|
|
322
308
|
"tools/list-files.ts": string;
|
|
309
|
+
"tools/get-account.ts": string;
|
|
310
|
+
"tools/upload-file.ts": string;
|
|
311
|
+
"app/api/auth/dropbox/route.ts": string;
|
|
312
|
+
"app/api/auth/dropbox/callback/route.ts": string;
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
"integration:clickup": {
|
|
316
|
+
files: {
|
|
323
317
|
".env.example": string;
|
|
324
|
-
"lib/
|
|
325
|
-
"
|
|
326
|
-
"
|
|
327
|
-
"
|
|
318
|
+
"lib/clickup-client.ts": string;
|
|
319
|
+
"tools/create-task.ts": string;
|
|
320
|
+
"tools/update-task.ts": string;
|
|
321
|
+
"tools/list-lists.ts": string;
|
|
322
|
+
"tools/get-task.ts": string;
|
|
323
|
+
"tools/list-tasks.ts": string;
|
|
324
|
+
"app/api/auth/clickup/route.ts": string;
|
|
325
|
+
"app/api/auth/clickup/callback/route.ts": string;
|
|
328
326
|
};
|
|
329
327
|
};
|
|
330
|
-
"integration:
|
|
328
|
+
"integration:_base": {
|
|
331
329
|
files: {
|
|
332
|
-
"
|
|
333
|
-
"
|
|
330
|
+
"SETUP.md": string;
|
|
331
|
+
"lib/oauth.ts": string;
|
|
332
|
+
"lib/token-store-examples.ts": string;
|
|
333
|
+
"lib/token-store.ts": string;
|
|
334
|
+
"lib/oauth-memory-store.ts": string;
|
|
335
|
+
"app/components/ServiceConnections.tsx": string;
|
|
336
|
+
"app/api/integrations/token-storage/route.ts": string;
|
|
337
|
+
"app/api/integrations/status/route.ts": string;
|
|
338
|
+
"app/page.tsx": string;
|
|
339
|
+
"app/setup/page-helpers.tsx": string;
|
|
340
|
+
"app/setup/page.tsx": string;
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
"integration:gitlab": {
|
|
344
|
+
files: {
|
|
345
|
+
".env.example": string;
|
|
346
|
+
"lib/gitlab-client.ts": string;
|
|
334
347
|
"tools/list-projects.ts": string;
|
|
335
|
-
"tools/
|
|
348
|
+
"tools/list-merge-requests.ts": string;
|
|
336
349
|
"tools/search-issues.ts": string;
|
|
337
|
-
".
|
|
338
|
-
"
|
|
339
|
-
"app/api/auth/
|
|
340
|
-
"app/api/auth/
|
|
350
|
+
"tools/get-issue.ts": string;
|
|
351
|
+
"tools/create-issue.ts": string;
|
|
352
|
+
"app/api/auth/gitlab/route.ts": string;
|
|
353
|
+
"app/api/auth/gitlab/callback/route.ts": string;
|
|
341
354
|
};
|
|
342
355
|
};
|
|
343
|
-
"integration:
|
|
356
|
+
"integration:teams": {
|
|
344
357
|
files: {
|
|
345
|
-
"
|
|
346
|
-
"tools/
|
|
347
|
-
"tools/
|
|
348
|
-
"tools/list-
|
|
349
|
-
".
|
|
350
|
-
"
|
|
351
|
-
"app/api/auth/
|
|
352
|
-
"app/api/auth/
|
|
358
|
+
"lib/teams-client.ts": string;
|
|
359
|
+
"tools/send-message.ts": string;
|
|
360
|
+
"tools/get-messages.ts": string;
|
|
361
|
+
"tools/list-chats.ts": string;
|
|
362
|
+
"tools/list-channels.ts": string;
|
|
363
|
+
"tools/list-teams.ts": string;
|
|
364
|
+
"app/api/auth/teams/route.ts": string;
|
|
365
|
+
"app/api/auth/teams/callback/route.ts": string;
|
|
353
366
|
};
|
|
354
367
|
};
|
|
355
|
-
"integration:
|
|
368
|
+
"integration:airtable": {
|
|
356
369
|
files: {
|
|
357
|
-
"
|
|
358
|
-
"tools/
|
|
359
|
-
"tools/
|
|
360
|
-
"tools/
|
|
361
|
-
"tools/
|
|
362
|
-
".
|
|
363
|
-
"
|
|
364
|
-
"app/api/auth/
|
|
365
|
-
"app/api/auth/asana/route.ts": string;
|
|
370
|
+
"lib/airtable-client.ts": string;
|
|
371
|
+
"tools/list-bases.ts": string;
|
|
372
|
+
"tools/get-base.ts": string;
|
|
373
|
+
"tools/create-record.ts": string;
|
|
374
|
+
"tools/get-record.ts": string;
|
|
375
|
+
"tools/list-records.ts": string;
|
|
376
|
+
"app/api/auth/airtable/route.ts": string;
|
|
377
|
+
"app/api/auth/airtable/callback/route.ts": string;
|
|
366
378
|
};
|
|
367
379
|
};
|
|
368
|
-
"integration:
|
|
380
|
+
"integration:mixpanel": {
|
|
369
381
|
files: {
|
|
370
|
-
"tools/get-trends.ts": string;
|
|
371
|
-
"tools/capture-event.ts": string;
|
|
372
|
-
"tools/list-feature-flags.ts": string;
|
|
373
|
-
"tools/list-persons.ts": string;
|
|
374
382
|
".env.example": string;
|
|
375
|
-
"lib/
|
|
383
|
+
"lib/mixpanel-client.ts": string;
|
|
384
|
+
"tools/query-events.ts": string;
|
|
385
|
+
"tools/get-funnel.ts": string;
|
|
386
|
+
"tools/get-retention.ts": string;
|
|
387
|
+
"tools/track-event.ts": string;
|
|
388
|
+
"tools/list-cohorts.ts": string;
|
|
376
389
|
};
|
|
377
390
|
};
|
|
378
|
-
"integration:
|
|
391
|
+
"integration:pipedrive": {
|
|
379
392
|
files: {
|
|
380
|
-
"tools/list-meetings.ts": string;
|
|
381
|
-
"tools/create-meeting.ts": string;
|
|
382
|
-
"tools/get-meeting.ts": string;
|
|
383
|
-
"tools/list-rooms.ts": string;
|
|
384
|
-
"tools/send-message.ts": string;
|
|
385
393
|
".env.example": string;
|
|
386
|
-
"lib/
|
|
387
|
-
"
|
|
388
|
-
"
|
|
394
|
+
"lib/pipedrive-client.ts": string;
|
|
395
|
+
"tools/list-persons.ts": string;
|
|
396
|
+
"tools/get-deal.ts": string;
|
|
397
|
+
"tools/list-deals.ts": string;
|
|
398
|
+
"tools/update-deal.ts": string;
|
|
399
|
+
"tools/create-deal.ts": string;
|
|
400
|
+
"app/api/auth/pipedrive/route.ts": string;
|
|
401
|
+
"app/api/auth/pipedrive/callback/route.ts": string;
|
|
389
402
|
};
|
|
390
403
|
};
|
|
391
|
-
"integration:
|
|
404
|
+
"integration:twilio": {
|
|
392
405
|
files: {
|
|
393
|
-
"tools/resolve-issue.ts": string;
|
|
394
|
-
"tools/list-projects.ts": string;
|
|
395
|
-
"tools/list-issues.ts": string;
|
|
396
|
-
"tools/get-issue.ts": string;
|
|
397
406
|
".env.example": string;
|
|
398
|
-
"lib/
|
|
407
|
+
"lib/twilio-client.ts": string;
|
|
408
|
+
"tools/get-message.ts": string;
|
|
409
|
+
"tools/send-whatsapp.ts": string;
|
|
410
|
+
"tools/list-calls.ts": string;
|
|
411
|
+
"tools/send-sms.ts": string;
|
|
412
|
+
"tools/list-messages.ts": string;
|
|
399
413
|
};
|
|
400
414
|
};
|
|
401
|
-
"integration:
|
|
415
|
+
"integration:hubspot": {
|
|
402
416
|
files: {
|
|
403
|
-
"tools/create-folder.ts": string;
|
|
404
|
-
"tools/get-file.ts": string;
|
|
405
|
-
"tools/upload-file.ts": string;
|
|
406
|
-
"tools/search-files.ts": string;
|
|
407
|
-
"tools/list-files.ts": string;
|
|
408
417
|
".env.example": string;
|
|
409
|
-
"lib/
|
|
410
|
-
"
|
|
411
|
-
"
|
|
412
|
-
"
|
|
418
|
+
"lib/hubspot-client.ts": string;
|
|
419
|
+
"tools/list-deals.ts": string;
|
|
420
|
+
"tools/create-contact.ts": string;
|
|
421
|
+
"tools/create-deal.ts": string;
|
|
422
|
+
"tools/list-contacts.ts": string;
|
|
423
|
+
"tools/get-contact.ts": string;
|
|
424
|
+
"app/api/auth/hubspot/route.ts": string;
|
|
425
|
+
"app/api/auth/hubspot/callback/route.ts": string;
|
|
413
426
|
};
|
|
414
427
|
};
|
|
415
|
-
"integration:
|
|
428
|
+
"integration:sheets": {
|
|
416
429
|
files: {
|
|
417
|
-
"tools/list-pull-requests.ts": string;
|
|
418
|
-
"tools/list-issues.ts": string;
|
|
419
|
-
"tools/list-repositories.ts": string;
|
|
420
|
-
"tools/create-pull-request.ts": string;
|
|
421
430
|
".env.example": string;
|
|
422
|
-
"lib/
|
|
423
|
-
"
|
|
424
|
-
"
|
|
431
|
+
"lib/sheets-client.ts": string;
|
|
432
|
+
"tools/list-spreadsheets.ts": string;
|
|
433
|
+
"tools/read-range.ts": string;
|
|
434
|
+
"tools/create-spreadsheet.ts": string;
|
|
435
|
+
"tools/write-range.ts": string;
|
|
436
|
+
"tools/get-spreadsheet.ts": string;
|
|
437
|
+
"app/api/auth/sheets/route.ts": string;
|
|
438
|
+
"app/api/auth/sheets/callback/route.ts": string;
|
|
425
439
|
};
|
|
426
440
|
};
|
|
427
|
-
"integration:
|
|
441
|
+
"integration:aws": {
|
|
428
442
|
files: {
|
|
429
|
-
"tools/update-deal.ts": string;
|
|
430
|
-
"tools/get-deal.ts": string;
|
|
431
|
-
"tools/list-deals.ts": string;
|
|
432
|
-
"tools/create-deal.ts": string;
|
|
433
|
-
"tools/list-persons.ts": string;
|
|
434
443
|
".env.example": string;
|
|
435
|
-
"lib/
|
|
436
|
-
"
|
|
437
|
-
"
|
|
444
|
+
"lib/aws-client.ts": string;
|
|
445
|
+
"tools/list-s3-objects.ts": string;
|
|
446
|
+
"tools/list-lambda-functions.ts": string;
|
|
447
|
+
"tools/list-ec2-instances.ts": string;
|
|
448
|
+
"tools/list-s3-buckets.ts": string;
|
|
449
|
+
"tools/get-s3-object.ts": string;
|
|
438
450
|
};
|
|
439
451
|
};
|
|
440
|
-
"integration:
|
|
452
|
+
"integration:anthropic": {
|
|
441
453
|
files: {
|
|
442
|
-
"tools/create-incident.ts": string;
|
|
443
|
-
"tools/get-incident.ts": string;
|
|
444
|
-
"tools/list-incidents.ts": string;
|
|
445
|
-
"tools/search-knowledge.ts": string;
|
|
446
|
-
"tools/update-incident.ts": string;
|
|
447
454
|
".env.example": string;
|
|
448
|
-
"lib/
|
|
449
|
-
"
|
|
450
|
-
"
|
|
455
|
+
"lib/anthropic-admin-client.ts": string;
|
|
456
|
+
"tools/list-api-keys.ts": string;
|
|
457
|
+
"tools/list-members.ts": string;
|
|
458
|
+
"tools/list-workspaces.ts": string;
|
|
459
|
+
"tools/get-organization.ts": string;
|
|
460
|
+
"tools/get-usage.ts": string;
|
|
451
461
|
};
|
|
452
462
|
};
|
|
453
|
-
"integration:
|
|
463
|
+
"integration:posthog": {
|
|
454
464
|
files: {
|
|
455
|
-
"
|
|
456
|
-
"
|
|
457
|
-
"tools/list-
|
|
458
|
-
"tools/
|
|
459
|
-
"tools/
|
|
460
|
-
"
|
|
461
|
-
"app/api/auth/sharepoint/callback/route.ts": string;
|
|
462
|
-
"app/api/auth/sharepoint/route.ts": string;
|
|
465
|
+
".env.example": string;
|
|
466
|
+
"lib/posthog-client.ts": string;
|
|
467
|
+
"tools/list-persons.ts": string;
|
|
468
|
+
"tools/get-trends.ts": string;
|
|
469
|
+
"tools/capture-event.ts": string;
|
|
470
|
+
"tools/list-feature-flags.ts": string;
|
|
463
471
|
};
|
|
464
472
|
};
|
|
465
473
|
"integration:gmail": {
|
|
466
474
|
files: {
|
|
475
|
+
".env.example": string;
|
|
476
|
+
"lib/gmail-client.ts": string;
|
|
467
477
|
"tools/list-emails.ts": string;
|
|
468
478
|
"tools/search-emails.ts": string;
|
|
469
479
|
"tools/send-email.ts": string;
|
|
470
|
-
".env.example": string;
|
|
471
|
-
"lib/gmail-client.ts": string;
|
|
472
|
-
"app/api/auth/gmail/callback/route.ts": string;
|
|
473
480
|
"app/api/auth/gmail/route.ts": string;
|
|
481
|
+
"app/api/auth/gmail/callback/route.ts": string;
|
|
474
482
|
};
|
|
475
483
|
};
|
|
476
|
-
"integration:
|
|
484
|
+
"integration:github": {
|
|
485
|
+
files: {
|
|
486
|
+
"lib/github-client.ts": string;
|
|
487
|
+
"tools/get-pr-diff.ts": string;
|
|
488
|
+
"tools/list-prs.ts": string;
|
|
489
|
+
"tools/create-issue.ts": string;
|
|
490
|
+
"tools/list-repos.ts": string;
|
|
491
|
+
"app/api/auth/github/route.ts": string;
|
|
492
|
+
"app/api/auth/github/callback/route.ts": string;
|
|
493
|
+
};
|
|
494
|
+
};
|
|
495
|
+
"integration:servicenow": {
|
|
477
496
|
files: {
|
|
478
|
-
"tools/list-spreadsheets.ts": string;
|
|
479
|
-
"tools/get-spreadsheet.ts": string;
|
|
480
|
-
"tools/create-spreadsheet.ts": string;
|
|
481
|
-
"tools/read-range.ts": string;
|
|
482
|
-
"tools/write-range.ts": string;
|
|
483
497
|
".env.example": string;
|
|
484
|
-
"lib/
|
|
485
|
-
"
|
|
486
|
-
"
|
|
498
|
+
"lib/servicenow-client.ts": string;
|
|
499
|
+
"tools/update-incident.ts": string;
|
|
500
|
+
"tools/create-incident.ts": string;
|
|
501
|
+
"tools/search-knowledge.ts": string;
|
|
502
|
+
"tools/list-incidents.ts": string;
|
|
503
|
+
"tools/get-incident.ts": string;
|
|
504
|
+
"app/api/auth/servicenow/route.ts": string;
|
|
505
|
+
"app/api/auth/servicenow/callback/route.ts": string;
|
|
487
506
|
};
|
|
488
507
|
};
|
|
489
|
-
"integration:
|
|
508
|
+
"integration:freshdesk": {
|
|
490
509
|
files: {
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"tools/
|
|
494
|
-
"tools/get-
|
|
510
|
+
".env.example": string;
|
|
511
|
+
"lib/freshdesk-client.ts": string;
|
|
512
|
+
"tools/update-ticket.ts": string;
|
|
513
|
+
"tools/get-ticket.ts": string;
|
|
514
|
+
"tools/list-tickets.ts": string;
|
|
495
515
|
"tools/list-contacts.ts": string;
|
|
496
|
-
"
|
|
497
|
-
"app/api/auth/
|
|
498
|
-
"app/api/auth/
|
|
516
|
+
"tools/create-ticket.ts": string;
|
|
517
|
+
"app/api/auth/freshdesk/route.ts": string;
|
|
518
|
+
"app/api/auth/freshdesk/callback/route.ts": string;
|
|
499
519
|
};
|
|
500
520
|
};
|
|
501
|
-
"integration:
|
|
521
|
+
"integration:docs-google": {
|
|
502
522
|
files: {
|
|
503
|
-
"tools/search-content.ts": string;
|
|
504
|
-
"tools/create-page.ts": string;
|
|
505
|
-
"tools/list-spaces.ts": string;
|
|
506
|
-
"tools/update-page.ts": string;
|
|
507
|
-
"tools/get-page.ts": string;
|
|
508
523
|
".env.example": string;
|
|
509
|
-
"lib/
|
|
510
|
-
"
|
|
511
|
-
"
|
|
524
|
+
"lib/oauth.ts": string;
|
|
525
|
+
"lib/docs-client.ts": string;
|
|
526
|
+
"tools/list-documents.ts": string;
|
|
527
|
+
"tools/get-document.ts": string;
|
|
528
|
+
"tools/search-documents.ts": string;
|
|
529
|
+
"tools/update-document.ts": string;
|
|
530
|
+
"tools/create-document.ts": string;
|
|
531
|
+
"app/api/auth/docs-google/route.ts": string;
|
|
532
|
+
"app/api/auth/docs-google/callback/route.ts": string;
|
|
533
|
+
};
|
|
534
|
+
};
|
|
535
|
+
"integration:linear": {
|
|
536
|
+
files: {
|
|
537
|
+
".env.example": string;
|
|
538
|
+
"lib/linear-client.ts": string;
|
|
539
|
+
"tools/list-projects.ts": string;
|
|
540
|
+
"tools/search-issues.ts": string;
|
|
541
|
+
"tools/update-issue.ts": string;
|
|
542
|
+
"tools/get-issue.ts": string;
|
|
543
|
+
"tools/create-issue.ts": string;
|
|
544
|
+
"app/api/auth/linear/route.ts": string;
|
|
545
|
+
"app/api/auth/linear/callback/route.ts": string;
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
"integration:sharepoint": {
|
|
549
|
+
files: {
|
|
550
|
+
"lib/sharepoint-client.ts": string;
|
|
551
|
+
"tools/get-file.ts": string;
|
|
552
|
+
"tools/list-sites.ts": string;
|
|
553
|
+
"tools/list-files.ts": string;
|
|
554
|
+
"tools/get-site.ts": string;
|
|
555
|
+
"tools/upload-file.ts": string;
|
|
556
|
+
"app/api/auth/sharepoint/route.ts": string;
|
|
557
|
+
"app/api/auth/sharepoint/callback/route.ts": string;
|
|
512
558
|
};
|
|
513
559
|
};
|
|
514
|
-
"integration:
|
|
560
|
+
"integration:stripe": {
|
|
515
561
|
files: {
|
|
516
|
-
"tools/list-tasks.ts": string;
|
|
517
|
-
"tools/list-lists.ts": string;
|
|
518
|
-
"tools/get-task.ts": string;
|
|
519
|
-
"tools/update-task.ts": string;
|
|
520
|
-
"tools/create-task.ts": string;
|
|
521
562
|
".env.example": string;
|
|
522
|
-
"lib/
|
|
523
|
-
"
|
|
524
|
-
"
|
|
563
|
+
"lib/stripe-client.ts": string;
|
|
564
|
+
"tools/get-customer.ts": string;
|
|
565
|
+
"tools/get-balance.ts": string;
|
|
566
|
+
"tools/list-payments.ts": string;
|
|
567
|
+
"tools/list-customers.ts": string;
|
|
568
|
+
"tools/list-subscriptions.ts": string;
|
|
569
|
+
"app/api/auth/stripe/route.ts": string;
|
|
525
570
|
};
|
|
526
571
|
};
|
|
527
|
-
"integration:
|
|
572
|
+
"integration:sentry": {
|
|
528
573
|
files: {
|
|
529
|
-
"
|
|
530
|
-
"
|
|
574
|
+
".env.example": string;
|
|
575
|
+
"lib/sentry-client.ts": string;
|
|
531
576
|
"tools/list-projects.ts": string;
|
|
577
|
+
"tools/resolve-issue.ts": string;
|
|
578
|
+
"tools/list-issues.ts": string;
|
|
532
579
|
"tools/get-issue.ts": string;
|
|
533
|
-
"tools/search-issues.ts": string;
|
|
534
|
-
"lib/jira-client.ts": string;
|
|
535
|
-
"app/api/auth/jira/callback/route.ts": string;
|
|
536
|
-
"app/api/auth/jira/route.ts": string;
|
|
537
580
|
};
|
|
538
581
|
};
|
|
539
|
-
"integration:
|
|
582
|
+
"integration:notion": {
|
|
540
583
|
files: {
|
|
541
|
-
"tools/get-ticket.ts": string;
|
|
542
|
-
"tools/list-tickets.ts": string;
|
|
543
|
-
"tools/create-ticket.ts": string;
|
|
544
|
-
"tools/search-tickets.ts": string;
|
|
545
584
|
".env.example": string;
|
|
546
|
-
"lib/
|
|
547
|
-
"
|
|
548
|
-
"
|
|
585
|
+
"lib/notion-client.ts": string;
|
|
586
|
+
"tools/search-notion.ts": string;
|
|
587
|
+
"tools/create-page.ts": string;
|
|
588
|
+
"tools/query-database.ts": string;
|
|
589
|
+
"tools/read-page.ts": string;
|
|
590
|
+
"app/api/auth/notion/route.ts": string;
|
|
591
|
+
"app/api/auth/notion/callback/route.ts": string;
|
|
549
592
|
};
|
|
550
593
|
};
|
|
551
|
-
"integration:
|
|
594
|
+
"integration:monday": {
|
|
552
595
|
files: {
|
|
553
|
-
"tools/update-card.ts": string;
|
|
554
|
-
"tools/list-cards.ts": string;
|
|
555
|
-
"tools/get-card.ts": string;
|
|
556
|
-
"tools/list-boards.ts": string;
|
|
557
|
-
"tools/create-card.ts": string;
|
|
558
596
|
".env.example": string;
|
|
559
|
-
"lib/
|
|
560
|
-
"
|
|
561
|
-
"
|
|
597
|
+
"lib/monday-client.ts": string;
|
|
598
|
+
"tools/create-item.ts": string;
|
|
599
|
+
"tools/update-item.ts": string;
|
|
600
|
+
"tools/list-boards.ts": string;
|
|
601
|
+
"tools/list-items.ts": string;
|
|
602
|
+
"tools/get-item.ts": string;
|
|
603
|
+
"app/api/auth/monday/route.ts": string;
|
|
604
|
+
"app/api/auth/monday/callback/route.ts": string;
|
|
562
605
|
};
|
|
563
606
|
};
|
|
564
|
-
"integration:
|
|
607
|
+
"integration:figma": {
|
|
565
608
|
files: {
|
|
566
|
-
"tools/get-funnel.ts": string;
|
|
567
|
-
"tools/get-retention.ts": string;
|
|
568
|
-
"tools/list-cohorts.ts": string;
|
|
569
|
-
"tools/track-event.ts": string;
|
|
570
|
-
"tools/query-events.ts": string;
|
|
571
609
|
".env.example": string;
|
|
572
|
-
"lib/
|
|
610
|
+
"lib/figma-client.ts": string;
|
|
611
|
+
"lib/types.ts": string;
|
|
612
|
+
"tools/list-projects.ts": string;
|
|
613
|
+
"tools/post-comment.ts": string;
|
|
614
|
+
"tools/get-comments.ts": string;
|
|
615
|
+
"tools/get-file.ts": string;
|
|
616
|
+
"tools/list-files.ts": string;
|
|
617
|
+
"app/api/auth/figma/route.ts": string;
|
|
618
|
+
"app/api/auth/figma/callback/route.ts": string;
|
|
573
619
|
};
|
|
574
620
|
};
|
|
575
|
-
"integration:
|
|
621
|
+
"integration:neon": {
|
|
576
622
|
files: {
|
|
577
|
-
"tools/list-meetings.ts": string;
|
|
578
|
-
"tools/create-meeting.ts": string;
|
|
579
|
-
"tools/update-meeting.ts": string;
|
|
580
|
-
"tools/get-meeting.ts": string;
|
|
581
|
-
"tools/delete-meeting.ts": string;
|
|
582
623
|
".env.example": string;
|
|
583
|
-
"lib/
|
|
584
|
-
"
|
|
585
|
-
"
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
"tools/get-record.ts": string;
|
|
591
|
-
"tools/list-bases.ts": string;
|
|
592
|
-
"tools/create-record.ts": string;
|
|
593
|
-
"tools/get-base.ts": string;
|
|
594
|
-
"tools/list-records.ts": string;
|
|
595
|
-
"lib/airtable-client.ts": string;
|
|
596
|
-
"app/api/auth/airtable/callback/route.ts": string;
|
|
597
|
-
"app/api/auth/airtable/route.ts": string;
|
|
624
|
+
"lib/neon-client.ts": string;
|
|
625
|
+
"tools/list-projects.ts": string;
|
|
626
|
+
"tools/list-branches.ts": string;
|
|
627
|
+
"tools/query-database.ts": string;
|
|
628
|
+
"tools/describe-table.ts": string;
|
|
629
|
+
"tools/list-tables.ts": string;
|
|
630
|
+
"app/api/auth/neon/route.ts": string;
|
|
598
631
|
};
|
|
599
632
|
};
|
|
600
|
-
"integration:
|
|
633
|
+
"integration:drive": {
|
|
601
634
|
files: {
|
|
602
|
-
"tools/get-invoice.ts": string;
|
|
603
|
-
"tools/list-invoices.ts": string;
|
|
604
|
-
"tools/create-invoice.ts": string;
|
|
605
|
-
"tools/list-customers.ts": string;
|
|
606
|
-
"tools/get-customer.ts": string;
|
|
607
635
|
".env.example": string;
|
|
608
|
-
"lib/
|
|
609
|
-
"
|
|
610
|
-
"
|
|
636
|
+
"lib/oauth.ts": string;
|
|
637
|
+
"lib/drive-client.ts": string;
|
|
638
|
+
"tools/search-files.ts": string;
|
|
639
|
+
"tools/create-folder.ts": string;
|
|
640
|
+
"tools/get-file.ts": string;
|
|
641
|
+
"tools/list-files.ts": string;
|
|
642
|
+
"tools/upload-file.ts": string;
|
|
643
|
+
"app/api/auth/drive/route.ts": string;
|
|
644
|
+
"app/api/auth/drive/callback/route.ts": string;
|
|
611
645
|
};
|
|
612
646
|
};
|
|
613
647
|
"integration:outlook": {
|
|
614
648
|
files: {
|
|
615
|
-
"
|
|
649
|
+
".env.example": string;
|
|
650
|
+
"lib/outlook-client.ts": string;
|
|
616
651
|
"tools/list-emails.ts": string;
|
|
652
|
+
"tools/get-email.ts": string;
|
|
617
653
|
"tools/list-folders.ts": string;
|
|
618
654
|
"tools/search-emails.ts": string;
|
|
619
655
|
"tools/send-email.ts": string;
|
|
620
|
-
".env.example": string;
|
|
621
|
-
"lib/outlook-client.ts": string;
|
|
622
|
-
"app/api/auth/outlook/callback/route.ts": string;
|
|
623
656
|
"app/api/auth/outlook/route.ts": string;
|
|
657
|
+
"app/api/auth/outlook/callback/route.ts": string;
|
|
624
658
|
};
|
|
625
659
|
};
|
|
626
|
-
"integration:
|
|
627
|
-
files: {
|
|
628
|
-
"tools/get-file.ts": string;
|
|
629
|
-
"tools/upload-file.ts": string;
|
|
630
|
-
"tools/get-account.ts": string;
|
|
631
|
-
"tools/search-files.ts": string;
|
|
632
|
-
"tools/list-files.ts": string;
|
|
633
|
-
".env.example": string;
|
|
634
|
-
"lib/dropbox-client.ts": string;
|
|
635
|
-
"app/api/auth/dropbox/callback/route.ts": string;
|
|
636
|
-
"app/api/auth/dropbox/route.ts": string;
|
|
637
|
-
};
|
|
638
|
-
};
|
|
639
|
-
"integration:slack": {
|
|
640
|
-
files: {
|
|
641
|
-
"tools/get-messages.ts": string;
|
|
642
|
-
"tools/list-channels.ts": string;
|
|
643
|
-
"tools/send-message.ts": string;
|
|
644
|
-
"lib/slack-client.ts": string;
|
|
645
|
-
"app/api/auth/slack/callback/route.ts": string;
|
|
646
|
-
"app/api/auth/slack/route.ts": string;
|
|
647
|
-
};
|
|
648
|
-
};
|
|
649
|
-
"integration:twilio": {
|
|
660
|
+
"integration:mailchimp": {
|
|
650
661
|
files: {
|
|
651
|
-
"tools/send-sms.ts": string;
|
|
652
|
-
"tools/get-message.ts": string;
|
|
653
|
-
"tools/list-calls.ts": string;
|
|
654
|
-
"tools/send-whatsapp.ts": string;
|
|
655
|
-
"tools/list-messages.ts": string;
|
|
656
662
|
".env.example": string;
|
|
657
|
-
"lib/
|
|
663
|
+
"lib/mailchimp-client.ts": string;
|
|
664
|
+
"tools/get-list.ts": string;
|
|
665
|
+
"tools/list-members.ts": string;
|
|
666
|
+
"tools/get-campaign.ts": string;
|
|
667
|
+
"tools/list-lists.ts": string;
|
|
668
|
+
"tools/list-campaigns.ts": string;
|
|
669
|
+
"app/api/auth/mailchimp/route.ts": string;
|
|
670
|
+
"app/api/auth/mailchimp/callback/route.ts": string;
|
|
658
671
|
};
|
|
659
672
|
};
|
|
660
|
-
"integration:
|
|
673
|
+
"integration:intercom": {
|
|
661
674
|
files: {
|
|
662
|
-
"tools/get-ticket.ts": string;
|
|
663
|
-
"tools/list-tickets.ts": string;
|
|
664
|
-
"tools/create-ticket.ts": string;
|
|
665
|
-
"tools/update-ticket.ts": string;
|
|
666
|
-
"tools/list-contacts.ts": string;
|
|
667
675
|
".env.example": string;
|
|
668
|
-
"lib/
|
|
669
|
-
"app/api/auth/freshdesk/callback/route.ts": string;
|
|
670
|
-
"app/api/auth/freshdesk/route.ts": string;
|
|
671
|
-
};
|
|
672
|
-
};
|
|
673
|
-
"integration:teams": {
|
|
674
|
-
files: {
|
|
675
|
-
"tools/get-messages.ts": string;
|
|
676
|
-
"tools/list-chats.ts": string;
|
|
677
|
-
"tools/list-channels.ts": string;
|
|
676
|
+
"lib/intercom-client.ts": string;
|
|
678
677
|
"tools/send-message.ts": string;
|
|
679
|
-
"tools/list-
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"
|
|
678
|
+
"tools/list-conversations.ts": string;
|
|
679
|
+
"tools/list-contacts.ts": string;
|
|
680
|
+
"tools/get-conversation.ts": string;
|
|
681
|
+
"tools/get-contact.ts": string;
|
|
682
|
+
"app/api/auth/intercom/route.ts": string;
|
|
683
|
+
"app/api/auth/intercom/callback/route.ts": string;
|
|
683
684
|
};
|
|
684
685
|
};
|
|
685
686
|
"integration:box": {
|
|
686
687
|
files: {
|
|
688
|
+
".env.example": string;
|
|
689
|
+
"lib/box-client.ts": string;
|
|
690
|
+
"tools/search-files.ts": string;
|
|
687
691
|
"tools/create-folder.ts": string;
|
|
688
692
|
"tools/get-file.ts": string;
|
|
689
|
-
"tools/upload-file.ts": string;
|
|
690
|
-
"tools/search-files.ts": string;
|
|
691
693
|
"tools/list-files.ts": string;
|
|
692
|
-
".
|
|
693
|
-
"lib/box-client.ts": string;
|
|
694
|
-
"app/api/auth/box/callback/route.ts": string;
|
|
694
|
+
"tools/upload-file.ts": string;
|
|
695
695
|
"app/api/auth/box/route.ts": string;
|
|
696
|
+
"app/api/auth/box/callback/route.ts": string;
|
|
696
697
|
};
|
|
697
698
|
};
|
|
698
|
-
"integration:
|
|
699
|
+
"integration:onedrive": {
|
|
699
700
|
files: {
|
|
700
|
-
"tools/list-tables.ts": string;
|
|
701
|
-
"tools/delete-row.ts": string;
|
|
702
|
-
"tools/insert-row.ts": string;
|
|
703
|
-
"tools/query-table.ts": string;
|
|
704
|
-
"tools/update-row.ts": string;
|
|
705
701
|
".env.example": string;
|
|
706
|
-
"lib/
|
|
707
|
-
"
|
|
702
|
+
"lib/onedrive-client.ts": string;
|
|
703
|
+
"tools/search-files.ts": string;
|
|
704
|
+
"tools/list-files.ts": string;
|
|
705
|
+
"tools/download-file.ts": string;
|
|
706
|
+
"tools/upload-file.ts": string;
|
|
707
|
+
"app/api/auth/onedrive/route.ts": string;
|
|
708
|
+
"app/api/auth/onedrive/callback/route.ts": string;
|
|
708
709
|
};
|
|
709
710
|
};
|
|
710
|
-
"integration:
|
|
711
|
+
"integration:trello": {
|
|
711
712
|
files: {
|
|
712
|
-
"tools/search-documents.ts": string;
|
|
713
|
-
"tools/update-document.ts": string;
|
|
714
|
-
"tools/list-documents.ts": string;
|
|
715
|
-
"tools/create-document.ts": string;
|
|
716
|
-
"tools/get-document.ts": string;
|
|
717
713
|
".env.example": string;
|
|
718
|
-
"lib/
|
|
719
|
-
"
|
|
720
|
-
"
|
|
721
|
-
"
|
|
714
|
+
"lib/trello-client.ts": string;
|
|
715
|
+
"tools/update-card.ts": string;
|
|
716
|
+
"tools/create-card.ts": string;
|
|
717
|
+
"tools/list-cards.ts": string;
|
|
718
|
+
"tools/list-boards.ts": string;
|
|
719
|
+
"tools/get-card.ts": string;
|
|
720
|
+
"app/api/auth/trello/route.ts": string;
|
|
721
|
+
"app/api/auth/trello/callback/route.ts": string;
|
|
722
722
|
};
|
|
723
723
|
};
|
|
724
724
|
};
|