Files
simstudioai--sim/apps/sim/tools/gong/index.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

54 lines
3.0 KiB
TypeScript

import { aggregateActivityTool } from '@/tools/gong/aggregate_activity'
import { aggregateByPeriodTool } from '@/tools/gong/aggregate_by_period'
import { answeredScorecardsTool } from '@/tools/gong/answered_scorecards'
import { assignFlowProspectsTool } from '@/tools/gong/assign_flow_prospects'
import { createCallTool } from '@/tools/gong/create_call'
import { dayByDayActivityTool } from '@/tools/gong/day_by_day_activity'
import { getCallTool } from '@/tools/gong/get_call'
import { getCallTranscriptTool } from '@/tools/gong/get_call_transcript'
import { getCoachingTool } from '@/tools/gong/get_coaching'
import { getExtensiveCallsTool } from '@/tools/gong/get_extensive_calls'
import { getFolderContentTool } from '@/tools/gong/get_folder_content'
import { getProspectFlowsTool } from '@/tools/gong/get_prospect_flows'
import { getUserTool } from '@/tools/gong/get_user'
import { interactionStatsTool } from '@/tools/gong/interaction_stats'
import { listCallsTool } from '@/tools/gong/list_calls'
import { listFlowsTool } from '@/tools/gong/list_flows'
import { listLibraryFoldersTool } from '@/tools/gong/list_library_folders'
import { listScorecardsTool } from '@/tools/gong/list_scorecards'
import { listTrackersTool } from '@/tools/gong/list_trackers'
import { listUsersTool } from '@/tools/gong/list_users'
import { listWorkspacesTool } from '@/tools/gong/list_workspaces'
import { lookupEmailTool } from '@/tools/gong/lookup_email'
import { lookupPhoneTool } from '@/tools/gong/lookup_phone'
import { purgeEmailAddressTool } from '@/tools/gong/purge_email_address'
import { purgePhoneNumberTool } from '@/tools/gong/purge_phone_number'
export const gongListCallsTool = listCallsTool
export const gongCreateCallTool = createCallTool
export const gongGetCallTool = getCallTool
export const gongGetCallTranscriptTool = getCallTranscriptTool
export const gongGetExtensiveCallsTool = getExtensiveCallsTool
export const gongListUsersTool = listUsersTool
export const gongGetUserTool = getUserTool
export const gongAggregateActivityTool = aggregateActivityTool
export const gongDayByDayActivityTool = dayByDayActivityTool
export const gongAggregateByPeriodTool = aggregateByPeriodTool
export const gongInteractionStatsTool = interactionStatsTool
export const gongAnsweredScorecardsTool = answeredScorecardsTool
export const gongListLibraryFoldersTool = listLibraryFoldersTool
export const gongGetFolderContentTool = getFolderContentTool
export const gongListScorecardsTool = listScorecardsTool
export const gongListTrackersTool = listTrackersTool
export const gongListWorkspacesTool = listWorkspacesTool
export const gongListFlowsTool = listFlowsTool
export const gongGetCoachingTool = getCoachingTool
export const gongLookupEmailTool = lookupEmailTool
export const gongLookupPhoneTool = lookupPhoneTool
export const gongPurgeEmailAddressTool = purgeEmailAddressTool
export const gongPurgePhoneNumberTool = purgePhoneNumberTool
export const gongAssignFlowProspectsTool = assignFlowProspectsTool
export const gongGetProspectFlowsTool = getProspectFlowsTool
export * from './types'