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