@a_team/prisma 3.18.0-macos-docker-linux → 3.19.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 +10 -4
- package/dist/client/index-browser.js +6 -0
- package/dist/client/index.d.ts +91 -0
- package/dist/client/index.js +12 -6
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.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 +7 -0
- package/dist/client/wasm.js +6 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1409,6 +1409,11 @@ enum Priority {
|
|
|
1409
1409
|
low
|
|
1410
1410
|
}
|
|
1411
1411
|
|
|
1412
|
+
enum GeneratingStatus {
|
|
1413
|
+
COMPLETED
|
|
1414
|
+
GENERATING
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1412
1417
|
type CriteriaItem {
|
|
1413
1418
|
id String @db.ObjectId
|
|
1414
1419
|
description String
|
|
@@ -1435,6 +1440,8 @@ model RoleHiringCriteria {
|
|
|
1435
1440
|
|
|
1436
1441
|
dynamicCriteria CriteriaItem[]
|
|
1437
1442
|
|
|
1443
|
+
generatingStatus GeneratingStatus @default(COMPLETED)
|
|
1444
|
+
|
|
1438
1445
|
createdAt DateTime? @default(now()) @db.Date
|
|
1439
1446
|
updatedAt DateTime? @updatedAt @db.Date
|
|
1440
1447
|
|
package/dist/client/wasm.js
CHANGED
|
@@ -496,6 +496,7 @@ exports.Prisma.RoleHiringCriteriaScalarFieldEnum = {
|
|
|
496
496
|
requiredWeeklyHours: 'requiredWeeklyHours',
|
|
497
497
|
maxHourlyRate: 'maxHourlyRate',
|
|
498
498
|
maxMonthlyRate: 'maxMonthlyRate',
|
|
499
|
+
generatingStatus: 'generatingStatus',
|
|
499
500
|
createdAt: 'createdAt',
|
|
500
501
|
updatedAt: 'updatedAt'
|
|
501
502
|
};
|
|
@@ -742,6 +743,11 @@ exports.PlatformRecordedOn = exports.$Enums.PlatformRecordedOn = {
|
|
|
742
743
|
Gong: 'Gong'
|
|
743
744
|
};
|
|
744
745
|
|
|
746
|
+
exports.GeneratingStatus = exports.$Enums.GeneratingStatus = {
|
|
747
|
+
COMPLETED: 'COMPLETED',
|
|
748
|
+
GENERATING: 'GENERATING'
|
|
749
|
+
};
|
|
750
|
+
|
|
745
751
|
exports.ApprovalStatus = exports.$Enums.ApprovalStatus = {
|
|
746
752
|
Requested: 'Requested',
|
|
747
753
|
Reviewing: 'Reviewing',
|