@a_team/prisma 3.14.8-macos-docker-linux → 3.15.0-linux

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-9f5b65cb8ce38c2f9c0df03cc5e8969dc1e5fcb43ec7184addff5f5f8ef01236",
2
+ "name": "prisma-client-0e9641df30ac007c6ef5d53d73a3df1ab78f2d232021546179aa898bf185a31f",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1308,6 +1308,33 @@ type ProposalTfsPitch {
1308
1308
  website String?
1309
1309
  }
1310
1310
 
1311
+ enum PlatformRecordedOn {
1312
+ Fathom
1313
+ Gong
1314
+ }
1315
+
1316
+ type CallParticipant {
1317
+ name String
1318
+ email String
1319
+ }
1320
+
1321
+ model RecordedCall {
1322
+ id String @id @default(auto()) @map("_id") @db.ObjectId
1323
+ callMeetingTitle String
1324
+ callUrl String
1325
+ startTime DateTime @db.Date
1326
+ endTime DateTime @db.Date
1327
+ transcriptUrl String
1328
+ participants CallParticipant[]
1329
+ recordedByName String
1330
+ recordedByUrl String
1331
+ platformRecordedOn PlatformRecordedOn
1332
+ createdAt DateTime @default(now()) @db.Date
1333
+ updatedAt DateTime @updatedAt @db.Date
1334
+
1335
+ @@map("recordedCalls")
1336
+ }
1337
+
1311
1338
  model RoleCategory {
1312
1339
  id String @id @default(auto()) @map("_id") @db.ObjectId
1313
1340
  anchors String[]
@@ -449,6 +449,20 @@ exports.Prisma.ProposalScalarFieldEnum = {
449
449
  teamAdvisorId: 'teamAdvisorId'
450
450
  };
451
451
 
452
+ exports.Prisma.RecordedCallScalarFieldEnum = {
453
+ id: 'id',
454
+ callMeetingTitle: 'callMeetingTitle',
455
+ callUrl: 'callUrl',
456
+ startTime: 'startTime',
457
+ endTime: 'endTime',
458
+ transcriptUrl: 'transcriptUrl',
459
+ recordedByName: 'recordedByName',
460
+ recordedByUrl: 'recordedByUrl',
461
+ platformRecordedOn: 'platformRecordedOn',
462
+ createdAt: 'createdAt',
463
+ updatedAt: 'updatedAt'
464
+ };
465
+
452
466
  exports.Prisma.RoleCategoryScalarFieldEnum = {
453
467
  id: 'id',
454
468
  anchors: 'anchors',
@@ -667,6 +681,11 @@ exports.ProposalTemplate = exports.$Enums.ProposalTemplate = {
667
681
  sampleV3: 'sampleV3'
668
682
  };
669
683
 
684
+ exports.PlatformRecordedOn = exports.$Enums.PlatformRecordedOn = {
685
+ Fathom: 'Fathom',
686
+ Gong: 'Gong'
687
+ };
688
+
670
689
  exports.PresetID = exports.$Enums.PresetID = {
671
690
  custom_team: 'custom_team',
672
691
  web_platform: 'web_platform',
@@ -861,6 +880,7 @@ exports.Prisma.ModelName = {
861
880
  MissionSpec: 'MissionSpec',
862
881
  PaymentCycle: 'PaymentCycle',
863
882
  Proposal: 'Proposal',
883
+ RecordedCall: 'RecordedCall',
864
884
  RoleCategory: 'RoleCategory',
865
885
  Solution: 'Solution',
866
886
  TalentCategory: 'TalentCategory',
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.14.8-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.15.0-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {