Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mesa.dev/llms.txt

Use this file to discover all available pages before exploring further.

Fetch a change and its path-level metadata.
const change = await mesa.changes.get({
  repo: 'app',
  change_id: 'zyxwvutsrqponmlkzyxwvutsrqponmlk',
});

console.log(change.files);
console.log(change.conflicts);

Options

repo
string
required
Repository name.
change_id
string
required
Change ID.
org
string | undefined
Organization override.

Response

Returns a change object with id, current_commit_oid, is_conflicted, message, author, committer, parents, created_at, updated_at, files, and conflicts.

Required scope

read