@adaptware/eagles-db 0.1.66 → 0.1.67
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 +16 -3
- package/client/index-browser.js +13 -0
- package/client/index.d.ts +2092 -213
- package/client/index.js +16 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +32 -17
- package/client/wasm.js +13 -0
- package/package.json +1 -1
- package/prisma/schema/assignment.prisma +1 -0
- package/prisma/schema/interview.prisma +2 -1
- package/prisma/schema/liveAnalysis.prisma +17 -0
package/client/index-browser.js
CHANGED
|
@@ -266,6 +266,7 @@ exports.Prisma.AssignmentScalarFieldEnum = {
|
|
|
266
266
|
status: 'status',
|
|
267
267
|
cancel_reason: 'cancel_reason',
|
|
268
268
|
solution_url: 'solution_url',
|
|
269
|
+
zip_url: 'zip_url',
|
|
269
270
|
scheduled_start_time: 'scheduled_start_time',
|
|
270
271
|
scheduled_end_time: 'scheduled_end_time',
|
|
271
272
|
created_at: 'created_at',
|
|
@@ -601,6 +602,17 @@ exports.Prisma.JobProfileScalarFieldEnum = {
|
|
|
601
602
|
is_active: 'is_active'
|
|
602
603
|
};
|
|
603
604
|
|
|
605
|
+
exports.Prisma.LiveAnalysisScalarFieldEnum = {
|
|
606
|
+
id: 'id',
|
|
607
|
+
interview_id: 'interview_id',
|
|
608
|
+
analysis: 'analysis',
|
|
609
|
+
created_at: 'created_at',
|
|
610
|
+
updated_at: 'updated_at',
|
|
611
|
+
created_by: 'created_by',
|
|
612
|
+
updated_by: 'updated_by',
|
|
613
|
+
is_active: 'is_active'
|
|
614
|
+
};
|
|
615
|
+
|
|
604
616
|
exports.Prisma.MessageScalarFieldEnum = {
|
|
605
617
|
id: 'id',
|
|
606
618
|
sender_id: 'sender_id',
|
|
@@ -1096,6 +1108,7 @@ exports.Prisma.ModelName = {
|
|
|
1096
1108
|
JobDescription: 'JobDescription',
|
|
1097
1109
|
JobDescriptionData: 'JobDescriptionData',
|
|
1098
1110
|
JobProfile: 'JobProfile',
|
|
1111
|
+
LiveAnalysis: 'LiveAnalysis',
|
|
1099
1112
|
Message: 'Message',
|
|
1100
1113
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1101
1114
|
Organisation: 'Organisation',
|