chore: import upstream snapshot with attribution
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,212 @@
|
||||
import type { ToolConfig } from '@/tools/types'
|
||||
import type {
|
||||
ZoomInfoSearchContactsParams,
|
||||
ZoomInfoSearchContactsResponse,
|
||||
} from '@/tools/zoominfo/types'
|
||||
import {
|
||||
buildProxyBody,
|
||||
extractDataArray,
|
||||
extractPagination,
|
||||
paginationOutputProperties,
|
||||
toCsvStringOrUndefined,
|
||||
toNumberOrUndefined,
|
||||
transformZoomInfoEnvelope,
|
||||
ZOOMINFO_PROXY_URL,
|
||||
} from '@/tools/zoominfo/utils'
|
||||
|
||||
export const zoominfoSearchContactsTool: ToolConfig<
|
||||
ZoomInfoSearchContactsParams,
|
||||
ZoomInfoSearchContactsResponse
|
||||
> = {
|
||||
id: 'zoominfo_search_contacts',
|
||||
name: 'ZoomInfo Search Contacts',
|
||||
description:
|
||||
'Search ZoomInfo for contacts (people) by name, job title, company, and other filters. Does not return emails or phone numbers — use Enrich Contacts for engagement data.',
|
||||
version: '1.0.0',
|
||||
|
||||
params: {
|
||||
clientId: {
|
||||
type: 'string',
|
||||
required: true,
|
||||
visibility: 'user-only',
|
||||
description: 'ZoomInfo OAuth client ID',
|
||||
},
|
||||
clientSecret: {
|
||||
type: 'string',
|
||||
required: true,
|
||||
visibility: 'user-only',
|
||||
description: 'ZoomInfo OAuth client secret',
|
||||
},
|
||||
firstName: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'First name',
|
||||
},
|
||||
lastName: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Last name',
|
||||
},
|
||||
fullName: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Full name',
|
||||
},
|
||||
emailAddress: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Email address',
|
||||
},
|
||||
jobTitle: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Job title',
|
||||
},
|
||||
managementLevel: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description:
|
||||
'Management level — JSON array or comma-separated list. Sent to the API as a comma-separated string.',
|
||||
},
|
||||
department: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description:
|
||||
'Department — JSON array or comma-separated list. Sent to the API as a comma-separated string.',
|
||||
},
|
||||
companyId: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'ZoomInfo company ID',
|
||||
},
|
||||
companyName: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Company name',
|
||||
},
|
||||
contactAccuracyScoreMin: {
|
||||
type: 'number',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Minimum accuracy score (70-99)',
|
||||
},
|
||||
requiredFields: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description:
|
||||
'Fields that must exist in results — JSON array or comma-separated list. Sent to the API as a comma-separated string.',
|
||||
},
|
||||
excludePartialProfiles: {
|
||||
type: 'boolean',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Exclude partial profiles',
|
||||
},
|
||||
page: {
|
||||
type: 'number',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Page number (1-based)',
|
||||
},
|
||||
rpp: {
|
||||
type: 'number',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Results per page (1-100, default 25)',
|
||||
},
|
||||
sortBy: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Field to sort by',
|
||||
},
|
||||
sortOrder: {
|
||||
type: 'string',
|
||||
required: false,
|
||||
visibility: 'user-or-llm',
|
||||
description: 'Sort order (asc or desc)',
|
||||
},
|
||||
},
|
||||
|
||||
request: {
|
||||
url: ZOOMINFO_PROXY_URL,
|
||||
method: 'POST',
|
||||
headers: () => ({ 'Content-Type': 'application/json' }),
|
||||
body: (params) => {
|
||||
const attributes: Record<string, unknown> = {}
|
||||
if (params.firstName) attributes.firstName = params.firstName
|
||||
if (params.lastName) attributes.lastName = params.lastName
|
||||
if (params.fullName) attributes.fullName = params.fullName
|
||||
if (params.emailAddress) attributes.emailAddress = params.emailAddress
|
||||
if (params.jobTitle) attributes.jobTitle = params.jobTitle
|
||||
const managementLevel = toCsvStringOrUndefined(params.managementLevel, 'managementLevel')
|
||||
if (managementLevel) attributes.managementLevel = managementLevel
|
||||
const department = toCsvStringOrUndefined(params.department, 'department')
|
||||
if (department) attributes.department = department
|
||||
if (params.companyId) attributes.companyId = params.companyId
|
||||
if (params.companyName) attributes.companyName = params.companyName
|
||||
const minScore = toNumberOrUndefined(params.contactAccuracyScoreMin)
|
||||
if (minScore !== undefined) attributes.contactAccuracyScoreMin = String(minScore)
|
||||
const required = toCsvStringOrUndefined(params.requiredFields, 'requiredFields')
|
||||
if (required) attributes.requiredFields = required
|
||||
if (params.excludePartialProfiles !== undefined) {
|
||||
attributes.excludePartialProfiles = params.excludePartialProfiles
|
||||
}
|
||||
|
||||
const query: Record<string, string | number> = {}
|
||||
const page = toNumberOrUndefined(params.page)
|
||||
const rpp = toNumberOrUndefined(params.rpp)
|
||||
if (page !== undefined) query['page[number]'] = page
|
||||
if (rpp !== undefined) query['page[size]'] = rpp
|
||||
if (params.sortBy) {
|
||||
const order = params.sortOrder === 'desc' ? '-' : ''
|
||||
query.sort = `${order}${params.sortBy}`
|
||||
}
|
||||
|
||||
return {
|
||||
...buildProxyBody(params),
|
||||
path: '/data/v1/contacts/search',
|
||||
method: 'POST',
|
||||
query: Object.keys(query).length > 0 ? query : undefined,
|
||||
body: {
|
||||
data: {
|
||||
type: 'ContactSearch',
|
||||
attributes,
|
||||
},
|
||||
},
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
transformResponse: async (response: Response) => {
|
||||
const { data } = await transformZoomInfoEnvelope(response)
|
||||
const contacts = extractDataArray(data)
|
||||
const pagination = extractPagination(data)
|
||||
return {
|
||||
success: true,
|
||||
output: {
|
||||
contacts,
|
||||
...pagination,
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
outputs: {
|
||||
contacts: {
|
||||
type: 'array',
|
||||
description: 'Matching contacts (without emails or phone numbers)',
|
||||
items: { type: 'json' },
|
||||
},
|
||||
...paginationOutputProperties,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user