@adaptware/eagles-db 0.4.37 → 0.4.38
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 +11 -15
- package/client/index-browser.js +8 -12
- package/client/index.d.ts +282 -422
- package/client/index.js +11 -15
- package/client/package.json +1 -1
- package/client/schema.prisma +10 -14
- package/client/wasm.js +11 -15
- package/package.json +1 -1
- package/prisma/schema/openJobAnalytics.prisma +10 -14
package/client/index-browser.js
CHANGED
|
@@ -1343,12 +1343,10 @@ exports.Prisma.OpenJobAnalyticsScalarFieldEnum = {
|
|
|
1343
1343
|
closure_type: 'closure_type',
|
|
1344
1344
|
time_to_hire_days: 'time_to_hire_days',
|
|
1345
1345
|
application_count: 'application_count',
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
offered_count: 'offered_count',
|
|
1351
|
-
hired_count: 'hired_count',
|
|
1346
|
+
unscreened_count: 'unscreened_count',
|
|
1347
|
+
ongoing_count: 'ongoing_count',
|
|
1348
|
+
selected_count: 'selected_count',
|
|
1349
|
+
rejected_count: 'rejected_count',
|
|
1352
1350
|
updated_at: 'updated_at'
|
|
1353
1351
|
};
|
|
1354
1352
|
|
|
@@ -1373,12 +1371,10 @@ exports.Prisma.OpenJobAnalyticsDailyScalarFieldEnum = {
|
|
|
1373
1371
|
closure_type: 'closure_type',
|
|
1374
1372
|
time_to_hire_days: 'time_to_hire_days',
|
|
1375
1373
|
application_count: 'application_count',
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
offered_count: 'offered_count',
|
|
1381
|
-
hired_count: 'hired_count'
|
|
1374
|
+
unscreened_count: 'unscreened_count',
|
|
1375
|
+
ongoing_count: 'ongoing_count',
|
|
1376
|
+
selected_count: 'selected_count',
|
|
1377
|
+
rejected_count: 'rejected_count'
|
|
1382
1378
|
};
|
|
1383
1379
|
|
|
1384
1380
|
exports.Prisma.OrganisationScalarFieldEnum = {
|