@creator.co/creatorco-prisma-client 1.0.77 → 1.0.78
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 +6 -5
- package/index-browser.js +1 -0
- package/index.d.ts +41 -0
- package/index.js +6 -5
- package/package.json +1 -1
- package/schema.prisma +1 -0
- package/wasm.js +1 -0
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -1789,6 +1789,7 @@ model SequenceOutboundReplyEmail {
|
|
|
1789
1789
|
sequenceId Int // Foreign key to Sequence model
|
|
1790
1790
|
type Int // Type of the email (1 for Gmail, 2 for Outlook)
|
|
1791
1791
|
typeId String // threadId for Gmail, conversationId for Outlook
|
|
1792
|
+
replyCount Int @default(0)
|
|
1792
1793
|
createdAt DateTime @default(now()) // Timestamp when the record is created
|
|
1793
1794
|
updatedAt DateTime @updatedAt // Timestamp for when the record is updated
|
|
1794
1795
|
// Relations with other models
|
package/wasm.js
CHANGED