@emilgroup/partner-sdk 1.6.1-beta.2 → 1.6.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.6.1-beta.
|
|
20
|
+
npm install @emilgroup/partner-sdk@1.6.1-beta.3 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/partner-sdk@1.6.1-beta.
|
|
24
|
+
yarn add @emilgroup/partner-sdk@1.6.1-beta.3
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PartnersApi`.
|
|
@@ -76,4 +76,22 @@ export interface InviteClass {
|
|
|
76
76
|
* @memberof InviteClass
|
|
77
77
|
*/
|
|
78
78
|
'metadata': object;
|
|
79
|
+
/**
|
|
80
|
+
* The unique partner code used to identify the partner.
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof InviteClass
|
|
83
|
+
*/
|
|
84
|
+
'partnerCode': string;
|
|
85
|
+
/**
|
|
86
|
+
* Id of the organization to which the partner has been invited to.
|
|
87
|
+
* @type {number}
|
|
88
|
+
* @memberof InviteClass
|
|
89
|
+
*/
|
|
90
|
+
'organizationId'?: number;
|
|
91
|
+
/**
|
|
92
|
+
* Indicates whether a new partner should be created.
|
|
93
|
+
* @type {boolean}
|
|
94
|
+
* @memberof InviteClass
|
|
95
|
+
*/
|
|
96
|
+
'shouldCreateNewPartner': boolean;
|
|
79
97
|
}
|
package/models/invite-class.ts
CHANGED
|
@@ -81,5 +81,23 @@ export interface InviteClass {
|
|
|
81
81
|
* @memberof InviteClass
|
|
82
82
|
*/
|
|
83
83
|
'metadata': object;
|
|
84
|
+
/**
|
|
85
|
+
* The unique partner code used to identify the partner.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof InviteClass
|
|
88
|
+
*/
|
|
89
|
+
'partnerCode': string;
|
|
90
|
+
/**
|
|
91
|
+
* Id of the organization to which the partner has been invited to.
|
|
92
|
+
* @type {number}
|
|
93
|
+
* @memberof InviteClass
|
|
94
|
+
*/
|
|
95
|
+
'organizationId'?: number;
|
|
96
|
+
/**
|
|
97
|
+
* Indicates whether a new partner should be created.
|
|
98
|
+
* @type {boolean}
|
|
99
|
+
* @memberof InviteClass
|
|
100
|
+
*/
|
|
101
|
+
'shouldCreateNewPartner': boolean;
|
|
84
102
|
}
|
|
85
103
|
|