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
229 lines
7.4 KiB
TypeScript
229 lines
7.4 KiB
TypeScript
import { ashbyAuthHeaders, ashbyErrorMessage } from '@/tools/ashby/utils'
|
|
import type { ToolConfig, ToolResponse } from '@/tools/types'
|
|
|
|
interface AshbyListJobPostingsParams {
|
|
apiKey: string
|
|
location?: string
|
|
department?: string
|
|
listedOnly?: boolean
|
|
jobBoardId?: string
|
|
}
|
|
|
|
interface AshbyJobPostingSummary {
|
|
id: string
|
|
title: string
|
|
jobId: string | null
|
|
departmentName: string | null
|
|
teamName: string | null
|
|
locationName: string | null
|
|
locationIds: {
|
|
primaryLocationId: string | null
|
|
secondaryLocationIds: string[]
|
|
} | null
|
|
workplaceType: string | null
|
|
employmentType: string | null
|
|
isListed: boolean
|
|
publishedDate: string | null
|
|
applicationDeadline: string | null
|
|
externalLink: string | null
|
|
applyLink: string | null
|
|
compensationTierSummary: string | null
|
|
shouldDisplayCompensationOnJobBoard: boolean
|
|
updatedAt: string | null
|
|
}
|
|
|
|
interface AshbyListJobPostingsResponse extends ToolResponse {
|
|
output: {
|
|
jobPostings: AshbyJobPostingSummary[]
|
|
}
|
|
}
|
|
|
|
export const listJobPostingsTool: ToolConfig<
|
|
AshbyListJobPostingsParams,
|
|
AshbyListJobPostingsResponse
|
|
> = {
|
|
id: 'ashby_list_job_postings',
|
|
name: 'Ashby List Job Postings',
|
|
description: 'Lists all job postings in Ashby.',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Ashby API Key',
|
|
},
|
|
location: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Filter by location name (case sensitive)',
|
|
},
|
|
department: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Filter by department name (case sensitive)',
|
|
},
|
|
listedOnly: {
|
|
type: 'boolean',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'When true, only returns listed (publicly visible) job postings (default false)',
|
|
},
|
|
jobBoardId: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'UUID of a specific job board to filter postings to. If omitted, returns postings on the primary external job board.',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: 'https://api.ashbyhq.com/jobPosting.list',
|
|
method: 'POST',
|
|
headers: (params) => ashbyAuthHeaders(params.apiKey),
|
|
body: (params) => {
|
|
const body: Record<string, unknown> = {}
|
|
if (params.location) body.location = params.location
|
|
if (params.department) body.department = params.department
|
|
if (params.listedOnly !== undefined) body.listedOnly = params.listedOnly
|
|
if (params.jobBoardId) body.jobBoardId = params.jobBoardId.trim()
|
|
return body
|
|
},
|
|
},
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const data = await response.json()
|
|
|
|
if (!data.success) {
|
|
throw new Error(ashbyErrorMessage(data, 'Failed to list job postings'))
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
jobPostings: (data.results ?? []).map(
|
|
(
|
|
jp: Record<string, unknown> & {
|
|
locationIds?: { primaryLocationId?: string; secondaryLocationIds?: string[] }
|
|
}
|
|
) => ({
|
|
id: (jp.id as string) ?? '',
|
|
title: (jp.title as string) ?? '',
|
|
jobId: (jp.jobId as string) ?? null,
|
|
departmentName: (jp.departmentName as string) ?? null,
|
|
teamName: (jp.teamName as string) ?? null,
|
|
locationName: (jp.locationName as string) ?? null,
|
|
locationIds: jp.locationIds
|
|
? {
|
|
primaryLocationId: jp.locationIds.primaryLocationId ?? null,
|
|
secondaryLocationIds: Array.isArray(jp.locationIds.secondaryLocationIds)
|
|
? jp.locationIds.secondaryLocationIds
|
|
: [],
|
|
}
|
|
: null,
|
|
workplaceType: (jp.workplaceType as string) ?? null,
|
|
employmentType: (jp.employmentType as string) ?? null,
|
|
isListed: (jp.isListed as boolean) ?? false,
|
|
publishedDate: (jp.publishedDate as string) ?? null,
|
|
applicationDeadline: (jp.applicationDeadline as string) ?? null,
|
|
externalLink: (jp.externalLink as string) ?? null,
|
|
applyLink: (jp.applyLink as string) ?? null,
|
|
compensationTierSummary: (jp.compensationTierSummary as string) ?? null,
|
|
shouldDisplayCompensationOnJobBoard:
|
|
(jp.shouldDisplayCompensationOnJobBoard as boolean) ?? false,
|
|
updatedAt: (jp.updatedAt as string) ?? null,
|
|
})
|
|
),
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
jobPostings: {
|
|
type: 'array',
|
|
description: 'List of job postings',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
id: { type: 'string', description: 'Job posting UUID' },
|
|
title: { type: 'string', description: 'Job posting title' },
|
|
jobId: { type: 'string', description: 'Associated job UUID', optional: true },
|
|
departmentName: { type: 'string', description: 'Department name', optional: true },
|
|
teamName: { type: 'string', description: 'Team name', optional: true },
|
|
locationName: {
|
|
type: 'string',
|
|
description: 'Primary location display name',
|
|
optional: true,
|
|
},
|
|
locationIds: {
|
|
type: 'object',
|
|
description: 'Primary and secondary location UUIDs',
|
|
optional: true,
|
|
properties: {
|
|
primaryLocationId: {
|
|
type: 'string',
|
|
description: 'Primary location UUID',
|
|
optional: true,
|
|
},
|
|
secondaryLocationIds: {
|
|
type: 'array',
|
|
description: 'Secondary location UUIDs',
|
|
items: { type: 'string', description: 'Location UUID' },
|
|
},
|
|
},
|
|
},
|
|
workplaceType: {
|
|
type: 'string',
|
|
description: 'Workplace type (OnSite, Remote, Hybrid)',
|
|
optional: true,
|
|
},
|
|
employmentType: {
|
|
type: 'string',
|
|
description: 'Employment type (FullTime, PartTime, Intern, Contract, Temporary)',
|
|
optional: true,
|
|
},
|
|
isListed: { type: 'boolean', description: 'Whether the posting is publicly listed' },
|
|
publishedDate: {
|
|
type: 'string',
|
|
description: 'ISO 8601 published date',
|
|
optional: true,
|
|
},
|
|
applicationDeadline: {
|
|
type: 'string',
|
|
description: 'ISO 8601 application deadline',
|
|
optional: true,
|
|
},
|
|
externalLink: {
|
|
type: 'string',
|
|
description: 'External link to the job posting',
|
|
optional: true,
|
|
},
|
|
applyLink: {
|
|
type: 'string',
|
|
description: 'Direct apply link for the job posting',
|
|
optional: true,
|
|
},
|
|
compensationTierSummary: {
|
|
type: 'string',
|
|
description: 'Compensation tier summary for job boards',
|
|
optional: true,
|
|
},
|
|
shouldDisplayCompensationOnJobBoard: {
|
|
type: 'boolean',
|
|
description: 'Whether compensation is shown on the job board',
|
|
},
|
|
updatedAt: {
|
|
type: 'string',
|
|
description: 'ISO 8601 last update timestamp',
|
|
optional: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|