@adaptware/eagles-db 0.1.80 → 0.1.81
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 +59 -5
- package/client/index-browser.js +62 -8
- package/client/index.d.ts +20791 -13614
- package/client/index.js +59 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +102 -27
- package/client/wasm.js +62 -8
- 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/applications.prisma +1 -1
package/client/index-browser.js
CHANGED
|
@@ -181,13 +181,19 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
181
181
|
resume_id: 'resume_id',
|
|
182
182
|
organisation_id: 'organisation_id',
|
|
183
183
|
job_description_id: 'job_description_id',
|
|
184
|
-
status: 'status',
|
|
185
184
|
fit_check_score: 'fit_check_score',
|
|
186
|
-
fit_check_status: 'fit_check_status',
|
|
187
185
|
applied_at: 'applied_at',
|
|
188
186
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
189
187
|
fit_check_id: 'fit_check_id',
|
|
190
188
|
round_no: 'round_no',
|
|
189
|
+
on_notice_period: 'on_notice_period',
|
|
190
|
+
expected_joining_date: 'expected_joining_date',
|
|
191
|
+
current_ctc: 'current_ctc',
|
|
192
|
+
expected_ctc: 'expected_ctc',
|
|
193
|
+
notice_period: 'notice_period',
|
|
194
|
+
preferred_location: 'preferred_location',
|
|
195
|
+
fit_check_status: 'fit_check_status',
|
|
196
|
+
status: 'status',
|
|
191
197
|
created_at: 'created_at',
|
|
192
198
|
updated_at: 'updated_at',
|
|
193
199
|
created_by: 'created_by',
|
|
@@ -289,6 +295,22 @@ exports.Prisma.AssignmentLibraryScalarFieldEnum = {
|
|
|
289
295
|
is_active: 'is_active'
|
|
290
296
|
};
|
|
291
297
|
|
|
298
|
+
exports.Prisma.AuthModuleScalarFieldEnum = {
|
|
299
|
+
id: 'id',
|
|
300
|
+
user_id: 'user_id',
|
|
301
|
+
provider: 'provider',
|
|
302
|
+
provider_account_id: 'provider_account_id',
|
|
303
|
+
access_token: 'access_token',
|
|
304
|
+
refresh_token: 'refresh_token',
|
|
305
|
+
id_token: 'id_token',
|
|
306
|
+
expires_at: 'expires_at',
|
|
307
|
+
token_type: 'token_type',
|
|
308
|
+
scope: 'scope',
|
|
309
|
+
is_active: 'is_active',
|
|
310
|
+
created_at: 'created_at',
|
|
311
|
+
updated_at: 'updated_at'
|
|
312
|
+
};
|
|
313
|
+
|
|
292
314
|
exports.Prisma.BudgetScalarFieldEnum = {
|
|
293
315
|
id: 'id',
|
|
294
316
|
job_type: 'job_type',
|
|
@@ -627,6 +649,19 @@ exports.Prisma.MessageScalarFieldEnum = {
|
|
|
627
649
|
is_active: 'is_active'
|
|
628
650
|
};
|
|
629
651
|
|
|
652
|
+
exports.Prisma.NotesScalarFieldEnum = {
|
|
653
|
+
id: 'id',
|
|
654
|
+
application_id: 'application_id',
|
|
655
|
+
user_id: 'user_id',
|
|
656
|
+
note: 'note',
|
|
657
|
+
pinned: 'pinned',
|
|
658
|
+
created_at: 'created_at',
|
|
659
|
+
updated_at: 'updated_at',
|
|
660
|
+
created_by: 'created_by',
|
|
661
|
+
updated_by: 'updated_by',
|
|
662
|
+
is_active: 'is_active'
|
|
663
|
+
};
|
|
664
|
+
|
|
630
665
|
exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
631
666
|
id: 'id',
|
|
632
667
|
application_id: 'application_id',
|
|
@@ -730,12 +765,23 @@ exports.Prisma.QuestionScalarFieldEnum = {
|
|
|
730
765
|
is_active: 'is_active'
|
|
731
766
|
};
|
|
732
767
|
|
|
768
|
+
exports.Prisma.RefreshTokenScalarFieldEnum = {
|
|
769
|
+
id: 'id',
|
|
770
|
+
user_id: 'user_id',
|
|
771
|
+
token: 'token',
|
|
772
|
+
is_active: 'is_active',
|
|
773
|
+
expires_at: 'expires_at',
|
|
774
|
+
created_at: 'created_at',
|
|
775
|
+
updated_at: 'updated_at'
|
|
776
|
+
};
|
|
777
|
+
|
|
733
778
|
exports.Prisma.ResumeScalarFieldEnum = {
|
|
734
779
|
id: 'id',
|
|
735
780
|
user_id: 'user_id',
|
|
736
781
|
organisation_id: 'organisation_id',
|
|
737
782
|
job_description_id: 'job_description_id',
|
|
738
783
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
784
|
+
file_hash: 'file_hash',
|
|
739
785
|
summary: 'summary',
|
|
740
786
|
created_at: 'created_at',
|
|
741
787
|
updated_at: 'updated_at',
|
|
@@ -886,6 +932,12 @@ exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
|
886
932
|
SYSTEM: 'SYSTEM'
|
|
887
933
|
};
|
|
888
934
|
|
|
935
|
+
exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|
|
936
|
+
RECOMMENDED: 'RECOMMENDED',
|
|
937
|
+
TO_REVIEW: 'TO_REVIEW',
|
|
938
|
+
NOT_RECOMMENDED: 'NOT_RECOMMENDED'
|
|
939
|
+
};
|
|
940
|
+
|
|
889
941
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
890
942
|
PENDING: 'PENDING',
|
|
891
943
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -893,12 +945,6 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
|
893
945
|
REJECTED: 'REJECTED'
|
|
894
946
|
};
|
|
895
947
|
|
|
896
|
-
exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|
|
897
|
-
RECOMMENDED: 'RECOMMENDED',
|
|
898
|
-
TO_REVIEW: 'TO_REVIEW',
|
|
899
|
-
NOT_RECOMMENDED: 'NOT_RECOMMENDED'
|
|
900
|
-
};
|
|
901
|
-
|
|
902
948
|
exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
|
|
903
949
|
MCQ: 'MCQ',
|
|
904
950
|
COMPETENCY: 'COMPETENCY',
|
|
@@ -912,6 +958,11 @@ exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
|
912
958
|
CANCELLED: 'CANCELLED'
|
|
913
959
|
};
|
|
914
960
|
|
|
961
|
+
exports.AuthProvider = exports.$Enums.AuthProvider = {
|
|
962
|
+
GOOGLE: 'GOOGLE',
|
|
963
|
+
MICROSOFT: 'MICROSOFT'
|
|
964
|
+
};
|
|
965
|
+
|
|
915
966
|
exports.JobType = exports.$Enums.JobType = {
|
|
916
967
|
Full_time: 'Full_time',
|
|
917
968
|
Part_time: 'Part_time',
|
|
@@ -1102,6 +1153,7 @@ exports.Prisma.ModelName = {
|
|
|
1102
1153
|
AssessmentQuestion: 'AssessmentQuestion',
|
|
1103
1154
|
Assignment: 'Assignment',
|
|
1104
1155
|
AssignmentLibrary: 'AssignmentLibrary',
|
|
1156
|
+
AuthModule: 'AuthModule',
|
|
1105
1157
|
Budget: 'Budget',
|
|
1106
1158
|
Calendly: 'Calendly',
|
|
1107
1159
|
CandidateProfile: 'CandidateProfile',
|
|
@@ -1120,11 +1172,13 @@ exports.Prisma.ModelName = {
|
|
|
1120
1172
|
JobProfile: 'JobProfile',
|
|
1121
1173
|
LiveAnalysis: 'LiveAnalysis',
|
|
1122
1174
|
Message: 'Message',
|
|
1175
|
+
Notes: 'Notes',
|
|
1123
1176
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1124
1177
|
Organisation: 'Organisation',
|
|
1125
1178
|
Permission: 'Permission',
|
|
1126
1179
|
AsyncOperation: 'AsyncOperation',
|
|
1127
1180
|
Question: 'Question',
|
|
1181
|
+
RefreshToken: 'RefreshToken',
|
|
1128
1182
|
Resume: 'Resume',
|
|
1129
1183
|
ResumeData: 'ResumeData',
|
|
1130
1184
|
Suggestion: 'Suggestion',
|