@adaptware/eagles-db 0.1.71 → 0.1.73
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 +13 -9
- package/client/index-browser.js +10 -6
- package/client/index.d.ts +329 -332
- package/client/index.js +13 -9
- package/client/package.json +1 -1
- package/client/schema.prisma +10 -6
- package/client/wasm.js +10 -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/evaluationPlan.prisma +9 -0
- package/prisma/schema/jobProfile.prisma +1 -6
package/client/index-browser.js
CHANGED
|
@@ -379,6 +379,9 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
379
379
|
order_no: 'order_no',
|
|
380
380
|
details: 'details',
|
|
381
381
|
plan_type: 'plan_type',
|
|
382
|
+
duration: 'duration',
|
|
383
|
+
duration_unit: 'duration_unit',
|
|
384
|
+
deadline: 'deadline',
|
|
382
385
|
created_by: 'created_by',
|
|
383
386
|
updated_by: 'updated_by',
|
|
384
387
|
created_at: 'created_at',
|
|
@@ -585,21 +588,16 @@ exports.Prisma.JobProfileScalarFieldEnum = {
|
|
|
585
588
|
work_arrangement: 'work_arrangement',
|
|
586
589
|
employment_type: 'employment_type',
|
|
587
590
|
location: 'location',
|
|
591
|
+
experience: 'experience',
|
|
588
592
|
experience_min: 'experience_min',
|
|
589
|
-
reporting: 'reporting',
|
|
590
593
|
comp_range: 'comp_range',
|
|
591
|
-
comp_benchmark: 'comp_benchmark',
|
|
592
594
|
budget: 'budget',
|
|
593
595
|
responsibilities: 'responsibilities',
|
|
594
|
-
deliverables: 'deliverables',
|
|
595
596
|
must_have_skills: 'must_have_skills',
|
|
596
597
|
nice_to_have_skills: 'nice_to_have_skills',
|
|
597
|
-
dealbreakers: 'dealbreakers',
|
|
598
598
|
culture: 'culture',
|
|
599
|
-
success_metrics: 'success_metrics',
|
|
600
599
|
competencies: 'competencies',
|
|
601
600
|
conversation_history: 'conversation_history',
|
|
602
|
-
current_phase: 'current_phase',
|
|
603
601
|
orion_execution_id: 'orion_execution_id',
|
|
604
602
|
created_at: 'created_at',
|
|
605
603
|
updated_at: 'updated_at',
|
|
@@ -962,6 +960,12 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
962
960
|
DELETED: 'DELETED'
|
|
963
961
|
};
|
|
964
962
|
|
|
963
|
+
exports.DurationUnit = exports.$Enums.DurationUnit = {
|
|
964
|
+
MINUTES: 'MINUTES',
|
|
965
|
+
HOURS: 'HOURS',
|
|
966
|
+
DAYS: 'DAYS'
|
|
967
|
+
};
|
|
968
|
+
|
|
965
969
|
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
966
970
|
NAUKRI: 'NAUKRI',
|
|
967
971
|
ZOHO_RECRUIT: 'ZOHO_RECRUIT',
|