Files
simstudioai--sim/apps/sim/tools/ashby/list_locations.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

226 lines
7.0 KiB
TypeScript

import { ashbyAuthHeaders, ashbyErrorMessage } from '@/tools/ashby/utils'
import type { ToolConfig, ToolResponse } from '@/tools/types'
interface AshbyListLocationsParams {
apiKey: string
cursor?: string
perPage?: number
syncToken?: string
includeArchived?: boolean
includeLocationHierarchy?: boolean
}
interface AshbyLocation {
id: string
name: string
externalName: string | null
isArchived: boolean
isRemote: boolean
workplaceType: string | null
parentLocationId: string | null
type: string | null
address: {
addressCountry: string | null
addressRegion: string | null
addressLocality: string | null
postalCode: string | null
streetAddress: string | null
} | null
extraData: Record<string, unknown> | null
}
interface AshbyListLocationsResponse extends ToolResponse {
output: {
locations: AshbyLocation[]
moreDataAvailable: boolean
nextCursor: string | null
syncToken: string | null
}
}
export const listLocationsTool: ToolConfig<AshbyListLocationsParams, AshbyListLocationsResponse> = {
id: 'ashby_list_locations',
name: 'Ashby List Locations',
description: 'Lists all locations 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 locations in results (default false)',
},
includeLocationHierarchy: {
type: 'boolean',
required: false,
visibility: 'user-or-llm',
description: 'When true, includes location hierarchy components/regions (default false)',
},
},
request: {
url: 'https://api.ashbyhq.com/location.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
if (params.includeLocationHierarchy !== undefined)
body.includeLocationHierarchy = params.includeLocationHierarchy
return body
},
},
transformResponse: async (response: Response) => {
const data = await response.json()
if (!data.success) {
throw new Error(ashbyErrorMessage(data, 'Failed to list locations'))
}
return {
success: true,
output: {
locations: (data.results ?? []).map(
(
l: Record<string, unknown> & {
address?: { postalAddress?: Record<string, unknown> }
}
) => {
const pa = l.address?.postalAddress
return {
id: (l.id as string) ?? '',
name: (l.name as string) ?? '',
externalName: (l.externalName as string) ?? null,
isArchived: (l.isArchived as boolean) ?? false,
isRemote: (l.isRemote as boolean) ?? false,
workplaceType: (l.workplaceType as string) ?? null,
parentLocationId: (l.parentLocationId as string) ?? null,
type: (l.type as string) ?? null,
address: pa
? {
addressCountry: (pa.addressCountry as string) ?? null,
addressRegion: (pa.addressRegion as string) ?? null,
addressLocality: (pa.addressLocality as string) ?? null,
postalCode: (pa.postalCode as string) ?? null,
streetAddress: (pa.streetAddress as string) ?? null,
}
: null,
extraData: (l.extraData as Record<string, unknown>) ?? null,
}
}
),
moreDataAvailable: data.moreDataAvailable ?? false,
nextCursor: data.nextCursor ?? null,
syncToken: data.syncToken ?? null,
},
}
},
outputs: {
locations: {
type: 'array',
description: 'List of locations',
items: {
type: 'object',
properties: {
id: { type: 'string', description: 'Location UUID' },
name: { type: 'string', description: 'Location name' },
externalName: {
type: 'string',
description: 'Candidate-facing name used on job boards',
optional: true,
},
isArchived: { type: 'boolean', description: 'Whether the location is archived' },
isRemote: {
type: 'boolean',
description: 'Whether the location is remote (use workplaceType instead)',
},
workplaceType: {
type: 'string',
description: 'Workplace type (OnSite, Hybrid, Remote)',
optional: true,
},
parentLocationId: {
type: 'string',
description: 'Parent location UUID',
optional: true,
},
type: {
type: 'string',
description: 'Location component type (Location, LocationHierarchy)',
optional: true,
},
address: {
type: 'object',
description: 'Location postal address',
optional: true,
properties: {
addressCountry: { type: 'string', description: 'Country', optional: true },
addressRegion: {
type: 'string',
description: 'State or region',
optional: true,
},
addressLocality: {
type: 'string',
description: 'City or locality',
optional: true,
},
postalCode: { type: 'string', description: 'Postal code', optional: true },
streetAddress: { type: 'string', description: 'Street address', optional: true },
},
},
extraData: {
type: 'json',
description: 'Free-form key-value metadata',
optional: true,
},
},
},
},
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,
},
},
}