@creator.co/creatorco-prisma-client 1.0.82 → 1.0.84
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 +36 -6
- package/index-browser.js +31 -1
- package/index.d.ts +1724 -119
- package/index.js +36 -6
- package/package.json +1 -1
- package/schema.prisma +40 -13
- package/wasm.js +31 -1
package/index-browser.js
CHANGED
|
@@ -863,6 +863,7 @@ exports.Prisma.SocialProfileScalarFieldEnum = {
|
|
|
863
863
|
avgViews: 'avgViews',
|
|
864
864
|
verified: 'verified',
|
|
865
865
|
visibility: 'visibility',
|
|
866
|
+
connectionStatus: 'connectionStatus',
|
|
866
867
|
metaData: 'metaData',
|
|
867
868
|
audienceData: 'audienceData',
|
|
868
869
|
phylloData: 'phylloData',
|
|
@@ -1197,6 +1198,23 @@ exports.Prisma.LatestCreatorPaymentTransactionScalarFieldEnum = {
|
|
|
1197
1198
|
creatorId: 'creatorId'
|
|
1198
1199
|
};
|
|
1199
1200
|
|
|
1201
|
+
exports.Prisma.SocialPostAnalyticsScalarFieldEnum = {
|
|
1202
|
+
id: 'id',
|
|
1203
|
+
campaignId: 'campaignId',
|
|
1204
|
+
platform: 'platform',
|
|
1205
|
+
reach: 'reach',
|
|
1206
|
+
likes: 'likes',
|
|
1207
|
+
comments: 'comments',
|
|
1208
|
+
impressions: 'impressions',
|
|
1209
|
+
views: 'views',
|
|
1210
|
+
replays: 'replays',
|
|
1211
|
+
shares: 'shares',
|
|
1212
|
+
saves: 'saves',
|
|
1213
|
+
engagement_rate: 'engagement_rate',
|
|
1214
|
+
posted: 'posted',
|
|
1215
|
+
userId: 'userId'
|
|
1216
|
+
};
|
|
1217
|
+
|
|
1200
1218
|
exports.Prisma.SortOrder = {
|
|
1201
1219
|
asc: 'asc',
|
|
1202
1220
|
desc: 'desc'
|
|
@@ -1667,6 +1685,10 @@ exports.Prisma.LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum = {
|
|
|
1667
1685
|
type: 'type',
|
|
1668
1686
|
notes: 'notes'
|
|
1669
1687
|
};
|
|
1688
|
+
|
|
1689
|
+
exports.Prisma.SocialPostAnalyticsOrderByRelevanceFieldEnum = {
|
|
1690
|
+
platform: 'platform'
|
|
1691
|
+
};
|
|
1670
1692
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1671
1693
|
optIn: 'optIn',
|
|
1672
1694
|
tip: 'tip',
|
|
@@ -1688,6 +1710,13 @@ exports.CampaignToSocialPostStatus = exports.$Enums.CampaignToSocialPostStatus =
|
|
|
1688
1710
|
declined: 'declined'
|
|
1689
1711
|
};
|
|
1690
1712
|
|
|
1713
|
+
exports.ConnectionStatus = exports.$Enums.ConnectionStatus = {
|
|
1714
|
+
CONNECTED: 'CONNECTED',
|
|
1715
|
+
ERROR: 'ERROR',
|
|
1716
|
+
NOT_CONNECTED: 'NOT_CONNECTED',
|
|
1717
|
+
SESSION_EXPIRED: 'SESSION_EXPIRED'
|
|
1718
|
+
};
|
|
1719
|
+
|
|
1691
1720
|
exports.SocialProfileContactSource = exports.$Enums.SocialProfileContactSource = {
|
|
1692
1721
|
MANUAL: 'MANUAL',
|
|
1693
1722
|
IMAI: 'IMAI'
|
|
@@ -1797,7 +1826,8 @@ exports.Prisma.ModelName = {
|
|
|
1797
1826
|
EmailProvider: 'EmailProvider',
|
|
1798
1827
|
EmailTracking: 'EmailTracking',
|
|
1799
1828
|
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
1800
|
-
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction'
|
|
1829
|
+
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction',
|
|
1830
|
+
SocialPostAnalytics: 'SocialPostAnalytics'
|
|
1801
1831
|
};
|
|
1802
1832
|
|
|
1803
1833
|
/**
|