@creator.co/creatorco-prisma-client 1.0.80 → 1.0.82-alpha-87c8144
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 +48 -8
- package/index-browser.js +41 -2
- package/index.d.ts +3504 -239
- package/index.js +48 -8
- package/package.json +1 -1
- package/schema.prisma +53 -14
- package/wasm.js +41 -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
|
};
|
|
@@ -869,6 +870,15 @@ exports.Prisma.SocialProfileScalarFieldEnum = {
|
|
|
869
870
|
updated: 'updated'
|
|
870
871
|
};
|
|
871
872
|
|
|
873
|
+
exports.Prisma.SocialProfileContactScalarFieldEnum = {
|
|
874
|
+
id: 'id',
|
|
875
|
+
type: 'type',
|
|
876
|
+
value: 'value',
|
|
877
|
+
source: 'source',
|
|
878
|
+
metaData: 'metaData',
|
|
879
|
+
socialProfileId: 'socialProfileId'
|
|
880
|
+
};
|
|
881
|
+
|
|
872
882
|
exports.Prisma.MessageTemplateScalarFieldEnum = {
|
|
873
883
|
id: 'id',
|
|
874
884
|
label: 'label',
|
|
@@ -1175,6 +1185,17 @@ exports.Prisma.SequenceOutboundReplyEmailScalarFieldEnum = {
|
|
|
1175
1185
|
updatedAt: 'updatedAt'
|
|
1176
1186
|
};
|
|
1177
1187
|
|
|
1188
|
+
exports.Prisma.LatestCreatorPaymentTransactionScalarFieldEnum = {
|
|
1189
|
+
id: 'id',
|
|
1190
|
+
balance: 'balance',
|
|
1191
|
+
type: 'type',
|
|
1192
|
+
date: 'date',
|
|
1193
|
+
notes: 'notes',
|
|
1194
|
+
metaData: 'metaData',
|
|
1195
|
+
accountId: 'accountId',
|
|
1196
|
+
creatorId: 'creatorId'
|
|
1197
|
+
};
|
|
1198
|
+
|
|
1178
1199
|
exports.Prisma.SortOrder = {
|
|
1179
1200
|
asc: 'asc',
|
|
1180
1201
|
desc: 'desc'
|
|
@@ -1511,6 +1532,11 @@ exports.Prisma.SocialProfileOrderByRelevanceFieldEnum = {
|
|
|
1511
1532
|
visibility: 'visibility'
|
|
1512
1533
|
};
|
|
1513
1534
|
|
|
1535
|
+
exports.Prisma.SocialProfileContactOrderByRelevanceFieldEnum = {
|
|
1536
|
+
type: 'type',
|
|
1537
|
+
value: 'value'
|
|
1538
|
+
};
|
|
1539
|
+
|
|
1514
1540
|
exports.Prisma.MessageTemplateOrderByRelevanceFieldEnum = {
|
|
1515
1541
|
label: 'label',
|
|
1516
1542
|
template: 'template'
|
|
@@ -1635,10 +1661,16 @@ exports.Prisma.EmailTrackingOrderByRelevanceFieldEnum = {
|
|
|
1635
1661
|
exports.Prisma.SequenceOutboundReplyEmailOrderByRelevanceFieldEnum = {
|
|
1636
1662
|
typeId: 'typeId'
|
|
1637
1663
|
};
|
|
1664
|
+
|
|
1665
|
+
exports.Prisma.LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum = {
|
|
1666
|
+
type: 'type',
|
|
1667
|
+
notes: 'notes'
|
|
1668
|
+
};
|
|
1638
1669
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1639
1670
|
optIn: 'optIn',
|
|
1640
1671
|
tip: 'tip',
|
|
1641
|
-
affiliate: 'affiliate'
|
|
1672
|
+
affiliate: 'affiliate',
|
|
1673
|
+
withdrawal: 'withdrawal'
|
|
1642
1674
|
};
|
|
1643
1675
|
|
|
1644
1676
|
exports.trolleyPaymentStatus = exports.$Enums.trolleyPaymentStatus = {
|
|
@@ -1655,6 +1687,11 @@ exports.CampaignToSocialPostStatus = exports.$Enums.CampaignToSocialPostStatus =
|
|
|
1655
1687
|
declined: 'declined'
|
|
1656
1688
|
};
|
|
1657
1689
|
|
|
1690
|
+
exports.SocialProfileContactSource = exports.$Enums.SocialProfileContactSource = {
|
|
1691
|
+
MANUAL: 'MANUAL',
|
|
1692
|
+
IMAI: 'IMAI'
|
|
1693
|
+
};
|
|
1694
|
+
|
|
1658
1695
|
exports.ShopifyStoreSyncStatus = exports.$Enums.ShopifyStoreSyncStatus = {
|
|
1659
1696
|
syncing: 'syncing',
|
|
1660
1697
|
synced: 'synced',
|
|
@@ -1730,6 +1767,7 @@ exports.Prisma.ModelName = {
|
|
|
1730
1767
|
CreatorList: 'CreatorList',
|
|
1731
1768
|
CreatorListItem: 'CreatorListItem',
|
|
1732
1769
|
SocialProfile: 'SocialProfile',
|
|
1770
|
+
SocialProfileContact: 'SocialProfileContact',
|
|
1733
1771
|
MessageTemplate: 'MessageTemplate',
|
|
1734
1772
|
EmailTemplate: 'EmailTemplate',
|
|
1735
1773
|
SocialListeningList: 'SocialListeningList',
|
|
@@ -1757,7 +1795,8 @@ exports.Prisma.ModelName = {
|
|
|
1757
1795
|
CreditRefundBatch: 'CreditRefundBatch',
|
|
1758
1796
|
EmailProvider: 'EmailProvider',
|
|
1759
1797
|
EmailTracking: 'EmailTracking',
|
|
1760
|
-
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail'
|
|
1798
|
+
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
1799
|
+
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction'
|
|
1761
1800
|
};
|
|
1762
1801
|
|
|
1763
1802
|
/**
|