@creator.co/creatorco-prisma-client 1.0.83 → 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 +15 -6
- package/index-browser.js +10 -1
- package/index.d.ts +172 -1
- package/index.js +15 -6
- package/package.json +1 -1
- package/schema.prisma +24 -13
- package/wasm.js +10 -1
package/index-browser.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 = {
|
|
@@ -863,6 +864,7 @@ exports.Prisma.SocialProfileScalarFieldEnum = {
|
|
|
863
864
|
avgViews: 'avgViews',
|
|
864
865
|
verified: 'verified',
|
|
865
866
|
visibility: 'visibility',
|
|
867
|
+
connectionStatus: 'connectionStatus',
|
|
866
868
|
metaData: 'metaData',
|
|
867
869
|
audienceData: 'audienceData',
|
|
868
870
|
phylloData: 'phylloData',
|
|
@@ -1709,6 +1711,13 @@ exports.CampaignToSocialPostStatus = exports.$Enums.CampaignToSocialPostStatus =
|
|
|
1709
1711
|
declined: 'declined'
|
|
1710
1712
|
};
|
|
1711
1713
|
|
|
1714
|
+
exports.ConnectionStatus = exports.$Enums.ConnectionStatus = {
|
|
1715
|
+
CONNECTED: 'CONNECTED',
|
|
1716
|
+
ERROR: 'ERROR',
|
|
1717
|
+
NOT_CONNECTED: 'NOT_CONNECTED',
|
|
1718
|
+
SESSION_EXPIRED: 'SESSION_EXPIRED'
|
|
1719
|
+
};
|
|
1720
|
+
|
|
1712
1721
|
exports.SocialProfileContactSource = exports.$Enums.SocialProfileContactSource = {
|
|
1713
1722
|
MANUAL: 'MANUAL',
|
|
1714
1723
|
IMAI: 'IMAI'
|