@adaptware/eagles-db 0.5.37 → 0.5.40
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 +15 -10
- package/client/index-browser.js +8 -3
- package/client/index.d.ts +1042 -12
- package/client/index.js +20 -15
- package/client/package.json +1 -1
- package/client/schema.prisma +68 -56
- package/client/wasm.js +15 -10
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/applications.prisma +34 -29
- package/prisma/schema/document.prisma +1 -0
- package/prisma/schema/jobApplicationFields.prisma +19 -15
- package/prisma/schema/jobApplicationResponse.prisma +7 -5
- package/prisma/schema/migrations/.DS_Store +0 -0
- package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/.DS_Store +0 -0
- package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/migration.sql +13 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +0 -2
package/client/index-browser.js
CHANGED
|
@@ -281,7 +281,10 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
281
281
|
updated_at: 'updated_at',
|
|
282
282
|
created_by: 'created_by',
|
|
283
283
|
updated_by: 'updated_by',
|
|
284
|
-
is_active: 'is_active'
|
|
284
|
+
is_active: 'is_active',
|
|
285
|
+
fit_check_report_document_id: 'fit_check_report_document_id',
|
|
286
|
+
fit_check_report_updated_flag: 'fit_check_report_updated_flag',
|
|
287
|
+
fit_check_report_data: 'fit_check_report_data'
|
|
285
288
|
};
|
|
286
289
|
|
|
287
290
|
exports.Prisma.ApprovalScalarFieldEnum = {
|
|
@@ -1266,7 +1269,8 @@ exports.Prisma.JobApplicationFieldScalarFieldEnum = {
|
|
|
1266
1269
|
created_by: 'created_by',
|
|
1267
1270
|
updated_by: 'updated_by',
|
|
1268
1271
|
created_at: 'created_at',
|
|
1269
|
-
updated_at: 'updated_at'
|
|
1272
|
+
updated_at: 'updated_at',
|
|
1273
|
+
order_no: 'order_no'
|
|
1270
1274
|
};
|
|
1271
1275
|
|
|
1272
1276
|
exports.Prisma.JobApplicationResponseScalarFieldEnum = {
|
|
@@ -1287,7 +1291,8 @@ exports.Prisma.JobApplicationResponseScalarFieldEnum = {
|
|
|
1287
1291
|
updated_at: 'updated_at',
|
|
1288
1292
|
created_by: 'created_by',
|
|
1289
1293
|
updated_by: 'updated_by',
|
|
1290
|
-
is_active: 'is_active'
|
|
1294
|
+
is_active: 'is_active',
|
|
1295
|
+
order_no: 'order_no'
|
|
1291
1296
|
};
|
|
1292
1297
|
|
|
1293
1298
|
exports.Prisma.JobApplicationTemplateScalarFieldEnum = {
|