1.1.4 • Published 3 months ago
general-utils-client v1.1.4
Description
A package for integration with komunal general API
Installation
You can install this package using npm:
npm install general-utils-client
Usage
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);
})();
Changelog
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.
(Latest) 1.1.3 - 2025-03-11
Fix SSO SAML
- Add SSO SAML capability to call its base package
@node-saml/node-saml
for login and callback verification
2025-02-26
Feat add SSO SAML
- Add SSO SAML using microsoft entra id
1.0.0 - 2025-02-06
Feat add master bank api
- Add master bank api feature
2025-01-21
Init
- Init package for master geo API