saas-launcher-sdk
v1.0.14
Published
> Openapi generated typescript-axios client for CloudHospital SaaS Launcher
Downloads
21
Maintainers
Readme
saas-launcher-sdk
Openapi generated typescript-axios client for CloudHospital SaaS Launcher
Installing
#yarn add saas-launcher-sdk
npm install saas-launcher-sdk
Usage
import {WebappsApi, Configuration, WebappsModel} from 'saas-launcher-sdk';
import axios from 'axios'
const configuration = new Configuration({
basePath: 'https://launcher-api.icloudhospital.com/v1'
});
const instance = axios.create({
timeout: 10000,
params: {},
headers: {}
});
const webappApi = new WebappsApi(configuration, undefined, instance);
// Get list
const webappList = await webappApi.webappsGet().then(res => res.data);
console.log(webappList);
Example
- You can find an example here