@adaptware/eagles-db 0.1.30 → 0.1.32
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 +8 -6
- package/client/index-browser.js +3 -1
- package/client/index.d.ts +334 -78
- package/client/index.js +8 -6
- package/client/package.json +1 -1
- package/client/schema.prisma +17 -15
- package/client/wasm.js +3 -1
- package/package.json +1 -1
- package/prisma/schema/user.prisma +2 -0
- package/prisma/.DS_Store +0 -0
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -799,7 +799,7 @@ model OngoingEvaluation {
|
|
|
799
799
|
// Evaluation Plan Details Will be stored only when candidate starts for the evaluation round
|
|
800
800
|
title String?
|
|
801
801
|
description String?
|
|
802
|
-
|
|
802
|
+
order_no Int?
|
|
803
803
|
format EvaluationRoundFormat?
|
|
804
804
|
topics String[]
|
|
805
805
|
assignee String?
|
|
@@ -1129,20 +1129,22 @@ model User {
|
|
|
1129
1129
|
calendly Calendly?
|
|
1130
1130
|
google Google?
|
|
1131
1131
|
|
|
1132
|
-
name
|
|
1133
|
-
phone
|
|
1134
|
-
description
|
|
1135
|
-
date_of_birth
|
|
1136
|
-
designation
|
|
1137
|
-
location
|
|
1138
|
-
salary
|
|
1139
|
-
work_experience
|
|
1140
|
-
education
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1132
|
+
name String?
|
|
1133
|
+
phone String?
|
|
1134
|
+
description String?
|
|
1135
|
+
date_of_birth DateTime?
|
|
1136
|
+
designation String?
|
|
1137
|
+
location String?
|
|
1138
|
+
salary String?
|
|
1139
|
+
work_experience Json?
|
|
1140
|
+
education Json?
|
|
1141
|
+
skills Json?
|
|
1142
|
+
notice_period String?
|
|
1143
|
+
preferred_work_mode String?
|
|
1144
|
+
gender String?
|
|
1145
|
+
ethnicity String?
|
|
1146
|
+
veteran_status String?
|
|
1147
|
+
disability_status String?
|
|
1146
1148
|
|
|
1147
1149
|
@@index([role_id])
|
|
1148
1150
|
@@index([permission_id])
|
package/client/wasm.js
CHANGED
|
@@ -540,7 +540,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
540
540
|
is_current: 'is_current',
|
|
541
541
|
title: 'title',
|
|
542
542
|
description: 'description',
|
|
543
|
-
|
|
543
|
+
order_no: 'order_no',
|
|
544
544
|
format: 'format',
|
|
545
545
|
topics: 'topics',
|
|
546
546
|
assignee: 'assignee',
|
|
@@ -716,7 +716,9 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
716
716
|
salary: 'salary',
|
|
717
717
|
work_experience: 'work_experience',
|
|
718
718
|
education: 'education',
|
|
719
|
+
skills: 'skills',
|
|
719
720
|
notice_period: 'notice_period',
|
|
721
|
+
preferred_work_mode: 'preferred_work_mode',
|
|
720
722
|
gender: 'gender',
|
|
721
723
|
ethnicity: 'ethnicity',
|
|
722
724
|
veteran_status: 'veteran_status',
|
package/package.json
CHANGED
package/prisma/.DS_Store
DELETED
|
Binary file
|