@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-42369cda39a0e73acd87e1e4d41c7867c9341a03d95220463cad9fffb14a7f6a",
2
+ "name": "prisma-client-17abc0eaab024e3bb9622409063f1d33a662a30fd34525f7d646a2a84b60b322",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -789,9 +789,14 @@ model Interview {
789
789
  final_feedback Json?
790
790
 
791
791
  /// Self-scheduling
792
- reschedule_count Int @default(0)
793
- last_rescheduled_at DateTime?
794
- first_assigned_at DateTime?
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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 Int @default(0)
59
- last_rescheduled_at DateTime?
60
- first_assigned_at DateTime?
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())
@@ -43,6 +43,7 @@ model Organisation {
43
43
  integration_credentials IntegrationCredential[]
44
44
  zoho_sync_mappings ZohoSyncMapping[]
45
45
  assessments Assessment[]
46
+ timezone String @default("Asia/Kolkata")
46
47
 
47
48
  @@index([name])
48
49
  }