Skip to content

Commit d9a4dd4

Browse files
Merge remote-tracking branch 'origin/staging' into feat/redact-pii-workflow-log
# Conflicts: # packages/db/migrations/meta/0241_snapshot.json # packages/db/migrations/meta/_journal.json # scripts/check-api-validation-contracts.ts
2 parents 9df460f + c419a34 commit d9a4dd4

420 files changed

Lines changed: 77502 additions & 2745 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
# bun specific
1010
bun-debug.log*
1111

12+
# cursor debug logs
13+
.cursor/debug-*.log
14+
1215
# this repo uses bun.lock; package-lock.json files are accidental
1316
package-lock.json
1417

@@ -44,6 +47,11 @@ dump.rdb
4447
.env.test
4548
.env.production
4649

50+
# editor swap files
51+
*.swp
52+
*.swo
53+
*.swn
54+
4755
# vercel
4856
.vercel
4957

apps/docs/components/icons.tsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1958,6 +1958,24 @@ export function WhatsAppIcon(props: SVGProps<SVGSVGElement>) {
19581958
)
19591959
}
19601960

1961+
export function SportmonksIcon(props: SVGProps<SVGSVGElement>) {
1962+
return (
1963+
<svg
1964+
{...props}
1965+
viewBox='0 0 25 24'
1966+
fill='none'
1967+
fillRule='evenodd'
1968+
xmlns='http://www.w3.org/2000/svg'
1969+
>
1970+
<path
1971+
d='M11.857 8.546c1.893 0 3.517.678 4.872 2.033 1.355 1.336 2.032 2.96 2.032 4.872 0 1.91-.677 3.535-2.032 4.871-1.355 1.355-2.979 2.032-4.872 2.032H1V17.093h10.857c.446 0 .825-.157 1.142-.473.334-.334.5-.724.5-1.17 0-.445-.166-.835-.5-1.17a1.558 1.558 0 00-1.142-.472H7.905c-1.912 0-3.537-.677-4.873-2.032C1.678 10.421 1 8.796 1 6.903 1 4.993 1.678 3.368 3.033 2.032 4.368.678 5.992 0 7.905 0h10.188V5.263H7.904a1.65 1.65 0 00-1.17.473 1.586 1.586 0 00-.472 1.169c0 .445.157.835.473 1.17.334.315.724.472 1.17.472h3.952z'
1972+
fill='currentColor'
1973+
/>
1974+
<circle cx='21.27' cy='20.123' r='2.732' fill='#FF0F50' />
1975+
</svg>
1976+
)
1977+
}
1978+
19611979
export function SquareIcon(props: SVGProps<SVGSVGElement>) {
19621980
return (
19631981
<svg {...props} viewBox='0 0 501.42 501.42' xmlns='http://www.w3.org/2000/svg'>

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ import {
195195
SixtyfourIcon,
196196
SlackIcon,
197197
SmtpIcon,
198+
SportmonksIcon,
198199
SQSIcon,
199200
SquareIcon,
200201
SshIcon,
@@ -449,6 +450,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
449450
sixtyfour: SixtyfourIcon,
450451
slack: SlackIcon,
451452
smtp: SmtpIcon,
453+
sportmonks: SportmonksIcon,
452454
sqs: SQSIcon,
453455
square: SquareIcon,
454456
ssh: SshIcon,

apps/docs/content/docs/en/integrations/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@
196196
"sixtyfour",
197197
"slack",
198198
"smtp",
199+
"sportmonks",
199200
"sqs",
200201
"square",
201202
"ssh",

0 commit comments

Comments
 (0)