@adaptware/eagles-db 0.5.43 → 0.5.45
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 +98 -22
- package/client/index-browser.js +91 -16
- package/client/index.d.ts +5968 -2561
- package/client/index.js +103 -27
- package/client/package.json +1 -1
- package/client/schema.prisma +176 -61
- package/client/wasm.js +98 -22
- package/package.json +1 -1
- package/prisma/schema/applications.prisma +18 -19
- package/prisma/schema/evaluationPlan.prisma +7 -0
- package/prisma/schema/integration.prisma +1 -0
- package/prisma/schema/interview.prisma +0 -1
- package/prisma/schema/jobApplicationFields.prisma +15 -17
- package/prisma/schema/jobApplicationResponse.prisma +3 -4
- package/prisma/schema/migrations/20260522120000_ongoing_evaluation_record_kind/migration.sql +25 -0
- package/prisma/schema/migrations/20260523120000_replace_record_kind_with_is_committed/migration.sql +24 -0
- package/prisma/schema/migrations/20260528120000_drop_job_description_recommendation_config/migration.sql +2 -0
- package/prisma/schema/migrations/20260710120000_add_resume_rendered_export_fields/migration.sql +9 -0
- package/prisma/schema/migrations/20260714120000_add_job_description_display_html_document/migration.sql +8 -0
- package/prisma/schema/migrations/20260716120000_add_offer_letters/migration.sql +183 -0
- package/prisma/schema/migrations/20260716140000_offer_schema_refinements/migration.sql +13 -0
- package/prisma/schema/migrations/20260716160000_offer_schema_hardening/migration.sql +95 -0
- package/prisma/schema/migrations/20260716180000_offer_letter_template_config/migration.sql +2 -0
- package/prisma/schema/migrations/20260716190000_add_evaluation_focus_areas/migration.sql +6 -0
- package/prisma/schema/migrations/20260717120000_offer_workflow_approval/migration.sql +30 -0
- package/prisma/schema/migrations/20260720120000_offer_letter_template_is_draft/migration.sql +5 -0
- package/prisma/schema/migrations/20260720140000_offer_status_split/migration.sql +51 -0
- package/prisma/schema/migrations/20260720140001_offer_status_split_backfill/migration.sql +37 -0
- package/prisma/schema/migrations/20260722120000_offer_draft_edited_html/migration.sql +13 -0
- package/prisma/schema/migrations/20260723150000_offer_withdraw_actor_no_show_reason/migration.sql +10 -0
- package/prisma/schema/migrations/20260724120000_open_job_offer_accepted_declined_counts/migration.sql +7 -0
- package/prisma/schema/migrations/20260811120000_add_integration_provider_razorpay/migration.sql +6 -0
- package/prisma/schema/migrations/20260812120000_add_billing_transactions/migration.sql +49 -0
- package/prisma/schema/migrations/20260812130000_drop_billing_transaction_gst_snapshots/migration.sql +3 -0
- package/prisma/schema/migrations/20260812180000_billing_transaction_invoice_number/migration.sql +5 -0
- package/prisma/schema/migrations/20260813120000_payment_webhooks_gst_refunds/migration.sql +79 -0
- package/prisma/schema/migrations/20260813140000_platform_gst_profiles/migration.sql +49 -0
- package/prisma/schema/migrations/20260813150000_rename_gst_profiles/migration.sql +53 -0
- package/prisma/schema/migrations/20260813160000_remove_gst_billing/migration.sql +16 -0
- package/prisma/schema/migrations/20260813170000_billing_licensing_unrecoverable/migration.sql +2 -0
- package/prisma/schema/migrations/20260813180000_billing_transaction_payment_method/migration.sql +2 -0
- package/prisma/schema/migrations/20260814090000_billing_transaction_purchaser_email/migration.sql +2 -0
- package/prisma/schema/migrations/20260816100000_billing_product_organisations/migration.sql +35 -0
- package/prisma/schema/migrations/20260816120000_merge_billing_product_organisations/migration.sql +25 -0
- package/prisma/schema/migrations/20260817120000_billing_payment_mismatch/migration.sql +7 -0
- package/prisma/schema/migrations/20260819120000_billing_product_prices/migration.sql +62 -0
- package/prisma/schema/migrations/20260819140000_billing_exchange_rates/migration.sql +25 -0
- package/prisma/schema/migrations/20260820120000_billing_transaction_failure_category/migration.sql +31 -0
- package/prisma/schema/migrations/20260820130000_backfill_billing_transaction_failure_details/migration.sql +23 -0
- package/prisma/schema/migrations/20260820140000_drop_billing_product_price_overrides/migration.sql +2 -0
- package/prisma/schema/migrations/20260821120000_drop_billing_product_and_mock_licensing/migration.sql +38 -0
- package/prisma/schema/migrations/20260824120000_billing_transaction_purchase_display_name/migration.sql +2 -0
- package/prisma/schema/migrations/20260831120000_user_communication_email/migration.sql +6 -0
- package/prisma/schema/migrations/20260901143000_assessment_question_bank_state/migration.sql +15 -0
- package/prisma/schema/migrations/20260902110000_drop_unused_feedback_table/migration.sql +2 -0
- package/prisma/schema/migrations/20260902120000_question_category_two_values/migration.sql +16 -0
- package/prisma/schema/migrations/20260902143000_question_bank_item_key/migration.sql +17 -0
- package/prisma/schema/migrations/20260903120000_split_round_type_assessment/migration.sql +9 -0
- package/prisma/schema/migrations/20260904110000_restore_round_type_assessment_enum/migration.sql +5 -0
- package/prisma/schema/migrations/20260904120000_revert_wrong_split_assessment_round_types/migration.sql +42 -0
- package/prisma/schema/organisation.prisma +2 -0
- package/prisma/schema/payment/billingTransaction.prisma +83 -0
- package/prisma/schema/payment/paymentWebhookEvent.prisma +28 -0
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/feedback.prisma +0 -19
- package/prisma/schema/migrations/.DS_Store +0 -0
- package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -332,7 +332,8 @@ exports.Prisma.AssessmentLibraryScalarFieldEnum = {
|
|
|
332
332
|
updated_at: 'updated_at',
|
|
333
333
|
created_by: 'created_by',
|
|
334
334
|
updated_by: 'updated_by',
|
|
335
|
-
is_active: 'is_active'
|
|
335
|
+
is_active: 'is_active',
|
|
336
|
+
generation_state: 'generation_state'
|
|
336
337
|
};
|
|
337
338
|
|
|
338
339
|
exports.Prisma.AssessmentQuestionScalarFieldEnum = {
|
|
@@ -827,19 +828,6 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
827
828
|
is_active: 'is_active'
|
|
828
829
|
};
|
|
829
830
|
|
|
830
|
-
exports.Prisma.FeedbackScalarFieldEnum = {
|
|
831
|
-
id: 'id',
|
|
832
|
-
interview_id: 'interview_id',
|
|
833
|
-
order_no: 'order_no',
|
|
834
|
-
ai_feedback: 'ai_feedback',
|
|
835
|
-
human_feedback: 'human_feedback',
|
|
836
|
-
created_at: 'created_at',
|
|
837
|
-
updated_at: 'updated_at',
|
|
838
|
-
created_by: 'created_by',
|
|
839
|
-
updated_by: 'updated_by',
|
|
840
|
-
is_active: 'is_active'
|
|
841
|
-
};
|
|
842
|
-
|
|
843
831
|
exports.Prisma.FitCheckScalarFieldEnum = {
|
|
844
832
|
id: 'id',
|
|
845
833
|
organisation_id: 'organisation_id',
|
|
@@ -1830,6 +1818,46 @@ exports.Prisma.OrganisationConfigScalarFieldEnum = {
|
|
|
1830
1818
|
updated_at: 'updated_at'
|
|
1831
1819
|
};
|
|
1832
1820
|
|
|
1821
|
+
exports.Prisma.BillingTransactionScalarFieldEnum = {
|
|
1822
|
+
id: 'id',
|
|
1823
|
+
organisation_id: 'organisation_id',
|
|
1824
|
+
purchase_reference: 'purchase_reference',
|
|
1825
|
+
purchase_display_name: 'purchase_display_name',
|
|
1826
|
+
transaction_type: 'transaction_type',
|
|
1827
|
+
status: 'status',
|
|
1828
|
+
failure_category: 'failure_category',
|
|
1829
|
+
failure_reason: 'failure_reason',
|
|
1830
|
+
amount: 'amount',
|
|
1831
|
+
currency: 'currency',
|
|
1832
|
+
razorpay_order_id: 'razorpay_order_id',
|
|
1833
|
+
razorpay_payment_id: 'razorpay_payment_id',
|
|
1834
|
+
payment_method: 'payment_method',
|
|
1835
|
+
razorpay_subscription_id: 'razorpay_subscription_id',
|
|
1836
|
+
razorpay_refund_id: 'razorpay_refund_id',
|
|
1837
|
+
refund_reason: 'refund_reason',
|
|
1838
|
+
refund_amount: 'refund_amount',
|
|
1839
|
+
idempotency_key: 'idempotency_key',
|
|
1840
|
+
invoice_number: 'invoice_number',
|
|
1841
|
+
purchaser_email: 'purchaser_email',
|
|
1842
|
+
payment_mismatch_status: 'payment_mismatch_status',
|
|
1843
|
+
payment_mismatch_fulfilled_by_id: 'payment_mismatch_fulfilled_by_id',
|
|
1844
|
+
created_at: 'created_at',
|
|
1845
|
+
updated_at: 'updated_at'
|
|
1846
|
+
};
|
|
1847
|
+
|
|
1848
|
+
exports.Prisma.PaymentWebhookEventScalarFieldEnum = {
|
|
1849
|
+
id: 'id',
|
|
1850
|
+
organisation_id: 'organisation_id',
|
|
1851
|
+
provider: 'provider',
|
|
1852
|
+
provider_event_id: 'provider_event_id',
|
|
1853
|
+
event_type: 'event_type',
|
|
1854
|
+
status: 'status',
|
|
1855
|
+
billing_transaction_id: 'billing_transaction_id',
|
|
1856
|
+
error_message: 'error_message',
|
|
1857
|
+
processed_at: 'processed_at',
|
|
1858
|
+
created_at: 'created_at'
|
|
1859
|
+
};
|
|
1860
|
+
|
|
1833
1861
|
exports.Prisma.PermissionScalarFieldEnum = {
|
|
1834
1862
|
id: 'id',
|
|
1835
1863
|
permissions: 'permissions',
|
|
@@ -1912,6 +1940,8 @@ exports.Prisma.QuestionScalarFieldEnum = {
|
|
|
1912
1940
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
1913
1941
|
candidate_id: 'candidate_id',
|
|
1914
1942
|
skill: 'skill',
|
|
1943
|
+
category: 'category',
|
|
1944
|
+
bank_item_key: 'bank_item_key',
|
|
1915
1945
|
question: 'question',
|
|
1916
1946
|
answer: 'answer',
|
|
1917
1947
|
options: 'options',
|
|
@@ -2498,6 +2528,8 @@ exports.EvaluationCategory = exports.$Enums.EvaluationCategory = {
|
|
|
2498
2528
|
|
|
2499
2529
|
exports.RoundType = exports.$Enums.RoundType = {
|
|
2500
2530
|
ASSESSMENT: 'ASSESSMENT',
|
|
2531
|
+
GENERAL_APTITUDE_ASSESSMENT: 'GENERAL_APTITUDE_ASSESSMENT',
|
|
2532
|
+
DOMAIN_KNOWLEDGE_ASSESSMENT: 'DOMAIN_KNOWLEDGE_ASSESSMENT',
|
|
2501
2533
|
INTERVIEW: 'INTERVIEW',
|
|
2502
2534
|
ASSIGNMENT: 'ASSIGNMENT',
|
|
2503
2535
|
SCREENING: 'SCREENING'
|
|
@@ -2669,7 +2701,8 @@ exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
|
2669
2701
|
GOOGLE: 'GOOGLE',
|
|
2670
2702
|
MICROSOFT: 'MICROSOFT',
|
|
2671
2703
|
ZOOM: 'ZOOM',
|
|
2672
|
-
CALENDLY: 'CALENDLY'
|
|
2704
|
+
CALENDLY: 'CALENDLY',
|
|
2705
|
+
RAZORPAY: 'RAZORPAY'
|
|
2673
2706
|
};
|
|
2674
2707
|
|
|
2675
2708
|
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
@@ -2874,6 +2907,42 @@ exports.OrganisationSize = exports.$Enums.OrganisationSize = {
|
|
|
2874
2907
|
FIVE_HUNDRED_PLUS: 'FIVE_HUNDRED_PLUS'
|
|
2875
2908
|
};
|
|
2876
2909
|
|
|
2910
|
+
exports.BillingTransactionType = exports.$Enums.BillingTransactionType = {
|
|
2911
|
+
PURCHASE: 'PURCHASE',
|
|
2912
|
+
TOP_UP: 'TOP_UP',
|
|
2913
|
+
REFUND: 'REFUND'
|
|
2914
|
+
};
|
|
2915
|
+
|
|
2916
|
+
exports.BillingTransactionStatus = exports.$Enums.BillingTransactionStatus = {
|
|
2917
|
+
INITIATED: 'INITIATED',
|
|
2918
|
+
ORDER_CREATED: 'ORDER_CREATED',
|
|
2919
|
+
PAYMENT_PENDING: 'PAYMENT_PENDING',
|
|
2920
|
+
SUCCESS: 'SUCCESS',
|
|
2921
|
+
FAILED: 'FAILED',
|
|
2922
|
+
CANCELLED: 'CANCELLED',
|
|
2923
|
+
REFUND_PENDING: 'REFUND_PENDING',
|
|
2924
|
+
REFUND_FAILED: 'REFUND_FAILED',
|
|
2925
|
+
REFUNDED: 'REFUNDED'
|
|
2926
|
+
};
|
|
2927
|
+
|
|
2928
|
+
exports.BillingTransactionFailureCategory = exports.$Enums.BillingTransactionFailureCategory = {
|
|
2929
|
+
RAZORPAY_ORDER: 'RAZORPAY_ORDER',
|
|
2930
|
+
RAZORPAY_PAYMENT: 'RAZORPAY_PAYMENT',
|
|
2931
|
+
REFUND: 'REFUND',
|
|
2932
|
+
INTERNAL: 'INTERNAL'
|
|
2933
|
+
};
|
|
2934
|
+
|
|
2935
|
+
exports.BillingPaymentMismatchStatus = exports.$Enums.BillingPaymentMismatchStatus = {
|
|
2936
|
+
DETECTED: 'DETECTED',
|
|
2937
|
+
UNFULFILLED: 'UNFULFILLED'
|
|
2938
|
+
};
|
|
2939
|
+
|
|
2940
|
+
exports.PaymentWebhookEventStatus = exports.$Enums.PaymentWebhookEventStatus = {
|
|
2941
|
+
RECEIVED: 'RECEIVED',
|
|
2942
|
+
PROCESSED: 'PROCESSED',
|
|
2943
|
+
FAILED: 'FAILED'
|
|
2944
|
+
};
|
|
2945
|
+
|
|
2877
2946
|
exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
2878
2947
|
PENDING: 'PENDING',
|
|
2879
2948
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -2883,6 +2952,11 @@ exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
|
2883
2952
|
CANCELLED: 'CANCELLED'
|
|
2884
2953
|
};
|
|
2885
2954
|
|
|
2955
|
+
exports.QuestionCategory = exports.$Enums.QuestionCategory = {
|
|
2956
|
+
GENERAL_APTITUDE: 'GENERAL_APTITUDE',
|
|
2957
|
+
DOMAIN_KNOWLEDGE: 'DOMAIN_KNOWLEDGE'
|
|
2958
|
+
};
|
|
2959
|
+
|
|
2886
2960
|
exports.Difficulty = exports.$Enums.Difficulty = {
|
|
2887
2961
|
EASY: 'EASY',
|
|
2888
2962
|
MEDIUM: 'MEDIUM',
|
|
@@ -2958,7 +3032,6 @@ exports.Prisma.ModelName = {
|
|
|
2958
3032
|
Document: 'Document',
|
|
2959
3033
|
EvaluationCriteria: 'EvaluationCriteria',
|
|
2960
3034
|
EvaluationPlan: 'EvaluationPlan',
|
|
2961
|
-
Feedback: 'Feedback',
|
|
2962
3035
|
FitCheck: 'FitCheck',
|
|
2963
3036
|
Google: 'Google',
|
|
2964
3037
|
HiringPlan: 'HiringPlan',
|
|
@@ -3003,6 +3076,8 @@ exports.Prisma.ModelName = {
|
|
|
3003
3076
|
OpenJobAnalyticsDaily: 'OpenJobAnalyticsDaily',
|
|
3004
3077
|
Organisation: 'Organisation',
|
|
3005
3078
|
OrganisationConfig: 'OrganisationConfig',
|
|
3079
|
+
BillingTransaction: 'BillingTransaction',
|
|
3080
|
+
PaymentWebhookEvent: 'PaymentWebhookEvent',
|
|
3006
3081
|
Permission: 'Permission',
|
|
3007
3082
|
PipelineDistributionAnalytics: 'PipelineDistributionAnalytics',
|
|
3008
3083
|
PipelineDistributionAnalyticsDaily: 'PipelineDistributionAnalyticsDaily',
|