@bash-app/bash-common 30.10.0 → 30.12.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "30.10.0",
3
+ "version": "30.12.0",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -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
  }
@@ -803,6 +805,7 @@ model Media {
803
805
  enum MediaType {
804
806
  Unknown
805
807
  Empty
808
+ Document
806
809
  Image
807
810
  Video
808
811
  }