@creator.co/creatorco-prisma-client 1.0.88 → 1.0.89
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 +61 -5
- package/index-browser.js +56 -0
- package/index.d.ts +6453 -492
- package/index.js +61 -5
- package/package.json +1 -1
- package/schema.prisma +62 -0
- package/wasm.js +56 -0
package/index-browser.js
CHANGED
|
@@ -760,6 +760,40 @@ exports.Prisma.BrandAffiliateLinkScalarFieldEnum = {
|
|
|
760
760
|
brandId: 'brandId'
|
|
761
761
|
};
|
|
762
762
|
|
|
763
|
+
exports.Prisma.AffiliateConfigurationScalarFieldEnum = {
|
|
764
|
+
id: 'id',
|
|
765
|
+
integrationId: 'integrationId',
|
|
766
|
+
platform: 'platform',
|
|
767
|
+
extraData: 'extraData',
|
|
768
|
+
editorUserId: 'editorUserId',
|
|
769
|
+
brandId: 'brandId',
|
|
770
|
+
createdAt: 'createdAt',
|
|
771
|
+
updatedAt: 'updatedAt'
|
|
772
|
+
};
|
|
773
|
+
|
|
774
|
+
exports.Prisma.AffiliatePricingGroupScalarFieldEnum = {
|
|
775
|
+
id: 'id',
|
|
776
|
+
rules: 'rules',
|
|
777
|
+
commissionType: 'commissionType',
|
|
778
|
+
value: 'value',
|
|
779
|
+
affiliateConfigurationId: 'affiliateConfigurationId',
|
|
780
|
+
editorUserId: 'editorUserId',
|
|
781
|
+
createdAt: 'createdAt',
|
|
782
|
+
updatedAt: 'updatedAt'
|
|
783
|
+
};
|
|
784
|
+
|
|
785
|
+
exports.Prisma.AffiliateResolverScalarFieldEnum = {
|
|
786
|
+
id: 'id',
|
|
787
|
+
type: 'type',
|
|
788
|
+
value: 'value',
|
|
789
|
+
extraData: 'extraData',
|
|
790
|
+
editorUserId: 'editorUserId',
|
|
791
|
+
createdAt: 'createdAt',
|
|
792
|
+
updatedAt: 'updatedAt',
|
|
793
|
+
campaignId: 'campaignId',
|
|
794
|
+
optInId: 'optInId'
|
|
795
|
+
};
|
|
796
|
+
|
|
763
797
|
exports.Prisma.AffiliateLinkScalarFieldEnum = {
|
|
764
798
|
id: 'id',
|
|
765
799
|
created: 'created',
|
|
@@ -1507,6 +1541,15 @@ exports.Prisma.BrandAffiliateLinkOrderByRelevanceFieldEnum = {
|
|
|
1507
1541
|
urlPath: 'urlPath'
|
|
1508
1542
|
};
|
|
1509
1543
|
|
|
1544
|
+
exports.Prisma.AffiliateConfigurationOrderByRelevanceFieldEnum = {
|
|
1545
|
+
integrationId: 'integrationId',
|
|
1546
|
+
platform: 'platform'
|
|
1547
|
+
};
|
|
1548
|
+
|
|
1549
|
+
exports.Prisma.AffiliateResolverOrderByRelevanceFieldEnum = {
|
|
1550
|
+
value: 'value'
|
|
1551
|
+
};
|
|
1552
|
+
|
|
1510
1553
|
exports.Prisma.AffiliateClickOrderByRelevanceFieldEnum = {
|
|
1511
1554
|
visitorIp: 'visitorIp',
|
|
1512
1555
|
IPv6: 'IPv6'
|
|
@@ -1712,6 +1755,16 @@ exports.CampaignToSocialPostStatus = exports.$Enums.CampaignToSocialPostStatus =
|
|
|
1712
1755
|
declined: 'declined'
|
|
1713
1756
|
};
|
|
1714
1757
|
|
|
1758
|
+
exports.AffiliateCommissionType = exports.$Enums.AffiliateCommissionType = {
|
|
1759
|
+
commission: 'commission',
|
|
1760
|
+
sale: 'sale'
|
|
1761
|
+
};
|
|
1762
|
+
|
|
1763
|
+
exports.AffiliateResolverType = exports.$Enums.AffiliateResolverType = {
|
|
1764
|
+
coupon: 'coupon',
|
|
1765
|
+
link: 'link'
|
|
1766
|
+
};
|
|
1767
|
+
|
|
1715
1768
|
exports.ConnectionStatus = exports.$Enums.ConnectionStatus = {
|
|
1716
1769
|
CONNECTED: 'CONNECTED',
|
|
1717
1770
|
ERROR: 'ERROR',
|
|
@@ -1790,6 +1843,9 @@ exports.Prisma.ModelName = {
|
|
|
1790
1843
|
PaymentTransaction: 'PaymentTransaction',
|
|
1791
1844
|
ExternalAffiliateClick: 'ExternalAffiliateClick',
|
|
1792
1845
|
BrandAffiliateLink: 'BrandAffiliateLink',
|
|
1846
|
+
AffiliateConfiguration: 'AffiliateConfiguration',
|
|
1847
|
+
AffiliatePricingGroup: 'AffiliatePricingGroup',
|
|
1848
|
+
AffiliateResolver: 'AffiliateResolver',
|
|
1793
1849
|
AffiliateLink: 'AffiliateLink',
|
|
1794
1850
|
AffiliateClick: 'AffiliateClick',
|
|
1795
1851
|
AffiliateEvent: 'AffiliateEvent',
|