@adaptware/eagles-db 0.1.57 → 0.1.59
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 +88 -8
- package/client/index-browser.js +83 -3
- package/client/index.d.ts +6884 -700
- package/client/index.js +88 -8
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +119 -24
- package/client/wasm.js +83 -3
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -259,9 +259,8 @@ exports.Prisma.AssignmentScalarFieldEnum = {
|
|
|
259
259
|
job_description_id: 'job_description_id',
|
|
260
260
|
organisation_id: 'organisation_id',
|
|
261
261
|
ongoing_evaluation_id: 'ongoing_evaluation_id',
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
ai_reasoning: 'ai_reasoning',
|
|
262
|
+
overallScore: 'overallScore',
|
|
263
|
+
feedback: 'feedback',
|
|
265
264
|
status: 'status',
|
|
266
265
|
cancel_reason: 'cancel_reason',
|
|
267
266
|
solution_url: 'solution_url',
|
|
@@ -444,6 +443,51 @@ exports.Prisma.GoogleScalarFieldEnum = {
|
|
|
444
443
|
is_active: 'is_active'
|
|
445
444
|
};
|
|
446
445
|
|
|
446
|
+
exports.Prisma.IntegrationCredentialScalarFieldEnum = {
|
|
447
|
+
id: 'id',
|
|
448
|
+
organisation_id: 'organisation_id',
|
|
449
|
+
provider: 'provider',
|
|
450
|
+
auth_type: 'auth_type',
|
|
451
|
+
access_token: 'access_token',
|
|
452
|
+
refresh_token: 'refresh_token',
|
|
453
|
+
token_expires_at: 'token_expires_at',
|
|
454
|
+
api_key: 'api_key',
|
|
455
|
+
api_secret: 'api_secret',
|
|
456
|
+
metadata: 'metadata',
|
|
457
|
+
is_active: 'is_active',
|
|
458
|
+
created_at: 'created_at',
|
|
459
|
+
updated_at: 'updated_at',
|
|
460
|
+
created_by: 'created_by',
|
|
461
|
+
updated_by: 'updated_by'
|
|
462
|
+
};
|
|
463
|
+
|
|
464
|
+
exports.Prisma.IntegrationJobSyncScalarFieldEnum = {
|
|
465
|
+
id: 'id',
|
|
466
|
+
job_description_id: 'job_description_id',
|
|
467
|
+
provider: 'provider',
|
|
468
|
+
external_id: 'external_id',
|
|
469
|
+
sync_enabled: 'sync_enabled',
|
|
470
|
+
last_synced_at: 'last_synced_at',
|
|
471
|
+
sync_direction: 'sync_direction',
|
|
472
|
+
metadata: 'metadata',
|
|
473
|
+
created_at: 'created_at',
|
|
474
|
+
updated_at: 'updated_at'
|
|
475
|
+
};
|
|
476
|
+
|
|
477
|
+
exports.Prisma.ZohoSyncMappingScalarFieldEnum = {
|
|
478
|
+
id: 'id',
|
|
479
|
+
organisation_id: 'organisation_id',
|
|
480
|
+
entity_type: 'entity_type',
|
|
481
|
+
treadspace_id: 'treadspace_id',
|
|
482
|
+
zoho_module: 'zoho_module',
|
|
483
|
+
zoho_record_id: 'zoho_record_id',
|
|
484
|
+
last_synced_at: 'last_synced_at',
|
|
485
|
+
sync_status: 'sync_status',
|
|
486
|
+
error_message: 'error_message',
|
|
487
|
+
created_at: 'created_at',
|
|
488
|
+
updated_at: 'updated_at'
|
|
489
|
+
};
|
|
490
|
+
|
|
447
491
|
exports.Prisma.InterviewScalarFieldEnum = {
|
|
448
492
|
id: 'id',
|
|
449
493
|
organisation_id: 'organisation_id',
|
|
@@ -753,6 +797,10 @@ exports.Prisma.NullableJsonNullValueInput = {
|
|
|
753
797
|
JsonNull: Prisma.JsonNull
|
|
754
798
|
};
|
|
755
799
|
|
|
800
|
+
exports.Prisma.JsonNullValueInput = {
|
|
801
|
+
JsonNull: Prisma.JsonNull
|
|
802
|
+
};
|
|
803
|
+
|
|
756
804
|
exports.Prisma.QueryMode = {
|
|
757
805
|
default: 'default',
|
|
758
806
|
insensitive: 'insensitive'
|
|
@@ -871,6 +919,35 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
871
919
|
DELETED: 'DELETED'
|
|
872
920
|
};
|
|
873
921
|
|
|
922
|
+
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
923
|
+
NAUKRI: 'NAUKRI',
|
|
924
|
+
ZOHO_RECRUIT: 'ZOHO_RECRUIT'
|
|
925
|
+
};
|
|
926
|
+
|
|
927
|
+
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
928
|
+
OAUTH2: 'OAUTH2',
|
|
929
|
+
API_KEY: 'API_KEY'
|
|
930
|
+
};
|
|
931
|
+
|
|
932
|
+
exports.SyncDirection = exports.$Enums.SyncDirection = {
|
|
933
|
+
PUSH: 'PUSH',
|
|
934
|
+
PULL: 'PULL',
|
|
935
|
+
BIDIRECTIONAL: 'BIDIRECTIONAL'
|
|
936
|
+
};
|
|
937
|
+
|
|
938
|
+
exports.SyncEntityType = exports.$Enums.SyncEntityType = {
|
|
939
|
+
CANDIDATE: 'CANDIDATE',
|
|
940
|
+
JOB_OPENING: 'JOB_OPENING',
|
|
941
|
+
INTERVIEW: 'INTERVIEW',
|
|
942
|
+
APPLICATION: 'APPLICATION'
|
|
943
|
+
};
|
|
944
|
+
|
|
945
|
+
exports.SyncStatus = exports.$Enums.SyncStatus = {
|
|
946
|
+
SYNCED: 'SYNCED',
|
|
947
|
+
PENDING: 'PENDING',
|
|
948
|
+
FAILED: 'FAILED'
|
|
949
|
+
};
|
|
950
|
+
|
|
874
951
|
exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
875
952
|
INTERVIEW_REQUESTED: 'INTERVIEW_REQUESTED',
|
|
876
953
|
SCHEDULED: 'SCHEDULED',
|
|
@@ -978,6 +1055,9 @@ exports.Prisma.ModelName = {
|
|
|
978
1055
|
Feedback: 'Feedback',
|
|
979
1056
|
FitCheck: 'FitCheck',
|
|
980
1057
|
Google: 'Google',
|
|
1058
|
+
IntegrationCredential: 'IntegrationCredential',
|
|
1059
|
+
IntegrationJobSync: 'IntegrationJobSync',
|
|
1060
|
+
ZohoSyncMapping: 'ZohoSyncMapping',
|
|
981
1061
|
Interview: 'Interview',
|
|
982
1062
|
InterviewNotes: 'InterviewNotes',
|
|
983
1063
|
JobDescription: 'JobDescription',
|