@creator.co/creatorco-prisma-client 1.0.44 → 1.0.45

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
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "./*": "./*"
81
81
  },
82
- "version": "1.0.44",
82
+ "version": "1.0.45",
83
83
  "sideEffects": false,
84
84
  "description": "Prisma client for creatorco Database"
85
85
  }
package/schema.prisma CHANGED
@@ -70,7 +70,9 @@ model User {
70
70
  socialProfiles SocialProfile[]
71
71
  rakutenActivity RakutenActivity[]
72
72
  impactRadiusEvents ImpactRadiusEvent[]
73
- // @@fulltext([firstName, lastName])
73
+
74
+ fullName String? @default(dbgenerated())
75
+ phoneNormalised String? @default(dbgenerated())
74
76
 
75
77
  @@index([phoneCode, phone])
76
78
  @@map("user")
package/wasm.js CHANGED
@@ -138,7 +138,9 @@ exports.Prisma.UserScalarFieldEnum = {
138
138
  closedReason: 'closedReason',
139
139
  usercomLastSynced: 'usercomLastSynced',
140
140
  extraData: 'extraData',
141
- referrerId: 'referrerId'
141
+ referrerId: 'referrerId',
142
+ fullName: 'fullName',
143
+ phoneNormalised: 'phoneNormalised'
142
144
  };
143
145
 
144
146
  exports.Prisma.LogScalarFieldEnum = {
@@ -1010,7 +1012,9 @@ exports.Prisma.UserOrderByRelevanceFieldEnum = {
1010
1012
  profilePicUrl: 'profilePicUrl',
1011
1013
  forgotPasswordKey: 'forgotPasswordKey',
1012
1014
  affiliateSlug: 'affiliateSlug',
1013
- closedReason: 'closedReason'
1015
+ closedReason: 'closedReason',
1016
+ fullName: 'fullName',
1017
+ phoneNormalised: 'phoneNormalised'
1014
1018
  };
1015
1019
 
1016
1020
  exports.Prisma.CreatorProfileOrderByRelevanceFieldEnum = {