@creator.co/creatorco-prisma-client 1.0.79 → 1.0.81-alpha-e54934e
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 +30 -8
- package/index-browser.js +23 -2
- package/index.d.ts +2110 -320
- package/index.js +30 -8
- package/package.json +1 -1
- package/schema.prisma +32 -12
- package/wasm.js +23 -2
package/index-browser.js
CHANGED
|
@@ -321,6 +321,7 @@ exports.Prisma.BrandScalarFieldEnum = {
|
|
|
321
321
|
affiliateBaseUrl: 'affiliateBaseUrl',
|
|
322
322
|
affiliateCommission: 'affiliateCommission',
|
|
323
323
|
extraData: 'extraData',
|
|
324
|
+
idmId: 'idmId',
|
|
324
325
|
specialistId: 'specialistId',
|
|
325
326
|
parentBrandId: 'parentBrandId',
|
|
326
327
|
searchName: 'searchName'
|
|
@@ -580,6 +581,7 @@ exports.Prisma.TrolleyPaymentScalarFieldEnum = {
|
|
|
580
581
|
type: 'type',
|
|
581
582
|
status: 'status',
|
|
582
583
|
optInId: 'optInId',
|
|
584
|
+
paymentTransactionId: 'paymentTransactionId',
|
|
583
585
|
paymentAmount: 'paymentAmount',
|
|
584
586
|
metaData: 'metaData'
|
|
585
587
|
};
|
|
@@ -1174,6 +1176,17 @@ exports.Prisma.SequenceOutboundReplyEmailScalarFieldEnum = {
|
|
|
1174
1176
|
updatedAt: 'updatedAt'
|
|
1175
1177
|
};
|
|
1176
1178
|
|
|
1179
|
+
exports.Prisma.LatestCreatorPaymentTransactionScalarFieldEnum = {
|
|
1180
|
+
id: 'id',
|
|
1181
|
+
balance: 'balance',
|
|
1182
|
+
type: 'type',
|
|
1183
|
+
date: 'date',
|
|
1184
|
+
notes: 'notes',
|
|
1185
|
+
metaData: 'metaData',
|
|
1186
|
+
accountId: 'accountId',
|
|
1187
|
+
creatorId: 'creatorId'
|
|
1188
|
+
};
|
|
1189
|
+
|
|
1177
1190
|
exports.Prisma.SortOrder = {
|
|
1178
1191
|
asc: 'asc',
|
|
1179
1192
|
desc: 'desc'
|
|
@@ -1300,6 +1313,7 @@ exports.Prisma.BrandOrderByRelevanceFieldEnum = {
|
|
|
1300
1313
|
website: 'website',
|
|
1301
1314
|
logoUrl: 'logoUrl',
|
|
1302
1315
|
affiliateBaseUrl: 'affiliateBaseUrl',
|
|
1316
|
+
idmId: 'idmId',
|
|
1303
1317
|
searchName: 'searchName'
|
|
1304
1318
|
};
|
|
1305
1319
|
|
|
@@ -1633,10 +1647,16 @@ exports.Prisma.EmailTrackingOrderByRelevanceFieldEnum = {
|
|
|
1633
1647
|
exports.Prisma.SequenceOutboundReplyEmailOrderByRelevanceFieldEnum = {
|
|
1634
1648
|
typeId: 'typeId'
|
|
1635
1649
|
};
|
|
1650
|
+
|
|
1651
|
+
exports.Prisma.LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum = {
|
|
1652
|
+
type: 'type',
|
|
1653
|
+
notes: 'notes'
|
|
1654
|
+
};
|
|
1636
1655
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1637
1656
|
optIn: 'optIn',
|
|
1638
1657
|
tip: 'tip',
|
|
1639
|
-
affiliate: 'affiliate'
|
|
1658
|
+
affiliate: 'affiliate',
|
|
1659
|
+
withdrawal: 'withdrawal'
|
|
1640
1660
|
};
|
|
1641
1661
|
|
|
1642
1662
|
exports.trolleyPaymentStatus = exports.$Enums.trolleyPaymentStatus = {
|
|
@@ -1755,7 +1775,8 @@ exports.Prisma.ModelName = {
|
|
|
1755
1775
|
CreditRefundBatch: 'CreditRefundBatch',
|
|
1756
1776
|
EmailProvider: 'EmailProvider',
|
|
1757
1777
|
EmailTracking: 'EmailTracking',
|
|
1758
|
-
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail'
|
|
1778
|
+
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
1779
|
+
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction'
|
|
1759
1780
|
};
|
|
1760
1781
|
|
|
1761
1782
|
/**
|