@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.
- package/client/edge.js +4 -9
- package/client/index-browser.js +1 -6
- package/client/index.d.ts +59 -331
- package/client/index.js +4 -9
- package/client/package.json +1 -1
- package/client/schema.prisma +1 -6
- package/client/wasm.js +1 -6
- package/package.json +1 -1
- package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +2 -0
- package/prisma/migrations/migration_lock.toml +3 -0
- package/prisma/schema/jobProfile.prisma +1 -6
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -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
|
@@ -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
|