@levrbet/shared 0.5.44 → 0.5.46
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 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -593,10 +593,11 @@ model ClosedOrder {
|
|
|
593
593
|
model FreeBetCampaign {
|
|
594
594
|
objectId String @id @default(auto()) @map("_id") @db.ObjectId
|
|
595
595
|
merkleRoot String @unique
|
|
596
|
+
campaignId Int
|
|
596
597
|
chainId Int
|
|
597
598
|
name String
|
|
598
599
|
description String
|
|
599
|
-
|
|
600
|
+
txHash String?
|
|
600
601
|
|
|
601
602
|
entries FreeBetCampaignEntry[]
|
|
602
603
|
|