@zyacreatives/shared 2.0.35 → 2.0.36
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/types/comment.d.ts +3 -1
- package/package.json +1 -1
- package/src/types/comment.ts +9 -1
package/dist/types/comment.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { z } from "@hono/zod-openapi";
|
|
2
|
-
import { CommentEntitySchema } from "../schemas/comment";
|
|
2
|
+
import { CommentEntitySchema, CommentInputSchema, CommentOutputSchema } from "../schemas/comment";
|
|
3
3
|
export type CommentEntity = z.infer<typeof CommentEntitySchema>;
|
|
4
|
+
export type CommentInput = z.infer<typeof CommentInputSchema>;
|
|
5
|
+
export type CommentOutput = z.infer<typeof CommentOutputSchema>;
|
package/package.json
CHANGED
package/src/types/comment.ts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { z } from "@hono/zod-openapi";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
CommentEntitySchema,
|
|
4
|
+
CommentInputSchema,
|
|
5
|
+
CommentOutputSchema,
|
|
6
|
+
} from "../schemas/comment";
|
|
3
7
|
|
|
4
8
|
export type CommentEntity = z.infer<typeof CommentEntitySchema>;
|
|
9
|
+
|
|
10
|
+
export type CommentInput = z.infer<typeof CommentInputSchema>;
|
|
11
|
+
|
|
12
|
+
export type CommentOutput = z.infer<typeof CommentOutputSchema>;
|