@adaptware/eagles-db 0.1.74 → 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 +16 -3
- package/client/index-browser.js +13 -0
- package/client/index.d.ts +2357 -302
- package/client/index.js +16 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +17 -2
- package/client/wasm.js +13 -0
- package/package.json +2 -1
- package/prisma/schema/authModule.prisma +15 -14
- package/prisma/schema/refreshToken.prisma +10 -0
- package/prisma/schema/resume.prisma +2 -0
- package/prisma/schema/user.prisma +4 -3
package/client/index-browser.js
CHANGED
|
@@ -300,6 +300,7 @@ exports.Prisma.AuthModuleScalarFieldEnum = {
|
|
|
300
300
|
expires_at: 'expires_at',
|
|
301
301
|
token_type: 'token_type',
|
|
302
302
|
scope: 'scope',
|
|
303
|
+
is_active: 'is_active',
|
|
303
304
|
created_at: 'created_at',
|
|
304
305
|
updated_at: 'updated_at'
|
|
305
306
|
};
|
|
@@ -745,12 +746,23 @@ exports.Prisma.QuestionScalarFieldEnum = {
|
|
|
745
746
|
is_active: 'is_active'
|
|
746
747
|
};
|
|
747
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
|
+
|
|
748
759
|
exports.Prisma.ResumeScalarFieldEnum = {
|
|
749
760
|
id: 'id',
|
|
750
761
|
user_id: 'user_id',
|
|
751
762
|
organisation_id: 'organisation_id',
|
|
752
763
|
job_description_id: 'job_description_id',
|
|
753
764
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
765
|
+
file_hash: 'file_hash',
|
|
754
766
|
summary: 'summary',
|
|
755
767
|
created_at: 'created_at',
|
|
756
768
|
updated_at: 'updated_at',
|
|
@@ -1146,6 +1158,7 @@ exports.Prisma.ModelName = {
|
|
|
1146
1158
|
Permission: 'Permission',
|
|
1147
1159
|
AsyncOperation: 'AsyncOperation',
|
|
1148
1160
|
Question: 'Question',
|
|
1161
|
+
RefreshToken: 'RefreshToken',
|
|
1149
1162
|
Resume: 'Resume',
|
|
1150
1163
|
ResumeData: 'ResumeData',
|
|
1151
1164
|
Suggestion: 'Suggestion',
|