@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/package.json CHANGED
@@ -92,7 +92,7 @@
92
92
  },
93
93
  "./*": "./*"
94
94
  },
95
- "version": "1.0.77",
95
+ "version": "1.0.78",
96
96
  "sideEffects": false,
97
97
  "description": "Prisma client for creatorco Database"
98
98
  }
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
@@ -1166,6 +1166,7 @@ exports.Prisma.SequenceOutboundReplyEmailScalarFieldEnum = {
1166
1166
  sequenceId: 'sequenceId',
1167
1167
  type: 'type',
1168
1168
  typeId: 'typeId',
1169
+ replyCount: 'replyCount',
1169
1170
  createdAt: 'createdAt',
1170
1171
  updatedAt: 'updatedAt'
1171
1172
  };