@adaptware/eagles-db 0.1.68 → 0.1.71
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 +7 -3
- package/client/index-browser.js +4 -0
- package/client/index.d.ts +1055 -66
- package/client/index.js +7 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +23 -16
- package/client/wasm.js +4 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/prisma/schema/jobProfile.prisma +26 -21
- package/prisma/schema/organisation.prisma +10 -9
- package/prisma/schema/user.prisma +1 -0
package/client/index-browser.js
CHANGED
|
@@ -576,17 +576,20 @@ exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
|
576
576
|
exports.Prisma.JobProfileScalarFieldEnum = {
|
|
577
577
|
id: 'id',
|
|
578
578
|
organisation_id: 'organisation_id',
|
|
579
|
+
hiring_manager_id: 'hiring_manager_id',
|
|
579
580
|
created_by: 'created_by',
|
|
580
581
|
assigned_to: 'assigned_to',
|
|
581
582
|
status: 'status',
|
|
582
583
|
title: 'title',
|
|
583
584
|
role_type: 'role_type',
|
|
584
585
|
work_arrangement: 'work_arrangement',
|
|
586
|
+
employment_type: 'employment_type',
|
|
585
587
|
location: 'location',
|
|
586
588
|
experience_min: 'experience_min',
|
|
587
589
|
reporting: 'reporting',
|
|
588
590
|
comp_range: 'comp_range',
|
|
589
591
|
comp_benchmark: 'comp_benchmark',
|
|
592
|
+
budget: 'budget',
|
|
590
593
|
responsibilities: 'responsibilities',
|
|
591
594
|
deliverables: 'deliverables',
|
|
592
595
|
must_have_skills: 'must_have_skills',
|
|
@@ -670,6 +673,7 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
670
673
|
phone: 'phone',
|
|
671
674
|
address: 'address',
|
|
672
675
|
company_values: 'company_values',
|
|
676
|
+
allowed_email_domains: 'allowed_email_domains',
|
|
673
677
|
created_at: 'created_at',
|
|
674
678
|
updated_at: 'updated_at',
|
|
675
679
|
created_by: 'created_by',
|