hekireki 0.0.8 → 0.0.9
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/README.md
CHANGED
|
@@ -294,9 +294,9 @@ export type Like = v.InferInput<typeof LikeSchema>
|
|
|
294
294
|
|
|
295
295
|
```mermaid
|
|
296
296
|
erDiagram
|
|
297
|
-
User
|
|
298
|
-
Post
|
|
299
|
-
User
|
|
297
|
+
User ||--}| Post : "(id) - (userId)"
|
|
298
|
+
Post ||--}| Like : "(id) - (postId)"
|
|
299
|
+
User ||--}| Like : "(id) - (userId)"
|
|
300
300
|
User {
|
|
301
301
|
String id "Unique identifier for the user."
|
|
302
302
|
String username "Username of the user."
|
package/package.json
CHANGED