@adminide-stack/form-builder-core 5.1.4-alpha.305 → 5.1.4-alpha.306
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/lib/config/connectorsConfig.js +1 -1
- package/lib/config/llmProviderConfig.d.ts +3 -0
- package/lib/config/llmProviderConfig.d.ts.map +1 -0
- package/lib/config/llmProviderConfig.js +341 -0
- package/lib/config/llmProviderConfig.js.map +1 -0
- package/lib/config/mcpConnectorConfig.js +35 -35
- package/lib/config/mcpConnectorConfig.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -1
- package/package.json +2 -2
|
@@ -38005,7 +38005,7 @@ const connectorsConfig = [{
|
|
|
38005
38005
|
fontSize: 'large'
|
|
38006
38006
|
}
|
|
38007
38007
|
},
|
|
38008
|
-
logo: '_side/thirdparty/logos/
|
|
38008
|
+
logo: '_side/thirdparty/logos/supabase.svg',
|
|
38009
38009
|
enabled: true,
|
|
38010
38010
|
scopes: ['all'],
|
|
38011
38011
|
authMethods: ['api_key'],
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"llmProviderConfig.d.ts","sourceRoot":"","sources":["../../src/config/llmProviderConfig.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAE1D,eAAO,MAAM,kBAAkB,EAAE,eAAe,EAyW/C,CAAC"}
|
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
import {ContributeDefaultValueSourceType}from'common';const llmProvidersConfig = [{
|
|
2
|
+
id: 'anthropic-llm',
|
|
3
|
+
title: 'Anthropic',
|
|
4
|
+
description: 'Claude AI model API key configuration',
|
|
5
|
+
providerUrl: '',
|
|
6
|
+
enabled: true,
|
|
7
|
+
icon: {
|
|
8
|
+
name: 'AiOutlineApi',
|
|
9
|
+
style: {
|
|
10
|
+
fontSize: 'large'
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
logo: '_side/thirdparty/logos/anthropic_administrator.svg',
|
|
14
|
+
color: '#CC9B7A',
|
|
15
|
+
authMethods: ['api_key'],
|
|
16
|
+
categories: ['ai & machine learning'],
|
|
17
|
+
fields: [{
|
|
18
|
+
name: 'anthropicApiKey',
|
|
19
|
+
label: 'Anthropic API Key',
|
|
20
|
+
type: 'string',
|
|
21
|
+
placeholder: 'Starts with sk-ant-api03- (e.g., sk-ant-api03-XXXXXXXXXXXXXXXXXXXX)',
|
|
22
|
+
description: '',
|
|
23
|
+
required: false,
|
|
24
|
+
defaultValue: '',
|
|
25
|
+
isConfigField: true,
|
|
26
|
+
isSecret: true,
|
|
27
|
+
secretSource: {
|
|
28
|
+
type: ContributeDefaultValueSourceType.Vault,
|
|
29
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
30
|
+
secretKey: 'ANTHROPIC_API_KEY'
|
|
31
|
+
},
|
|
32
|
+
uiWidget: 'password',
|
|
33
|
+
enumValues: [],
|
|
34
|
+
readOnly: false,
|
|
35
|
+
iconType: ''
|
|
36
|
+
}, {
|
|
37
|
+
name: 'info',
|
|
38
|
+
label: 'Info',
|
|
39
|
+
type: 'string',
|
|
40
|
+
placeholder: '',
|
|
41
|
+
description: '<p>Refer to this <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://www.apideck.com/blog/how-to-get-your-claude-anthropic-api-key#step-1-create-an-anthropic-account">guide</a> to get anthropic credentials.</p>',
|
|
42
|
+
required: false,
|
|
43
|
+
defaultValue: '',
|
|
44
|
+
isConfigField: false,
|
|
45
|
+
isSecret: false,
|
|
46
|
+
secretSource: null,
|
|
47
|
+
uiWidget: 'LabelWidget',
|
|
48
|
+
enumValues: [],
|
|
49
|
+
readOnly: true,
|
|
50
|
+
iconType: 'info'
|
|
51
|
+
}]
|
|
52
|
+
}, {
|
|
53
|
+
id: 'google-gemini-llm',
|
|
54
|
+
title: 'Google',
|
|
55
|
+
description: 'Google Gemini AI model API key configuration',
|
|
56
|
+
providerUrl: '',
|
|
57
|
+
enabled: true,
|
|
58
|
+
icon: {
|
|
59
|
+
name: 'AiOutlineGoogle',
|
|
60
|
+
style: {
|
|
61
|
+
fontSize: 'large'
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
logo: '_side/thirdparty/logos/gemini.svg',
|
|
65
|
+
color: '#3186FF',
|
|
66
|
+
authMethods: ['api_key'],
|
|
67
|
+
categories: ['ai & machine learning'],
|
|
68
|
+
fields: [{
|
|
69
|
+
name: 'googleApiKey',
|
|
70
|
+
label: 'Google API Key',
|
|
71
|
+
type: 'string',
|
|
72
|
+
placeholder: 'Starts with AIza (e.g., AIzaSy_abc123def456...)',
|
|
73
|
+
description: '',
|
|
74
|
+
required: false,
|
|
75
|
+
defaultValue: '',
|
|
76
|
+
isConfigField: true,
|
|
77
|
+
isSecret: true,
|
|
78
|
+
secretSource: {
|
|
79
|
+
type: ContributeDefaultValueSourceType.Vault,
|
|
80
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
81
|
+
secretKey: 'GOOGLE_API_KEY'
|
|
82
|
+
},
|
|
83
|
+
uiWidget: 'password',
|
|
84
|
+
enumValues: [],
|
|
85
|
+
readOnly: false,
|
|
86
|
+
iconType: ''
|
|
87
|
+
}, {
|
|
88
|
+
name: 'info',
|
|
89
|
+
label: 'Info',
|
|
90
|
+
type: 'string',
|
|
91
|
+
placeholder: '',
|
|
92
|
+
description: '<p>Visit <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://aistudio.google.com/api-keys">aistudio.google.com</a> and get your api key.</p>',
|
|
93
|
+
required: false,
|
|
94
|
+
defaultValue: '',
|
|
95
|
+
isConfigField: false,
|
|
96
|
+
isSecret: false,
|
|
97
|
+
secretSource: null,
|
|
98
|
+
uiWidget: 'LabelWidget',
|
|
99
|
+
enumValues: [],
|
|
100
|
+
readOnly: true,
|
|
101
|
+
iconType: 'info'
|
|
102
|
+
}]
|
|
103
|
+
}, {
|
|
104
|
+
id: 'openai-llm',
|
|
105
|
+
title: 'Open AI',
|
|
106
|
+
description: 'OpenAI GPT model API key configuration',
|
|
107
|
+
providerUrl: '',
|
|
108
|
+
enabled: true,
|
|
109
|
+
icon: {
|
|
110
|
+
name: 'AiOutlineRobot',
|
|
111
|
+
style: {
|
|
112
|
+
fontSize: 'large'
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
logo: '_side/thirdparty/logos/openai.svg',
|
|
116
|
+
color: '#10A37F',
|
|
117
|
+
authMethods: ['api_key'],
|
|
118
|
+
categories: ['ai & machine learning'],
|
|
119
|
+
fields: [{
|
|
120
|
+
name: 'openaiApiKey',
|
|
121
|
+
label: 'OpenAI API Key',
|
|
122
|
+
type: 'string',
|
|
123
|
+
placeholder: 'Starts with sk- (e.g., sk-abc123def456...) or sk-proj- (e.g., sk-proj-abc123def456...)',
|
|
124
|
+
description: '',
|
|
125
|
+
required: false,
|
|
126
|
+
defaultValue: '',
|
|
127
|
+
isConfigField: true,
|
|
128
|
+
isSecret: true,
|
|
129
|
+
secretSource: {
|
|
130
|
+
type: ContributeDefaultValueSourceType.Vault,
|
|
131
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
132
|
+
secretKey: 'OPENAI_API_KEY'
|
|
133
|
+
},
|
|
134
|
+
uiWidget: 'password',
|
|
135
|
+
enumValues: [],
|
|
136
|
+
readOnly: false,
|
|
137
|
+
iconType: ''
|
|
138
|
+
}, {
|
|
139
|
+
name: 'info',
|
|
140
|
+
label: 'Info',
|
|
141
|
+
type: 'string',
|
|
142
|
+
placeholder: '',
|
|
143
|
+
description: '<p>Get your api key at their <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://platform.openai.com/">official page</a>.</p>',
|
|
144
|
+
required: false,
|
|
145
|
+
defaultValue: '',
|
|
146
|
+
isConfigField: false,
|
|
147
|
+
isSecret: false,
|
|
148
|
+
secretSource: null,
|
|
149
|
+
uiWidget: 'LabelWidget',
|
|
150
|
+
enumValues: [],
|
|
151
|
+
readOnly: true,
|
|
152
|
+
iconType: 'info'
|
|
153
|
+
}]
|
|
154
|
+
}, {
|
|
155
|
+
id: 'xai-llm',
|
|
156
|
+
title: 'X AI',
|
|
157
|
+
description: 'xAI Grok model API key configuration',
|
|
158
|
+
providerUrl: '',
|
|
159
|
+
enabled: true,
|
|
160
|
+
icon: {
|
|
161
|
+
name: 'AiOutlineApi',
|
|
162
|
+
style: {
|
|
163
|
+
fontSize: 'large'
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
logo: '_side/thirdparty/logos/webex.svg',
|
|
167
|
+
color: '#000000',
|
|
168
|
+
authMethods: ['api_key'],
|
|
169
|
+
categories: ['ai & machine learning'],
|
|
170
|
+
fields: [{
|
|
171
|
+
name: 'xaiApiKey',
|
|
172
|
+
label: 'Xai API Key',
|
|
173
|
+
type: 'string',
|
|
174
|
+
placeholder: 'Starts with xai- (e.g., xai-abc123def45678901234567890abcdef)',
|
|
175
|
+
description: '',
|
|
176
|
+
required: false,
|
|
177
|
+
defaultValue: '',
|
|
178
|
+
isConfigField: true,
|
|
179
|
+
isSecret: true,
|
|
180
|
+
secretSource: {
|
|
181
|
+
type: ContributeDefaultValueSourceType.Vault,
|
|
182
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
183
|
+
secretKey: 'XAI_API_KEY'
|
|
184
|
+
},
|
|
185
|
+
uiWidget: 'password',
|
|
186
|
+
enumValues: [],
|
|
187
|
+
readOnly: false,
|
|
188
|
+
iconType: ''
|
|
189
|
+
}, {
|
|
190
|
+
name: 'info',
|
|
191
|
+
label: 'Info',
|
|
192
|
+
type: 'string',
|
|
193
|
+
placeholder: '',
|
|
194
|
+
description: '<p>Visit <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://console.x.ai/">console.x.ai</a> and get your api key.</p>',
|
|
195
|
+
required: false,
|
|
196
|
+
defaultValue: '',
|
|
197
|
+
isConfigField: false,
|
|
198
|
+
isSecret: false,
|
|
199
|
+
secretSource: null,
|
|
200
|
+
uiWidget: 'LabelWidget',
|
|
201
|
+
enumValues: [],
|
|
202
|
+
readOnly: true,
|
|
203
|
+
iconType: 'info'
|
|
204
|
+
}]
|
|
205
|
+
}, {
|
|
206
|
+
id: 'moonshot-ai-llm',
|
|
207
|
+
title: 'Moonshot AI',
|
|
208
|
+
description: 'Moonshot AI (Kimi) model API key configuration',
|
|
209
|
+
providerUrl: '',
|
|
210
|
+
enabled: true,
|
|
211
|
+
icon: {
|
|
212
|
+
name: 'AiOutlineApi',
|
|
213
|
+
style: {
|
|
214
|
+
fontSize: 'large'
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
logo: '_side/thirdparty/logos/moonclerk.svg',
|
|
218
|
+
color: '#6366f1',
|
|
219
|
+
authMethods: ['api_key'],
|
|
220
|
+
categories: ['ai & machine learning'],
|
|
221
|
+
fields: [{
|
|
222
|
+
name: 'moonshotApiKey',
|
|
223
|
+
label: 'Moonshot API Key',
|
|
224
|
+
type: 'string',
|
|
225
|
+
placeholder: 'Starts with sk- (e.g., sk-abc123def456...)',
|
|
226
|
+
description: '',
|
|
227
|
+
required: false,
|
|
228
|
+
defaultValue: '',
|
|
229
|
+
isConfigField: true,
|
|
230
|
+
isSecret: true,
|
|
231
|
+
secretSource: {
|
|
232
|
+
type: ContributeDefaultValueSourceType.Vault,
|
|
233
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
234
|
+
secretKey: 'MOONSHOT_API_KEY'
|
|
235
|
+
},
|
|
236
|
+
uiWidget: 'password',
|
|
237
|
+
enumValues: [],
|
|
238
|
+
readOnly: false,
|
|
239
|
+
iconType: ''
|
|
240
|
+
}, {
|
|
241
|
+
name: 'howToGetMoonshotApiKey',
|
|
242
|
+
label: 'How to get moonshot api key',
|
|
243
|
+
type: 'string',
|
|
244
|
+
placeholder: '',
|
|
245
|
+
description: '<p></p><ol class="tiptap-ordered-list"><li class="tiptap-list-item"><p>Go to <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://platform.moonshot.cn">https://platform.moonshot.cn</a></p></li><li class="tiptap-list-item"><p>Log in (or sign up)</p></li><li class="tiptap-list-item"><p>Click <strong>API Keys</strong> in the left menu</p></li><li class="tiptap-list-item"><p>Click <strong>Create API Key</strong> → name it → <strong>Generate</strong></p></li></ol>',
|
|
246
|
+
required: false,
|
|
247
|
+
defaultValue: '',
|
|
248
|
+
isConfigField: false,
|
|
249
|
+
isSecret: false,
|
|
250
|
+
secretSource: null,
|
|
251
|
+
uiWidget: 'LabelWidget',
|
|
252
|
+
enumValues: [],
|
|
253
|
+
readOnly: true,
|
|
254
|
+
iconType: 'info'
|
|
255
|
+
}]
|
|
256
|
+
}, {
|
|
257
|
+
id: 'amazon-bedrock-llm',
|
|
258
|
+
title: 'Amazon Bedrock',
|
|
259
|
+
description: 'Amazon Bedrock AWS credentials configuration',
|
|
260
|
+
providerUrl: '',
|
|
261
|
+
enabled: true,
|
|
262
|
+
icon: {
|
|
263
|
+
name: 'AiOutlineCloudServer',
|
|
264
|
+
style: {
|
|
265
|
+
fontSize: 'large'
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
logo: '_side/thirdparty/logos/all-images-ai.svg',
|
|
269
|
+
color: '#6350FB',
|
|
270
|
+
authMethods: ['api_key'],
|
|
271
|
+
categories: ['ai & machine learning'],
|
|
272
|
+
fields: [{
|
|
273
|
+
name: 'amazonBedrockRegion',
|
|
274
|
+
label: 'Amazon Bedrock Region',
|
|
275
|
+
type: 'string',
|
|
276
|
+
placeholder: 'AWS region (e.g., us-east-1, us-west-2)',
|
|
277
|
+
description: '',
|
|
278
|
+
required: false,
|
|
279
|
+
defaultValue: '',
|
|
280
|
+
isConfigField: true,
|
|
281
|
+
isSecret: false,
|
|
282
|
+
secretSource: null,
|
|
283
|
+
uiWidget: 'text',
|
|
284
|
+
enumValues: [],
|
|
285
|
+
readOnly: false,
|
|
286
|
+
iconType: ''
|
|
287
|
+
}, {
|
|
288
|
+
name: 'amazonBedrockAccessKeyId',
|
|
289
|
+
label: 'Amazon Bedrock Access Key ID',
|
|
290
|
+
type: 'string',
|
|
291
|
+
placeholder: 'Starts with AKIA or ASIA (e.g., AKIAIOSFODNN7EXAMPLE)',
|
|
292
|
+
description: '',
|
|
293
|
+
required: false,
|
|
294
|
+
defaultValue: '',
|
|
295
|
+
isConfigField: true,
|
|
296
|
+
isSecret: true,
|
|
297
|
+
secretSource: {
|
|
298
|
+
type: ContributeDefaultValueSourceType.Vault,
|
|
299
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
300
|
+
secretKey: 'AMAZON_BEDROCK_ACCESS_KEY_ID'
|
|
301
|
+
},
|
|
302
|
+
uiWidget: 'password',
|
|
303
|
+
enumValues: [],
|
|
304
|
+
readOnly: false,
|
|
305
|
+
iconType: ''
|
|
306
|
+
}, {
|
|
307
|
+
name: 'amazonBedrockSecretAccessKey',
|
|
308
|
+
label: 'Amazon Bedrock Secret Access Key',
|
|
309
|
+
type: 'string',
|
|
310
|
+
placeholder: '40-character string (e.g., wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY)',
|
|
311
|
+
description: '',
|
|
312
|
+
required: false,
|
|
313
|
+
defaultValue: '',
|
|
314
|
+
isConfigField: true,
|
|
315
|
+
isSecret: true,
|
|
316
|
+
secretSource: {
|
|
317
|
+
type: ContributeDefaultValueSourceType.Vault,
|
|
318
|
+
secretType: 'ENVIRONMENT_VAR',
|
|
319
|
+
secretKey: 'AMAZON_BEDROCK_SECRET_ACCESS_KEY'
|
|
320
|
+
},
|
|
321
|
+
uiWidget: 'password',
|
|
322
|
+
enumValues: [],
|
|
323
|
+
readOnly: false,
|
|
324
|
+
iconType: ''
|
|
325
|
+
}, {
|
|
326
|
+
name: 'howToGetBedrockCredentials',
|
|
327
|
+
label: 'How to get bedrock credentials',
|
|
328
|
+
type: 'string',
|
|
329
|
+
placeholder: '',
|
|
330
|
+
description: '<ol class="tiptap-ordered-list"><li class="tiptap-list-item"><p>Go to <a target="_blank" rel="noopener noreferrer nofollow" class="text-blue-600 underline hover:text-blue-800" href="https://console.aws.amazon.com/iam">https://console.aws.amazon.com/iam</a></p></li><li class="tiptap-list-item"><p>Users → select/create a user</p></li><li class="tiptap-list-item"><p>Security credentials → Create access key</p></li><li class="tiptap-list-item"><p>Choose "Application running outside AWS" → Next</p></li><li class="tiptap-list-item"><p>Copy <strong>Access Key ID</strong> and <strong>Secret Access Key</strong> immediately</p></li><li class="tiptap-list-item"><p>Note the region where Bedrock is enabled (usually us-east-1 or us-west-2)</p></li></ol>',
|
|
331
|
+
required: false,
|
|
332
|
+
defaultValue: '',
|
|
333
|
+
isConfigField: false,
|
|
334
|
+
isSecret: false,
|
|
335
|
+
secretSource: null,
|
|
336
|
+
uiWidget: 'LabelWidget',
|
|
337
|
+
enumValues: [],
|
|
338
|
+
readOnly: true,
|
|
339
|
+
iconType: 'info'
|
|
340
|
+
}]
|
|
341
|
+
}];export{llmProvidersConfig};//# sourceMappingURL=llmProviderConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"llmProviderConfig.js","sources":["../../src/config/llmProviderConfig.ts"],"sourcesContent":[null],"names":[],"mappings":"sDAGA,MAAA,kBAAa,GAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const mcpProvidersConfig = [{
|
|
2
|
-
id: 'airtable',
|
|
2
|
+
id: 'airtable-mcp',
|
|
3
3
|
title: 'AirTable',
|
|
4
4
|
description: 'Spreadsheet-database hybrid',
|
|
5
5
|
scopes: ['data.records:read', 'data.records:write', 'schema.bases:read'],
|
|
@@ -27,7 +27,7 @@ const mcpProvidersConfig = [{
|
|
|
27
27
|
authMethods: ['api_key'],
|
|
28
28
|
categories: ['data & analytics']
|
|
29
29
|
}, {
|
|
30
|
-
id: 'asana',
|
|
30
|
+
id: 'asana-mcp',
|
|
31
31
|
title: 'Asana',
|
|
32
32
|
description: 'Organize tasks, track projects, and collaborate with your team',
|
|
33
33
|
providerUrl: 'https://app.asana.com',
|
|
@@ -45,7 +45,7 @@ const mcpProvidersConfig = [{
|
|
|
45
45
|
authMethods: ['oauth2'],
|
|
46
46
|
categories: ['productivity & project management']
|
|
47
47
|
}, {
|
|
48
|
-
id: 'cal',
|
|
48
|
+
id: 'cal-mcp',
|
|
49
49
|
title: 'Cal',
|
|
50
50
|
description: 'Cal is a meeting scheduling platform that offers shareable booking links and ...',
|
|
51
51
|
providerUrl: 'https://cal.com',
|
|
@@ -82,7 +82,7 @@ const mcpProvidersConfig = [{
|
|
|
82
82
|
iconType: ''
|
|
83
83
|
}]
|
|
84
84
|
}, {
|
|
85
|
-
id: 'clickup',
|
|
85
|
+
id: 'clickup-mcp',
|
|
86
86
|
title: 'ClickUp',
|
|
87
87
|
description: 'ClickUp is an all-in-one productivity platform for managing tasks, docs, goal...',
|
|
88
88
|
providerUrl: 'https://app.clickup.com',
|
|
@@ -119,7 +119,7 @@ const mcpProvidersConfig = [{
|
|
|
119
119
|
iconType: ''
|
|
120
120
|
}]
|
|
121
121
|
}, {
|
|
122
|
-
id: 'cloudflare',
|
|
122
|
+
id: 'cloudflare-mcp',
|
|
123
123
|
title: 'Cloudflare',
|
|
124
124
|
description: 'Cloudflare is a global network that secures and accelerates web traffic',
|
|
125
125
|
scopes: ['account:read', 'workers:write', 'dns:read'],
|
|
@@ -135,7 +135,7 @@ const mcpProvidersConfig = [{
|
|
|
135
135
|
authMethods: ['api_key'],
|
|
136
136
|
categories: ['developer tools & devops']
|
|
137
137
|
}, {
|
|
138
|
-
id: 'confluence',
|
|
138
|
+
id: 'confluence-mcp',
|
|
139
139
|
title: 'Confluence',
|
|
140
140
|
description: "Confluence is Atlassian's team collaboration and knowledge management platfo...",
|
|
141
141
|
providerUrl: 'https://auth.atlassian.com',
|
|
@@ -228,7 +228,7 @@ const mcpProvidersConfig = [{
|
|
|
228
228
|
fontSize: 'large'
|
|
229
229
|
}
|
|
230
230
|
},
|
|
231
|
-
logo: '_side/thirdparty/logos/
|
|
231
|
+
logo: '_side/thirdparty/logos/context7.jpeg',
|
|
232
232
|
authMethods: ['api_key'],
|
|
233
233
|
categories: ['developer tools & devops']
|
|
234
234
|
}, {
|
|
@@ -243,7 +243,7 @@ const mcpProvidersConfig = [{
|
|
|
243
243
|
fontSize: 'large'
|
|
244
244
|
}
|
|
245
245
|
},
|
|
246
|
-
logo: '_side/thirdparty/logos/
|
|
246
|
+
logo: '_side/thirdparty/logos/deepwiki.png',
|
|
247
247
|
authMethods: ['api_key'],
|
|
248
248
|
categories: ['developer tools & devops']
|
|
249
249
|
}, {
|
|
@@ -258,11 +258,11 @@ const mcpProvidersConfig = [{
|
|
|
258
258
|
fontSize: 'large'
|
|
259
259
|
}
|
|
260
260
|
},
|
|
261
|
-
logo: '_side/thirdparty/logos/
|
|
261
|
+
logo: '_side/thirdparty/logos/deepwiki.png',
|
|
262
262
|
authMethods: ['api_key'],
|
|
263
263
|
categories: ['developer tools & devops']
|
|
264
264
|
}, {
|
|
265
|
-
id: 'figma',
|
|
265
|
+
id: 'figma-mcp',
|
|
266
266
|
title: 'Figma',
|
|
267
267
|
description: 'Figma is a collaborative interface design tool for teams and individuals. It ...',
|
|
268
268
|
providerUrl: 'https://www.figma.com',
|
|
@@ -314,7 +314,7 @@ const mcpProvidersConfig = [{
|
|
|
314
314
|
iconType: 'info'
|
|
315
315
|
}]
|
|
316
316
|
}, {
|
|
317
|
-
id: 'github',
|
|
317
|
+
id: 'github-mcp',
|
|
318
318
|
title: 'GitHub',
|
|
319
319
|
description: 'Access repositories, manage issues, and review pull requests',
|
|
320
320
|
providerUrl: 'https://github.com',
|
|
@@ -332,7 +332,7 @@ const mcpProvidersConfig = [{
|
|
|
332
332
|
authMethods: ['oauth2'],
|
|
333
333
|
categories: ['developer tools & devops']
|
|
334
334
|
}, {
|
|
335
|
-
id: 'googledocs',
|
|
335
|
+
id: 'googledocs-mcp',
|
|
336
336
|
title: 'Google Docs',
|
|
337
337
|
description: 'Google Docs is a cloud-based word processor that enables document creation an...',
|
|
338
338
|
providerUrl: 'https://accounts.google.com',
|
|
@@ -349,7 +349,7 @@ const mcpProvidersConfig = [{
|
|
|
349
349
|
authMethods: ['oauth2'],
|
|
350
350
|
categories: ['document & file management']
|
|
351
351
|
}, {
|
|
352
|
-
id: 'google-drive',
|
|
352
|
+
id: 'google-drive-mcp',
|
|
353
353
|
title: 'Google Drive',
|
|
354
354
|
description: 'Access and manage your files, folders, and documents from Google Drive',
|
|
355
355
|
providerUrl: 'https://accounts.google.com',
|
|
@@ -367,7 +367,7 @@ const mcpProvidersConfig = [{
|
|
|
367
367
|
authMethods: ['oauth2'],
|
|
368
368
|
categories: ['document & file management']
|
|
369
369
|
}, {
|
|
370
|
-
id: 'googlesheets',
|
|
370
|
+
id: 'googlesheets-mcp',
|
|
371
371
|
title: 'Google Sheets',
|
|
372
372
|
description: 'Google Sheets is a cloud-based spreadsheet tool for real-time collaboration a...',
|
|
373
373
|
providerUrl: 'https://accounts.google.com',
|
|
@@ -395,11 +395,11 @@ const mcpProvidersConfig = [{
|
|
|
395
395
|
fontSize: 'large'
|
|
396
396
|
}
|
|
397
397
|
},
|
|
398
|
-
logo: '_side/thirdparty/logos/
|
|
398
|
+
logo: '_side/thirdparty/logos/Granola_AI.svg',
|
|
399
399
|
authMethods: ['api_key'],
|
|
400
400
|
categories: ['productivity & project management']
|
|
401
401
|
}, {
|
|
402
|
-
id: 'hubspot',
|
|
402
|
+
id: 'hubspot-mcp',
|
|
403
403
|
title: 'HubSpot',
|
|
404
404
|
description: 'HubSpot is an all-in-one marketing, sales, and customer service platform. It ...',
|
|
405
405
|
providerUrl: 'https://app.hubspot.com',
|
|
@@ -436,7 +436,7 @@ const mcpProvidersConfig = [{
|
|
|
436
436
|
iconType: ''
|
|
437
437
|
}]
|
|
438
438
|
}, {
|
|
439
|
-
id: 'hugging-face',
|
|
439
|
+
id: 'hugging-face-mcp',
|
|
440
440
|
title: 'Hugging Face',
|
|
441
441
|
description: 'AI models and machine learning platform',
|
|
442
442
|
scopes: ['read'],
|
|
@@ -449,7 +449,7 @@ const mcpProvidersConfig = [{
|
|
|
449
449
|
authMethods: ['api_key'],
|
|
450
450
|
categories: ['ai & machine learning']
|
|
451
451
|
}, {
|
|
452
|
-
id: 'jira',
|
|
452
|
+
id: 'jira-mcp',
|
|
453
453
|
title: 'Jira',
|
|
454
454
|
description: 'Issue and project tracking',
|
|
455
455
|
scopes: ['read:jira-work', 'write:jira-work'],
|
|
@@ -462,7 +462,7 @@ const mcpProvidersConfig = [{
|
|
|
462
462
|
authMethods: ['oauth2'],
|
|
463
463
|
categories: ['productivity & project management']
|
|
464
464
|
}, {
|
|
465
|
-
id: 'linear',
|
|
465
|
+
id: 'linear-mcp',
|
|
466
466
|
title: 'Linear',
|
|
467
467
|
description: 'Project management and issue tracking',
|
|
468
468
|
scopes: ['read', 'write'],
|
|
@@ -475,7 +475,7 @@ const mcpProvidersConfig = [{
|
|
|
475
475
|
authMethods: ['oauth2'],
|
|
476
476
|
categories: ['productivity & project management']
|
|
477
477
|
}, {
|
|
478
|
-
id: 'monday',
|
|
478
|
+
id: 'monday-mcp',
|
|
479
479
|
title: 'Monday',
|
|
480
480
|
description: 'Monday.com is a customizable work management platform for project planning',
|
|
481
481
|
providerUrl: 'https://auth.monday.com',
|
|
@@ -492,7 +492,7 @@ const mcpProvidersConfig = [{
|
|
|
492
492
|
authMethods: ['oauth2'],
|
|
493
493
|
categories: ['productivity & project management']
|
|
494
494
|
}, {
|
|
495
|
-
id: 'neon',
|
|
495
|
+
id: 'neon-mcp',
|
|
496
496
|
title: 'Neon',
|
|
497
497
|
description: 'Neon is a serverless Postgres platform for building scalable apps faster. Its...',
|
|
498
498
|
providerUrl: 'https://oauth2.neon.tech',
|
|
@@ -529,7 +529,7 @@ const mcpProvidersConfig = [{
|
|
|
529
529
|
iconType: ''
|
|
530
530
|
}]
|
|
531
531
|
}, {
|
|
532
|
-
id: 'notion',
|
|
532
|
+
id: 'notion-mcp',
|
|
533
533
|
title: 'Notion',
|
|
534
534
|
description: 'All-in-one workspace for notes and docs',
|
|
535
535
|
mcpUrl: 'https://mcp.notion.com',
|
|
@@ -542,7 +542,7 @@ const mcpProvidersConfig = [{
|
|
|
542
542
|
authMethods: ['oauth2'],
|
|
543
543
|
categories: ['productivity & project management']
|
|
544
544
|
}, {
|
|
545
|
-
id: 'posthog',
|
|
545
|
+
id: 'posthog-mcp',
|
|
546
546
|
title: 'PostHog',
|
|
547
547
|
description: 'Product analytics and feature flags',
|
|
548
548
|
scopes: ['read', 'write'],
|
|
@@ -566,11 +566,11 @@ const mcpProvidersConfig = [{
|
|
|
566
566
|
fontSize: 'large'
|
|
567
567
|
}
|
|
568
568
|
},
|
|
569
|
-
logo: '_side/thirdparty/logos/
|
|
569
|
+
logo: '_side/thirdparty/logos/postiz.svg',
|
|
570
570
|
authMethods: ['api_key'],
|
|
571
571
|
categories: ['marketing & social media']
|
|
572
572
|
}, {
|
|
573
|
-
id: 'salesforce',
|
|
573
|
+
id: 'salesforce-mcp',
|
|
574
574
|
title: 'Salesforce',
|
|
575
575
|
description: 'Salesforce is a leading CRM platform that helps businesses manage sales, serv...',
|
|
576
576
|
providerUrl: 'https://login.salesforce.com',
|
|
@@ -587,7 +587,7 @@ const mcpProvidersConfig = [{
|
|
|
587
587
|
authMethods: ['oauth2'],
|
|
588
588
|
categories: ['crm']
|
|
589
589
|
}, {
|
|
590
|
-
id: 'sentry',
|
|
590
|
+
id: 'sentry-mcp',
|
|
591
591
|
title: 'Sentry',
|
|
592
592
|
description: 'Sentry is an error tracking and performance monitoring platform for applicati...',
|
|
593
593
|
providerUrl: 'https://sentry.io',
|
|
@@ -624,7 +624,7 @@ const mcpProvidersConfig = [{
|
|
|
624
624
|
iconType: ''
|
|
625
625
|
}]
|
|
626
626
|
}, {
|
|
627
|
-
id: 'shopify',
|
|
627
|
+
id: 'shopify-mcp',
|
|
628
628
|
title: 'Shopify',
|
|
629
629
|
description: 'Shopify is an e-commerce platform for building, managing, and scaling online ...',
|
|
630
630
|
providerUrl: 'https://accounts.shopify.com',
|
|
@@ -676,7 +676,7 @@ const mcpProvidersConfig = [{
|
|
|
676
676
|
iconType: ''
|
|
677
677
|
}]
|
|
678
678
|
}, {
|
|
679
|
-
id: 'slack',
|
|
679
|
+
id: 'slack-mcp',
|
|
680
680
|
title: 'Slack',
|
|
681
681
|
description: 'Team communication and messaging',
|
|
682
682
|
scopes: ['channels:read', 'chat:write', 'users:read'],
|
|
@@ -689,7 +689,7 @@ const mcpProvidersConfig = [{
|
|
|
689
689
|
authMethods: ['oauth2'],
|
|
690
690
|
categories: ['collaboration & communication']
|
|
691
691
|
}, {
|
|
692
|
-
id: 'stripe',
|
|
692
|
+
id: 'stripe-mcp',
|
|
693
693
|
title: 'Stripe',
|
|
694
694
|
description: 'Stripe is a global online payments platform offering APIs for managing paymen...',
|
|
695
695
|
providerUrl: 'https://connect.stripe.com',
|
|
@@ -741,7 +741,7 @@ const mcpProvidersConfig = [{
|
|
|
741
741
|
iconType: 'info'
|
|
742
742
|
}]
|
|
743
743
|
}, {
|
|
744
|
-
id: 'supabase',
|
|
744
|
+
id: 'supabase-mcp',
|
|
745
745
|
title: 'Supabase',
|
|
746
746
|
description: 'Supabase is an open-source backend platform offering scalable Postgres databa...',
|
|
747
747
|
providerUrl: 'https://api.supabase.com',
|
|
@@ -823,7 +823,7 @@ const mcpProvidersConfig = [{
|
|
|
823
823
|
fontSize: 'large'
|
|
824
824
|
}
|
|
825
825
|
},
|
|
826
|
-
logo: '_side/thirdparty/logos/
|
|
826
|
+
logo: '_side/thirdparty/logos/tavily.svg',
|
|
827
827
|
authMethods: ['api_key'],
|
|
828
828
|
categories: ['data & analytics']
|
|
829
829
|
}, {
|
|
@@ -838,11 +838,11 @@ const mcpProvidersConfig = [{
|
|
|
838
838
|
fontSize: 'large'
|
|
839
839
|
}
|
|
840
840
|
},
|
|
841
|
-
logo: '_side/thirdparty/logos/
|
|
841
|
+
logo: '_side/thirdparty/logos/tinyfish.svg',
|
|
842
842
|
authMethods: ['api_key'],
|
|
843
843
|
categories: ['developer tools & devops']
|
|
844
844
|
}, {
|
|
845
|
-
id: 'todoist',
|
|
845
|
+
id: 'todoist-mcp',
|
|
846
846
|
title: 'Todoist',
|
|
847
847
|
description: 'Task management and to-do lists',
|
|
848
848
|
scopes: ['task:add', 'data:read', 'data:read_write'],
|
|
@@ -855,7 +855,7 @@ const mcpProvidersConfig = [{
|
|
|
855
855
|
authMethods: ['api_key'],
|
|
856
856
|
categories: ['productivity & project management']
|
|
857
857
|
}, {
|
|
858
|
-
id: 'vercel',
|
|
858
|
+
id: 'vercel-mcp',
|
|
859
859
|
title: 'Vercel',
|
|
860
860
|
description: 'Vercel is a platform for frontend frameworks and static sites, letting you ho...',
|
|
861
861
|
providerUrl: 'https://vercel.com',
|
|
@@ -922,7 +922,7 @@ const mcpProvidersConfig = [{
|
|
|
922
922
|
authMethods: ['api_key'],
|
|
923
923
|
categories: ['e-commerce']
|
|
924
924
|
}, {
|
|
925
|
-
id: 'zoom',
|
|
925
|
+
id: 'zoom-mcp',
|
|
926
926
|
title: 'Zoom',
|
|
927
927
|
description: 'Zoom is a video conferencing and online meeting platform with features like b...',
|
|
928
928
|
providerUrl: 'https://zoom.us',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcpConnectorConfig.js","sources":["../../src/config/mcpConnectorConfig.ts"],"sourcesContent":[null],"names":[],"mappings":"AAAY,wBAAE,GAAA,CAAA;AAEd,EAAA,EAAA,EAAM,
|
|
1
|
+
{"version":3,"file":"mcpConnectorConfig.js","sources":["../../src/config/mcpConnectorConfig.ts"],"sourcesContent":[null],"names":[],"mappings":"AAAY,wBAAE,GAAA,CAAA;AAEd,EAAA,EAAA,EAAM,cAAM;AAEZ,EAAA,iBAAiB;eACF,6BAAA;QACX,EAAK,CAAE,mBAAO,EAAA,oBAAA,EAAA,mBAAA,CAAA;QACd,EAAA,8BAAoB;MACpB,EAAA;IACA,IAAA,EAAM;;AAEN,EAAA,IAAA,EAAI,qCAAE;SACF;AACA,EAAA,WAAK,EAAC,CAAE,SAAA,CAAA;YAAE,EAAA,CAAA,mCAAiB;;MAC7B,WAAA;OACF,EAAA,OAAA;aACO,EAAA,qBAAO;QACd,EAAM,CAAA,aAAS,EAAA,YAAA,CAAA;QACf,EAAA,uBAAkB;MAClB,EAAA;AACA,IAAA,IAAA,EAAA,cAAc;IACd,KAAA,EAAA;AACA,MAAA,QAAS,EAAA;AACZ;AAED,GAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './config/apiConfigTypes';
|
|
2
2
|
export * from './config/cdnConfig';
|
|
3
3
|
export * from './config/connectorsConfig';
|
|
4
|
+
export * from './config/llmProviderConfig';
|
|
4
5
|
export * from './config/mcpConnectorConfig';
|
|
5
6
|
export * from './inngest/generateFunctionCode';
|
|
6
7
|
export * from './inngest/interfaces/types';
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yCAAyC,CAAC;AACxD,OAAO,EAAE,mBAAmB,EAAE,8BAA8B,EAAE,MAAM,yBAAyB,CAAC;AAC9F,cAAc,4BAA4B,CAAC;AAC3C,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yCAAyC,CAAC;AACxD,OAAO,EAAE,mBAAmB,EAAE,8BAA8B,EAAE,MAAM,yBAAyB,CAAC;AAC9F,cAAc,4BAA4B,CAAC;AAC3C,cAAc,cAAc,CAAC"}
|
package/lib/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{CONNECTOR_CATEGORIES}from'./config/apiConfigTypes.js';export{getCdnBase,iurl,setCdnBase}from'./config/cdnConfig.js';export{connectorsConfig}from'./config/connectorsConfig.js';export{mcpProvidersConfig}from'./config/mcpConnectorConfig.js';export{generateFunctionCode,generateHandlerBody,generateHandlerBodyWithReturn,generateStepFromFunction,generateStepFunctionsFromDB,wrapStepsInInngestFunction}from'./inngest/generateFunctionCode.js';export{getAvailableDefinitions,installLibraryForAutocomplete,setupMonacoAutocomplete,setupStepAutocomplete,updateAutocompleteConfig}from'./inngest/monacoAutocompleteIntegration.js';export{cleanStepCode,extractFunctionBody,extractStepVarName,generateFromExtractedFunctions}from'./inngest/stepGenerator.js';export{deepMergeElements,deepMergeFormSteps}from'./utils/deepMergeFormSteps.js';export{flatten,unflatten}from'./utils/json.js';//# sourceMappingURL=index.js.map
|
|
1
|
+
export{CONNECTOR_CATEGORIES}from'./config/apiConfigTypes.js';export{getCdnBase,iurl,setCdnBase}from'./config/cdnConfig.js';export{connectorsConfig}from'./config/connectorsConfig.js';export{llmProvidersConfig}from'./config/llmProviderConfig.js';export{mcpProvidersConfig}from'./config/mcpConnectorConfig.js';export{generateFunctionCode,generateHandlerBody,generateHandlerBodyWithReturn,generateStepFromFunction,generateStepFunctionsFromDB,wrapStepsInInngestFunction}from'./inngest/generateFunctionCode.js';export{getAvailableDefinitions,installLibraryForAutocomplete,setupMonacoAutocomplete,setupStepAutocomplete,updateAutocompleteConfig}from'./inngest/monacoAutocompleteIntegration.js';export{cleanStepCode,extractFunctionBody,extractStepVarName,generateFromExtractedFunctions}from'./inngest/stepGenerator.js';export{deepMergeElements,deepMergeFormSteps}from'./utils/deepMergeFormSteps.js';export{flatten,unflatten}from'./utils/json.js';//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminide-stack/form-builder-core",
|
|
3
|
-
"version": "5.1.4-alpha.
|
|
3
|
+
"version": "5.1.4-alpha.306",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "8764278c7ad1a061489a6985c936c0ffba4430af"
|
|
28
28
|
}
|