@adaptware/eagles-db 0.1.71 → 0.1.72

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-cca23bb251738c2c9aca2dd654ab9bec1da482951e448341b431b22942c07fa1",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -869,27 +869,22 @@ model JobProfile {
869
869
  work_arrangement String? // onsite / hybrid / remote
870
870
  employment_type String? // full_time / part_time / contract / internship
871
871
  location String?
872
+ experience String?
872
873
  experience_min String?
873
- reporting String?
874
874
  comp_range String?
875
- comp_benchmark String?
876
875
  budget String?
877
876
 
878
877
  // Requirements (structured from AI conversation)
879
878
  responsibilities Json?
880
- deliverables Json?
881
879
  must_have_skills Json?
882
880
  nice_to_have_skills Json?
883
- dealbreakers Json?
884
881
  culture Json?
885
- success_metrics Json?
886
882
 
887
883
  // Competencies
888
884
  competencies Json?
889
885
 
890
886
  // Conversation state
891
887
  conversation_history Json?
892
- current_phase String?
893
888
  orion_execution_id String?
894
889
 
895
890
  // Audit
package/client/wasm.js CHANGED
@@ -585,21 +585,16 @@ exports.Prisma.JobProfileScalarFieldEnum = {
585
585
  work_arrangement: 'work_arrangement',
586
586
  employment_type: 'employment_type',
587
587
  location: 'location',
588
+ experience: 'experience',
588
589
  experience_min: 'experience_min',
589
- reporting: 'reporting',
590
590
  comp_range: 'comp_range',
591
- comp_benchmark: 'comp_benchmark',
592
591
  budget: 'budget',
593
592
  responsibilities: 'responsibilities',
594
- deliverables: 'deliverables',
595
593
  must_have_skills: 'must_have_skills',
596
594
  nice_to_have_skills: 'nice_to_have_skills',
597
- dealbreakers: 'dealbreakers',
598
595
  culture: 'culture',
599
- success_metrics: 'success_metrics',
600
596
  competencies: 'competencies',
601
597
  conversation_history: 'conversation_history',
602
- current_phase: 'current_phase',
603
598
  orion_execution_id: 'orion_execution_id',
604
599
  created_at: 'created_at',
605
600
  updated_at: 'updated_at',
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.72",
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"
@@ -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