@creator.co/creatorco-prisma-client 1.0.92 → 1.0.93
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 +19 -5
- package/index-browser.js +14 -0
- package/index.d.ts +2907 -601
- package/index.js +19 -5
- package/package.json +1 -1
- package/schema.prisma +16 -0
- package/wasm.js +14 -0
package/index-browser.js
CHANGED
|
@@ -1236,6 +1236,14 @@ exports.Prisma.LLMPromptScalarFieldEnum = {
|
|
|
1236
1236
|
updatedAt: 'updatedAt'
|
|
1237
1237
|
};
|
|
1238
1238
|
|
|
1239
|
+
exports.Prisma.UserInviteScalarFieldEnum = {
|
|
1240
|
+
inviteCode: 'inviteCode',
|
|
1241
|
+
email: 'email',
|
|
1242
|
+
expiration: 'expiration',
|
|
1243
|
+
userId: 'userId',
|
|
1244
|
+
brandId: 'brandId'
|
|
1245
|
+
};
|
|
1246
|
+
|
|
1239
1247
|
exports.Prisma.LatestCreatorPaymentTransactionScalarFieldEnum = {
|
|
1240
1248
|
id: 'id',
|
|
1241
1249
|
balance: 'balance',
|
|
@@ -1745,6 +1753,11 @@ exports.Prisma.LLMPromptOrderByRelevanceFieldEnum = {
|
|
|
1745
1753
|
collectionName: 'collectionName'
|
|
1746
1754
|
};
|
|
1747
1755
|
|
|
1756
|
+
exports.Prisma.userInviteOrderByRelevanceFieldEnum = {
|
|
1757
|
+
inviteCode: 'inviteCode',
|
|
1758
|
+
email: 'email'
|
|
1759
|
+
};
|
|
1760
|
+
|
|
1748
1761
|
exports.Prisma.LatestCreatorPaymentTransactionOrderByRelevanceFieldEnum = {
|
|
1749
1762
|
type: 'type',
|
|
1750
1763
|
notes: 'notes'
|
|
@@ -1904,6 +1917,7 @@ exports.Prisma.ModelName = {
|
|
|
1904
1917
|
EmailTracking: 'EmailTracking',
|
|
1905
1918
|
SequenceOutboundReplyEmail: 'SequenceOutboundReplyEmail',
|
|
1906
1919
|
LLMPrompt: 'LLMPrompt',
|
|
1920
|
+
userInvite: 'userInvite',
|
|
1907
1921
|
LatestCreatorPaymentTransaction: 'LatestCreatorPaymentTransaction',
|
|
1908
1922
|
SocialPostAnalytics: 'SocialPostAnalytics'
|
|
1909
1923
|
};
|