d25d482dc2
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
208 lines
7.2 KiB
TypeScript
208 lines
7.2 KiB
TypeScript
import type {
|
|
GongAnsweredScorecardsParams,
|
|
GongAnsweredScorecardsResponse,
|
|
} from '@/tools/gong/types'
|
|
import { getGongErrorMessage, parseGongIdList } from '@/tools/gong/utils'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const answeredScorecardsTool: ToolConfig<
|
|
GongAnsweredScorecardsParams,
|
|
GongAnsweredScorecardsResponse
|
|
> = {
|
|
id: 'gong_answered_scorecards',
|
|
name: 'Gong Answered Scorecards',
|
|
description: 'Retrieve answered scorecards for reviewed users or by date range from Gong.',
|
|
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',
|
|
},
|
|
callFromDate: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'Start date for calls in YYYY-MM-DD format (inclusive, in company timezone). Defaults to earliest recorded call.',
|
|
},
|
|
callToDate: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'End date for calls in YYYY-MM-DD format (exclusive, in company timezone). Defaults to latest recorded call.',
|
|
},
|
|
reviewFromDate: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'Start date for reviews in YYYY-MM-DD format (inclusive, in company timezone). Defaults to earliest reviewed call.',
|
|
},
|
|
reviewToDate: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'End date for reviews in YYYY-MM-DD format (exclusive, in company timezone). Defaults to latest reviewed call.',
|
|
},
|
|
scorecardIds: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Comma-separated list of scorecard IDs to filter by',
|
|
},
|
|
reviewedUserIds: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Comma-separated list of reviewed user IDs to filter by',
|
|
},
|
|
cursor: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Pagination cursor from a previous response',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: 'https://api.gong.io/v2/stats/activity/scorecards',
|
|
method: 'POST',
|
|
headers: (params) => ({
|
|
'Content-Type': 'application/json',
|
|
Authorization: `Basic ${btoa(`${params.accessKey}:${params.accessKeySecret}`)}`,
|
|
}),
|
|
body: (params) => {
|
|
const filter: Record<string, unknown> = {}
|
|
if (params.callFromDate?.trim()) filter.callFromDate = params.callFromDate.trim()
|
|
if (params.callToDate?.trim()) filter.callToDate = params.callToDate.trim()
|
|
if (params.reviewFromDate?.trim()) filter.reviewFromDate = params.reviewFromDate.trim()
|
|
if (params.reviewToDate?.trim()) filter.reviewToDate = params.reviewToDate.trim()
|
|
const scorecardIds = parseGongIdList(params.scorecardIds)
|
|
const reviewedUserIds = parseGongIdList(params.reviewedUserIds)
|
|
if (scorecardIds) filter.scorecardIds = scorecardIds
|
|
if (reviewedUserIds) filter.reviewedUserIds = reviewedUserIds
|
|
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 answered scorecards'))
|
|
}
|
|
const answeredScorecards = (data.answeredScorecards ?? []).map(
|
|
(sc: Record<string, unknown>) => ({
|
|
answeredScorecardId: sc.answeredScorecardId ?? 0,
|
|
scorecardId: sc.scorecardId ?? null,
|
|
scorecardName: sc.scorecardName ?? null,
|
|
callId: sc.callId ?? null,
|
|
callStartTime: sc.callStartTime ?? null,
|
|
reviewedUserId: sc.reviewedUserId ?? null,
|
|
reviewerUserId: sc.reviewerUserId ?? null,
|
|
reviewTime: sc.reviewTime ?? null,
|
|
visibilityType: sc.visibilityType ?? null,
|
|
answers: ((sc.answers as Record<string, unknown>[]) ?? []).map(
|
|
(answer: Record<string, unknown>) => ({
|
|
questionId: answer.questionId ?? null,
|
|
questionRevisionId: answer.questionRevisionId ?? null,
|
|
isOverall: answer.isOverall ?? null,
|
|
score: answer.score ?? null,
|
|
answerText: answer.answerText ?? null,
|
|
notApplicable: answer.notApplicable ?? null,
|
|
})
|
|
),
|
|
})
|
|
)
|
|
return {
|
|
success: true,
|
|
output: {
|
|
answeredScorecards,
|
|
cursor: data.records?.cursor ?? null,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
answeredScorecards: {
|
|
type: 'array',
|
|
description: 'List of answered scorecards with scores and answers',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
answeredScorecardId: {
|
|
type: 'number',
|
|
description: 'Identifier of the answered scorecard',
|
|
},
|
|
scorecardId: { type: 'number', description: 'Identifier of the scorecard' },
|
|
scorecardName: { type: 'string', description: 'Scorecard name' },
|
|
callId: { type: 'number', description: "Gong's unique numeric identifier for the call" },
|
|
callStartTime: {
|
|
type: 'string',
|
|
description: 'Date/time of the call in ISO-8601 format',
|
|
},
|
|
reviewedUserId: {
|
|
type: 'number',
|
|
description: 'User ID of the team member being reviewed',
|
|
},
|
|
reviewerUserId: {
|
|
type: 'number',
|
|
description: 'User ID of the team member who completed the scorecard',
|
|
},
|
|
reviewTime: {
|
|
type: 'string',
|
|
description: 'Date/time when the review was completed in ISO-8601 format',
|
|
},
|
|
visibilityType: {
|
|
type: 'string',
|
|
description: 'Visibility type of the scorecard answer',
|
|
},
|
|
answers: {
|
|
type: 'array',
|
|
description: 'Answers in the answered scorecard',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
questionId: { type: 'number', description: 'Identifier of the question' },
|
|
questionRevisionId: {
|
|
type: 'number',
|
|
description: 'Identifier of the revision version of the question',
|
|
},
|
|
isOverall: { type: 'boolean', description: 'Whether this is the overall question' },
|
|
score: {
|
|
type: 'number',
|
|
description: 'Score between 1 to 5 if answered, null otherwise',
|
|
},
|
|
answerText: {
|
|
type: 'string',
|
|
description: "The answer's text if answered, null otherwise",
|
|
},
|
|
notApplicable: {
|
|
type: 'boolean',
|
|
description: 'Whether the question is not applicable to this call',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
cursor: {
|
|
type: 'string',
|
|
description: 'Pagination cursor for the next page',
|
|
},
|
|
},
|
|
}
|