@adaptware/eagles-db 0.1.70 → 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 +5 -9
- package/client/index-browser.js +2 -6
- package/client/index.d.ts +164 -332
- package/client/index.js +5 -9
- package/client/package.json +1 -1
- package/client/schema.prisma +11 -15
- package/client/wasm.js +2 -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/prisma/schema/organisation.prisma +10 -9
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
|
|
@@ -1029,15 +1024,16 @@ enum OrganisationSize {
|
|
|
1029
1024
|
}
|
|
1030
1025
|
|
|
1031
1026
|
model Organisation {
|
|
1032
|
-
id
|
|
1033
|
-
name
|
|
1034
|
-
industry
|
|
1035
|
-
about
|
|
1036
|
-
website
|
|
1037
|
-
size
|
|
1038
|
-
phone
|
|
1039
|
-
address
|
|
1040
|
-
company_values
|
|
1027
|
+
id String @id @default(uuid())
|
|
1028
|
+
name String @unique
|
|
1029
|
+
industry String
|
|
1030
|
+
about String
|
|
1031
|
+
website String
|
|
1032
|
+
size OrganisationSize @default(ONE_TO_TEN)
|
|
1033
|
+
phone String
|
|
1034
|
+
address String
|
|
1035
|
+
company_values Json[]
|
|
1036
|
+
allowed_email_domains String[]
|
|
1041
1037
|
|
|
1042
1038
|
interviewers User[]
|
|
1043
1039
|
created_at DateTime @default(now())
|
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',
|
|
@@ -673,6 +668,7 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
673
668
|
phone: 'phone',
|
|
674
669
|
address: 'address',
|
|
675
670
|
company_values: 'company_values',
|
|
671
|
+
allowed_email_domains: 'allowed_email_domains',
|
|
676
672
|
created_at: 'created_at',
|
|
677
673
|
updated_at: 'updated_at',
|
|
678
674
|
created_by: 'created_by',
|
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
|
|
@@ -7,15 +7,16 @@ enum OrganisationSize {
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
model Organisation {
|
|
10
|
-
id
|
|
11
|
-
name
|
|
12
|
-
industry
|
|
13
|
-
about
|
|
14
|
-
website
|
|
15
|
-
size
|
|
16
|
-
phone
|
|
17
|
-
address
|
|
18
|
-
company_values
|
|
10
|
+
id String @id @default(uuid())
|
|
11
|
+
name String @unique
|
|
12
|
+
industry String
|
|
13
|
+
about String
|
|
14
|
+
website String
|
|
15
|
+
size OrganisationSize @default(ONE_TO_TEN)
|
|
16
|
+
phone String
|
|
17
|
+
address String
|
|
18
|
+
company_values Json[]
|
|
19
|
+
allowed_email_domains String[]
|
|
19
20
|
|
|
20
21
|
interviewers User[]
|
|
21
22
|
created_at DateTime @default(now())
|