@creator.co/creatorco-prisma-client 1.0.53-alpha-ec58990 → 1.0.54
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 -5
- package/index-browser.js +2 -1
- package/index.d.ts +36 -1
- package/index.js +6 -5
- package/package.json +1 -1
- package/schema.prisma +3 -2
- package/wasm.js +2 -1
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -899,8 +899,9 @@ model CampaignToSocialPost {
|
|
|
899
899
|
campaignId Int @map("campaign_id")
|
|
900
900
|
socialPostId Int @map("social_post_id")
|
|
901
901
|
|
|
902
|
-
status
|
|
903
|
-
created
|
|
902
|
+
status CampaignToSocialPostStatus @default(pending)
|
|
903
|
+
created DateTime @default(now())
|
|
904
|
+
metaData Json @default("{}")
|
|
904
905
|
|
|
905
906
|
campaign Campaign @relation(fields: [campaignId], references: [id], onDelete: Cascade)
|
|
906
907
|
socialPost SocialPost @relation(fields: [socialPostId], references: [id], onDelete: Cascade)
|
package/wasm.js
CHANGED
|
@@ -625,7 +625,8 @@ exports.Prisma.CampaignToSocialPostScalarFieldEnum = {
|
|
|
625
625
|
campaignId: 'campaignId',
|
|
626
626
|
socialPostId: 'socialPostId',
|
|
627
627
|
status: 'status',
|
|
628
|
-
created: 'created'
|
|
628
|
+
created: 'created',
|
|
629
|
+
metaData: 'metaData'
|
|
629
630
|
};
|
|
630
631
|
|
|
631
632
|
exports.Prisma.ArchivedSocialPostScalarFieldEnum = {
|