@raltea/rms-sdk
v0.0.6
Published
## 1-Configure the service you want to use Let s take the example of UIS. Modify the UIS configuration at the start of your application: ```ts import { UISConfig } from '@raltea/rms-sdk/dist';
Downloads
3
Readme
How to use this package
1-Configure the service you want to use
Let s take the example of UIS. Modify the UIS configuration at the start of your application:
import { UISConfig } from '@raltea/rms-sdk/dist';
UISConfig.url = 'http://your-uis-instance.com'
UISConfig.apiKey = 'your_RMS_api_key';
2-Use the service
import { UISAuth } from '@raltea/rms-sdk/dist';
const [result, error] = await UISAuth.register(email, password, 'pool');