@framebreak/types 0.1.7 → 0.1.8
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/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ interface CommunityComment {
|
|
|
29
29
|
communityPostId: string;
|
|
30
30
|
parentId: string | null;
|
|
31
31
|
content: string;
|
|
32
|
+
images: string[];
|
|
32
33
|
createdAt: Date;
|
|
33
34
|
updatedAt: Date;
|
|
34
35
|
author: CommentAuthor;
|
|
@@ -1816,6 +1817,7 @@ declare const v1Router: {
|
|
|
1816
1817
|
communityPostId: zod.ZodString;
|
|
1817
1818
|
parentId: zod.ZodOptional<zod.ZodString>;
|
|
1818
1819
|
content: zod.ZodString;
|
|
1820
|
+
imageUrls: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
1819
1821
|
}, better_auth.$strip>, _orpc_contract.Schema<{
|
|
1820
1822
|
data: CommunityComment;
|
|
1821
1823
|
}, {
|