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
184 lines
5.7 KiB
TypeScript
184 lines
5.7 KiB
TypeScript
import { ashbyAuthHeaders, ashbyErrorMessage } from '@/tools/ashby/utils'
|
|
import type { ToolConfig, ToolResponse } from '@/tools/types'
|
|
|
|
interface AshbyListCustomFieldsParams {
|
|
apiKey: string
|
|
cursor?: string
|
|
perPage?: number
|
|
syncToken?: string
|
|
includeArchived?: boolean
|
|
}
|
|
|
|
interface AshbyCustomFieldDefinition {
|
|
id: string
|
|
title: string
|
|
isPrivate: boolean
|
|
fieldType: string
|
|
objectType: string
|
|
isArchived: boolean
|
|
isRequired: boolean
|
|
selectableValues: Array<{
|
|
label: string
|
|
value: string
|
|
isArchived: boolean
|
|
}>
|
|
}
|
|
|
|
interface AshbyListCustomFieldsResponse extends ToolResponse {
|
|
output: {
|
|
customFields: AshbyCustomFieldDefinition[]
|
|
moreDataAvailable: boolean
|
|
nextCursor: string | null
|
|
syncToken: string | null
|
|
}
|
|
}
|
|
|
|
export const listCustomFieldsTool: ToolConfig<
|
|
AshbyListCustomFieldsParams,
|
|
AshbyListCustomFieldsResponse
|
|
> = {
|
|
id: 'ashby_list_custom_fields',
|
|
name: 'Ashby List Custom Fields',
|
|
description: 'Lists all custom field definitions configured in Ashby.',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Ashby API Key',
|
|
},
|
|
cursor: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Opaque pagination cursor from a previous response nextCursor value',
|
|
},
|
|
perPage: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Number of results per page (default and max 100)',
|
|
},
|
|
syncToken: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Opaque token from a prior sync to fetch only items changed since then',
|
|
},
|
|
includeArchived: {
|
|
type: 'boolean',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'When true, includes archived custom fields in results (default false)',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: 'https://api.ashbyhq.com/customField.list',
|
|
method: 'POST',
|
|
headers: (params) => ashbyAuthHeaders(params.apiKey),
|
|
body: (params) => {
|
|
const body: Record<string, unknown> = {}
|
|
if (params.cursor) body.cursor = params.cursor
|
|
if (params.perPage) body.limit = params.perPage
|
|
if (params.syncToken) body.syncToken = params.syncToken
|
|
if (params.includeArchived !== undefined) body.includeArchived = params.includeArchived
|
|
return body
|
|
},
|
|
},
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const data = await response.json()
|
|
|
|
if (!data.success) {
|
|
throw new Error(ashbyErrorMessage(data, 'Failed to list custom fields'))
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
moreDataAvailable: data.moreDataAvailable ?? false,
|
|
nextCursor: data.nextCursor ?? null,
|
|
syncToken: data.syncToken ?? null,
|
|
customFields: (data.results ?? []).map(
|
|
(f: Record<string, unknown> & { selectableValues?: Array<Record<string, unknown>> }) => ({
|
|
id: (f.id as string) ?? '',
|
|
title: (f.title as string) ?? '',
|
|
isPrivate: (f.isPrivate as boolean) ?? false,
|
|
fieldType: (f.fieldType as string) ?? '',
|
|
objectType: (f.objectType as string) ?? '',
|
|
isArchived: (f.isArchived as boolean) ?? false,
|
|
isRequired: (f.isRequired as boolean) ?? false,
|
|
selectableValues: Array.isArray(f.selectableValues)
|
|
? f.selectableValues.map((v) => ({
|
|
label: (v.label as string) ?? '',
|
|
value: (v.value as string) ?? '',
|
|
isArchived: (v.isArchived as boolean) ?? false,
|
|
}))
|
|
: [],
|
|
})
|
|
),
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
customFields: {
|
|
type: 'array',
|
|
description: 'List of custom field definitions',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
id: { type: 'string', description: 'Custom field UUID' },
|
|
title: { type: 'string', description: 'Custom field title' },
|
|
isPrivate: {
|
|
type: 'boolean',
|
|
description: 'Whether the custom field is private',
|
|
},
|
|
fieldType: {
|
|
type: 'string',
|
|
description:
|
|
'Field data type (MultiValueSelect, NumberRange, String, Date, ValueSelect, Number, Currency, Boolean, LongText, CompensationRange)',
|
|
},
|
|
objectType: {
|
|
type: 'string',
|
|
description:
|
|
'Object type the field applies to (Application, Candidate, Employee, Job, Offer, Opening, Talent_Project)',
|
|
},
|
|
isArchived: { type: 'boolean', description: 'Whether the custom field is archived' },
|
|
isRequired: { type: 'boolean', description: 'Whether a value is required' },
|
|
selectableValues: {
|
|
type: 'array',
|
|
description:
|
|
'Selectable values for MultiValueSelect fields (empty for other field types)',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
label: { type: 'string', description: 'Display label' },
|
|
value: { type: 'string', description: 'Stored value' },
|
|
isArchived: { type: 'boolean', description: 'Whether archived' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
moreDataAvailable: {
|
|
type: 'boolean',
|
|
description: 'Whether more pages of results exist',
|
|
},
|
|
nextCursor: {
|
|
type: 'string',
|
|
description: 'Opaque cursor for fetching the next page',
|
|
optional: true,
|
|
},
|
|
syncToken: {
|
|
type: 'string',
|
|
description: 'Opaque sync token returned after the last page; pass on next sync',
|
|
optional: true,
|
|
},
|
|
},
|
|
}
|