@adaptware/eagles-db 0.1.75 → 0.1.76
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 -5
- package/client/index-browser.js +33 -0
- package/client/index.d.ts +17769 -13597
- package/client/index.js +38 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +45 -0
- package/client/wasm.js +33 -0
- package/package.json +2 -1
- package/prisma/schema/authModule.prisma +30 -0
- package/prisma/schema/refreshToken.prisma +10 -0
- package/prisma/schema/resume.prisma +1 -0
- package/prisma/schema/user.prisma +4 -2
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +0 -2
- package/prisma/migrations/migration_lock.toml +0 -3
package/client/index-browser.js
CHANGED
|
@@ -289,6 +289,22 @@ 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
|
+
is_active: 'is_active',
|
|
304
|
+
created_at: 'created_at',
|
|
305
|
+
updated_at: 'updated_at'
|
|
306
|
+
};
|
|
307
|
+
|
|
292
308
|
exports.Prisma.BudgetScalarFieldEnum = {
|
|
293
309
|
id: 'id',
|
|
294
310
|
job_type: 'job_type',
|
|
@@ -730,6 +746,16 @@ exports.Prisma.QuestionScalarFieldEnum = {
|
|
|
730
746
|
is_active: 'is_active'
|
|
731
747
|
};
|
|
732
748
|
|
|
749
|
+
exports.Prisma.RefreshTokenScalarFieldEnum = {
|
|
750
|
+
id: 'id',
|
|
751
|
+
user_id: 'user_id',
|
|
752
|
+
token: 'token',
|
|
753
|
+
is_active: 'is_active',
|
|
754
|
+
expires_at: 'expires_at',
|
|
755
|
+
created_at: 'created_at',
|
|
756
|
+
updated_at: 'updated_at'
|
|
757
|
+
};
|
|
758
|
+
|
|
733
759
|
exports.Prisma.ResumeScalarFieldEnum = {
|
|
734
760
|
id: 'id',
|
|
735
761
|
user_id: 'user_id',
|
|
@@ -913,6 +939,11 @@ exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
|
913
939
|
CANCELLED: 'CANCELLED'
|
|
914
940
|
};
|
|
915
941
|
|
|
942
|
+
exports.AuthProvider = exports.$Enums.AuthProvider = {
|
|
943
|
+
GOOGLE: 'GOOGLE',
|
|
944
|
+
MICROSOFT: 'MICROSOFT'
|
|
945
|
+
};
|
|
946
|
+
|
|
916
947
|
exports.JobType = exports.$Enums.JobType = {
|
|
917
948
|
Full_time: 'Full_time',
|
|
918
949
|
Part_time: 'Part_time',
|
|
@@ -1103,6 +1134,7 @@ exports.Prisma.ModelName = {
|
|
|
1103
1134
|
AssessmentQuestion: 'AssessmentQuestion',
|
|
1104
1135
|
Assignment: 'Assignment',
|
|
1105
1136
|
AssignmentLibrary: 'AssignmentLibrary',
|
|
1137
|
+
AuthModule: 'AuthModule',
|
|
1106
1138
|
Budget: 'Budget',
|
|
1107
1139
|
Calendly: 'Calendly',
|
|
1108
1140
|
CandidateProfile: 'CandidateProfile',
|
|
@@ -1126,6 +1158,7 @@ exports.Prisma.ModelName = {
|
|
|
1126
1158
|
Permission: 'Permission',
|
|
1127
1159
|
AsyncOperation: 'AsyncOperation',
|
|
1128
1160
|
Question: 'Question',
|
|
1161
|
+
RefreshToken: 'RefreshToken',
|
|
1129
1162
|
Resume: 'Resume',
|
|
1130
1163
|
ResumeData: 'ResumeData',
|
|
1131
1164
|
Suggestion: 'Suggestion',
|