@adaptware/eagles-db 0.1.72 → 0.1.73

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-cca23bb251738c2c9aca2dd654ab9bec1da482951e448341b431b22942c07fa1",
2
+ "name": "prisma-client-88a5287d6d2b4747b23e998603ab2b5c0065cff82858cb3475eb1ffb1d9557ec",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -460,6 +460,12 @@ enum EvaluationPlanType {
460
460
  DELETED
461
461
  }
462
462
 
463
+ enum DurationUnit {
464
+ MINUTES
465
+ HOURS
466
+ DAYS
467
+ }
468
+
463
469
  model EvaluationPlan {
464
470
  id String @id @default(uuid())
465
471
  job_description_id String
@@ -477,6 +483,9 @@ model EvaluationPlan {
477
483
  order_no Int?
478
484
  details Json?
479
485
  plan_type EvaluationPlanType @default(GENERIC)
486
+ duration Int?
487
+ duration_unit DurationUnit?
488
+ deadline Int?
480
489
  created_by String
481
490
  updated_by String
482
491
  created_at DateTime @default(now())
package/client/wasm.js CHANGED
@@ -379,6 +379,9 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
379
379
  order_no: 'order_no',
380
380
  details: 'details',
381
381
  plan_type: 'plan_type',
382
+ duration: 'duration',
383
+ duration_unit: 'duration_unit',
384
+ deadline: 'deadline',
382
385
  created_by: 'created_by',
383
386
  updated_by: 'updated_by',
384
387
  created_at: 'created_at',
@@ -957,6 +960,12 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
957
960
  DELETED: 'DELETED'
958
961
  };
959
962
 
963
+ exports.DurationUnit = exports.$Enums.DurationUnit = {
964
+ MINUTES: 'MINUTES',
965
+ HOURS: 'HOURS',
966
+ DAYS: 'DAYS'
967
+ };
968
+
960
969
  exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
961
970
  NAUKRI: 'NAUKRI',
962
971
  ZOHO_RECRUIT: 'ZOHO_RECRUIT',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -47,6 +47,12 @@ enum EvaluationPlanType {
47
47
  DELETED
48
48
  }
49
49
 
50
+ enum DurationUnit {
51
+ MINUTES
52
+ HOURS
53
+ DAYS
54
+ }
55
+
50
56
  model EvaluationPlan {
51
57
  id String @id @default(uuid())
52
58
  job_description_id String
@@ -64,6 +70,9 @@ model EvaluationPlan {
64
70
  order_no Int?
65
71
  details Json?
66
72
  plan_type EvaluationPlanType @default(GENERIC)
73
+ duration Int?
74
+ duration_unit DurationUnit?
75
+ deadline Int?
67
76
  created_by String
68
77
  updated_by String
69
78
  created_at DateTime @default(now())