@uniteverses/shared 1.0.50 → 1.0.51
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.
|
@@ -140,10 +140,12 @@ export interface CreatePostInput {
|
|
|
140
140
|
body: string;
|
|
141
141
|
topicId?: string;
|
|
142
142
|
organizationId?: string;
|
|
143
|
+
imageStoragePath?: string | null;
|
|
143
144
|
}
|
|
144
145
|
export interface UpdatePostInput {
|
|
145
146
|
title: string;
|
|
146
147
|
body: string;
|
|
148
|
+
imageStoragePath?: string | null;
|
|
147
149
|
}
|
|
148
150
|
export interface PostVersion {
|
|
149
151
|
id: string;
|
|
@@ -167,6 +169,8 @@ export interface Post {
|
|
|
167
169
|
userId: string;
|
|
168
170
|
topicId: string | null;
|
|
169
171
|
organizationId: string | null;
|
|
172
|
+
imageStoragePath?: string | null;
|
|
173
|
+
imageUrl?: string | null;
|
|
170
174
|
createdAt: string | Date;
|
|
171
175
|
deletedAt: string | Date | null;
|
|
172
176
|
user: User;
|