@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-fc2a1739daa27f95c0e651784da42f2fbcfe4bda716199b569edca7c8ada7f01",
2
+ "name": "prisma-client-a787ba2f1cc7e83cdb8a92637dba4bf0628b4afbcc430370bf8261ae18d1c7d2",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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
 
@@ -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',
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.18.0-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.19.0-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {