@creator.co/creatorco-prisma-client 1.0.80 → 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 +28 -8
- package/index-browser.js +21 -2
- package/index.d.ts +1639 -11
- package/index.js +28 -8
- package/package.json +1 -1
- package/schema.prisma +29 -10
- package/wasm.js +21 -2
package/index-browser.js
CHANGED
|
@@ -581,6 +581,7 @@ exports.Prisma.TrolleyPaymentScalarFieldEnum = {
|
|
|
581
581
|
type: 'type',
|
|
582
582
|
status: 'status',
|
|
583
583
|
optInId: 'optInId',
|
|
584
|
+
paymentTransactionId: 'paymentTransactionId',
|
|
584
585
|
paymentAmount: 'paymentAmount',
|
|
585
586
|
metaData: 'metaData'
|
|
586
587
|
};
|
|
@@ -1175,6 +1176,17 @@ exports.Prisma.SequenceOutboundReplyEmailScalarFieldEnum = {
|
|
|
1175
1176
|
updatedAt: 'updatedAt'
|
|
1176
1177
|
};
|
|
1177
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
|
+
|
|
1178
1190
|
exports.Prisma.SortOrder = {
|
|
1179
1191
|
asc: 'asc',
|
|
1180
1192
|
desc: 'desc'
|
|
@@ -1635,10 +1647,16 @@ exports.Prisma.EmailTrackingOrderByRelevanceFieldEnum = {
|
|
|
1635
1647
|
exports.Prisma.SequenceOutboundReplyEmailOrderByRelevanceFieldEnum = {
|
|
1636
1648
|
typeId: 'typeId'
|
|
1637
1649
|
};
|
|
1650
|
+
|
|
1651
|
+
exports.Prisma.LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum = {
|
|
1652
|
+
type: 'type',
|
|
1653
|
+
notes: 'notes'
|
|
1654
|
+
};
|
|
1638
1655
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1639
1656
|
optIn: 'optIn',
|
|
1640
1657
|
tip: 'tip',
|
|
1641
|
-
affiliate: 'affiliate'
|
|
1658
|
+
affiliate: 'affiliate',
|
|
1659
|
+
withdrawal: 'withdrawal'
|
|
1642
1660
|
};
|
|
1643
1661
|
|
|
1644
1662
|
exports.trolleyPaymentStatus = exports.$Enums.trolleyPaymentStatus = {
|
|
@@ -1757,7 +1775,8 @@ exports.Prisma.ModelName = {
|
|
|
1757
1775
|
CreditRefundBatch: 'CreditRefundBatch',
|
|
1758
1776
|
EmailProvider: 'EmailProvider',
|
|
1759
1777
|
EmailTracking: 'EmailTracking',
|
|
1760
|
-
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail'
|
|
1778
|
+
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
1779
|
+
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction'
|
|
1761
1780
|
};
|
|
1762
1781
|
|
|
1763
1782
|
/**
|