@adaptware/eagles-db 0.1.71 → 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-b0fefa7c0add1e8056f76ae529281c7e31c374c00b639bfc7af7dee55488fedb",
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())
@@ -869,27 +878,22 @@ model JobProfile {
869
878
  work_arrangement String? // onsite / hybrid / remote
870
879
  employment_type String? // full_time / part_time / contract / internship
871
880
  location String?
881
+ experience String?
872
882
  experience_min String?
873
- reporting String?
874
883
  comp_range String?
875
- comp_benchmark String?
876
884
  budget String?
877
885
 
878
886
  // Requirements (structured from AI conversation)
879
887
  responsibilities Json?
880
- deliverables Json?
881
888
  must_have_skills Json?
882
889
  nice_to_have_skills Json?
883
- dealbreakers Json?
884
890
  culture Json?
885
- success_metrics Json?
886
891
 
887
892
  // Competencies
888
893
  competencies Json?
889
894
 
890
895
  // Conversation state
891
896
  conversation_history Json?
892
- current_phase String?
893
897
  orion_execution_id String?
894
898
 
895
899
  // Audit
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',
@@ -585,21 +588,16 @@ exports.Prisma.JobProfileScalarFieldEnum = {
585
588
  work_arrangement: 'work_arrangement',
586
589
  employment_type: 'employment_type',
587
590
  location: 'location',
591
+ experience: 'experience',
588
592
  experience_min: 'experience_min',
589
- reporting: 'reporting',
590
593
  comp_range: 'comp_range',
591
- comp_benchmark: 'comp_benchmark',
592
594
  budget: 'budget',
593
595
  responsibilities: 'responsibilities',
594
- deliverables: 'deliverables',
595
596
  must_have_skills: 'must_have_skills',
596
597
  nice_to_have_skills: 'nice_to_have_skills',
597
- dealbreakers: 'dealbreakers',
598
598
  culture: 'culture',
599
- success_metrics: 'success_metrics',
600
599
  competencies: 'competencies',
601
600
  conversation_history: 'conversation_history',
602
- current_phase: 'current_phase',
603
601
  orion_execution_id: 'orion_execution_id',
604
602
  created_at: 'created_at',
605
603
  updated_at: 'updated_at',
@@ -962,6 +960,12 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
962
960
  DELETED: 'DELETED'
963
961
  };
964
962
 
963
+ exports.DurationUnit = exports.$Enums.DurationUnit = {
964
+ MINUTES: 'MINUTES',
965
+ HOURS: 'HOURS',
966
+ DAYS: 'DAYS'
967
+ };
968
+
965
969
  exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
966
970
  NAUKRI: 'NAUKRI',
967
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.71",
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",
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "JobProfile" DROP COLUMN IF EXISTS "current_phase";
@@ -0,0 +1,3 @@
1
+ # Please do not edit this file manually
2
+ # It should be added in your version-control system (e.g. Git)
3
+ provider = "postgresql"
@@ -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())
@@ -19,27 +19,22 @@ model JobProfile {
19
19
  work_arrangement String? // onsite / hybrid / remote
20
20
  employment_type String? // full_time / part_time / contract / internship
21
21
  location String?
22
+ experience String?
22
23
  experience_min String?
23
- reporting String?
24
24
  comp_range String?
25
- comp_benchmark String?
26
25
  budget String?
27
26
 
28
27
  // Requirements (structured from AI conversation)
29
28
  responsibilities Json?
30
- deliverables Json?
31
29
  must_have_skills Json?
32
30
  nice_to_have_skills Json?
33
- dealbreakers Json?
34
31
  culture Json?
35
- success_metrics Json?
36
32
 
37
33
  // Competencies
38
34
  competencies Json?
39
35
 
40
36
  // Conversation state
41
37
  conversation_history Json?
42
- current_phase String?
43
38
  orion_execution_id String?
44
39
 
45
40
  // Audit