n_a_types 3.1.4 → 3.1.5
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/index.ts +2 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -334,7 +334,8 @@ export const commentSchema = z.object({
|
|
|
334
334
|
id: z.string(),
|
|
335
335
|
publicDisplayName: z.string().nullable(),
|
|
336
336
|
profileImage: z.object({ s3URL: z.string() }).nullable()
|
|
337
|
-
}).nullable()
|
|
337
|
+
}).nullable(),
|
|
338
|
+
isDeleted: z.boolean()
|
|
338
339
|
})
|
|
339
340
|
export type CommentType = z.infer<typeof commentSchema>
|
|
340
341
|
|