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
111 lines
2.8 KiB
TypeScript
111 lines
2.8 KiB
TypeScript
import type { AshbyUserSummary } from '@/tools/ashby/types'
|
|
import {
|
|
ashbyAuthHeaders,
|
|
ashbyErrorMessage,
|
|
mapUserSummary,
|
|
USER_SUMMARY_OUTPUT,
|
|
} from '@/tools/ashby/utils'
|
|
import type { ToolConfig, ToolResponse } from '@/tools/types'
|
|
|
|
interface AshbyListUsersParams {
|
|
apiKey: string
|
|
cursor?: string
|
|
perPage?: number
|
|
includeDeactivated?: boolean
|
|
}
|
|
|
|
interface AshbyListUsersResponse extends ToolResponse {
|
|
output: {
|
|
users: AshbyUserSummary[]
|
|
moreDataAvailable: boolean
|
|
nextCursor: string | null
|
|
}
|
|
}
|
|
|
|
export const listUsersTool: ToolConfig<AshbyListUsersParams, AshbyListUsersResponse> = {
|
|
id: 'ashby_list_users',
|
|
name: 'Ashby List Users',
|
|
description: 'Lists all users in Ashby with pagination.',
|
|
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 100)',
|
|
},
|
|
includeDeactivated: {
|
|
type: 'boolean',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'When true, includes deactivated users in results (default false)',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: 'https://api.ashbyhq.com/user.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.includeDeactivated !== undefined)
|
|
body.includeDeactivated = params.includeDeactivated
|
|
return body
|
|
},
|
|
},
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const data = await response.json()
|
|
|
|
if (!data.success) {
|
|
throw new Error(ashbyErrorMessage(data, 'Failed to list users'))
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
users: (data.results ?? [])
|
|
.map(mapUserSummary)
|
|
.filter((u: AshbyUserSummary | null): u is AshbyUserSummary => u !== null),
|
|
moreDataAvailable: data.moreDataAvailable ?? false,
|
|
nextCursor: data.nextCursor ?? null,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
users: {
|
|
type: 'array',
|
|
description: 'List of users',
|
|
items: {
|
|
type: 'object',
|
|
properties: USER_SUMMARY_OUTPUT.properties,
|
|
},
|
|
},
|
|
moreDataAvailable: {
|
|
type: 'boolean',
|
|
description: 'Whether more pages of results exist',
|
|
},
|
|
nextCursor: {
|
|
type: 'string',
|
|
description: 'Opaque cursor for fetching the next page',
|
|
optional: true,
|
|
},
|
|
},
|
|
}
|