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
141 lines
4.6 KiB
TypeScript
141 lines
4.6 KiB
TypeScript
import type { ToolConfig } from '@/tools/types'
|
|
import type { VercelListTeamsParams, VercelListTeamsResponse } from '@/tools/vercel/types'
|
|
|
|
export const vercelListTeamsTool: ToolConfig<VercelListTeamsParams, VercelListTeamsResponse> = {
|
|
id: 'vercel_list_teams',
|
|
name: 'Vercel List Teams',
|
|
description: 'List all teams in a Vercel account',
|
|
version: '1.0.0',
|
|
|
|
params: {
|
|
apiKey: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-only',
|
|
description: 'Vercel Access Token',
|
|
},
|
|
limit: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Maximum number of teams to return',
|
|
},
|
|
since: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Timestamp in milliseconds to only include teams created since then',
|
|
},
|
|
until: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Timestamp in milliseconds to only include teams created until then',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params: VercelListTeamsParams) => {
|
|
const query = new URLSearchParams()
|
|
if (params.limit) query.set('limit', String(params.limit))
|
|
if (params.since) query.set('since', String(params.since))
|
|
if (params.until) query.set('until', String(params.until))
|
|
const qs = query.toString()
|
|
return `https://api.vercel.com/v2/teams${qs ? `?${qs}` : ''}`
|
|
},
|
|
method: 'GET',
|
|
headers: (params: VercelListTeamsParams) => ({
|
|
Authorization: `Bearer ${params.apiKey}`,
|
|
'Content-Type': 'application/json',
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const data = await response.json()
|
|
const teams = (data.teams ?? []).map((t: any) => ({
|
|
id: t.id ?? null,
|
|
slug: t.slug ?? null,
|
|
name: t.name ?? null,
|
|
avatar: t.avatar ?? null,
|
|
description: t.description ?? null,
|
|
stagingPrefix: t.stagingPrefix ?? null,
|
|
createdAt: t.createdAt ?? null,
|
|
updatedAt: t.updatedAt ?? null,
|
|
creatorId: t.creatorId ?? null,
|
|
membership: t.membership
|
|
? {
|
|
role: t.membership.role ?? null,
|
|
confirmed: t.membership.confirmed ?? false,
|
|
created: t.membership.created ?? null,
|
|
uid: t.membership.uid ?? null,
|
|
teamId: t.membership.teamId ?? null,
|
|
}
|
|
: null,
|
|
}))
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
teams,
|
|
count: teams.length,
|
|
pagination: data.pagination
|
|
? {
|
|
count: data.pagination.count ?? 0,
|
|
next: data.pagination.next ?? null,
|
|
prev: data.pagination.prev ?? null,
|
|
}
|
|
: null,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
teams: {
|
|
type: 'array',
|
|
description: 'List of teams',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
id: { type: 'string', description: 'Team ID' },
|
|
slug: { type: 'string', description: 'Team slug' },
|
|
name: { type: 'string', description: 'Team name' },
|
|
avatar: { type: 'string', description: 'Avatar file ID' },
|
|
description: { type: 'string', description: 'Short team description', optional: true },
|
|
stagingPrefix: {
|
|
type: 'string',
|
|
description: 'Prefix used for staging deployments',
|
|
optional: true,
|
|
},
|
|
createdAt: { type: 'number', description: 'Creation timestamp in milliseconds' },
|
|
updatedAt: { type: 'number', description: 'Last update timestamp in milliseconds' },
|
|
creatorId: { type: 'string', description: 'User ID of team creator' },
|
|
membership: {
|
|
type: 'object',
|
|
description: 'Current user membership details',
|
|
properties: {
|
|
role: { type: 'string', description: 'Membership role' },
|
|
confirmed: { type: 'boolean', description: 'Whether membership is confirmed' },
|
|
created: { type: 'number', description: 'Membership creation timestamp' },
|
|
uid: { type: 'string', description: 'User ID of the member' },
|
|
teamId: { type: 'string', description: 'Team ID' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
count: {
|
|
type: 'number',
|
|
description: 'Number of teams returned',
|
|
},
|
|
pagination: {
|
|
type: 'object',
|
|
description: 'Pagination information',
|
|
properties: {
|
|
count: { type: 'number', description: 'Items in current page' },
|
|
next: { type: 'number', description: 'Timestamp for next page request' },
|
|
prev: { type: 'number', description: 'Timestamp for previous page request' },
|
|
},
|
|
},
|
|
},
|
|
}
|