telescope-prisma-client 0.0.26 → 0.0.28
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 +1 -1
- package/schema.prisma +2 -2
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -329,7 +329,7 @@ model ProspectSequenceStep {
|
|
|
329
329
|
updated_at DateTime @updatedAt
|
|
330
330
|
email_body String?
|
|
331
331
|
email_subject String?
|
|
332
|
-
|
|
332
|
+
mailbox_id String?
|
|
333
333
|
linkedin_message String?
|
|
334
334
|
owner_id String
|
|
335
335
|
scheduled_at DateTime?
|
|
@@ -337,7 +337,7 @@ model ProspectSequenceStep {
|
|
|
337
337
|
owner User @relation(fields: [owner_id], references: [id])
|
|
338
338
|
prospect Prospect @relation(fields: [prospect_id], references: [id])
|
|
339
339
|
sequence_step SequenceStep @relation(fields: [sequence_step_id], references: [id])
|
|
340
|
-
deleted_at
|
|
340
|
+
deleted_at DateTime?
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
model ProspectInteractionEvent {
|