@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.
- package/client/edge.js +6 -4
- package/client/index-browser.js +3 -1
- package/client/index.d.ts +182 -3
- package/client/index.js +6 -4
- package/client/package.json +1 -1
- package/client/schema.prisma +5 -0
- package/client/wasm.js +3 -1
- package/package.json +1 -1
- package/prisma/schema/assessment.prisma +4 -0
- package/prisma/schema/organisation.prisma +1 -0
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -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
|
@@ -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
|