@mbanq/core-sdk-js 0.29.0 → 0.31.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 +27 -0
- package/dist/commands/index.d.mts +2310 -299
- package/dist/commands/index.d.ts +2310 -299
- 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 |
|
|
@@ -677,6 +689,16 @@ await client.request(UpdateCardID({
|
|
|
677
689
|
| `CreateCardProduct` | Create a new card product configuration |
|
|
678
690
|
| `UpdateCardProduct` | Update an existing card product |
|
|
679
691
|
|
|
692
|
+
#### Acquire Card Operations
|
|
693
|
+
|
|
694
|
+
| Command | Description |
|
|
695
|
+
|---------|-------------|
|
|
696
|
+
| `GetAcquiredCards` | Retrieve all acquired/external cards for a specific client |
|
|
697
|
+
| `GetAcquiredCardById` | Get detailed information about a specific acquired card by ID |
|
|
698
|
+
| `AddAcquiredCard` | Add an acquired card to a client's external cards list |
|
|
699
|
+
| `BlockAcquiredCardAddition` | Block the addition of acquired cards from external sources for a client |
|
|
700
|
+
| `UnblockAcquiredCardAddition` | Unblock the addition of acquired cards from external sources for a client |
|
|
701
|
+
|
|
680
702
|
#### Client Operations
|
|
681
703
|
|
|
682
704
|
| Command | Description |
|
|
@@ -807,6 +829,11 @@ await client.request(UpdateCardID({
|
|
|
807
829
|
| `GetLoanSearchTemplate` | Retrieve the ad-hoc search query template for loans |
|
|
808
830
|
| `GetSearchData` | Generic search across various resources (loans, clients, etc.) with query support |
|
|
809
831
|
|
|
832
|
+
#### Subscriber Operations
|
|
833
|
+
|
|
834
|
+
| Command | Description |
|
|
835
|
+
|---|---|
|
|
836
|
+
| `GetSubscriber` | Retrieve detailed information about a specific subscriber by ID |
|
|
810
837
|
|
|
811
838
|
|
|
812
839
|
|