3.0.1 • Published 2 years ago

@evo/user-info v3.0.1

Weekly downloads
168
License
ISC
Repository
gitlab
Last release
2 years ago

user-info

Service for fetching user data that is currently logged in in the main app.

User information from the remote - UserData

UserData is the data returned from /remote/auth/info;

'id': <id>,
'full_name': <name>,
'email': <email>
'phone': <phone>,
'is_paid_company': <company>,
'company_id': <company>

usage

import { init, getUserInfo } from '@evo/user-info';

// you should call init on application start
init('http://my.example.com:5000');

const userInfo = await getUserInfo();

API

init(myHost: string, user: UserData): void

Initializes the service (myHost is required).

getUserInfo(): Promise\<UserData>

Fetches remote info

Example:

import { getUserInfo } from "@evo/user-info"

const userInfo = await getUserInfo();
3.0.1

2 years ago

2.0.5

3 years ago

2.0.3

5 years ago

2.0.2

6 years ago

2.0.1

6 years ago

1.0.2

6 years ago

1.0.3

6 years ago

1.0.1

6 years ago