@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/package.json CHANGED
@@ -92,7 +92,7 @@
92
92
  },
93
93
  "./*": "./*"
94
94
  },
95
- "version": "1.0.82-alpha-87c8144",
95
+ "version": "1.0.82-alpha-bd13b4c",
96
96
  "sideEffects": false,
97
97
  "description": "Prisma client for creatorco Database"
98
98
  }
package/schema.prisma CHANGED
@@ -1322,11 +1322,13 @@ enum SocialProfileContactSource {
1322
1322
  }
1323
1323
 
1324
1324
  model SocialProfileContact {
1325
- id Int @id @default(autoincrement())
1326
- type String
1327
- value String
1328
- source SocialProfileContactSource @default(MANUAL)
1329
- metaData Json? @default("{}") @map("meta_data")
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
@@ -876,6 +876,8 @@ exports.Prisma.SocialProfileContactScalarFieldEnum = {
876
876
  value: 'value',
877
877
  source: 'source',
878
878
  metaData: 'metaData',
879
+ createdAt: 'createdAt',
880
+ updatedAt: 'updatedAt',
879
881
  socialProfileId: 'socialProfileId'
880
882
  };
881
883