@adaptware/eagles-db 0.4.25 → 0.4.26
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 +11 -3
- package/client/index-browser.js +8 -0
- package/client/index.d.ts +227 -2
- package/client/index.js +11 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +20 -10
- package/client/wasm.js +11 -3
- package/package.json +1 -1
- package/prisma/schema/applications.prisma +1 -0
- package/prisma/schema/evaluationPlan.prisma +9 -0
- package/prisma/schema/migrations/20260626120000_add_evaluation_plan_share_scope/migration.sql +14 -0
- package/prisma/schema/migrations/20260626140000_add_evaluation_comment/migration.sql +2 -0
package/client/index-browser.js
CHANGED
|
@@ -194,6 +194,7 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
194
194
|
expected_ctc: 'expected_ctc',
|
|
195
195
|
notice_period: 'notice_period',
|
|
196
196
|
preferred_location: 'preferred_location',
|
|
197
|
+
evaluationComment: 'evaluationComment',
|
|
197
198
|
fit_check_status: 'fit_check_status',
|
|
198
199
|
status: 'status',
|
|
199
200
|
created_at: 'created_at',
|
|
@@ -487,6 +488,7 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
487
488
|
order_no: 'order_no',
|
|
488
489
|
details: 'details',
|
|
489
490
|
plan_type: 'plan_type',
|
|
491
|
+
share_scope: 'share_scope',
|
|
490
492
|
duration: 'duration',
|
|
491
493
|
duration_unit: 'duration_unit',
|
|
492
494
|
deadline: 'deadline',
|
|
@@ -1252,6 +1254,12 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
1252
1254
|
DELETED: 'DELETED'
|
|
1253
1255
|
};
|
|
1254
1256
|
|
|
1257
|
+
exports.EvaluationPlanShareScope = exports.$Enums.EvaluationPlanShareScope = {
|
|
1258
|
+
PRIVATE: 'PRIVATE',
|
|
1259
|
+
CREATOR: 'CREATOR',
|
|
1260
|
+
ORGANIZATION: 'ORGANIZATION'
|
|
1261
|
+
};
|
|
1262
|
+
|
|
1255
1263
|
exports.DurationUnit = exports.$Enums.DurationUnit = {
|
|
1256
1264
|
MINUTES: 'MINUTES',
|
|
1257
1265
|
HOURS: 'HOURS',
|