@creator.co/creatorco-prisma-client 1.0.66 → 1.0.68
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 +15 -4
- package/index-browser.js +11 -0
- package/index.d.ts +2053 -312
- package/index.js +15 -4
- package/package.json +1 -1
- package/schema.prisma +44 -24
- package/wasm.js +11 -0
package/index-browser.js
CHANGED
|
@@ -622,6 +622,16 @@ exports.Prisma.SocialPostScalarFieldEnum = {
|
|
|
622
622
|
campaignId: 'campaignId'
|
|
623
623
|
};
|
|
624
624
|
|
|
625
|
+
exports.Prisma.PublicSocialPostScalarFieldEnum = {
|
|
626
|
+
id: 'id',
|
|
627
|
+
socialPostId: 'socialPostId',
|
|
628
|
+
views: 'views',
|
|
629
|
+
likes: 'likes',
|
|
630
|
+
comments: 'comments',
|
|
631
|
+
saves: 'saves',
|
|
632
|
+
shares: 'shares'
|
|
633
|
+
};
|
|
634
|
+
|
|
625
635
|
exports.Prisma.CampaignToSocialPostScalarFieldEnum = {
|
|
626
636
|
campaignId: 'campaignId',
|
|
627
637
|
socialPostId: 'socialPostId',
|
|
@@ -1590,6 +1600,7 @@ exports.Prisma.ModelName = {
|
|
|
1590
1600
|
TrolleyPayment: 'TrolleyPayment',
|
|
1591
1601
|
OptInVariable: 'OptInVariable',
|
|
1592
1602
|
SocialPost: 'SocialPost',
|
|
1603
|
+
PublicSocialPost: 'PublicSocialPost',
|
|
1593
1604
|
CampaignToSocialPost: 'CampaignToSocialPost',
|
|
1594
1605
|
ArchivedSocialPost: 'ArchivedSocialPost',
|
|
1595
1606
|
Image: 'Image',
|