@creator.co/creatorco-prisma-client 1.0.43 → 1.0.44-alpha-49cbfe3

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