@creator.co/creatorco-prisma-client 1.0.77 → 1.0.79
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 +9 -5
- package/index-browser.js +4 -0
- package/index.d.ts +182 -0
- package/index.js +9 -5
- package/package.json +1 -1
- package/schema.prisma +4 -0
- package/wasm.js +4 -0
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -1744,6 +1744,9 @@ model EmailProvider {
|
|
|
1744
1744
|
imapUser String?
|
|
1745
1745
|
imapPassword String?
|
|
1746
1746
|
enableSSL Boolean @default(false)
|
|
1747
|
+
isdkimStatus Boolean? @default(false)
|
|
1748
|
+
isdmarcStatus Boolean? @default(false)
|
|
1749
|
+
isspfStatus Boolean? @default(false)
|
|
1747
1750
|
brandId Int
|
|
1748
1751
|
brand Brand @relation(fields: [brandId], references: [id], onDelete: Cascade)
|
|
1749
1752
|
createdByUserId Int
|
|
@@ -1789,6 +1792,7 @@ model SequenceOutboundReplyEmail {
|
|
|
1789
1792
|
sequenceId Int // Foreign key to Sequence model
|
|
1790
1793
|
type Int // Type of the email (1 for Gmail, 2 for Outlook)
|
|
1791
1794
|
typeId String // threadId for Gmail, conversationId for Outlook
|
|
1795
|
+
replyCount Int @default(0)
|
|
1792
1796
|
createdAt DateTime @default(now()) // Timestamp when the record is created
|
|
1793
1797
|
updatedAt DateTime @updatedAt // Timestamp for when the record is updated
|
|
1794
1798
|
// Relations with other models
|
package/wasm.js
CHANGED
|
@@ -1138,6 +1138,9 @@ exports.Prisma.EmailProviderScalarFieldEnum = {
|
|
|
1138
1138
|
imapUser: 'imapUser',
|
|
1139
1139
|
imapPassword: 'imapPassword',
|
|
1140
1140
|
enableSSL: 'enableSSL',
|
|
1141
|
+
isdkimStatus: 'isdkimStatus',
|
|
1142
|
+
isdmarcStatus: 'isdmarcStatus',
|
|
1143
|
+
isspfStatus: 'isspfStatus',
|
|
1141
1144
|
brandId: 'brandId',
|
|
1142
1145
|
createdByUserId: 'createdByUserId',
|
|
1143
1146
|
editedByUserId: 'editedByUserId',
|
|
@@ -1166,6 +1169,7 @@ exports.Prisma.SequenceOutboundReplyEmailScalarFieldEnum = {
|
|
|
1166
1169
|
sequenceId: 'sequenceId',
|
|
1167
1170
|
type: 'type',
|
|
1168
1171
|
typeId: 'typeId',
|
|
1172
|
+
replyCount: 'replyCount',
|
|
1169
1173
|
createdAt: 'createdAt',
|
|
1170
1174
|
updatedAt: 'updatedAt'
|
|
1171
1175
|
};
|