@a_team/prisma 3.24.3-win → 3.25.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-1a296b27432185851d9e229a2b423d873c0180d06bc07e1ac9727027c719e5c7",
2
+ "name": "prisma-client-e143b8732031bf1c2f6ca94efa0b2c155528441626922a5a52fc7aab43563003",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1603,13 +1603,39 @@ enum GeneratingStatus {
1603
1603
  GENERATING
1604
1604
  }
1605
1605
 
1606
+ enum EvidenceSourceType {
1607
+ RoleStructured
1608
+ HubspotEmail
1609
+ CallTranscript
1610
+ CompanyInfo
1611
+ Signup
1612
+ TaNotes
1613
+ BuilderData
1614
+ Application
1615
+ }
1616
+
1617
+ type EvidenceLocator {
1618
+ timestampStartSec Int?
1619
+ timestampEndSec Int?
1620
+ snippetHash String?
1621
+ offsetStart Int?
1622
+ offsetEnd Int?
1623
+ }
1624
+
1625
+ type EvidencePointer {
1626
+ sourceType EvidenceSourceType
1627
+ sourceId String
1628
+ locator EvidenceLocator?
1629
+ }
1630
+
1606
1631
  type CriteriaItem {
1607
- id String @db.ObjectId
1632
+ id String @db.ObjectId
1608
1633
  description String
1609
1634
  type CriteriaItemType
1610
1635
  priority Priority
1611
- createdAt DateTime? @default(now()) @db.Date
1612
- updatedAt DateTime? @db.Date
1636
+ evidence EvidencePointer[]
1637
+ createdAt DateTime? @default(now()) @db.Date
1638
+ updatedAt DateTime? @db.Date
1613
1639
  }
1614
1640
 
1615
1641
  model RoleHiringCriteria {
@@ -1063,6 +1063,17 @@ exports.MissionRoleVisibilityStatus = exports.$Enums.MissionRoleVisibilityStatus
1063
1063
  All: 'All'
1064
1064
  };
1065
1065
 
1066
+ exports.EvidenceSourceType = exports.$Enums.EvidenceSourceType = {
1067
+ RoleStructured: 'RoleStructured',
1068
+ HubspotEmail: 'HubspotEmail',
1069
+ CallTranscript: 'CallTranscript',
1070
+ CompanyInfo: 'CompanyInfo',
1071
+ Signup: 'Signup',
1072
+ TaNotes: 'TaNotes',
1073
+ BuilderData: 'BuilderData',
1074
+ Application: 'Application'
1075
+ };
1076
+
1066
1077
  exports.Prisma.ModelName = {
1067
1078
  Account: 'Account',
1068
1079
  BillingAccount: 'BillingAccount',
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.24.3-win",
3
+ "version": "3.25.0-linux",
4
4
  "os": [
5
- "win32"
5
+ "linux"
6
6
  ],
7
7
  "cpu": [],
8
8
  "keywords": [],