@arcadeai/design-system 3.15.1 → 3.17.0
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/dist/assets/icons/firecrawl.js +19 -8
- package/dist/assets/icons/microsoft-dynamics.js +3 -3
- package/dist/assets/icons/pylon.js +10 -0
- package/dist/components/index.js +184 -182
- package/dist/components/ui/atoms/icons/index.d.ts +1 -0
- package/dist/components/ui/atoms/icons/index.js +80 -78
- package/dist/components/ui/atoms/icons/pylon.d.ts +3 -0
- package/dist/components/ui/atoms/icons/pylon.js +27 -0
- package/dist/components/ui/atoms/index.js +182 -180
- package/dist/components/ui/index.js +184 -182
- package/dist/main.js +210 -208
- package/dist/metadata/oauth-providers.d.ts +2 -0
- package/dist/metadata/oauth-providers.js +59 -47
- package/dist/metadata/toolkits.js +52 -13
- package/package.json +1 -1
|
@@ -5,30 +5,31 @@ import { Atlassian as s } from "../components/ui/atoms/icons/atlassian.js";
|
|
|
5
5
|
import { Calendly as c } from "../components/ui/atoms/icons/calendly.js";
|
|
6
6
|
import { Clickup as n } from "../components/ui/atoms/icons/clickup.js";
|
|
7
7
|
import { Discord as p } from "../components/ui/atoms/icons/discord.js";
|
|
8
|
-
import { Dropbox as
|
|
9
|
-
import { Github as
|
|
8
|
+
import { Dropbox as h } from "../components/ui/atoms/icons/dropbox.js";
|
|
9
|
+
import { Github as l } from "../components/ui/atoms/icons/github.js";
|
|
10
10
|
import { Google as u } from "../components/ui/atoms/icons/google.js";
|
|
11
11
|
import { Hubspot as m } from "../components/ui/atoms/icons/hubspot.js";
|
|
12
12
|
import { Linear as v } from "../components/ui/atoms/icons/linear.js";
|
|
13
13
|
import { Linkedin as g } from "../components/ui/atoms/icons/linkedin.js";
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
14
|
+
import { Mailchimp as b } from "../components/ui/atoms/icons/mailchimp.js";
|
|
15
|
+
import { Mcp as A } from "../components/ui/atoms/icons/mcp.js";
|
|
16
|
+
import { Microsoft as k } from "../components/ui/atoms/icons/microsoft.js";
|
|
17
|
+
import { Miro as f } from "../components/ui/atoms/icons/miro.js";
|
|
18
|
+
import { Notion as _ } from "../components/ui/atoms/icons/notion.js";
|
|
19
|
+
import { Oauth as I } from "../components/ui/atoms/icons/oauth.js";
|
|
20
|
+
import { Pagerduty as w } from "../components/ui/atoms/icons/pagerduty.js";
|
|
21
|
+
import { Reddit as U } from "../components/ui/atoms/icons/reddit.js";
|
|
22
|
+
import { Salesforce as z } from "../components/ui/atoms/icons/salesforce.js";
|
|
23
|
+
import { Slack as y } from "../components/ui/atoms/icons/slack.js";
|
|
24
|
+
import { Spotify as T } from "../components/ui/atoms/icons/spotify.js";
|
|
25
|
+
import { Square as S } from "../components/ui/atoms/icons/square.js";
|
|
26
|
+
import { Tesla as $ } from "../components/ui/atoms/icons/tesla.js";
|
|
27
|
+
import { Ticktick as M } from "../components/ui/atoms/icons/ticktick.js";
|
|
27
28
|
import { Twitch as O } from "../components/ui/atoms/icons/twitch.js";
|
|
28
29
|
import { X as C } from "../components/ui/atoms/icons/x.js";
|
|
29
30
|
import { Zendesk as P } from "../components/ui/atoms/icons/zendesk.js";
|
|
30
31
|
import { Zoho as D } from "../components/ui/atoms/icons/zoho.js";
|
|
31
|
-
import { Zoom as
|
|
32
|
+
import { Zoom as R } from "../components/ui/atoms/icons/zoom.js";
|
|
32
33
|
import { PUBLIC_ICON_URL as o } from "./constants.js";
|
|
33
34
|
const i = {
|
|
34
35
|
Airtable: "arcade-airtable",
|
|
@@ -43,6 +44,7 @@ const i = {
|
|
|
43
44
|
Hubspot: "arcade-hubspot",
|
|
44
45
|
Linkedin: "arcade-linkedin",
|
|
45
46
|
Linear: "arcade-linear",
|
|
47
|
+
Mailchimp: "arcade-mailchimp",
|
|
46
48
|
MCP_OAuth2: "arcade-mcp-oauth2",
|
|
47
49
|
Microsoft: "arcade-microsoft",
|
|
48
50
|
Miro: "arcade-miro",
|
|
@@ -74,6 +76,7 @@ const i = {
|
|
|
74
76
|
Hubspot: "hubspot",
|
|
75
77
|
Linkedin: "linkedin",
|
|
76
78
|
Linear: "linear",
|
|
79
|
+
Mailchimp: "mailchimp",
|
|
77
80
|
MCP_OAuth2: "mcp-oauth2",
|
|
78
81
|
Microsoft: "microsoft",
|
|
79
82
|
Miro: "miro",
|
|
@@ -92,7 +95,7 @@ const i = {
|
|
|
92
95
|
Zendesk: "zendesk",
|
|
93
96
|
Zoho: "zoho",
|
|
94
97
|
Zoom: "zoom"
|
|
95
|
-
},
|
|
98
|
+
}, Z = [
|
|
96
99
|
{
|
|
97
100
|
id: i.Asana,
|
|
98
101
|
provider_id: e.Asana,
|
|
@@ -126,7 +129,7 @@ const i = {
|
|
|
126
129
|
name: "Dropbox",
|
|
127
130
|
description: "Authorize tools and agents with Dropbox",
|
|
128
131
|
publicIconUrl: `${o}/dropbox.svg`,
|
|
129
|
-
icon:
|
|
132
|
+
icon: h,
|
|
130
133
|
docs: "https://docs.arcade.dev/home/auth-providers/dropbox"
|
|
131
134
|
},
|
|
132
135
|
{
|
|
@@ -135,7 +138,7 @@ const i = {
|
|
|
135
138
|
name: "GitHub",
|
|
136
139
|
description: "Authorize tools and agents with GitHub, including private repositories",
|
|
137
140
|
publicIconUrl: `${o}/github.svg`,
|
|
138
|
-
icon:
|
|
141
|
+
icon: l,
|
|
139
142
|
docs: "https://docs.arcade.dev/home/auth-providers/github"
|
|
140
143
|
},
|
|
141
144
|
{
|
|
@@ -180,7 +183,7 @@ const i = {
|
|
|
180
183
|
name: "Microsoft",
|
|
181
184
|
description: "Authorize tools and agents with Microsoft",
|
|
182
185
|
publicIconUrl: `${o}/microsoft.svg`,
|
|
183
|
-
icon:
|
|
186
|
+
icon: k,
|
|
184
187
|
docs: "https://docs.arcade.dev/home/auth-providers/microsoft"
|
|
185
188
|
},
|
|
186
189
|
{
|
|
@@ -189,7 +192,7 @@ const i = {
|
|
|
189
192
|
name: "Notion",
|
|
190
193
|
description: "Authorize tools and agents with Notion",
|
|
191
194
|
publicIconUrl: `${o}/notion.svg`,
|
|
192
|
-
icon:
|
|
195
|
+
icon: _,
|
|
193
196
|
docs: "https://docs.arcade.dev/home/auth-providers/notion"
|
|
194
197
|
},
|
|
195
198
|
{
|
|
@@ -198,7 +201,7 @@ const i = {
|
|
|
198
201
|
name: "Reddit",
|
|
199
202
|
description: "Authorize tools and agents with Reddit",
|
|
200
203
|
publicIconUrl: `${o}/reddit.svg`,
|
|
201
|
-
icon:
|
|
204
|
+
icon: U,
|
|
202
205
|
docs: "https://docs.arcade.dev/home/auth-providers/reddit"
|
|
203
206
|
},
|
|
204
207
|
{
|
|
@@ -207,7 +210,7 @@ const i = {
|
|
|
207
210
|
name: "Slack",
|
|
208
211
|
description: "Authorize tools and agents with Slack",
|
|
209
212
|
publicIconUrl: `${o}/slack.svg`,
|
|
210
|
-
icon:
|
|
213
|
+
icon: y,
|
|
211
214
|
docs: "https://docs.arcade.dev/home/auth-providers/slack"
|
|
212
215
|
},
|
|
213
216
|
{
|
|
@@ -216,7 +219,7 @@ const i = {
|
|
|
216
219
|
name: "Spotify",
|
|
217
220
|
description: "Authorize tools and agents with Spotify",
|
|
218
221
|
publicIconUrl: `${o}/spotify.svg`,
|
|
219
|
-
icon:
|
|
222
|
+
icon: T,
|
|
220
223
|
docs: "https://docs.arcade.dev/home/auth-providers/spotify"
|
|
221
224
|
},
|
|
222
225
|
{
|
|
@@ -243,29 +246,29 @@ const i = {
|
|
|
243
246
|
name: "Zoom",
|
|
244
247
|
description: "Authorize tools and agents with Zoom",
|
|
245
248
|
publicIconUrl: `${o}/zoom.svg`,
|
|
246
|
-
icon:
|
|
249
|
+
icon: R,
|
|
247
250
|
docs: "https://docs.arcade.dev/home/auth-providers/zoom"
|
|
248
251
|
}
|
|
249
|
-
],
|
|
252
|
+
], x = {
|
|
250
253
|
id: i.OAuth2,
|
|
251
254
|
provider_id: e.OAuth2,
|
|
252
255
|
name: "OAuth 2.0",
|
|
253
256
|
description: "Authorize tools and agents with any OAuth 2.0 compatible provider",
|
|
254
257
|
publicIconUrl: `${o}/oauth.svg`,
|
|
255
|
-
icon:
|
|
258
|
+
icon: I,
|
|
256
259
|
docs: "https://docs.arcade.dev/home/auth-providers/oauth2"
|
|
257
|
-
},
|
|
260
|
+
}, L = {
|
|
258
261
|
id: i.MCP_OAuth2,
|
|
259
262
|
provider_id: e.MCP_OAuth2,
|
|
260
263
|
name: "MCP",
|
|
261
264
|
description: "Model Context Protocol (MCP)",
|
|
262
265
|
publicIconUrl: `${o}/mcp.svg`,
|
|
263
|
-
icon:
|
|
266
|
+
icon: A,
|
|
264
267
|
docs: "https://docs.arcade.dev/en/home/glossary#mcp-server"
|
|
265
268
|
// TODO: Use the correct docs link when we have it
|
|
266
|
-
},
|
|
267
|
-
Z,
|
|
269
|
+
}, G = [
|
|
268
270
|
x,
|
|
271
|
+
L,
|
|
269
272
|
{
|
|
270
273
|
id: i.Airtable,
|
|
271
274
|
provider_id: e.Airtable,
|
|
@@ -293,13 +296,22 @@ const i = {
|
|
|
293
296
|
icon: n,
|
|
294
297
|
docs: "https://docs.arcade.dev/home/auth-providers/clickup"
|
|
295
298
|
},
|
|
299
|
+
{
|
|
300
|
+
id: i.Mailchimp,
|
|
301
|
+
provider_id: e.Mailchimp,
|
|
302
|
+
name: "Mailchimp",
|
|
303
|
+
description: "Authorize tools and agents with Mailchimp",
|
|
304
|
+
publicIconUrl: `${o}/mailchimp.svg`,
|
|
305
|
+
icon: b,
|
|
306
|
+
docs: "https://docs.arcade.dev/home/auth-providers/mailchimp"
|
|
307
|
+
},
|
|
296
308
|
{
|
|
297
309
|
id: i.Miro,
|
|
298
310
|
provider_id: e.Miro,
|
|
299
311
|
name: "Miro",
|
|
300
312
|
description: "Authorize tools and agents with Miro",
|
|
301
313
|
publicIconUrl: `${o}/miro.svg`,
|
|
302
|
-
icon:
|
|
314
|
+
icon: f,
|
|
303
315
|
docs: "https://docs.arcade.dev/home/auth-providers/miro"
|
|
304
316
|
},
|
|
305
317
|
{
|
|
@@ -308,7 +320,7 @@ const i = {
|
|
|
308
320
|
name: "PagerDuty",
|
|
309
321
|
description: "Authorize tools and agents with PagerDuty",
|
|
310
322
|
publicIconUrl: `${o}/pagerduty.svg`,
|
|
311
|
-
icon:
|
|
323
|
+
icon: w,
|
|
312
324
|
docs: "https://docs.arcade.dev/home/auth-providers/pagerduty"
|
|
313
325
|
},
|
|
314
326
|
{
|
|
@@ -317,7 +329,7 @@ const i = {
|
|
|
317
329
|
name: "Salesforce",
|
|
318
330
|
description: "Authorize tools and agents with Salesforce",
|
|
319
331
|
publicIconUrl: `${o}/salesforce.svg`,
|
|
320
|
-
icon:
|
|
332
|
+
icon: z,
|
|
321
333
|
docs: "https://docs.arcade.dev/home/auth-providers/salesforce"
|
|
322
334
|
},
|
|
323
335
|
{
|
|
@@ -326,7 +338,7 @@ const i = {
|
|
|
326
338
|
name: "Square",
|
|
327
339
|
description: "Authorize tools and agents with Square",
|
|
328
340
|
publicIconUrl: `${o}/square.svg`,
|
|
329
|
-
icon:
|
|
341
|
+
icon: S,
|
|
330
342
|
docs: "https://docs.arcade.dev/home/auth-providers/squareup"
|
|
331
343
|
},
|
|
332
344
|
{
|
|
@@ -335,7 +347,7 @@ const i = {
|
|
|
335
347
|
name: "Tesla",
|
|
336
348
|
description: "Authorize tools and agents with Tesla",
|
|
337
349
|
publicIconUrl: `${o}/tesla.svg`,
|
|
338
|
-
icon:
|
|
350
|
+
icon: $,
|
|
339
351
|
docs: "https://docs.arcade.dev/home/auth-providers/tesla"
|
|
340
352
|
},
|
|
341
353
|
{
|
|
@@ -344,7 +356,7 @@ const i = {
|
|
|
344
356
|
name: "TickTick",
|
|
345
357
|
description: "Authorize tools and agents with TickTick",
|
|
346
358
|
publicIconUrl: `${o}/ticktick.svg`,
|
|
347
|
-
icon:
|
|
359
|
+
icon: M,
|
|
348
360
|
docs: "https://docs.arcade.dev/home/auth-providers/ticktick"
|
|
349
361
|
},
|
|
350
362
|
{
|
|
@@ -365,20 +377,20 @@ const i = {
|
|
|
365
377
|
icon: D,
|
|
366
378
|
docs: "https://docs.arcade.dev/home/auth-providers/zoho"
|
|
367
379
|
}
|
|
368
|
-
],
|
|
369
|
-
...
|
|
370
|
-
...
|
|
371
|
-
],
|
|
380
|
+
], H = [
|
|
381
|
+
...Z,
|
|
382
|
+
...G
|
|
383
|
+
], _o = H.reduce(
|
|
372
384
|
(r, t) => (r[t.provider_id] = t, r),
|
|
373
385
|
{}
|
|
374
386
|
);
|
|
375
387
|
export {
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
388
|
+
L as MCP_OAUTH2_PROVIDER,
|
|
389
|
+
x as OAUTH2_PROVIDER,
|
|
390
|
+
H as OAUTH_PROVIDERS,
|
|
391
|
+
_o as OAUTH_PROVIDER_CATALOGUE,
|
|
380
392
|
i as OAuthId,
|
|
381
393
|
e as OAuthProviderId,
|
|
382
|
-
|
|
383
|
-
|
|
394
|
+
G as OTHER_OAUTH_PROVIDERS,
|
|
395
|
+
Z as PREBUILT_OAUTH_PROVIDERS
|
|
384
396
|
};
|
|
@@ -89,6 +89,19 @@ const r = [
|
|
|
89
89
|
isComingSoon: !1,
|
|
90
90
|
isHidden: !1
|
|
91
91
|
},
|
|
92
|
+
{
|
|
93
|
+
id: "AsanaAPI",
|
|
94
|
+
label: "Asana API",
|
|
95
|
+
isBYOC: !1,
|
|
96
|
+
isPro: !1,
|
|
97
|
+
publicIconUrl: `${e}/asana.svg`,
|
|
98
|
+
docsLink: "https://docs.arcade.dev/en/mcp-servers/productivity/asana-api",
|
|
99
|
+
relativeDocsLink: "/en/mcp-servers/productivity/asana-api",
|
|
100
|
+
category: "productivity",
|
|
101
|
+
type: "arcade_starter",
|
|
102
|
+
isComingSoon: !1,
|
|
103
|
+
isHidden: !1
|
|
104
|
+
},
|
|
92
105
|
{
|
|
93
106
|
id: "Ashby",
|
|
94
107
|
label: "Ashby",
|
|
@@ -284,6 +297,19 @@ const r = [
|
|
|
284
297
|
isComingSoon: !1,
|
|
285
298
|
isHidden: !1
|
|
286
299
|
},
|
|
300
|
+
{
|
|
301
|
+
id: "ClickUpAPI",
|
|
302
|
+
label: "ClickUp API",
|
|
303
|
+
isBYOC: !1,
|
|
304
|
+
isPro: !1,
|
|
305
|
+
publicIconUrl: `${e}/clickup.svg`,
|
|
306
|
+
docsLink: "https://docs.arcade.dev/en/mcp-servers/productivity/clickup-api",
|
|
307
|
+
relativeDocsLink: "/en/mcp-servers/productivity/clickup-api",
|
|
308
|
+
category: "productivity",
|
|
309
|
+
type: "arcade_starter",
|
|
310
|
+
isComingSoon: !1,
|
|
311
|
+
isHidden: !1
|
|
312
|
+
},
|
|
287
313
|
{
|
|
288
314
|
id: "CloseIO",
|
|
289
315
|
label: "Close.io",
|
|
@@ -518,6 +544,19 @@ const r = [
|
|
|
518
544
|
isComingSoon: !1,
|
|
519
545
|
isHidden: !1
|
|
520
546
|
},
|
|
547
|
+
{
|
|
548
|
+
id: "GithubAPI",
|
|
549
|
+
label: "GitHub API",
|
|
550
|
+
isBYOC: !1,
|
|
551
|
+
isPro: !1,
|
|
552
|
+
publicIconUrl: `${e}/github.svg`,
|
|
553
|
+
docsLink: "https://docs.arcade.dev/en/mcp-servers/development/github-api",
|
|
554
|
+
relativeDocsLink: "/en/mcp-servers/development/github-api",
|
|
555
|
+
category: "development",
|
|
556
|
+
type: "arcade_starter",
|
|
557
|
+
isComingSoon: !1,
|
|
558
|
+
isHidden: !1
|
|
559
|
+
},
|
|
521
560
|
{
|
|
522
561
|
id: "GitLab",
|
|
523
562
|
label: "GitLab",
|
|
@@ -805,16 +844,16 @@ const r = [
|
|
|
805
844
|
isHidden: !1
|
|
806
845
|
},
|
|
807
846
|
{
|
|
808
|
-
id: "
|
|
809
|
-
label: "Intercom",
|
|
847
|
+
id: "IntercomAPI",
|
|
848
|
+
label: "Intercom API",
|
|
810
849
|
isBYOC: !1,
|
|
811
850
|
isPro: !1,
|
|
812
851
|
publicIconUrl: `${e}/intercom.svg`,
|
|
813
|
-
docsLink: "https://docs.arcade.dev/en/mcp-servers/
|
|
814
|
-
relativeDocsLink: "/en/mcp-servers/
|
|
815
|
-
category: "
|
|
816
|
-
type: "
|
|
817
|
-
isComingSoon: !
|
|
852
|
+
docsLink: "https://docs.arcade.dev/en/mcp-servers/customer-support/intercom",
|
|
853
|
+
relativeDocsLink: "/en/mcp-servers/customer-support/intercom",
|
|
854
|
+
category: "customer-support",
|
|
855
|
+
type: "arcade_starter",
|
|
856
|
+
isComingSoon: !1,
|
|
818
857
|
isHidden: !1
|
|
819
858
|
},
|
|
820
859
|
{
|
|
@@ -857,16 +896,16 @@ const r = [
|
|
|
857
896
|
isHidden: !1
|
|
858
897
|
},
|
|
859
898
|
{
|
|
860
|
-
id: "
|
|
861
|
-
label: "Mailchimp",
|
|
899
|
+
id: "MailchimpAPI",
|
|
900
|
+
label: "Mailchimp API",
|
|
862
901
|
isBYOC: !1,
|
|
863
902
|
isPro: !1,
|
|
864
903
|
publicIconUrl: `${e}/mailchimp.svg`,
|
|
865
|
-
docsLink: "https://docs.arcade.dev/en/mcp-servers/productivity/mailchimp",
|
|
866
|
-
relativeDocsLink: "/en/mcp-servers/productivity/mailchimp",
|
|
904
|
+
docsLink: "https://docs.arcade.dev/en/mcp-servers/productivity/mailchimp-api",
|
|
905
|
+
relativeDocsLink: "/en/mcp-servers/productivity/mailchimp-api",
|
|
867
906
|
category: "productivity",
|
|
868
|
-
type: "
|
|
869
|
-
isComingSoon: !
|
|
907
|
+
type: "arcade_starter",
|
|
908
|
+
isComingSoon: !1,
|
|
870
909
|
isHidden: !1
|
|
871
910
|
},
|
|
872
911
|
{
|