@creator.co/creatorco-prisma-client 1.0.82-alpha-87c8144 → 1.0.82-alpha-bd13b4c
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 +7 -5
- package/index-browser.js +2 -0
- package/index.d.ts +70 -0
- package/index.js +7 -5
- package/package.json +1 -1
- package/schema.prisma +7 -5
- package/wasm.js +2 -0
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -1322,11 +1322,13 @@ enum SocialProfileContactSource {
|
|
|
1322
1322
|
}
|
|
1323
1323
|
|
|
1324
1324
|
model SocialProfileContact {
|
|
1325
|
-
id
|
|
1326
|
-
type
|
|
1327
|
-
value
|
|
1328
|
-
source
|
|
1329
|
-
metaData
|
|
1325
|
+
id Int @id @default(autoincrement())
|
|
1326
|
+
type String
|
|
1327
|
+
value String
|
|
1328
|
+
source SocialProfileContactSource @default(MANUAL)
|
|
1329
|
+
metaData Json? @default("{}") @map("meta_data")
|
|
1330
|
+
createdAt DateTime? @default(now())
|
|
1331
|
+
updatedAt DateTime? @updatedAt
|
|
1330
1332
|
|
|
1331
1333
|
socialProfileId Int @map("social_profile_id")
|
|
1332
1334
|
|
package/wasm.js
CHANGED