@creator.co/creatorco-prisma-client 1.0.89 → 1.0.91
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 +26 -6
- package/index-browser.js +21 -1
- package/index.d.ts +1507 -178
- package/index.js +26 -6
- package/package.json +1 -1
- package/schema.prisma +23 -6
- package/wasm.js +21 -1
package/index-browser.js
CHANGED
|
@@ -910,6 +910,7 @@ exports.Prisma.SocialProfileContactScalarFieldEnum = {
|
|
|
910
910
|
type: 'type',
|
|
911
911
|
value: 'value',
|
|
912
912
|
source: 'source',
|
|
913
|
+
unsubscribe: 'unsubscribe',
|
|
913
914
|
metaData: 'metaData',
|
|
914
915
|
createdAt: 'createdAt',
|
|
915
916
|
updatedAt: 'updatedAt',
|
|
@@ -1223,6 +1224,18 @@ exports.Prisma.SequenceOutboundReplyEmailScalarFieldEnum = {
|
|
|
1223
1224
|
updatedAt: 'updatedAt'
|
|
1224
1225
|
};
|
|
1225
1226
|
|
|
1227
|
+
exports.Prisma.LLMPromptScalarFieldEnum = {
|
|
1228
|
+
id: 'id',
|
|
1229
|
+
collectionName: 'collectionName',
|
|
1230
|
+
version: 'version',
|
|
1231
|
+
steps: 'steps',
|
|
1232
|
+
published: 'published',
|
|
1233
|
+
extraData: 'extraData',
|
|
1234
|
+
editorUserId: 'editorUserId',
|
|
1235
|
+
createdAt: 'createdAt',
|
|
1236
|
+
updatedAt: 'updatedAt'
|
|
1237
|
+
};
|
|
1238
|
+
|
|
1226
1239
|
exports.Prisma.LatestCreatorPaymentTransactionScalarFieldEnum = {
|
|
1227
1240
|
id: 'id',
|
|
1228
1241
|
balance: 'balance',
|
|
@@ -1598,7 +1611,8 @@ exports.Prisma.SocialProfileOrderByRelevanceFieldEnum = {
|
|
|
1598
1611
|
|
|
1599
1612
|
exports.Prisma.SocialProfileContactOrderByRelevanceFieldEnum = {
|
|
1600
1613
|
type: 'type',
|
|
1601
|
-
value: 'value'
|
|
1614
|
+
value: 'value',
|
|
1615
|
+
unsubscribe: 'unsubscribe'
|
|
1602
1616
|
};
|
|
1603
1617
|
|
|
1604
1618
|
exports.Prisma.MessageTemplateOrderByRelevanceFieldEnum = {
|
|
@@ -1726,6 +1740,11 @@ exports.Prisma.SequenceOutboundReplyEmailOrderByRelevanceFieldEnum = {
|
|
|
1726
1740
|
typeId: 'typeId'
|
|
1727
1741
|
};
|
|
1728
1742
|
|
|
1743
|
+
exports.Prisma.LLMPromptOrderByRelevanceFieldEnum = {
|
|
1744
|
+
id: 'id',
|
|
1745
|
+
collectionName: 'collectionName'
|
|
1746
|
+
};
|
|
1747
|
+
|
|
1729
1748
|
exports.Prisma.LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum = {
|
|
1730
1749
|
type: 'type',
|
|
1731
1750
|
notes: 'notes'
|
|
@@ -1884,6 +1903,7 @@ exports.Prisma.ModelName = {
|
|
|
1884
1903
|
EmailProvider: 'EmailProvider',
|
|
1885
1904
|
EmailTracking: 'EmailTracking',
|
|
1886
1905
|
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
1906
|
+
LLMPrompt: 'LLMPrompt',
|
|
1887
1907
|
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction',
|
|
1888
1908
|
SocialPostAnalytics: 'SocialPostAnalytics'
|
|
1889
1909
|
};
|