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
23 changes: 23 additions & 0 deletions apps/docs/components/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6928,6 +6928,14 @@ export function HexIcon(props: SVGProps<SVGSVGElement>) {
)
}

export function RailwayIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns='http://www.w3.org/2000/svg' fill='#0B0D0E' viewBox='0 0 24 24'>
<path d='M.113 10.27A13 13 0 0 0 0 11.48h18.23a2.3 2.3 0 0 0-.235-.347c-3.117-4.027-4.793-3.677-7.19-3.78-.8-.034-1.34-.048-4.524-.048-1.704 0-3.555.005-5.358.01-.234.63-.459 1.24-.567 1.737h9.342v1.216H.113zm18.26 2.426H.009q.029.488.094.961h16.955c.754 0 1.179-.429 1.315-.96zm-17.318 4.28s2.81 6.902 10.93 7.024c4.855 0 9.027-2.883 10.92-7.024H1.056zM11.988 0C7.5 0 3.593 2.466 1.531 6.108l4.75-.005v-.002c3.71 0 3.849.016 4.573.047l.448.016c1.563.052 3.485.22 4.996 1.364.82.621 2.007 1.99 2.712 2.965.654.902.842 1.94.396 2.934-.408.914-1.289 1.458-2.353 1.458H.391s.099.42.249.886h22.748A12 12 0 0 0 24 12.005C24 5.377 18.621 0 11.988 0' />
</svg>
)
}

export function BigQueryIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' {...props}>
Expand All @@ -6951,6 +6959,21 @@ export function SnowflakeIcon(props: SVGProps<SVGSVGElement>) {
)
}

export function NewRelicIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} viewBox='0 0 159.36 159.36' xmlns='http://www.w3.org/2000/svg'>
<polygon
fill='#46B978'
points='79.68 .19 18.89 35.29 45.38 50.58 79.68 30.77 122.04 55.23 122.04 104.13 87.73 123.94 87.73 154.52 148.52 119.42 148.52 39.94 79.68 .19'
/>
<polygon
fill='#46B978'
points='53.2 94.97 53.2 143.88 79.68 159.17 79.68 79.68 10.84 39.94 10.84 70.51 53.2 94.97'
/>
</svg>
)
}

export function WizaIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} viewBox='0 0 51 49' fill='none' xmlns='http://www.w3.org/2000/svg'>
Expand Down
4 changes: 4 additions & 0 deletions apps/docs/components/ui/icon-mapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ import {
MongoDBIcon,
MySQLIcon,
Neo4jIcon,
NewRelicIcon,
NotionIcon,
ObsidianIcon,
OktaIcon,
Expand All @@ -148,6 +149,7 @@ import {
PulseIcon,
QdrantIcon,
QuiverIcon,
RailwayIcon,
RDSIcon,
RedditIcon,
RedisIcon,
Expand Down Expand Up @@ -346,6 +348,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
mongodb: MongoDBIcon,
mysql: MySQLIcon,
neo4j: Neo4jIcon,
new_relic: NewRelicIcon,
notion: NotionIcon,
notion_v2: NotionIcon,
obsidian: ObsidianIcon,
Expand All @@ -369,6 +372,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
pulse_v2: PulseIcon,
qdrant: QdrantIcon,
quiver: QuiverIcon,
railway: RailwayIcon,
rds: RDSIcon,
reddit: RedditIcon,
redis: RedisIcon,
Expand Down
37 changes: 36 additions & 1 deletion apps/docs/content/docs/en/tools/gong.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,15 @@ Retrieve call data by date range from Gong.
| `accessKey` | string | Yes | Gong API Access Key |
| `accessKeySecret` | string | Yes | Gong API Access Key Secret |
| `fromDateTime` | string | Yes | Start date/time in ISO-8601 format \(e.g., 2024-01-01T00:00:00Z\) |
| `toDateTime` | string | No | End date/time in ISO-8601 format \(e.g., 2024-01-31T23:59:59Z\). If omitted, lists calls up to the most recent. |
| `toDateTime` | string | No | End date/time in ISO-8601 format \(e.g., 2024-01-31T23:59:59Z\). Defaults to the current execution time when omitted. |
| `cursor` | string | No | Pagination cursor from a previous response |
| `workspaceId` | string | No | Gong workspace ID to filter calls |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `requestId` | string | A Gong request reference ID for troubleshooting purposes |
| `calls` | array | List of calls matching the date range |
| ↳ `id` | string | Gong's unique numeric identifier for the call |
| ↳ `title` | string | Call title |
Expand All @@ -79,6 +80,39 @@ Retrieve call data by date range from Gong.
| ↳ `calendarEventId` | string | Calendar event identifier |
| `cursor` | string | Pagination cursor for the next page |
| `totalRecords` | number | Total number of records matching the filter |
| `currentPageSize` | number | Number of records in the current page |
| `currentPageNumber` | number | Current page number |

### `gong_create_call`

Upload call metadata to Gong and let Gong pull the media from a URL.

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `accessKey` | string | Yes | Gong API Access Key |
| `accessKeySecret` | string | Yes | Gong API Access Key Secret |
| `clientUniqueId` | string | Yes | Unique call ID from the source telephony or recording system |
| `actualStart` | string | Yes | Actual call start time in ISO-8601 format |
| `primaryUser` | string | Yes | Gong user ID for the call's host or owner |
| `parties` | json | Yes | Array of call parties, with at least the primary user included |
| `direction` | string | Yes | Call direction: Inbound, Outbound, Conference, or Unknown |
| `downloadMediaUrl` | string | Yes | URL where Gong can download the call media file |
| `title` | string | No | Human-readable call title |
| `workspaceId` | string | No | Optional Gong workspace ID |
| `disposition` | string | No | Optional call disposition |
| `purpose` | string | No | Optional call purpose |
| `context` | json | No | Optional CRM context array for the call |
| `callProviderCode` | string | No | Optional conferencing or telephony provider code |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `callId` | string | Gong's unique numeric identifier for the created call |
| `requestId` | string | Gong request reference ID for troubleshooting |
| `url` | string | URL to the created call in the Gong web app |

### `gong_get_call`

Expand Down Expand Up @@ -275,6 +309,7 @@ List all users in your Gong account.

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `requestId` | string | A Gong request reference ID for troubleshooting purposes |
| `users` | array | List of Gong users |
| ↳ `id` | string | Unique numeric user ID \(up to 20 digits\) |
| ↳ `emailAddress` | string | User email address |
Expand Down
Loading
Loading