@yimingliao/cms 0.0.60 → 0.0.61
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/dist/server/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/server/index.d.ts
CHANGED
|
@@ -1790,7 +1790,7 @@ declare const postCreateValidator: ({ type, topicId, schemas, tocItemSchema, }:
|
|
|
1790
1790
|
}[];
|
|
1791
1791
|
}>>;
|
|
1792
1792
|
|
|
1793
|
-
type PostCreateFormData = Omit<zod__default.infer<ReturnType<typeof postCreateValidator>>, "author" | "parents" | "tags" | "relatedPosts" | "coverImage" | "
|
|
1793
|
+
type PostCreateFormData = Omit<zod__default.infer<ReturnType<typeof postCreateValidator>>, "author" | "parents" | "tags" | "relatedPosts" | "coverImage" | "images1" | "images2" | "image1" | "image2" | "image3" | "image4"> & {
|
|
1794
1794
|
author: AdminCard | null;
|
|
1795
1795
|
parents: PostListCard[];
|
|
1796
1796
|
tags: PostListCard[];
|
|
@@ -2225,7 +2225,7 @@ declare const postUpdateValidator: ({ id, type, topicId, schemas, tocItemSchema,
|
|
|
2225
2225
|
}[];
|
|
2226
2226
|
}>>;
|
|
2227
2227
|
|
|
2228
|
-
type PostUpdateFormData = Omit<zod__default.infer<ReturnType<typeof postUpdateValidator>>, "author" | "parents" | "tags" | "relatedPosts" | "coverImage" | "
|
|
2228
|
+
type PostUpdateFormData = Omit<zod__default.infer<ReturnType<typeof postUpdateValidator>>, "author" | "parents" | "tags" | "relatedPosts" | "coverImage" | "images1" | "images2" | "image1" | "image2" | "image3" | "image4"> & {
|
|
2229
2229
|
author: AdminCard | null;
|
|
2230
2230
|
parents: PostListCard[];
|
|
2231
2231
|
tags: PostListCard[];
|