0.1.0 • Published 2 years ago
@meetportal/legal-js v0.1.0
Legal JS for Portal
This library provides schemas and helper functions for Portal legal resources.
Installation
npm install @meetportal/legal-js
If you have not already done so, you will also need to install the Portal JS library:
npm install @meetportal/portal-js
Usage
import { usePortalService } from '@meetportal/portal-js'
import { CLIENT_TYPE, VERSION, ClientResource } from '@meetportal/legal-js'
let resource: ClientResource = {
id: '123',
type: CLIENT_TYPE,
version: VERSION,
demographics: {
ids: ['123'],
firstName: 'John',
lastName: 'Doe',
dob: '01/01/1970',
birthSex: 'M',
email: 'john.doe@mail.com',
phones: [
{
type: 'home',
number: '123-456-7890',
},
],
address1: '123 Main St',
address2: 'Apt 1',
city: 'Anytown',
state: 'NY',
zip: '12345',
}
}
usePortalService().setResource(resource)
0.1.0
2 years ago