@adaptware/eagles-db 0.5.29 → 0.5.30
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/README.md +7 -2
- package/client/edge.js +9 -5
- package/client/index-browser.js +6 -2
- package/client/index.d.ts +428 -113
- package/client/index.js +9 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +13 -10
- package/client/wasm.js +9 -5
- package/package.json +1 -1
- package/prisma/schema/jobProfile.prisma +13 -10
- package/prisma/schema/migrations/20260816120000_job_profile_opening_setup/migration.sql +13 -0
package/client/index-browser.js
CHANGED
|
@@ -1356,14 +1356,18 @@ exports.Prisma.JobProfileScalarFieldEnum = {
|
|
|
1356
1356
|
status: 'status',
|
|
1357
1357
|
title: 'title',
|
|
1358
1358
|
role_type: 'role_type',
|
|
1359
|
+
job_role_level: 'job_role_level',
|
|
1359
1360
|
work_arrangement: 'work_arrangement',
|
|
1360
1361
|
employment_type: 'employment_type',
|
|
1362
|
+
country_code: 'country_code',
|
|
1363
|
+
state_code: 'state_code',
|
|
1364
|
+
city: 'city',
|
|
1361
1365
|
location: 'location',
|
|
1362
1366
|
experience: 'experience',
|
|
1363
1367
|
experience_min: 'experience_min',
|
|
1364
1368
|
comp_range: 'comp_range',
|
|
1365
1369
|
budget: 'budget',
|
|
1366
|
-
|
|
1370
|
+
openings: 'openings',
|
|
1367
1371
|
responsibilities: 'responsibilities',
|
|
1368
1372
|
must_have_skills: 'must_have_skills',
|
|
1369
1373
|
nice_to_have_skills: 'nice_to_have_skills',
|
|
@@ -1371,8 +1375,8 @@ exports.Prisma.JobProfileScalarFieldEnum = {
|
|
|
1371
1375
|
competencies: 'competencies',
|
|
1372
1376
|
conversation_history: 'conversation_history',
|
|
1373
1377
|
orion_execution_id: 'orion_execution_id',
|
|
1374
|
-
created_at: 'created_at',
|
|
1375
1378
|
created_by: 'created_by',
|
|
1379
|
+
created_at: 'created_at',
|
|
1376
1380
|
updated_at: 'updated_at',
|
|
1377
1381
|
is_active: 'is_active'
|
|
1378
1382
|
};
|