@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.
- package/dist/client/edge.js +15 -4
- package/dist/client/index-browser.js +11 -0
- package/dist/client/index.d.ts +320 -1
- package/dist/client/index.js +17 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +29 -3
- package/dist/client/wasm.js +11 -0
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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
|
|
1632
|
+
id String @db.ObjectId
|
|
1608
1633
|
description String
|
|
1609
1634
|
type CriteriaItemType
|
|
1610
1635
|
priority Priority
|
|
1611
|
-
|
|
1612
|
-
|
|
1636
|
+
evidence EvidencePointer[]
|
|
1637
|
+
createdAt DateTime? @default(now()) @db.Date
|
|
1638
|
+
updatedAt DateTime? @db.Date
|
|
1613
1639
|
}
|
|
1614
1640
|
|
|
1615
1641
|
model RoleHiringCriteria {
|
package/dist/client/wasm.js
CHANGED
|
@@ -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',
|