@adaptware/eagles-db 0.5.45 → 0.5.46
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 +5 -83
- package/client/index-browser.js +2 -80
- package/client/index.d.ts +416 -5398
- package/client/index.js +5 -83
- package/client/package.json +1 -1
- package/client/schema.prisma +2 -116
- package/client/wasm.js +5 -83
- package/package.json +1 -1
- package/prisma/schema/integration.prisma +0 -1
- package/prisma/schema/organisation.prisma +0 -2
- package/prisma/schema/user.prisma +2 -0
- package/prisma/sql/add_user_deleted_at.sql +8 -0
- package/prisma/schema/payment/billingTransaction.prisma +0 -83
- package/prisma/schema/payment/paymentWebhookEvent.prisma +0 -28
package/client/index-browser.js
CHANGED
|
@@ -1818,46 +1818,6 @@ exports.Prisma.OrganisationConfigScalarFieldEnum = {
|
|
|
1818
1818
|
updated_at: 'updated_at'
|
|
1819
1819
|
};
|
|
1820
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
|
-
|
|
1861
1821
|
exports.Prisma.PermissionScalarFieldEnum = {
|
|
1862
1822
|
id: 'id',
|
|
1863
1823
|
permissions: 'permissions',
|
|
@@ -2253,6 +2213,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
2253
2213
|
created_by: 'created_by',
|
|
2254
2214
|
updated_by: 'updated_by',
|
|
2255
2215
|
is_active: 'is_active',
|
|
2216
|
+
deleted_at: 'deleted_at',
|
|
2256
2217
|
is_self_registered: 'is_self_registered',
|
|
2257
2218
|
permission_id: 'permission_id',
|
|
2258
2219
|
preferences: 'preferences',
|
|
@@ -2701,8 +2662,7 @@ exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
|
2701
2662
|
GOOGLE: 'GOOGLE',
|
|
2702
2663
|
MICROSOFT: 'MICROSOFT',
|
|
2703
2664
|
ZOOM: 'ZOOM',
|
|
2704
|
-
CALENDLY: 'CALENDLY'
|
|
2705
|
-
RAZORPAY: 'RAZORPAY'
|
|
2665
|
+
CALENDLY: 'CALENDLY'
|
|
2706
2666
|
};
|
|
2707
2667
|
|
|
2708
2668
|
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
@@ -2907,42 +2867,6 @@ exports.OrganisationSize = exports.$Enums.OrganisationSize = {
|
|
|
2907
2867
|
FIVE_HUNDRED_PLUS: 'FIVE_HUNDRED_PLUS'
|
|
2908
2868
|
};
|
|
2909
2869
|
|
|
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
|
-
|
|
2946
2870
|
exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
2947
2871
|
PENDING: 'PENDING',
|
|
2948
2872
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -3076,8 +3000,6 @@ exports.Prisma.ModelName = {
|
|
|
3076
3000
|
OpenJobAnalyticsDaily: 'OpenJobAnalyticsDaily',
|
|
3077
3001
|
Organisation: 'Organisation',
|
|
3078
3002
|
OrganisationConfig: 'OrganisationConfig',
|
|
3079
|
-
BillingTransaction: 'BillingTransaction',
|
|
3080
|
-
PaymentWebhookEvent: 'PaymentWebhookEvent',
|
|
3081
3003
|
Permission: 'Permission',
|
|
3082
3004
|
PipelineDistributionAnalytics: 'PipelineDistributionAnalytics',
|
|
3083
3005
|
PipelineDistributionAnalyticsDaily: 'PipelineDistributionAnalyticsDaily',
|