// @ts-ignore /* eslint-disable */ import request from '@repo/api-client' /** Pull changes from the remote repository Requires the Source Control feature to be licensed and connected to a repository. POST /source-control/pull */ export async function postSourceControlPull(body: API.pull, options?: { [key: string]: any }) { return request('/source-control/pull', { method: 'POST', headers: { 'Content-Type': 'application/json' }, data: body, ...(options || {}) }) }