Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
185 changes: 103 additions & 82 deletions apps/docs/components/icons.tsx

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/docs/content/docs/en/tools/quiver.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { BlockInfoCard } from "@/components/ui/block-info-card"

<BlockInfoCard
type="quiver"
color="#000000"
color="#FFFFFF"
/>

{/* MANUAL-CONTENT-START:intro */}
Expand Down
26 changes: 3 additions & 23 deletions apps/docs/content/docs/en/tools/wiza.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ Enrich a company by name, domain, LinkedIn ID, or LinkedIn slug with detailed fi
| `company_country` | string | Country |
| `credits` | json | Credits deducted for this enrichment \(api_credits: \{ total, company_credits \}\) |

### `wiza_start_individual_reveal`
### `wiza_individual_reveal`

Start an individual reveal to enrich a contact via LinkedIn URL, name+company, or email
Reveal a contact via LinkedIn URL, name + company/domain, or email. Starts the reveal and polls until it resolves. Uses 2 credits per valid email and 5 credits per phone, charged only on success.

#### Input

Expand All @@ -168,26 +168,6 @@ Start an individual reveal to enrich a contact via LinkedIn URL, name+company, o
| `email` | string | No | Email address \(use alone or with other identifiers\) |
| `accept_work` | boolean | No | Whether to accept work emails \(email_options\) |
| `accept_personal` | boolean | No | Whether to accept personal emails \(email_options\) |
| `callback_url` | string | No | Optional URL to receive a callback with the reveal update |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `id` | number | Individual reveal ID \(use with Get Individual Reveal\) |
| `status` | string | Reveal status: queued, resolving, finished, or failed |
| `is_complete` | boolean | Whether the reveal has completed |

### `wiza_get_individual_reveal`

Retrieve the status and enriched data for an individual reveal by ID

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Yes | Wiza API key |
| `id` | string | Yes | Individual reveal ID returned from Start Individual Reveal |

#### Output

Expand Down Expand Up @@ -227,7 +207,7 @@ Retrieve the status and enriched data for an individual reveal by ID
| `company_linkedin` | string | Company LinkedIn URL |
| `company_location` | string | Full company location |
| `company_description` | string | Company description |
| `credits` | json | Credits deducted for this reveal \(api_credits: \{ total, email_credits, phone_credits, scrape_credits \}\) |
| `credits` | json | Credits consumed by the reveal |

### `wiza_get_credits`

Expand Down
12 changes: 4 additions & 8 deletions apps/sim/app/(landing)/integrations/data/integrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -10922,7 +10922,7 @@
"name": "Quiver",
"description": "Generate and vectorize SVGs",
"longDescription": "Generate SVG images from text prompts or vectorize raster images into SVGs using QuiverAI. Supports reference images, style instructions, and multiple output generation.",
"bgColor": "#000000",
"bgColor": "#FFFFFF",
"iconName": "QuiverIcon",
"docsUrl": "https://docs.sim.ai/tools/quiver",
"operations": [
Expand Down Expand Up @@ -14749,19 +14749,15 @@
"description": "Enrich a company by name, domain, LinkedIn ID, or LinkedIn slug with detailed firmographic data"
},
{
"name": "Start Individual Reveal",
"description": "Start an individual reveal to enrich a contact via LinkedIn URL, name+company, or email"
},
{
"name": "Get Individual Reveal",
"description": "Retrieve the status and enriched data for an individual reveal by ID"
"name": "Individual Reveal",
"description": "Reveal a contact via LinkedIn URL, name + company/domain, or email. Starts the reveal and polls until it resolves. Uses 2 credits per valid email and 5 credits per phone, charged only on success."
},
{
"name": "Get Credits",
"description": "Retrieve the remaining credits on your Wiza account"
}
],
"operationCount": 5,
"operationCount": 4,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/blocks/blocks/quiver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const QuiverBlock: BlockConfig<QuiverSvgResponse> = {
category: 'tools',
integrationType: IntegrationType.Design,
tags: ['image-generation'],
bgColor: '#000000',
bgColor: '#FFFFFF',
icon: QuiverIcon,
authMode: AuthMode.ApiKey,
subBlocks: [
Expand Down
Loading
Loading