diff options
author | 2023-11-28 00:44:20 +0800 | |
---|---|---|
committer | 2023-11-28 00:44:20 +0800 | |
commit | 153a5abb905042ac68b712514dc9ec387d3e6b17 (patch) | |
tree | 542cbbdcd46bc03c30a1ede225f721ad85f09622 /packages/astro-rss/src/schema.ts | |
parent | c7953645eeaaf9e87c6db4494b0023d2c1878ff0 (diff) | |
download | astro-153a5abb905042ac68b712514dc9ec387d3e6b17.tar.gz astro-153a5abb905042ac68b712514dc9ec387d3e6b17.tar.zst astro-153a5abb905042ac68b712514dc9ec387d3e6b17.zip |
Remove deprecated features from Astro 3.0 (#9168)
Diffstat (limited to 'packages/astro-rss/src/schema.ts')
-rw-r--r-- | packages/astro-rss/src/schema.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/astro-rss/src/schema.ts b/packages/astro-rss/src/schema.ts index eb15ecd58..98aa35f81 100644 --- a/packages/astro-rss/src/schema.ts +++ b/packages/astro-rss/src/schema.ts @@ -8,7 +8,6 @@ export const rssSchema = z.object({ .refine((value) => !isNaN(value.getTime())), description: z.string().optional(), customData: z.string().optional(), - draft: z.boolean().optional(), categories: z.array(z.string()).optional(), author: z.string().optional(), commentsUrl: z.string().optional(), |