@bash-app/bash-common 30.301.0 → 30.302.0
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/package.json +1 -1
- package/prisma/schema.prisma +2 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1798,8 +1798,8 @@ model IdeaInterest {
|
|
|
1798
1798
|
model IdeaEngagement {
|
|
1799
1799
|
id String @id @default(cuid())
|
|
1800
1800
|
bashEventId String
|
|
1801
|
-
actorKey String // user:{id}
|
|
1802
|
-
firstEngagementKind String // interest | service_offer | share | feed_like | feed_comment | feed_repost
|
|
1801
|
+
actorKey String // user:{id} | email:{lowercase} | anon:{uuid}
|
|
1802
|
+
firstEngagementKind String // interest | service_offer | share | share_copy | share_native | feed_like | feed_comment | feed_repost | feed_save
|
|
1803
1803
|
createdAt DateTime @default(now())
|
|
1804
1804
|
|
|
1805
1805
|
bashEvent BashEvent @relation(fields: [bashEventId], references: [id], onDelete: Cascade)
|