@adaptware/eagles-db 0.1.74 → 0.1.75
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 +6 -26
- package/client/index-browser.js +1 -21
- package/client/index.d.ts +289 -2406
- package/client/index.js +6 -26
- package/client/package.json +1 -1
- package/client/schema.prisma +1 -31
- package/client/wasm.js +1 -21
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +2 -0
- package/prisma/migrations/migration_lock.toml +3 -0
- package/prisma/schema/resume.prisma +1 -0
- package/prisma/schema/user.prisma +0 -1
- package/prisma/schema/authModule.prisma +0 -29
package/client/index-browser.js
CHANGED
|
@@ -289,21 +289,6 @@ exports.Prisma.AssignmentLibraryScalarFieldEnum = {
|
|
|
289
289
|
is_active: 'is_active'
|
|
290
290
|
};
|
|
291
291
|
|
|
292
|
-
exports.Prisma.AuthModuleScalarFieldEnum = {
|
|
293
|
-
id: 'id',
|
|
294
|
-
user_id: 'user_id',
|
|
295
|
-
provider: 'provider',
|
|
296
|
-
provider_account_id: 'provider_account_id',
|
|
297
|
-
access_token: 'access_token',
|
|
298
|
-
refresh_token: 'refresh_token',
|
|
299
|
-
id_token: 'id_token',
|
|
300
|
-
expires_at: 'expires_at',
|
|
301
|
-
token_type: 'token_type',
|
|
302
|
-
scope: 'scope',
|
|
303
|
-
created_at: 'created_at',
|
|
304
|
-
updated_at: 'updated_at'
|
|
305
|
-
};
|
|
306
|
-
|
|
307
292
|
exports.Prisma.BudgetScalarFieldEnum = {
|
|
308
293
|
id: 'id',
|
|
309
294
|
job_type: 'job_type',
|
|
@@ -751,6 +736,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
751
736
|
organisation_id: 'organisation_id',
|
|
752
737
|
job_description_id: 'job_description_id',
|
|
753
738
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
739
|
+
file_hash: 'file_hash',
|
|
754
740
|
summary: 'summary',
|
|
755
741
|
created_at: 'created_at',
|
|
756
742
|
updated_at: 'updated_at',
|
|
@@ -927,11 +913,6 @@ exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
|
927
913
|
CANCELLED: 'CANCELLED'
|
|
928
914
|
};
|
|
929
915
|
|
|
930
|
-
exports.AuthProvider = exports.$Enums.AuthProvider = {
|
|
931
|
-
GOOGLE: 'GOOGLE',
|
|
932
|
-
MICROSOFT: 'MICROSOFT'
|
|
933
|
-
};
|
|
934
|
-
|
|
935
916
|
exports.JobType = exports.$Enums.JobType = {
|
|
936
917
|
Full_time: 'Full_time',
|
|
937
918
|
Part_time: 'Part_time',
|
|
@@ -1122,7 +1103,6 @@ exports.Prisma.ModelName = {
|
|
|
1122
1103
|
AssessmentQuestion: 'AssessmentQuestion',
|
|
1123
1104
|
Assignment: 'Assignment',
|
|
1124
1105
|
AssignmentLibrary: 'AssignmentLibrary',
|
|
1125
|
-
AuthModule: 'AuthModule',
|
|
1126
1106
|
Budget: 'Budget',
|
|
1127
1107
|
Calendly: 'Calendly',
|
|
1128
1108
|
CandidateProfile: 'CandidateProfile',
|