A package for integration with komunal general API
You can install this package using npm:
npm install general-utils-client
import { Configuration, MasterBankApiClient } from 'general-utils-client';
(async () => {
const config = new Configuration({
baseUrl: 'http://localhost:3005',
apiKey: 'test',
});
const masterBankApiClient = new MasterBankApiClient(config);
const result = await masterBankApiClient.findAll();
console.log(result.payload);
})();
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- Add new KMS client for encryption api using symmetric and asymmetric
- Enhance existing EncryptionAPI client to support envelope encryption using KMS
- Add new glcoud client for KMS
- Add new client for encryption api using RSA and AES-256-GCM
- Deprecate master geo support with its orm
- Add SSO SAML capability to call its base package
@node-saml/node-saml
for login and callback verification
- Add SSO SAML using microsoft entra id
- Add master bank api feature
- Init package for master geo API