@adaptware/eagles-db 0.1.72 → 0.1.73
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 +12 -3
- package/client/index-browser.js +9 -0
- package/client/index.d.ts +270 -1
- package/client/index.js +12 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +9 -0
- package/client/wasm.js +9 -0
- package/package.json +1 -1
- package/prisma/schema/evaluationPlan.prisma +9 -0
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -460,6 +460,12 @@ enum EvaluationPlanType {
|
|
|
460
460
|
DELETED
|
|
461
461
|
}
|
|
462
462
|
|
|
463
|
+
enum DurationUnit {
|
|
464
|
+
MINUTES
|
|
465
|
+
HOURS
|
|
466
|
+
DAYS
|
|
467
|
+
}
|
|
468
|
+
|
|
463
469
|
model EvaluationPlan {
|
|
464
470
|
id String @id @default(uuid())
|
|
465
471
|
job_description_id String
|
|
@@ -477,6 +483,9 @@ model EvaluationPlan {
|
|
|
477
483
|
order_no Int?
|
|
478
484
|
details Json?
|
|
479
485
|
plan_type EvaluationPlanType @default(GENERIC)
|
|
486
|
+
duration Int?
|
|
487
|
+
duration_unit DurationUnit?
|
|
488
|
+
deadline Int?
|
|
480
489
|
created_by String
|
|
481
490
|
updated_by String
|
|
482
491
|
created_at DateTime @default(now())
|
package/client/wasm.js
CHANGED
|
@@ -379,6 +379,9 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
379
379
|
order_no: 'order_no',
|
|
380
380
|
details: 'details',
|
|
381
381
|
plan_type: 'plan_type',
|
|
382
|
+
duration: 'duration',
|
|
383
|
+
duration_unit: 'duration_unit',
|
|
384
|
+
deadline: 'deadline',
|
|
382
385
|
created_by: 'created_by',
|
|
383
386
|
updated_by: 'updated_by',
|
|
384
387
|
created_at: 'created_at',
|
|
@@ -957,6 +960,12 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
957
960
|
DELETED: 'DELETED'
|
|
958
961
|
};
|
|
959
962
|
|
|
963
|
+
exports.DurationUnit = exports.$Enums.DurationUnit = {
|
|
964
|
+
MINUTES: 'MINUTES',
|
|
965
|
+
HOURS: 'HOURS',
|
|
966
|
+
DAYS: 'DAYS'
|
|
967
|
+
};
|
|
968
|
+
|
|
960
969
|
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
961
970
|
NAUKRI: 'NAUKRI',
|
|
962
971
|
ZOHO_RECRUIT: 'ZOHO_RECRUIT',
|
package/package.json
CHANGED
|
@@ -47,6 +47,12 @@ enum EvaluationPlanType {
|
|
|
47
47
|
DELETED
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
+
enum DurationUnit {
|
|
51
|
+
MINUTES
|
|
52
|
+
HOURS
|
|
53
|
+
DAYS
|
|
54
|
+
}
|
|
55
|
+
|
|
50
56
|
model EvaluationPlan {
|
|
51
57
|
id String @id @default(uuid())
|
|
52
58
|
job_description_id String
|
|
@@ -64,6 +70,9 @@ model EvaluationPlan {
|
|
|
64
70
|
order_no Int?
|
|
65
71
|
details Json?
|
|
66
72
|
plan_type EvaluationPlanType @default(GENERIC)
|
|
73
|
+
duration Int?
|
|
74
|
+
duration_unit DurationUnit?
|
|
75
|
+
deadline Int?
|
|
67
76
|
created_by String
|
|
68
77
|
updated_by String
|
|
69
78
|
created_at DateTime @default(now())
|