@adaptware/eagles-db 0.4.28 → 0.4.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/client/edge.js +38 -3
- package/client/index-browser.js +35 -0
- package/client/index.d.ts +4371 -486
- package/client/index.js +38 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +63 -3
- package/client/wasm.js +35 -0
- package/package.json +1 -1
- package/prisma/schema/jobDescription.prisma +1 -2
- package/prisma/schema/openJobAnalytics.prisma +7 -0
- package/prisma/schema/reportingOverviewJobAnalytics.prisma +49 -0
package/client/index-browser.js
CHANGED
|
@@ -830,6 +830,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
830
830
|
recommendedQuestions: 'recommendedQuestions',
|
|
831
831
|
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
832
832
|
source_document_id: 'source_document_id',
|
|
833
|
+
rendered_jd_document_id: 'rendered_jd_document_id',
|
|
833
834
|
is_plan_published: 'is_plan_published',
|
|
834
835
|
is_posted: 'is_posted',
|
|
835
836
|
summary: 'summary',
|
|
@@ -1027,6 +1028,8 @@ exports.Prisma.OpenJobAnalyticsScalarFieldEnum = {
|
|
|
1027
1028
|
target_closing_date: 'target_closing_date',
|
|
1028
1029
|
closing_date: 'closing_date',
|
|
1029
1030
|
is_open: 'is_open',
|
|
1031
|
+
closure_type: 'closure_type',
|
|
1032
|
+
time_to_hire_days: 'time_to_hire_days',
|
|
1030
1033
|
application_count: 'application_count',
|
|
1031
1034
|
in_consideration_count: 'in_consideration_count',
|
|
1032
1035
|
shortlisted_count: 'shortlisted_count',
|
|
@@ -1051,6 +1054,8 @@ exports.Prisma.OpenJobAnalyticsDailyScalarFieldEnum = {
|
|
|
1051
1054
|
target_closing_date: 'target_closing_date',
|
|
1052
1055
|
closing_date: 'closing_date',
|
|
1053
1056
|
is_open: 'is_open',
|
|
1057
|
+
closure_type: 'closure_type',
|
|
1058
|
+
time_to_hire_days: 'time_to_hire_days',
|
|
1054
1059
|
application_count: 'application_count',
|
|
1055
1060
|
in_consideration_count: 'in_consideration_count',
|
|
1056
1061
|
shortlisted_count: 'shortlisted_count'
|
|
@@ -1186,6 +1191,29 @@ exports.Prisma.RefreshTokenScalarFieldEnum = {
|
|
|
1186
1191
|
updated_at: 'updated_at'
|
|
1187
1192
|
};
|
|
1188
1193
|
|
|
1194
|
+
exports.Prisma.ReportingOverviewJobAnalyticsScalarFieldEnum = {
|
|
1195
|
+
id: 'id',
|
|
1196
|
+
organisation_id: 'organisation_id',
|
|
1197
|
+
job_description_id: 'job_description_id',
|
|
1198
|
+
job_code: 'job_code',
|
|
1199
|
+
job_number: 'job_number',
|
|
1200
|
+
hiring_manager_id: 'hiring_manager_id',
|
|
1201
|
+
opened_at: 'opened_at',
|
|
1202
|
+
target_closing_date: 'target_closing_date',
|
|
1203
|
+
closing_date: 'closing_date',
|
|
1204
|
+
is_open: 'is_open',
|
|
1205
|
+
closure_type: 'closure_type',
|
|
1206
|
+
time_to_hire_days: 'time_to_hire_days',
|
|
1207
|
+
in_consideration_count: 'in_consideration_count',
|
|
1208
|
+
updated_at: 'updated_at'
|
|
1209
|
+
};
|
|
1210
|
+
|
|
1211
|
+
exports.Prisma.ReportingOverviewJobRecruiterScalarFieldEnum = {
|
|
1212
|
+
id: 'id',
|
|
1213
|
+
job_description_id: 'job_description_id',
|
|
1214
|
+
recruiter_user_id: 'recruiter_user_id'
|
|
1215
|
+
};
|
|
1216
|
+
|
|
1189
1217
|
exports.Prisma.ResumeScalarFieldEnum = {
|
|
1190
1218
|
id: 'id',
|
|
1191
1219
|
user_id: 'user_id',
|
|
@@ -1831,6 +1859,11 @@ exports.OngoingEvaluationRoundStatus = exports.$Enums.OngoingEvaluationRoundStat
|
|
|
1831
1859
|
EVALUATED: 'EVALUATED'
|
|
1832
1860
|
};
|
|
1833
1861
|
|
|
1862
|
+
exports.OpenJobClosureType = exports.$Enums.OpenJobClosureType = {
|
|
1863
|
+
FILLED: 'FILLED',
|
|
1864
|
+
CANCELLED: 'CANCELLED'
|
|
1865
|
+
};
|
|
1866
|
+
|
|
1834
1867
|
exports.OrganisationSize = exports.$Enums.OrganisationSize = {
|
|
1835
1868
|
ONE_TO_TEN: 'ONE_TO_TEN',
|
|
1836
1869
|
ELEVEN_TO_FIFTY: 'ELEVEN_TO_FIFTY',
|
|
@@ -1942,6 +1975,8 @@ exports.Prisma.ModelName = {
|
|
|
1942
1975
|
AsyncOperation: 'AsyncOperation',
|
|
1943
1976
|
Question: 'Question',
|
|
1944
1977
|
RefreshToken: 'RefreshToken',
|
|
1978
|
+
ReportingOverviewJobAnalytics: 'ReportingOverviewJobAnalytics',
|
|
1979
|
+
ReportingOverviewJobRecruiter: 'ReportingOverviewJobRecruiter',
|
|
1945
1980
|
Resume: 'Resume',
|
|
1946
1981
|
ResumeData: 'ResumeData',
|
|
1947
1982
|
RoundAnalytics: 'RoundAnalytics',
|