@emilgroup/tenant-sdk 1.17.1-beta.0 → 1.17.1-beta.1
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/README.md +2 -2
- package/dist/models/invite-org-request-dto.d.ts +3 -3
- package/dist/models/invite-user-request-dto.d.ts +3 -3
- package/dist/models/invite-users-request-dto.d.ts +3 -3
- package/models/invite-org-request-dto.ts +3 -3
- package/models/invite-user-request-dto.ts +3 -3
- package/models/invite-users-request-dto.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/tenant-sdk@1.17.1-beta.
|
|
20
|
+
npm install @emilgroup/tenant-sdk@1.17.1-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/tenant-sdk@1.17.1-beta.
|
|
24
|
+
yarn add @emilgroup/tenant-sdk@1.17.1-beta.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `UsersApi`.
|
|
@@ -22,11 +22,11 @@ export interface InviteOrgRequestDto {
|
|
|
22
22
|
*/
|
|
23
23
|
'email': string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {Array<
|
|
25
|
+
* Codes associated with the roles to be assigned.
|
|
26
|
+
* @type {Array<string>}
|
|
27
27
|
* @memberof InviteOrgRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'
|
|
29
|
+
'roleCodes': Array<string>;
|
|
30
30
|
/**
|
|
31
31
|
* Name of the invited organization.
|
|
32
32
|
* @type {string}
|
|
@@ -28,9 +28,9 @@ export interface InviteUserRequestDto {
|
|
|
28
28
|
*/
|
|
29
29
|
'organizationId'?: number;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {Array<
|
|
31
|
+
* Codes associated with the roles to be assigned.
|
|
32
|
+
* @type {Array<string>}
|
|
33
33
|
* @memberof InviteUserRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'
|
|
35
|
+
'roleCodes': Array<string>;
|
|
36
36
|
}
|
|
@@ -22,11 +22,11 @@ export interface InviteUsersRequestDto {
|
|
|
22
22
|
*/
|
|
23
23
|
'emails': Array<string>;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {Array<
|
|
25
|
+
* Codes associated with the roles to be assigned.
|
|
26
|
+
* @type {Array<string>}
|
|
27
27
|
* @memberof InviteUsersRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'
|
|
29
|
+
'roleCodes': Array<string>;
|
|
30
30
|
/**
|
|
31
31
|
* Organization associated with the users.
|
|
32
32
|
* @type {number}
|
|
@@ -27,11 +27,11 @@ export interface InviteOrgRequestDto {
|
|
|
27
27
|
*/
|
|
28
28
|
'email': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {Array<
|
|
30
|
+
* Codes associated with the roles to be assigned.
|
|
31
|
+
* @type {Array<string>}
|
|
32
32
|
* @memberof InviteOrgRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'roleCodes': Array<string>;
|
|
35
35
|
/**
|
|
36
36
|
* Name of the invited organization.
|
|
37
37
|
* @type {string}
|
|
@@ -33,10 +33,10 @@ export interface InviteUserRequestDto {
|
|
|
33
33
|
*/
|
|
34
34
|
'organizationId'?: number;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {Array<
|
|
36
|
+
* Codes associated with the roles to be assigned.
|
|
37
|
+
* @type {Array<string>}
|
|
38
38
|
* @memberof InviteUserRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'roleCodes': Array<string>;
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -27,11 +27,11 @@ export interface InviteUsersRequestDto {
|
|
|
27
27
|
*/
|
|
28
28
|
'emails': Array<string>;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {Array<
|
|
30
|
+
* Codes associated with the roles to be assigned.
|
|
31
|
+
* @type {Array<string>}
|
|
32
32
|
* @memberof InviteUsersRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'roleCodes': Array<string>;
|
|
35
35
|
/**
|
|
36
36
|
* Organization associated with the users.
|
|
37
37
|
* @type {number}
|