@yimingliao/cms 0.0.70 → 0.0.71
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 +3 -5
- package/dist/server/index.js +1 -1
- package/package.json +1 -1
package/dist/server/index.d.ts
CHANGED
|
@@ -2262,11 +2262,9 @@ declare function createPostFindFullAction(ctx: ActionContext): (params: {
|
|
|
2262
2262
|
isActive?: boolean;
|
|
2263
2263
|
topicSlug?: string;
|
|
2264
2264
|
}) => Promise<Result<{
|
|
2265
|
-
post:
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
next: PostListCard | null;
|
|
2269
|
-
};
|
|
2265
|
+
post: PostFull | null;
|
|
2266
|
+
prev: PostListCard | null;
|
|
2267
|
+
next: PostListCard | null;
|
|
2270
2268
|
}>>;
|
|
2271
2269
|
|
|
2272
2270
|
declare function createPostFindListCardsAction(ctx: ActionContext): (params: {
|
package/dist/server/index.js
CHANGED