@creator.co/creatorco-prisma-client 1.0.82 → 1.0.83
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 +28 -6
- package/index-browser.js +23 -1
- package/index.d.ts +1606 -119
- package/index.js +28 -6
- package/package.json +1 -1
- package/schema.prisma +19 -0
- package/wasm.js +23 -1
package/index-browser.js
CHANGED
|
@@ -1197,6 +1197,23 @@ exports.Prisma.LatestCreatorPaymentTransactionScalarFieldEnum = {
|
|
|
1197
1197
|
creatorId: 'creatorId'
|
|
1198
1198
|
};
|
|
1199
1199
|
|
|
1200
|
+
exports.Prisma.SocialPostAnalyticsScalarFieldEnum = {
|
|
1201
|
+
id: 'id',
|
|
1202
|
+
campaignId: 'campaignId',
|
|
1203
|
+
platform: 'platform',
|
|
1204
|
+
reach: 'reach',
|
|
1205
|
+
likes: 'likes',
|
|
1206
|
+
comments: 'comments',
|
|
1207
|
+
impressions: 'impressions',
|
|
1208
|
+
views: 'views',
|
|
1209
|
+
replays: 'replays',
|
|
1210
|
+
shares: 'shares',
|
|
1211
|
+
saves: 'saves',
|
|
1212
|
+
engagement_rate: 'engagement_rate',
|
|
1213
|
+
posted: 'posted',
|
|
1214
|
+
userId: 'userId'
|
|
1215
|
+
};
|
|
1216
|
+
|
|
1200
1217
|
exports.Prisma.SortOrder = {
|
|
1201
1218
|
asc: 'asc',
|
|
1202
1219
|
desc: 'desc'
|
|
@@ -1667,6 +1684,10 @@ exports.Prisma.LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum = {
|
|
|
1667
1684
|
type: 'type',
|
|
1668
1685
|
notes: 'notes'
|
|
1669
1686
|
};
|
|
1687
|
+
|
|
1688
|
+
exports.Prisma.SocialPostAnalyticsOrderByRelevanceFieldEnum = {
|
|
1689
|
+
platform: 'platform'
|
|
1690
|
+
};
|
|
1670
1691
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1671
1692
|
optIn: 'optIn',
|
|
1672
1693
|
tip: 'tip',
|
|
@@ -1797,7 +1818,8 @@ exports.Prisma.ModelName = {
|
|
|
1797
1818
|
EmailProvider: 'EmailProvider',
|
|
1798
1819
|
EmailTracking: 'EmailTracking',
|
|
1799
1820
|
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
1800
|
-
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction'
|
|
1821
|
+
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction',
|
|
1822
|
+
SocialPostAnalytics: 'SocialPostAnalytics'
|
|
1801
1823
|
};
|
|
1802
1824
|
|
|
1803
1825
|
/**
|