( workspace_id: string, limit = 40, )
| 617 | } |
| 618 | |
| 619 | export async function getGitLog( |
| 620 | workspace_id: string, |
| 621 | limit = 40, |
| 622 | ): Promise<GitLogResponse> { |
| 623 | return invoke("get_git_log", { workspaceId: workspace_id, limit }); |
| 624 | } |
| 625 | |
| 626 | export async function getGitCommitDiff( |
| 627 | workspace_id: string, |
no outgoing calls
no test coverage detected