@creator.co/creatorco-prisma-client 1.0.56 → 1.0.57-alpha-4c71c2e
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 +26 -6
- package/index-browser.js +22 -2
- package/index.d.ts +2402 -140
- package/index.js +26 -6
- package/package.json +1 -1
- package/schema.prisma +54 -30
- package/wasm.js +22 -2
package/index-browser.js
CHANGED
|
@@ -751,13 +751,26 @@ exports.Prisma.AffiliateEventScalarFieldEnum = {
|
|
|
751
751
|
id: 'id',
|
|
752
752
|
event: 'event',
|
|
753
753
|
created: 'created',
|
|
754
|
+
updatedAt: 'updatedAt',
|
|
754
755
|
visitorIp: 'visitorIp',
|
|
755
756
|
urlPath: 'urlPath',
|
|
756
757
|
revenue: 'revenue',
|
|
757
758
|
commissionAmount: 'commissionAmount',
|
|
758
759
|
commissionPercent: 'commissionPercent',
|
|
760
|
+
platform: 'platform',
|
|
761
|
+
externalOrderId: 'externalOrderId',
|
|
762
|
+
metaData: 'metaData',
|
|
763
|
+
affiliateClickId: 'affiliateClickId',
|
|
764
|
+
affiliatePayoutBatchId: 'affiliatePayoutBatchId'
|
|
765
|
+
};
|
|
766
|
+
|
|
767
|
+
exports.Prisma.AffiliatePayoutBatchScalarFieldEnum = {
|
|
768
|
+
id: 'id',
|
|
769
|
+
createdAt: 'createdAt',
|
|
770
|
+
updatedAt: 'updatedAt',
|
|
759
771
|
metaData: 'metaData',
|
|
760
|
-
|
|
772
|
+
trolleyBatchId: 'trolleyBatchId',
|
|
773
|
+
userId: 'userId'
|
|
761
774
|
};
|
|
762
775
|
|
|
763
776
|
exports.Prisma.SavedFileScalarFieldEnum = {
|
|
@@ -1321,7 +1334,13 @@ exports.Prisma.AffiliateClickOrderByRelevanceFieldEnum = {
|
|
|
1321
1334
|
exports.Prisma.AffiliateEventOrderByRelevanceFieldEnum = {
|
|
1322
1335
|
event: 'event',
|
|
1323
1336
|
visitorIp: 'visitorIp',
|
|
1324
|
-
urlPath: 'urlPath'
|
|
1337
|
+
urlPath: 'urlPath',
|
|
1338
|
+
platform: 'platform',
|
|
1339
|
+
externalOrderId: 'externalOrderId'
|
|
1340
|
+
};
|
|
1341
|
+
|
|
1342
|
+
exports.Prisma.AffiliatePayoutBatchOrderByRelevanceFieldEnum = {
|
|
1343
|
+
trolleyBatchId: 'trolleyBatchId'
|
|
1325
1344
|
};
|
|
1326
1345
|
|
|
1327
1346
|
exports.Prisma.SavedFileOrderByRelevanceFieldEnum = {
|
|
@@ -1506,6 +1525,7 @@ exports.Prisma.ModelName = {
|
|
|
1506
1525
|
AffiliateLink: 'AffiliateLink',
|
|
1507
1526
|
AffiliateClick: 'AffiliateClick',
|
|
1508
1527
|
AffiliateEvent: 'AffiliateEvent',
|
|
1528
|
+
AffiliatePayoutBatch: 'AffiliatePayoutBatch',
|
|
1509
1529
|
SavedFile: 'SavedFile',
|
|
1510
1530
|
CampaignInvite: 'CampaignInvite',
|
|
1511
1531
|
CreatorList: 'CreatorList',
|