Skip to content

Commit 955fb67

Browse files
committed
feat(rippling): add Rippling HR integration with 19 tools
1 parent 8800f03 commit 955fb67

32 files changed

+4016
-179
lines changed

apps/docs/components/icons.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6270,6 +6270,17 @@ export function RedisIcon(props: SVGProps<SVGSVGElement>) {
62706270
)
62716271
}
62726272

6273+
export function RipplingIcon(props: SVGProps<SVGSVGElement>) {
6274+
return (
6275+
<svg {...props} viewBox='0 0 145.3 109.9' fill='none' xmlns='http://www.w3.org/2000/svg'>
6276+
<path
6277+
d='M17.5,30.5C17.5,18.4,11.4,8.4,0,0h26.5c9.3,7.2,15,18.2,15,30.5c0,12.3-5.7,23.3-15,30.5 c8.6,3.6,13.5,12.4,13.5,25v24H16v-24c0-12-5.7-20.4-16-25C11.4,52.5,17.5,42.6,17.5,30.5 M69.4,30.5c0-12.1-6.1-22.1-17.5-30.5 h26.5c9.3,7.2,15,18.2,15,30.5c0,12.3-5.7,23.3-15,30.5c8.6,3.6,13.5,12.4,13.5,25v24h-24v-24c0-12-5.7-20.4-16-25 C63.3,52.5,69.4,42.6,69.4,30.5 M121.4,30.5c0-12.1-6.1-22.1-17.5-30.5h26.5c9.3,7.2,15,18.2,15,30.5c0,12.3-5.7,23.3-15,30.5 c8.6,3.6,13.5,12.4,13.5,25v24h-24v-24c0-12-5.7-20.4-16-25C115.3,52.5,121.4,42.6,121.4,30.5'
6278+
fill='#502D3C'
6279+
/>
6280+
</svg>
6281+
)
6282+
}
6283+
62736284
export function HexIcon(props: SVGProps<SVGSVGElement>) {
62746285
return (
62756286
<svg {...props} xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1450.3 600'>

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ import {
133133
ReductoIcon,
134134
ResendIcon,
135135
RevenueCatIcon,
136+
RipplingIcon,
136137
S3Icon,
137138
SalesforceIcon,
138139
SearchIcon,
@@ -306,6 +307,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
306307
reducto_v2: ReductoIcon,
307308
resend: ResendIcon,
308309
revenuecat: RevenueCatIcon,
310+
rippling: RipplingIcon,
309311
s3: S3Icon,
310312
salesforce: SalesforceIcon,
311313
search: SearchIcon,

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@
128128
"reducto",
129129
"resend",
130130
"revenuecat",
131+
"rippling",
131132
"s3",
132133
"salesforce",
133134
"search",

apps/docs/content/docs/en/tools/quiver.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ Generate SVG images from text prompts using QuiverAI
5959
| --------- | ---- | ----------- |
6060
| `success` | boolean | Whether the SVG generation succeeded |
6161
| `output` | object | Generated SVG output |
62-
|`file` | file | Generated SVG file |
63-
|`svgContent` | string | Raw SVG markup content |
62+
|`file` | file | First generated SVG file |
63+
|`files` | json | All generated SVG files \(when n &gt; 1\) |
64+
|`svgContent` | string | Raw SVG markup content of the first result |
6465
|`id` | string | Generation request ID |
6566
|`usage` | json | Token usage statistics |
6667
|`totalTokens` | number | Total tokens used |

0 commit comments

Comments
 (0)