Skip to content

Commit 9fcd02f

Browse files
authored
v0.6.5: email validation, integrations page, mothership and custom tool fixes
2 parents ff7b5b5 + 6326353 commit 9fcd02f

File tree

123 files changed

+22659
-618
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+22659
-618
lines changed

apps/docs/components/icons.tsx

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,34 @@ export function NoteIcon(props: SVGProps<SVGSVGElement>) {
124124
)
125125
}
126126

127+
export function WorkdayIcon(props: SVGProps<SVGSVGElement>) {
128+
const id = useId()
129+
const clipId = `workday_clip_${id}`
130+
return (
131+
<svg {...props} viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'>
132+
<g clipPath={`url(#${clipId})`} transform='matrix(0.53333333,0,0,0.53333333,-124.63685,-16)'>
133+
<path
134+
fillRule='evenodd'
135+
clipRule='evenodd'
136+
d='m 251.21,88.7755 h 8.224 c 1.166,0 2.178,0.7836 2.444,1.8924 l 11.057,44.6751 c 0.152,0.002 12.182,-44.6393 12.182,-44.6393 0.306,-1.1361 1.36,-1.9282 2.566,-1.9282 h 12.74 c 1.144,0 2.144,0.7515 2.435,1.8296 l 12.118,44.9289 c 0.448,-0.282 11.147,-44.8661 11.147,-44.8661 0.267,-1.1088 1.279,-1.8924 2.444,-1.8924 h 8.219 c 1.649,0 2.854,1.5192 2.437,3.0742 l -15.08,56.3173 c -0.286,1.072 -1.272,1.823 -2.406,1.833 l -12.438,-0.019 c -1.142,-0.002 -2.137,-0.744 -2.429,-1.819 -2.126,-7.805 -12.605,-47.277 -12.605,-47.277 0,0 -11.008,39.471 -13.133,47.277 -0.293,1.075 -1.288,1.817 -2.429,1.819 L 266.264,150 c -1.133,-0.01 -2.119,-0.761 -2.406,-1.833 L 248.777,91.8438 c -0.416,-1.5524 0.786,-3.0683 2.433,-3.0683 z'
137+
fill='#005cb9'
138+
/>
139+
<path
140+
fillRule='evenodd'
141+
clipRule='evenodd'
142+
d='m 333.324,72.2449 c 0.531,0 1.071,-0.0723 1.608,-0.2234 3.18,-0.8968 5.039,-4.2303 4.153,-7.446 -0.129,-0.4673 -0.265,-0.9327 -0.408,-1.3936 C 332.529,43.3349 314.569,30 293.987,30 c -20.557,0 -38.51,13.3133 -44.673,33.1281 -0.136,0.4355 -0.267,0.8782 -0.391,1.3232 -0.902,3.2119 0.943,6.5541 4.12,7.4645 3.173,0.9112 6.48,-0.9547 7.381,-4.1666 0.094,-0.3322 0.19,-0.6616 0.292,-0.9892 4.591,-14.7582 17.961,-24.6707 33.271,-24.6707 15.329,0 28.704,9.9284 33.281,24.7063 0.105,0.3397 0.206,0.682 0.301,1.0263 0.737,2.6726 3.139,4.423 5.755,4.423 z'
143+
fill='#f38b00'
144+
/>
145+
</g>
146+
<defs>
147+
<clipPath id={clipId}>
148+
<path d='M 354,30 H 234 v 120 h 120 z' fill='#ffffff' />
149+
</clipPath>
150+
</defs>
151+
</svg>
152+
)
153+
}
154+
127155
export function WorkflowIcon(props: SVGProps<SVGSVGElement>) {
128156
return (
129157
<svg
@@ -4110,6 +4138,16 @@ export function IncidentioIcon(props: SVGProps<SVGSVGElement>) {
41104138
)
41114139
}
41124140

4141+
export function InfisicalIcon(props: SVGProps<SVGSVGElement>) {
4142+
return (
4143+
<svg {...props} viewBox='0 0 273 182' xmlns='http://www.w3.org/2000/svg'>
4144+
<path
4145+
d='m191.6 39.4c-20.3 0-37.15 13.21-52.9 30.61-12.99-16.4-29.8-30.61-51.06-30.61-27.74 0-50.44 23.86-50.44 51.33 0 26.68 21.43 51.8 48.98 51.8 20.55 0 37.07-13.86 51.32-31.81 12.69 16.97 29.1 31.41 53.2 31.41 27.13 0 49.85-22.96 49.85-51.4 0-27.12-20.44-51.33-48.95-51.33zm-104.3 77.94c-14.56 0-25.51-12.84-25.51-26.07 0-13.7 10.95-28.29 25.51-28.29 14.93 0 25.71 11.6 37.6 27.34-11.31 15.21-22.23 27.02-37.6 27.02zm104.4 0.25c-15 0-25.28-11.13-37.97-27.37 12.69-16.4 22.01-27.24 37.59-27.24 14.97 0 24.79 13.25 24.79 27.26 0 13-10.17 27.35-24.41 27.35z'
4146+
fill='currentColor'
4147+
/>
4148+
</svg>
4149+
)
4150+
}
41134151
export function IntercomIcon(props: SVGProps<SVGSVGElement>) {
41144152
return (
41154153
<svg
@@ -6068,6 +6106,19 @@ export function AgentSkillsIcon(props: SVGProps<SVGSVGElement>) {
60686106
)
60696107
}
60706108

6109+
export function OktaIcon(props: SVGProps<SVGSVGElement>) {
6110+
return (
6111+
<svg {...props} viewBox='0 0 63 63' xmlns='http://www.w3.org/2000/svg'>
6112+
<path
6113+
fillRule='evenodd'
6114+
clipRule='evenodd'
6115+
d='M34.6.4l-1.3 16c-.6-.1-1.2-.1-1.9-.1-.8 0-1.6.1-2.3.2l-.7-7.7c0-.2.2-.5.4-.5h1.3L29.5.5c0-.2.2-.5.4-.5h4.3c.3 0 .5.2.4.4zm-10.8.8c-.1-.2-.3-.4-.5-.3l-4 1.5c-.3.1-.4.4-.3.6l3.3 7.1-1.2.5c-.2.1-.3.3-.2.6l3.3 7c1.2-.7 2.5-1.2 3.9-1.5L23.8 1.2zM14 5.7l9.3 13.1c-1.2.8-2.2 1.7-3.1 2.7L14.5 16c-.2-.2-.2-.5 0-.6l1-.8L10 9c-.2-.2-.2-.5 0-.6l3.3-2.7c.2-.3.5-.2.7 0zM6.2 13.2c-.2-.1-.5-.1-.6.1l-2.1 3.7c-.1.2 0 .5.2.6l7.1 3.4-.7 1.1c-.1.2 0 .5.2.6l7.1 3.2c.5-1.3 1.2-2.5 2-3.6L6.2 13.2zM.9 23.3c0-.2.3-.4.5-.3l15.5 4c-.4 1.3-.6 2.7-.7 4.1l-7.8-.6c-.2 0-.4-.2-.4-.5l.2-1.3L.6 28c-.2 0-.4-.2-.4-.5l.7-4.2zM.4 33.8c-.3 0-.4.2-.4.5l.8 4.2c0 .2.3.4.5.3l7.6-2 .2 1.3c0 .2.3.4.5.3l7.5-2.1c-.4-1.3-.7-2.7-.8-4.1L.4 33.8zm2.5 11.1c-.1-.2 0-.5.2-.6l14.5-6.9c.5 1.3 1.3 2.5 2.2 3.6l-6.3 4.5c-.2.1-.5.1-.6-.1L12 44.3l-6.5 4.5c-.2.1-.5.1-.6-.1l-2-3.8zm17.5-3L9.1 53.3c-.2.2-.2.5 0 .6l3.3 2.7c.2.2.5.1.6-.1l4.6-6.4 1 .9c.2.2.5.1.6-.1l4.4-6.4c-1.2-.7-2.3-1.6-3.2-2.6zm-2.2 18.2c-.2-.1-.3-.3-.2-.6L24.6 45c1.2.6 2.6 1.1 3.9 1.4l-2 7.5c-.1.2-.3.4-.5.3l-1.2-.5-2.1 7.6c-.1.2-.3.4-.5.3l-4-1.5zm10.9-13.5l-1.3 16c0 .2.2.5.4.5H33c.2 0 .4-.2.4-.5l-.6-7.8h1.3c.2 0 .4-.2.4-.5l-.7-7.7c-.8.1-1.5.2-2.3.2-.6 0-1.3 0-1.9-.1zm16-43.2c.1-.2 0-.5-.2-.6l-4-1.5c-.2-.1-.5.1-.5.3l-2.1 7.6-1.2-.5c-.2-.1-.5.1-.5.3l-2 7.5c1.4.3 2.7.8 3.9 1.4l6.6-14.5zm8.8 6.3L42.6 21.1c-.9-1-2-1.9-3.2-2.6l4.4-6.4c.1-.2.4-.2.6-.1l1 .9 4.6-6.4c.1-.2.4-.2.6-.1l3.3 2.7c.2.2.2.5 0 .6zM59.9 18.7c.2-.1.3-.4.2-.6L58 14.4c-.1-.2-.4-.3-.6-.1l-6.5 4.5-.7-1.1c-.1-.2-.4-.3-.6-.1L43.3 22c.9 1.1 1.6 2.3 2.2 3.6l14.4-6.9zm2.3 5.8l.7 4.2c0 .2-.1.5-.4.5l-15.9 1.5c-.1-1.4-.4-2.8-.8-4.1l7.5-2.1c.2-.1.5.1.5.3l.2 1.3 7.6-2c.3-.1.5.1.6.4zM61.5 40c.2.1.5-.1.5-.3l.7-4.2c0-.2-.1-.5-.4-.5l-7.8-.7.2-1.3c0-.2-.1-.5-.4-.5l-7.8-.6c0 1.4-.3 2.8-.7 4.1L61.5 40zm-4.1 9.6c-.1.2-.4.3-.6.1l-13.2-9.1c.8-1.1 1.5-2.3 2-3.6l7.1 3.2c.2.1.3.4.2.6L52.2 42l7.1 3.4c.2.1.3.4.2.6l-2.1 3.6zm-17.7-5.4L49 57.3c.1.2.4.2.6.1l3.3-2.7c.2-.2.2-.4 0-.6l-5.5-5.6 1-.8c.2-.2.2-.4 0-.6l-5.5-5.5c1.1.8 0 1.7-1.2 2.4zm0 17.8c-.2.1-.5-.1-.5-.3l-4.2-15.4c1.4-.3 2.7-.8 3.9-1.5l3.3 7c.1.2 0 .5-.2.6l-1.2.5 3.3 7.1c.1.2 0 .5-.2.6L39.7 62z'
6116+
fill='currentColor'
6117+
/>
6118+
</svg>
6119+
)
6120+
}
6121+
60716122
export function OnePasswordIcon(props: SVGProps<SVGSVGElement>) {
60726123
return (
60736124
<svg {...props} viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none'>

apps/docs/components/ui/icon-mapping.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import {
1616
AsanaIcon,
1717
AshbyIcon,
1818
AttioIcon,
19+
AzureIcon,
1920
BoxCompanyIcon,
2021
BrainIcon,
2122
BrandfetchIcon,
@@ -81,6 +82,7 @@ import {
8182
HunterIOIcon,
8283
ImageIcon,
8384
IncidentioIcon,
85+
InfisicalIcon,
8486
IntercomIcon,
8587
JinaAIIcon,
8688
JiraIcon,
@@ -109,6 +111,7 @@ import {
109111
Neo4jIcon,
110112
NotionIcon,
111113
ObsidianIcon,
114+
OktaIcon,
112115
OnePasswordIcon,
113116
OpenAIIcon,
114117
OutlookIcon,
@@ -164,6 +167,7 @@ import {
164167
WhatsAppIcon,
165168
WikipediaIcon,
166169
WordpressIcon,
170+
WorkdayIcon,
167171
xIcon,
168172
YouTubeIcon,
169173
ZendeskIcon,
@@ -250,6 +254,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
250254
image_generator: ImageIcon,
251255
imap: MailServerIcon,
252256
incidentio: IncidentioIcon,
257+
infisical: InfisicalIcon,
253258
intercom_v2: IntercomIcon,
254259
jina: JinaAIIcon,
255260
jira: JiraIcon,
@@ -267,6 +272,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
267272
mailgun: MailgunIcon,
268273
mem0: Mem0Icon,
269274
memory: BrainIcon,
275+
microsoft_ad: AzureIcon,
270276
microsoft_dataverse: MicrosoftDataverseIcon,
271277
microsoft_excel_v2: MicrosoftExcelIcon,
272278
microsoft_planner: MicrosoftPlannerIcon,
@@ -277,6 +283,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
277283
neo4j: Neo4jIcon,
278284
notion_v2: NotionIcon,
279285
obsidian: ObsidianIcon,
286+
okta: OktaIcon,
280287
onedrive: MicrosoftOneDriveIcon,
281288
onepassword: OnePasswordIcon,
282289
openai: OpenAIIcon,
@@ -335,6 +342,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
335342
whatsapp: WhatsAppIcon,
336343
wikipedia: WikipediaIcon,
337344
wordpress: WordpressIcon,
345+
workday: WorkdayIcon,
338346
x: xIcon,
339347
youtube: YouTubeIcon,
340348
zendesk: ZendeskIcon,

0 commit comments

Comments
 (0)