From db8745485fa09598e2389f194dbf55fb49562218 Mon Sep 17 00:00:00 2001 From: Innei Date: Mon, 12 Feb 2024 15:47:13 +0800 Subject: [PATCH] fix: post model type Signed-off-by: Innei --- packages/api-client/models/post.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/api-client/models/post.ts b/packages/api-client/models/post.ts index f3408115..15bf1d0a 100644 --- a/packages/api-client/models/post.ts +++ b/packages/api-client/models/post.ts @@ -2,7 +2,7 @@ import type { Count, Image, TextBaseModel } from './base' import type { CategoryModel } from './category' export interface PostModel extends TextBaseModel { - summary?: string + summary?: string | null copyright: boolean tags: string[] count: Count