@mbanq/core-sdk-js 0.41.0 → 0.42.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 CHANGED
@@ -689,6 +689,24 @@ await client.request(UpdateCardID({
689
689
  | `CreateCardProduct` | Create a new card product configuration |
690
690
  | `UpdateCardProduct` | Update an existing card product |
691
691
 
692
+ #### Credit Account Operations
693
+
694
+ | Command | Description |
695
+ |---------|-------------|
696
+ | `GetCreditAccountTransactionById` | Get detailed information for a specific credit account transaction by ID |
697
+ | `GetCreditAccountPendingTransactions` | Retrieve all pending transactions (card authorizations on hold) for a credit account |
698
+ | `GetCreditAccountCompletedTransactions` | Retrieve all completed/posted transactions for a credit account with optional filtering |
699
+ | `GetCreditAccountDetails` | Retrieve comprehensive details of a credit account including balances, limits, and billing information |
700
+ | `GetCreditAccountBilledStatements` | Retrieve all billing statements generated for a credit account |
701
+ | `DownloadCreditAccountBilledStatement` | Download a specific billing statement document for a credit account |
702
+ | `CreateCreditAccountPayment` | Process a payment to reduce the outstanding balance on a credit account |
703
+ | `CreateCreditAccountAutoPayInternal` | Set up automatic payment from an internal account to pay credit account balance |
704
+ | `CreateCreditAccountAutoPayExternal` | Set up automatic payment from an external bank account to pay credit account balance |
705
+ | `CreateUnsecuredCreditAccount` | Create a new unsecured credit account for a client |
706
+ | `CreateSecuredCreditAccount` | Create a new secured credit account with collateral account |
707
+ | `ApproveCreditAccount` | Approve a pending credit account application, activating it for use |
708
+ | `AdjustCreditAccountLimits` | Adjust the credit limit and cash advance limit for an existing credit account |
709
+
692
710
  #### Acquire Card Operations
693
711
 
694
712
  | Command | Description |
@@ -829,6 +847,41 @@ await client.request(UpdateCardID({
829
847
  | `GetLoanSearchTemplate` | Retrieve the ad-hoc search query template for loans |
830
848
  | `GetSearchData` | Generic search across various resources (loans, clients, etc.) with query support |
831
849
 
850
+ #### Card Operations
851
+
852
+ | Command | Description |
853
+ |---|---|
854
+ | `GetCards` | Retrieve all cards for a specific client |
855
+ | `GetCardById` | Get detailed information about a specific card by ID |
856
+ | `GetCardImageUrl` | Get the URL for a card's visual representation |
857
+ | `GetCardAuthorizations` | Retrieve all card authorizations with filtering and pagination |
858
+ | `GetCardAuthorizationById` | Retrieve detailed information about a specific card authorization |
859
+ | `GetCardSettlements` | List all card settlements with comprehensive filtering |
860
+ | `GetCardSettlementById` | Retrieve detailed information about a specific card settlement |
861
+ | `CreateCard` | Create a new debit or credit card |
862
+ | `ChangeCardType` | Change the product type of an existing card |
863
+ | `ActivatePhysicalCard` | Activate a physical card that has been issued |
864
+ | `OrderPhysicalCard` | Request fulfillment/shipment of a physical card |
865
+ | `SetPIN` | Generate a secure URL for card PIN changes |
866
+ | `AddCardToMobileWallet` | Provision a card for Apple Pay or Google Pay |
867
+ | `UpdateCardFeature` | Enable/disable card features |
868
+ | `UpdateCardLimit` | Update card limits and velocity rules |
869
+ | `TerminateCard` | Terminate a card |
870
+ | `SuspendCard` | Suspend a card |
871
+ | `ActivateCard` | Activate a card |
872
+ | `ReactivateCard` | Reactivate a suspended card |
873
+ | `ReplaceCard` | Replace a card |
874
+ | `RenewCard` | Renew a card |
875
+
876
+ #### Note Operations
877
+
878
+ | Command | Description |
879
+ |---|---|
880
+ | `CreateNote` | Create a note for a resource |
881
+ | `GetNotes` | Get notes for a resource |
882
+ | `GetNoteById` | Get a specific note by ID |
883
+ | `DeleteNote` | Delete a note |
884
+
832
885
  #### Notification Operations
833
886
 
834
887
  | Command | Description |
@@ -836,6 +889,7 @@ await client.request(UpdateCardID({
836
889
  | `GetSubscribers` | Use this API to retrieve all the configured subscribers |
837
890
  | `GetSubscriber` | Retrieve detailed information about a specific subscriber by ID |
838
891
  | `CreateSubscriber` | Use this API to add a new subscriber for a webhook, email, or client email. |
892
+ | `UpdateSubscriber` | Use this API to update the details of an existing subscriber using the provided subscriber ID. |
839
893
  | `DeleteSubscriber` | Use this API to delete a subscriber by the provided subscriber ID. |
840
894
 
841
895