@adaptware/eagles-db 0.2.0 → 0.3.1

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-6023a2617dcdd2606af82aad6d49faf562228688b24192b2789d9ad9989e1fea",
2
+ "name": "prisma-client-17abc0eaab024e3bb9622409063f1d33a662a30fd34525f7d646a2a84b60b322",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -789,8 +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?
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)
794
800
 
795
801
  /// Audit fields
796
802
  created_at DateTime @default(now())
package/client/wasm.js CHANGED
@@ -544,6 +544,8 @@ exports.Prisma.InterviewScalarFieldEnum = {
544
544
  final_feedback: 'final_feedback',
545
545
  reschedule_count: 'reschedule_count',
546
546
  last_rescheduled_at: 'last_rescheduled_at',
547
+ first_assigned_at: 'first_assigned_at',
548
+ awaiting_recruiter_action: 'awaiting_recruiter_action',
547
549
  created_at: 'created_at',
548
550
  updated_at: 'updated_at',
549
551
  created_by: 'created_by',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.2.0",
3
+ "version": "0.3.1",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -55,8 +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?
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)
60
66
 
61
67
  /// Audit fields
62
68
  created_at DateTime @default(now())