Files
simstudioai--sim/apps/sim/tools/gong/interaction_stats.ts
T
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

154 lines
4.7 KiB
TypeScript

import type { GongInteractionStatsParams, GongInteractionStatsResponse } from '@/tools/gong/types'
import { getGongErrorMessage, parseGongIdList } from '@/tools/gong/utils'
import type { ToolConfig } from '@/tools/types'
export const interactionStatsTool: ToolConfig<
GongInteractionStatsParams,
GongInteractionStatsResponse
> = {
id: 'gong_interaction_stats',
name: 'Gong Interaction Stats',
description:
'Retrieve interaction statistics for users by date range from Gong. Only includes calls with Whisper enabled.',
version: '1.0.0',
params: {
accessKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Gong API Access Key',
},
accessKeySecret: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Gong API Access Key Secret',
},
userIds: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Comma-separated list of Gong user IDs (up to 20 digits each)',
},
fromDate: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Start date in YYYY-MM-DD format (inclusive, in company timezone)',
},
toDate: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description:
'End date in YYYY-MM-DD format (exclusive, in company timezone, cannot exceed current day)',
},
cursor: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Pagination cursor from a previous response',
},
},
request: {
url: 'https://api.gong.io/v2/stats/interaction',
method: 'POST',
headers: (params) => ({
'Content-Type': 'application/json',
Authorization: `Basic ${btoa(`${params.accessKey}:${params.accessKeySecret}`)}`,
}),
body: (params) => {
const filter: Record<string, unknown> = {
fromDate: params.fromDate.trim(),
toDate: params.toDate.trim(),
}
const userIds = parseGongIdList(params.userIds)
if (userIds) filter.userIds = userIds
const body: Record<string, unknown> = { filter }
if (params.cursor?.trim()) body.cursor = params.cursor.trim()
return body
},
},
transformResponse: async (response: Response) => {
const data = await response.json()
if (!response.ok) {
throw new Error(getGongErrorMessage(data, 'Failed to get interaction stats'))
}
const peopleInteractionStats = (data.peopleInteractionStats ?? []).map(
(entry: Record<string, unknown>) => ({
userId: entry.userId ?? '',
userEmailAddress: entry.userEmailAddress ?? null,
personInteractionStats: (
(entry.personInteractionStats as Record<string, unknown>[]) ?? []
).map((stat: Record<string, unknown>) => ({
name: stat.name ?? '',
value: stat.value ?? null,
})),
})
)
return {
success: true,
output: {
peopleInteractionStats,
timeZone: data.timeZone ?? null,
fromDateTime: data.fromDateTime ?? null,
toDateTime: data.toDateTime ?? null,
cursor: data.records?.cursor ?? null,
},
}
},
outputs: {
peopleInteractionStats: {
type: 'array',
description:
"Interaction statistics per user. Applicable stat names: 'Longest Monologue', 'Longest Customer Story', 'Interactivity', 'Patience', 'Question Rate'.",
items: {
type: 'object',
properties: {
userId: { type: 'string', description: "Gong's unique numeric identifier for the user" },
userEmailAddress: { type: 'string', description: 'Email address of the Gong user' },
personInteractionStats: {
type: 'array',
description: 'List of interaction stat measurements for this user',
items: {
type: 'object',
properties: {
name: {
type: 'string',
description:
'Stat name (e.g. Longest Monologue, Interactivity, Patience, Question Rate)',
},
value: {
type: 'number',
description: 'Stat measurement value (can be double or integer)',
},
},
},
},
},
},
},
timeZone: {
type: 'string',
description: "The company's defined timezone in Gong",
},
fromDateTime: {
type: 'string',
description: 'Start of results in ISO-8601 format',
},
toDateTime: {
type: 'string',
description: 'End of results in ISO-8601 format',
},
cursor: {
type: 'string',
description: 'Pagination cursor for the next page',
optional: true,
},
},
}