@creator.co/creatorco-prisma-client 1.0.84 → 1.0.85
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 -6
- package/index-browser.js +2 -1
- package/index.d.ts +54 -1
- package/index.js +7 -6
- package/package.json +1 -1
- package/schema.prisma +3 -0
- package/wasm.js +2 -1
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -911,6 +911,9 @@ model SocialPost {
|
|
|
911
911
|
campaigns CampaignToSocialPost[]
|
|
912
912
|
publicPost PublicSocialPost?
|
|
913
913
|
|
|
914
|
+
// MEDIA CLEANUP TRACKING
|
|
915
|
+
mediaCleanupChecked Boolean? @default(false) @map("media_cleanup_checked")
|
|
916
|
+
|
|
914
917
|
@@unique([platform, externalId])
|
|
915
918
|
@@index(campaignId)
|
|
916
919
|
@@index(userId)
|
package/wasm.js
CHANGED
|
@@ -626,7 +626,8 @@ exports.Prisma.SocialPostScalarFieldEnum = {
|
|
|
626
626
|
saves: 'saves',
|
|
627
627
|
shares: 'shares',
|
|
628
628
|
userId: 'userId',
|
|
629
|
-
campaignId: 'campaignId'
|
|
629
|
+
campaignId: 'campaignId',
|
|
630
|
+
mediaCleanupChecked: 'mediaCleanupChecked'
|
|
630
631
|
};
|
|
631
632
|
|
|
632
633
|
exports.Prisma.PublicSocialPostScalarFieldEnum = {
|