fix: types

This commit is contained in:
DIYgod 2024-11-10 21:25:05 +08:00
parent 53810badc1
commit 8241b280c9
No known key found for this signature in database
1 changed files with 11 additions and 1 deletions

View File

@ -91,7 +91,17 @@ export type RecommendationItem = ExtractBizResponse<
export type ActionOperation = "contains" | "not_contains" | "eq" | "not_eq" | "gt" | "lt" | "regex"
export type ActionEntryField = "all" | "title" | "content" | "author" | "url" | "order"
export type ActionFeedField = "view" | "title" | "site_url" | "feed_url" | "category"
export type ActionFeedField =
| "view"
| "title"
| "site_url"
| "feed_url"
| "category"
| "entry_title"
| "entry_content"
| "entry_url"
| "entry_author"
| "entry_media_length"
export type MediaModel = Exclude<
ExtractBizResponse<typeof _apiClient.entries.$get>["data"],