@adaptware/eagles-db 0.3.1 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.3.1",
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
@@ -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
  }