@creator.co/creatorco-prisma-client 1.0.56 → 1.0.57-alpha-fe4a8b1
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 +24 -6
- package/index-browser.js +20 -2
- package/index.d.ts +2322 -140
- package/index.js +24 -6
- package/package.json +1 -1
- package/schema.prisma +49 -27
- package/wasm.js +20 -2
package/index-browser.js
CHANGED
|
@@ -756,8 +756,19 @@ exports.Prisma.AffiliateEventScalarFieldEnum = {
|
|
|
756
756
|
revenue: 'revenue',
|
|
757
757
|
commissionAmount: 'commissionAmount',
|
|
758
758
|
commissionPercent: 'commissionPercent',
|
|
759
|
+
platform: 'platform',
|
|
760
|
+
externalOrderId: 'externalOrderId',
|
|
761
|
+
metaData: 'metaData',
|
|
762
|
+
affiliateClickId: 'affiliateClickId',
|
|
763
|
+
affiliatePayoutBatchId: 'affiliatePayoutBatchId'
|
|
764
|
+
};
|
|
765
|
+
|
|
766
|
+
exports.Prisma.AffiliatePayoutBatchScalarFieldEnum = {
|
|
767
|
+
id: 'id',
|
|
768
|
+
created: 'created',
|
|
759
769
|
metaData: 'metaData',
|
|
760
|
-
|
|
770
|
+
trolleyBatchId: 'trolleyBatchId',
|
|
771
|
+
userId: 'userId'
|
|
761
772
|
};
|
|
762
773
|
|
|
763
774
|
exports.Prisma.SavedFileScalarFieldEnum = {
|
|
@@ -1321,7 +1332,13 @@ exports.Prisma.AffiliateClickOrderByRelevanceFieldEnum = {
|
|
|
1321
1332
|
exports.Prisma.AffiliateEventOrderByRelevanceFieldEnum = {
|
|
1322
1333
|
event: 'event',
|
|
1323
1334
|
visitorIp: 'visitorIp',
|
|
1324
|
-
urlPath: 'urlPath'
|
|
1335
|
+
urlPath: 'urlPath',
|
|
1336
|
+
platform: 'platform',
|
|
1337
|
+
externalOrderId: 'externalOrderId'
|
|
1338
|
+
};
|
|
1339
|
+
|
|
1340
|
+
exports.Prisma.AffiliatePayoutBatchOrderByRelevanceFieldEnum = {
|
|
1341
|
+
trolleyBatchId: 'trolleyBatchId'
|
|
1325
1342
|
};
|
|
1326
1343
|
|
|
1327
1344
|
exports.Prisma.SavedFileOrderByRelevanceFieldEnum = {
|
|
@@ -1506,6 +1523,7 @@ exports.Prisma.ModelName = {
|
|
|
1506
1523
|
AffiliateLink: 'AffiliateLink',
|
|
1507
1524
|
AffiliateClick: 'AffiliateClick',
|
|
1508
1525
|
AffiliateEvent: 'AffiliateEvent',
|
|
1526
|
+
AffiliatePayoutBatch: 'AffiliatePayoutBatch',
|
|
1509
1527
|
SavedFile: 'SavedFile',
|
|
1510
1528
|
CampaignInvite: 'CampaignInvite',
|
|
1511
1529
|
CreatorList: 'CreatorList',
|