@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/edge.js +8 -6
- package/index-browser.js +4 -2
- package/index.d.ts +118 -2
- package/index.js +8 -6
- package/package.json +1 -1
- package/schema.prisma +2 -1
- package/wasm.js +4 -2
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -70,7 +70,8 @@ model User {
|
|
|
70
70
|
socialProfiles SocialProfile[]
|
|
71
71
|
rakutenActivity RakutenActivity[]
|
|
72
72
|
impactRadiusEvents ImpactRadiusEvent[]
|
|
73
|
-
|
|
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 = {
|