@adaptware/eagles-db 0.5.2 → 0.5.4
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 +17 -6
- package/client/index-browser.js +14 -2
- package/client/index.d.ts +330 -38
- package/client/index.js +17 -6
- package/client/package.json +1 -1
- package/client/schema.prisma +33 -5
- package/client/wasm.js +17 -6
- package/package.json +1 -1
- package/prisma/schema/action.prisma +6 -0
- package/prisma/schema/department.prisma +20 -4
- package/prisma/schema/hiringPlan.prisma +7 -1
package/client/index-browser.js
CHANGED
|
@@ -719,10 +719,15 @@ exports.Prisma.HiringPlanSectionScalarFieldEnum = {
|
|
|
719
719
|
hiring_plan_id: 'hiring_plan_id',
|
|
720
720
|
department_id: 'department_id',
|
|
721
721
|
status: 'status',
|
|
722
|
+
requested_by: 'requested_by',
|
|
723
|
+
requested_at: 'requested_at',
|
|
722
724
|
submitted_by: 'submitted_by',
|
|
723
725
|
submitted_at: 'submitted_at',
|
|
724
726
|
approved_by: 'approved_by',
|
|
725
727
|
approved_at: 'approved_at',
|
|
728
|
+
skipped_by: 'skipped_by',
|
|
729
|
+
skipped_at: 'skipped_at',
|
|
730
|
+
review_note: 'review_note',
|
|
726
731
|
created_at: 'created_at',
|
|
727
732
|
updated_at: 'updated_at',
|
|
728
733
|
created_by: 'created_by',
|
|
@@ -888,6 +893,7 @@ exports.Prisma.HiringPlanLineScalarFieldEnum = {
|
|
|
888
893
|
cost_per_hire: 'cost_per_hire',
|
|
889
894
|
start_month: 'start_month',
|
|
890
895
|
hire_schedule: 'hire_schedule',
|
|
896
|
+
details: 'details',
|
|
891
897
|
sort_order: 'sort_order',
|
|
892
898
|
job_description_id: 'job_description_id',
|
|
893
899
|
created_at: 'created_at',
|
|
@@ -2020,7 +2026,10 @@ exports.Prisma.JsonNullValueFilter = {
|
|
|
2020
2026
|
exports.ActionType = exports.$Enums.ActionType = {
|
|
2021
2027
|
TAKE_INTERVIEW: 'TAKE_INTERVIEW',
|
|
2022
2028
|
PROVIDE_FEEDBACK: 'PROVIDE_FEEDBACK',
|
|
2023
|
-
SCHEDULE_INTERVIEW: 'SCHEDULE_INTERVIEW'
|
|
2029
|
+
SCHEDULE_INTERVIEW: 'SCHEDULE_INTERVIEW',
|
|
2030
|
+
SUBMIT_DEPARTMENT_HIRING_REQUIREMENTS: 'SUBMIT_DEPARTMENT_HIRING_REQUIREMENTS',
|
|
2031
|
+
REVIEW_DEPARTMENT_HIRING_REQUIREMENTS: 'REVIEW_DEPARTMENT_HIRING_REQUIREMENTS',
|
|
2032
|
+
UPDATE_DEPARTMENT_HIRING_REQUIREMENTS: 'UPDATE_DEPARTMENT_HIRING_REQUIREMENTS'
|
|
2024
2033
|
};
|
|
2025
2034
|
|
|
2026
2035
|
exports.ActionStatus = exports.$Enums.ActionStatus = {
|
|
@@ -2254,8 +2263,11 @@ exports.CommMessageStatus = exports.$Enums.CommMessageStatus = {
|
|
|
2254
2263
|
|
|
2255
2264
|
exports.HiringPlanSectionStatus = exports.$Enums.HiringPlanSectionStatus = {
|
|
2256
2265
|
DRAFT: 'DRAFT',
|
|
2266
|
+
REQUESTED: 'REQUESTED',
|
|
2257
2267
|
SUBMITTED: 'SUBMITTED',
|
|
2258
|
-
|
|
2268
|
+
CHANGES_REQUESTED: 'CHANGES_REQUESTED',
|
|
2269
|
+
APPROVED: 'APPROVED',
|
|
2270
|
+
SKIPPED: 'SKIPPED'
|
|
2259
2271
|
};
|
|
2260
2272
|
|
|
2261
2273
|
exports.CriteriaScope = exports.$Enums.CriteriaScope = {
|