@adaptware/eagles-db 0.1.83 → 0.1.85
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 +7 -5
- package/client/index-browser.js +4 -2
- package/client/index.d.ts +264 -98
- package/client/index.js +7 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +3 -1
- package/client/wasm.js +4 -2
- package/package.json +1 -1
- package/prisma/schema/authModule.prisma +1 -0
- package/prisma/schema/user.prisma +2 -1
package/client/index-browser.js
CHANGED
|
@@ -843,6 +843,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
843
843
|
email: 'email',
|
|
844
844
|
password: 'password',
|
|
845
845
|
role_id: 'role_id',
|
|
846
|
+
organisation_id: 'organisation_id',
|
|
846
847
|
google_id: 'google_id',
|
|
847
848
|
refresh_token: 'refresh_token',
|
|
848
849
|
created_at: 'created_at',
|
|
@@ -852,7 +853,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
852
853
|
is_active: 'is_active',
|
|
853
854
|
is_self_registered: 'is_self_registered',
|
|
854
855
|
permission_id: 'permission_id',
|
|
855
|
-
|
|
856
|
+
preferences: 'preferences',
|
|
856
857
|
profile_created: 'profile_created',
|
|
857
858
|
first_login_status: 'first_login_status',
|
|
858
859
|
name: 'name',
|
|
@@ -1002,7 +1003,8 @@ exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
|
1002
1003
|
exports.AuthProvider = exports.$Enums.AuthProvider = {
|
|
1003
1004
|
GOOGLE: 'GOOGLE',
|
|
1004
1005
|
MICROSOFT: 'MICROSOFT',
|
|
1005
|
-
ZOOM: 'ZOOM'
|
|
1006
|
+
ZOOM: 'ZOOM',
|
|
1007
|
+
CALENDLY: 'CALENDLY'
|
|
1006
1008
|
};
|
|
1007
1009
|
|
|
1008
1010
|
exports.JobType = exports.$Enums.JobType = {
|