@emilgroup/partner-sdk 1.5.1-beta.2 → 1.5.1-beta.3
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
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/partner-sdk@1.5.1-beta.
|
|
20
|
+
npm install @emilgroup/partner-sdk@1.5.1-beta.3 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/partner-sdk@1.5.1-beta.
|
|
24
|
+
yarn add @emilgroup/partner-sdk@1.5.1-beta.3
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PartnersApi`.
|
|
@@ -28,11 +28,11 @@ export interface InvitePartnerToEISRequestDto {
|
|
|
28
28
|
*/
|
|
29
29
|
'signupEmail': string;
|
|
30
30
|
/**
|
|
31
|
-
* The partner will be invited to the given organization id in the EIS platform.
|
|
31
|
+
* The partner will be invited to the given organization id in the EIS platform. If the organiztion id is not provided, the partner will be invited to the root tenant.
|
|
32
32
|
* @type {number}
|
|
33
33
|
* @memberof InvitePartnerToEISRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'organizationId'
|
|
35
|
+
'organizationId'?: number;
|
|
36
36
|
/**
|
|
37
37
|
* After signing up the invited partner will have the provided roles.
|
|
38
38
|
* @type {Array<number>}
|
|
@@ -33,11 +33,11 @@ export interface InvitePartnerToEISRequestDto {
|
|
|
33
33
|
*/
|
|
34
34
|
'signupEmail': string;
|
|
35
35
|
/**
|
|
36
|
-
* The partner will be invited to the given organization id in the EIS platform.
|
|
36
|
+
* The partner will be invited to the given organization id in the EIS platform. If the organiztion id is not provided, the partner will be invited to the root tenant.
|
|
37
37
|
* @type {number}
|
|
38
38
|
* @memberof InvitePartnerToEISRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'organizationId'
|
|
40
|
+
'organizationId'?: number;
|
|
41
41
|
/**
|
|
42
42
|
* After signing up the invited partner will have the provided roles.
|
|
43
43
|
* @type {Array<number>}
|