@mbanq/core-sdk-js 0.28.0 → 0.30.0
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/README.md +34 -0
- package/dist/commands/index.d.mts +5983 -30
- package/dist/commands/index.d.ts +5983 -30
- package/dist/commands/index.js +2 -2
- package/dist/commands/index.mjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -425,6 +425,18 @@ The SDK uses a Command Pattern for all operations. Commands are created using fa
|
|
|
425
425
|
| `DownloadAccountStatement` | Download a generated account statement |
|
|
426
426
|
| `GetAccountDocumentsDetails` | Get details of account documents |
|
|
427
427
|
|
|
428
|
+
#### Charge Operations
|
|
429
|
+
|
|
430
|
+
| Command | Description |
|
|
431
|
+
|---------|-------------|
|
|
432
|
+
| `AddChargeToAccount` | Add a charge to a savings account |
|
|
433
|
+
| `GetChargesByAccountId` | Get all charges for a savings account |
|
|
434
|
+
| `AddChargeToLoanAccount` | Add a charge to a loan account |
|
|
435
|
+
| `GetChargesByLoanAccountId` | Get all charges for a loan account |
|
|
436
|
+
| `WaiveChargeFromAccount` | Waive a charge from a savings account |
|
|
437
|
+
| `UndoChargeToAccount` | Undo a charge transaction |
|
|
438
|
+
| `PayAccountCharge` | Pay a pending charge on an account |
|
|
439
|
+
|
|
428
440
|
#### Card Operations
|
|
429
441
|
|
|
430
442
|
| Command | Description |
|
|
@@ -788,6 +800,28 @@ await client.request(UpdateCardID({
|
|
|
788
800
|
| `UpdateSelfServiceUser` | Update self-service user information |
|
|
789
801
|
| `DeleteSelfServiceUser` | Delete a self-service user |
|
|
790
802
|
|
|
803
|
+
#### Loan Operations
|
|
804
|
+
|
|
805
|
+
| Command | Description |
|
|
806
|
+
|---|---|
|
|
807
|
+
| `CreateLoan` | Create a new loan application |
|
|
808
|
+
| `ApproveLoan` | Approve a loan application |
|
|
809
|
+
| `GetLoanById` | Get loan details by ID |
|
|
810
|
+
| `DisburseLoanToLinkedAccount` | Disburse a loan to a linked savings account |
|
|
811
|
+
| `DisburseLoan` | Disburse a loan with payment details |
|
|
812
|
+
| `CalculateLoanSchedule` | Calculate loan repayment schedule without creating the loan |
|
|
813
|
+
| `MakeRepayment` | Make a repayment on a loan (installments, advance, or late payments) |
|
|
814
|
+
| `GetLoanPreclosureTemplate` | Get preclosure template with transaction details and payment options |
|
|
815
|
+
| `PreCloseLoan` | Pre-close a loan by early repayment of the entire outstanding amount |
|
|
816
|
+
| `GetLoanTransactionDetails` | Retrieve detailed information about a specific loan transaction |
|
|
817
|
+
| `GetLoanWriteoffTemplate` | Retrieve the write-off template with reason options for loan write-off |
|
|
818
|
+
| `WriteLoanOff` | Write off an unrecoverable loan and close it as written off |
|
|
819
|
+
| `GetLoanSearchTemplate` | Retrieve the ad-hoc search query template for loans |
|
|
820
|
+
| `GetSearchData` | Generic search across various resources (loans, clients, etc.) with query support |
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
|
|
791
825
|
## Documentation
|
|
792
826
|
|
|
793
827
|
For detailed information about specific features and APIs, refer to the following resources:
|