@adaptware/eagles-db 0.1.61 → 0.1.67
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 +65 -20
- package/client/index-browser.js +60 -15
- package/client/index.d.ts +38485 -31082
- package/client/index.js +65 -20
- package/client/package.json +1 -1
- package/client/schema.prisma +114 -33
- package/client/wasm.js +60 -15
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/CandidateQuestionResponse.prisma +4 -1
- package/prisma/schema/assessment.prisma +11 -15
- package/prisma/schema/assignment.prisma +1 -0
- package/prisma/schema/integration.prisma +1 -0
- package/prisma/schema/interview.prisma +2 -1
- package/prisma/schema/jobDescription.prisma +3 -0
- package/prisma/schema/jobProfile.prisma +56 -0
- package/prisma/schema/liveAnalysis.prisma +17 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
- package/prisma/schema/organisation.prisma +25 -23
- package/prisma/schema/user.prisma +2 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
|
@@ -17,29 +17,31 @@ model Organisation {
|
|
|
17
17
|
address String
|
|
18
18
|
company_values Json[]
|
|
19
19
|
|
|
20
|
-
interviewers
|
|
21
|
-
created_at
|
|
22
|
-
updated_at
|
|
23
|
-
created_by
|
|
24
|
-
updated_by
|
|
25
|
-
is_active
|
|
26
|
-
alias
|
|
27
|
-
logo
|
|
28
|
-
applications
|
|
29
|
-
user_roles
|
|
30
|
-
job_descriptions
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
20
|
+
interviewers User[]
|
|
21
|
+
created_at DateTime @default(now())
|
|
22
|
+
updated_at DateTime @updatedAt
|
|
23
|
+
created_by String
|
|
24
|
+
updated_by String
|
|
25
|
+
is_active Boolean @default(true)
|
|
26
|
+
alias String? @unique
|
|
27
|
+
logo String?
|
|
28
|
+
applications Application[]
|
|
29
|
+
user_roles UserRole[]
|
|
30
|
+
job_descriptions JobDescription[]
|
|
31
|
+
job_profiles JobProfile[]
|
|
32
|
+
assessment_library AssessmentLibrary[]
|
|
33
|
+
assignment_library AssignmentLibrary[]
|
|
34
|
+
interviews Interview[]
|
|
35
|
+
assignments Assignment[]
|
|
36
|
+
fit_check FitCheck[] // one-to-many link
|
|
37
|
+
resumes Resume[] // one-to-many link
|
|
38
|
+
approvals Approval[] // one-to-many link
|
|
39
|
+
suggestions Suggestion[]
|
|
40
|
+
ongoing_evaluations OngoingEvaluation[] // optional one-to-many
|
|
41
|
+
actions Action[]
|
|
42
|
+
integration_credentials IntegrationCredential[]
|
|
43
|
+
zoho_sync_mappings ZohoSyncMapping[]
|
|
44
|
+
assessments Assessment[]
|
|
43
45
|
|
|
44
46
|
@@index([name])
|
|
45
47
|
}
|
|
Binary file
|