@levrbet/shared 0.5.85 → 0.5.86

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.
@@ -15,4 +15,5 @@ export interface EnsureUserProfileInput {
15
15
  walletAddress: string;
16
16
  referrerCode?: string | null;
17
17
  timeZone?: string;
18
+ signupCampaign?: string | null;
18
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levrbet/shared",
3
- "version": "0.5.85",
3
+ "version": "0.5.86",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
@@ -29,6 +29,7 @@ model User {
29
29
  email String?
30
30
  referralCode String? @unique
31
31
  referrerCode String?
32
+ signupCampaign String?
32
33
  timeZone String @default("UTC")
33
34
  preferredTimeZone String?
34
35
  userOddsPreference UserOddsPreference @default(American)
@@ -52,6 +53,8 @@ model User {
52
53
 
53
54
  createdAt DateTime @default(now())
54
55
  updatedAt DateTime @updatedAt
56
+
57
+ @@index([signupCampaign])
55
58
  }
56
59
 
57
60
  model TransactionHistory {