@astro-minimax/cli 0.8.1 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astro-minimax/cli",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "type": "module",
5
5
  "description": "CLI tool for astro-minimax blog — create blogs, manage content, and process data with AI.",
6
6
  "author": "Souloss",
@@ -29,6 +29,9 @@ const blog = defineCollection({
29
29
  order: z.number(),
30
30
  })
31
31
  .optional(),
32
+ /** 封面图片:用于卡片和文章页展示 */
33
+ cover: image().or(z.string()).optional(),
34
+ /** OG 图片:用于社交媒体分享 */
32
35
  ogImage: image().or(z.string()).optional(),
33
36
  description: z.string(),
34
37
  canonicalURL: z.string().optional(),