@adaptware/eagles-db 0.3.0 → 0.3.2
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 +4 -3
- package/client/index-browser.js +1 -0
- package/client/index.d.ts +107 -1
- package/client/index.js +4 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +8 -3
- package/client/wasm.js +1 -0
- package/package.json +1 -1
- package/prisma/schema/assessment.prisma +4 -0
- package/prisma/schema/interview.prisma +8 -3
- package/prisma/schema/organisation.prisma +1 -0
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -789,9 +789,14 @@ model Interview {
|
|
|
789
789
|
final_feedback Json?
|
|
790
790
|
|
|
791
791
|
/// Self-scheduling
|
|
792
|
-
reschedule_count
|
|
793
|
-
last_rescheduled_at
|
|
794
|
-
first_assigned_at
|
|
792
|
+
reschedule_count Int @default(0)
|
|
793
|
+
last_rescheduled_at DateTime?
|
|
794
|
+
first_assigned_at DateTime?
|
|
795
|
+
/// True while the candidate is waiting on recruiter action (typically a
|
|
796
|
+
/// reassign) after they submitted alternate slots via "None match" /
|
|
797
|
+
/// "Suggest times". Cleared whenever the recruiter routes a fresh
|
|
798
|
+
/// request via `upsertInterviewRequestRecord`.
|
|
799
|
+
awaiting_recruiter_action Boolean @default(false)
|
|
795
800
|
|
|
796
801
|
/// Audit fields
|
|
797
802
|
created_at DateTime @default(now())
|
package/client/wasm.js
CHANGED
|
@@ -545,6 +545,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
545
545
|
reschedule_count: 'reschedule_count',
|
|
546
546
|
last_rescheduled_at: 'last_rescheduled_at',
|
|
547
547
|
first_assigned_at: 'first_assigned_at',
|
|
548
|
+
awaiting_recruiter_action: 'awaiting_recruiter_action',
|
|
548
549
|
created_at: 'created_at',
|
|
549
550
|
updated_at: 'updated_at',
|
|
550
551
|
created_by: 'created_by',
|
package/package.json
CHANGED
|
@@ -8,10 +8,14 @@ model Assessment {
|
|
|
8
8
|
//data
|
|
9
9
|
score Float?
|
|
10
10
|
feedback Json?
|
|
11
|
+
// Scheduled Deadline Window
|
|
11
12
|
scheduled_start_time DateTime?
|
|
12
13
|
scheduled_end_time DateTime?
|
|
14
|
+
/// Actual Start and End Time
|
|
13
15
|
actual_start_time DateTime?
|
|
14
16
|
actual_end_time DateTime?
|
|
17
|
+
/// Attempt Expires At
|
|
18
|
+
attempt_expires_at DateTime?
|
|
15
19
|
/// Audit fields
|
|
16
20
|
created_at DateTime @default(now())
|
|
17
21
|
updated_at DateTime @updatedAt
|
|
@@ -55,9 +55,14 @@ model Interview {
|
|
|
55
55
|
final_feedback Json?
|
|
56
56
|
|
|
57
57
|
/// Self-scheduling
|
|
58
|
-
reschedule_count
|
|
59
|
-
last_rescheduled_at
|
|
60
|
-
first_assigned_at
|
|
58
|
+
reschedule_count Int @default(0)
|
|
59
|
+
last_rescheduled_at DateTime?
|
|
60
|
+
first_assigned_at DateTime?
|
|
61
|
+
/// True while the candidate is waiting on recruiter action (typically a
|
|
62
|
+
/// reassign) after they submitted alternate slots via "None match" /
|
|
63
|
+
/// "Suggest times". Cleared whenever the recruiter routes a fresh
|
|
64
|
+
/// request via `upsertInterviewRequestRecord`.
|
|
65
|
+
awaiting_recruiter_action Boolean @default(false)
|
|
61
66
|
|
|
62
67
|
/// Audit fields
|
|
63
68
|
created_at DateTime @default(now())
|