@or-sdk/users 0.20.1-usersapi.3 → 0.21.1-pipline1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/Users.ts +2 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.21.1-pipline1.4",
|
|
3
3
|
"name": "@or-sdk/users",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@or-sdk/base": "^0.
|
|
26
|
+
"@or-sdk/base": "^0.21.1-pipline1.4"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "83436e0f71f1c9aff3cf10c10836439049e409d6"
|
|
29
29
|
}
|
package/src/Users.ts
CHANGED
|
@@ -6,13 +6,13 @@ import { ListUsersParams, UserItem, UsersConfig } from './types';
|
|
|
6
6
|
* OneReach Users service client
|
|
7
7
|
* ## Installation:
|
|
8
8
|
* ```
|
|
9
|
-
* $ npm i @or-sdk/users
|
|
9
|
+
* $ npm i @or-sdk/users
|
|
10
10
|
* ```
|
|
11
11
|
*/
|
|
12
12
|
export class Users extends Base {
|
|
13
13
|
/**
|
|
14
14
|
* ```typescript
|
|
15
|
-
* import { Users } from '@or-sdk/users
|
|
15
|
+
* import { Users } from '@or-sdk/users'
|
|
16
16
|
* const users = new Users({token: 'my-account-token-string', discoveryUrl: 'http://example.tables/endpoint', accountId: 'guid'});
|
|
17
17
|
* ```
|
|
18
18
|
*/
|