@creator.co/creatorco-prisma-client 1.0.69 → 1.0.70
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 +6 -4
- package/index-browser.js +2 -0
- package/index.d.ts +64 -0
- package/index.js +6 -4
- package/package.json +1 -1
- package/schema.prisma +2 -0
- package/wasm.js +2 -0
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -908,6 +908,8 @@ model PublicSocialPost {
|
|
|
908
908
|
id Int @id @default(autoincrement())
|
|
909
909
|
socialPostId Int @unique
|
|
910
910
|
socialPost SocialPost @relation(fields: [socialPostId], references: [id])
|
|
911
|
+
lastFetched DateTime? @updatedAt
|
|
912
|
+
posted DateTime?
|
|
911
913
|
|
|
912
914
|
// METRICS (Includes data for boosted posts)
|
|
913
915
|
views Int?
|
package/wasm.js
CHANGED
|
@@ -625,6 +625,8 @@ exports.Prisma.SocialPostScalarFieldEnum = {
|
|
|
625
625
|
exports.Prisma.PublicSocialPostScalarFieldEnum = {
|
|
626
626
|
id: 'id',
|
|
627
627
|
socialPostId: 'socialPostId',
|
|
628
|
+
lastFetched: 'lastFetched',
|
|
629
|
+
posted: 'posted',
|
|
628
630
|
views: 'views',
|
|
629
631
|
likes: 'likes',
|
|
630
632
|
comments: 'comments',
|