@creator.co/creatorco-prisma-client 1.0.81 → 1.0.82-alpha-bd13b4c
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 +27 -5
- package/index-browser.js +22 -0
- package/index.d.ts +1921 -214
- package/index.js +27 -5
- package/package.json +1 -1
- package/schema.prisma +26 -4
- package/wasm.js +22 -0
package/index-browser.js
CHANGED
|
@@ -870,6 +870,17 @@ exports.Prisma.SocialProfileScalarFieldEnum = {
|
|
|
870
870
|
updated: 'updated'
|
|
871
871
|
};
|
|
872
872
|
|
|
873
|
+
exports.Prisma.SocialProfileContactScalarFieldEnum = {
|
|
874
|
+
id: 'id',
|
|
875
|
+
type: 'type',
|
|
876
|
+
value: 'value',
|
|
877
|
+
source: 'source',
|
|
878
|
+
metaData: 'metaData',
|
|
879
|
+
createdAt: 'createdAt',
|
|
880
|
+
updatedAt: 'updatedAt',
|
|
881
|
+
socialProfileId: 'socialProfileId'
|
|
882
|
+
};
|
|
883
|
+
|
|
873
884
|
exports.Prisma.MessageTemplateScalarFieldEnum = {
|
|
874
885
|
id: 'id',
|
|
875
886
|
label: 'label',
|
|
@@ -1523,6 +1534,11 @@ exports.Prisma.SocialProfileOrderByRelevanceFieldEnum = {
|
|
|
1523
1534
|
visibility: 'visibility'
|
|
1524
1535
|
};
|
|
1525
1536
|
|
|
1537
|
+
exports.Prisma.SocialProfileContactOrderByRelevanceFieldEnum = {
|
|
1538
|
+
type: 'type',
|
|
1539
|
+
value: 'value'
|
|
1540
|
+
};
|
|
1541
|
+
|
|
1526
1542
|
exports.Prisma.MessageTemplateOrderByRelevanceFieldEnum = {
|
|
1527
1543
|
label: 'label',
|
|
1528
1544
|
template: 'template'
|
|
@@ -1673,6 +1689,11 @@ exports.CampaignToSocialPostStatus = exports.$Enums.CampaignToSocialPostStatus =
|
|
|
1673
1689
|
declined: 'declined'
|
|
1674
1690
|
};
|
|
1675
1691
|
|
|
1692
|
+
exports.SocialProfileContactSource = exports.$Enums.SocialProfileContactSource = {
|
|
1693
|
+
MANUAL: 'MANUAL',
|
|
1694
|
+
IMAI: 'IMAI'
|
|
1695
|
+
};
|
|
1696
|
+
|
|
1676
1697
|
exports.ShopifyStoreSyncStatus = exports.$Enums.ShopifyStoreSyncStatus = {
|
|
1677
1698
|
syncing: 'syncing',
|
|
1678
1699
|
synced: 'synced',
|
|
@@ -1748,6 +1769,7 @@ exports.Prisma.ModelName = {
|
|
|
1748
1769
|
CreatorList: 'CreatorList',
|
|
1749
1770
|
CreatorListItem: 'CreatorListItem',
|
|
1750
1771
|
SocialProfile: 'SocialProfile',
|
|
1772
|
+
SocialProfileContact: 'SocialProfileContact',
|
|
1751
1773
|
MessageTemplate: 'MessageTemplate',
|
|
1752
1774
|
EmailTemplate: 'EmailTemplate',
|
|
1753
1775
|
SocialListeningList: 'SocialListeningList',
|