@bash-app/bash-common 30.11.0 → 30.13.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 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -177,6 +177,8 @@ model PromoterStats {
|
|
|
177
177
|
directCreditsEarned Int @default(0)
|
|
178
178
|
indirectCreditsEarned Int @default(0)
|
|
179
179
|
totalCreditsEarned Int @default(0)
|
|
180
|
+
pendingCredits Int @default(0)
|
|
181
|
+
availableCredits Int @default(0)
|
|
180
182
|
createdAt DateTime @default(now())
|
|
181
183
|
updatedAt DateTime @updatedAt
|
|
182
184
|
}
|