This commit is contained in:
Peter M Elias
2024-12-28 02:25:30 -08:00
committed by Peter M. Elias
parent a79ec67d9c
commit 7c72d987f9
8 changed files with 20 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
import { z } from "zod";
import { githubRequest, buildUrl } from "../common/utils";
import { GitHubCommitSchema, GitHubListCommitsSchema } from "../common/types";
import { githubRequest, buildUrl } from "../common/utils.js";
import { GitHubCommitSchema, GitHubListCommitsSchema } from "../common/types.js";
// Schema definitions
export const ListCommitsSchema = z.object({
@@ -92,4 +92,4 @@ export async function compareCommits(
ahead_by: z.number(),
behind_by: z.number(),
}).parse(response);
}
}