From 1091370b8963d206ab931b619a12b9546657aa92 Mon Sep 17 00:00:00 2001 From: takker <37929109+takker99@users.noreply.github.com> Date: Sun, 3 Aug 2025 17:57:54 +0900 Subject: [PATCH 1/2] fix(api): `PageSummery` does not has `commitId` fix https://github.com/scrapbox-jp/types/pull/73 --- api/pages/project.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/api/pages/project.ts b/api/pages/project.ts index 4ee9d5c..8e2a2a4 100644 --- a/api/pages/project.ts +++ b/api/pages/project.ts @@ -23,9 +23,6 @@ export interface PageSummery { /** page id */ id: PageId; - /** 最新の編集コミットid */ - commitId: CommitId; - /** the title of a page */ title: string; From 5db28ea461a4f1d824c9dcf0956c1edc39f6a45c Mon Sep 17 00:00:00 2001 From: takker <37929109+takker99@users.noreply.github.com> Date: Sun, 3 Aug 2025 17:59:23 +0900 Subject: [PATCH 2/2] style: deno lint --- api/pages/project.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/pages/project.ts b/api/pages/project.ts index 8e2a2a4..f7f058a 100644 --- a/api/pages/project.ts +++ b/api/pages/project.ts @@ -1,4 +1,4 @@ -import type { CommitId, PageId, UnixTime, UserId } from "../../base.ts"; +import type { PageId, UnixTime, UserId } from "../../base.ts"; /** the response type of https://scrpabox.io/api/pages/:projectname */ export interface PageList {