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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schema.prisma +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telescope-prisma-client",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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
- executed_with_mailbox_id String?
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 DateTime?
340
+ deleted_at DateTime?
341
341
  }
342
342
 
343
343
  model ProspectInteractionEvent {