Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
API reference for activity feed
const activity = await client.activity.listForRepo.query({ repoId: 'repo_123', limit: 50, cursor: 'cursor_abc', // For pagination });
const activity = await client.activity.listForUser.query({ userId: 'user_456', limit: 50, });
const entry = await client.activity.get.query({ id: 'activity_789', });
push
pr_opened
pr_merged
pr_closed
issue_opened
issue_closed
comment
review
interface Activity { id: string; type: string; actor: { id: string; username: string }; repository: { id: string; name: string }; details: Record<string, any>; createdAt: string; }