@adaptware/eagles-db 0.1.89 → 0.1.91

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-7d4997fdd0ff01d2c55043d3b7bd0fede7c4bc49e2f37f9a62e0db934d404fa8",
2
+ "name": "prisma-client-b822f9a12529dd19899f0a31d0c8b647ea7dbcf3f22c523606d94c2c8a3e78eb",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -180,10 +180,14 @@ model Assessment {
180
180
  //data
181
181
  score Float?
182
182
  feedback Json?
183
+ // Scheduled Deadline Window
183
184
  scheduled_start_time DateTime?
184
185
  scheduled_end_time DateTime?
186
+ /// Actual Start and End Time
185
187
  actual_start_time DateTime?
186
188
  actual_end_time DateTime?
189
+ /// Attempt Expires At
190
+ attempt_expires_at DateTime?
187
191
  /// Audit fields
188
192
  created_at DateTime @default(now())
189
193
  updated_at DateTime @updatedAt
@@ -1130,6 +1134,7 @@ model Organisation {
1130
1134
  integration_credentials IntegrationCredential[]
1131
1135
  zoho_sync_mappings ZohoSyncMapping[]
1132
1136
  assessments Assessment[]
1137
+ timezone String @default("Asia/Kolkata")
1133
1138
 
1134
1139
  @@index([name])
1135
1140
  }
package/client/wasm.js CHANGED
@@ -225,6 +225,7 @@ exports.Prisma.AssessmentScalarFieldEnum = {
225
225
  scheduled_end_time: 'scheduled_end_time',
226
226
  actual_start_time: 'actual_start_time',
227
227
  actual_end_time: 'actual_end_time',
228
+ attempt_expires_at: 'attempt_expires_at',
228
229
  created_at: 'created_at',
229
230
  updated_at: 'updated_at',
230
231
  created_by: 'created_by',
@@ -713,7 +714,8 @@ exports.Prisma.OrganisationScalarFieldEnum = {
713
714
  updated_by: 'updated_by',
714
715
  is_active: 'is_active',
715
716
  alias: 'alias',
716
- logo: 'logo'
717
+ logo: 'logo',
718
+ timezone: 'timezone'
717
719
  };
718
720
 
719
721
  exports.Prisma.PermissionScalarFieldEnum = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.1.89",
3
+ "version": "0.1.91",
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
  }