Skip to content

Commit aa81b4e

Browse files
committed
feat(quickbooks): add QuickBooks Online integration
1 parent 6bc34c5 commit aa81b4e

44 files changed

Lines changed: 4312 additions & 1 deletion

Some content is hidden

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

apps/docs/components/icons.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3320,6 +3320,21 @@ export function QdrantIcon(props: SVGProps<SVGSVGElement>) {
33203320
)
33213321
}
33223322

3323+
export function QuickBooksIcon(props: SVGProps<SVGSVGElement>) {
3324+
return (
3325+
<svg {...props} role='img' viewBox='0 0 61.54 61.54' xmlns='http://www.w3.org/2000/svg'>
3326+
<path
3327+
fill='#2CA01C'
3328+
d='M30.77,61.54c16.99,0,30.77-13.78,30.77-30.77S47.76,0,30.77,0,0,13.78,0,30.77s13.77,30.77,30.77,30.77Z'
3329+
/>
3330+
<path
3331+
fill='#fff'
3332+
d='M20.51,18.8c-6.61,0-11.97,5.36-11.97,11.97s5.35,11.96,11.97,11.96h1.71v-4.44h-1.71c-4.15,0-7.52-3.37-7.52-7.52,0-4.15,3.37-7.52,7.52-7.52h4.11v23.25c0,2.45,1.99,4.44,4.44,4.44V18.8h-8.55Zm20.52,23.93c6.61,0,11.97-5.36,11.97-11.96s-5.35-11.96-11.97-11.96h-1.71v4.44h1.71c4.15,0,7.52,3.37,7.52,7.52s-3.37,7.52-7.52,7.52h-4.11V15.04c0-2.45-1.99-4.44-4.44-4.44v32.13h8.55Z'
3333+
/>
3334+
</svg>
3335+
)
3336+
}
3337+
33233338
export function QuiverIcon(props: SVGProps<SVGSVGElement>) {
33243339
return (
33253340
<svg {...props} viewBox='0 0 250 250' fill='none' 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
@@ -143,6 +143,7 @@ import {
143143
ProfoundIcon,
144144
PulseIcon,
145145
QdrantIcon,
146+
QuickBooksIcon,
146147
QuiverIcon,
147148
RDSIcon,
148149
RedditIcon,
@@ -358,6 +359,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
358359
pulse: PulseIcon,
359360
pulse_v2: PulseIcon,
360361
qdrant: QdrantIcon,
362+
quickbooks: QuickBooksIcon,
361363
quiver: QuiverIcon,
362364
rds: RDSIcon,
363365
reddit: RedditIcon,

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@
139139
"profound",
140140
"pulse",
141141
"qdrant",
142+
"quickbooks",
142143
"quiver",
143144
"rds",
144145
"reddit",

0 commit comments

Comments
 (0)