@emilgroup/partner-sdk 1.11.1-beta.3 → 1.12.0
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.
|
|
20
|
+
npm install @emilgroup/partner-sdk@1.12.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/partner-sdk@1.
|
|
24
|
+
yarn add @emilgroup/partner-sdk@1.12.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PartnersApi`.
|
|
@@ -20,7 +20,7 @@ export interface UpdatePartnerRelationRequestDtoRest {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof UpdatePartnerRelationRequestDtoRest
|
|
22
22
|
*/
|
|
23
|
-
'startDate'
|
|
23
|
+
'startDate': string;
|
|
24
24
|
/**
|
|
25
25
|
* The end datetime of the relationship, provided in ISO 8601 format
|
|
26
26
|
* @type {string}
|
|
@@ -25,7 +25,7 @@ export interface UpdatePartnerRelationRequestDtoRest {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof UpdatePartnerRelationRequestDtoRest
|
|
27
27
|
*/
|
|
28
|
-
'startDate'
|
|
28
|
+
'startDate': string;
|
|
29
29
|
/**
|
|
30
30
|
* The end datetime of the relationship, provided in ISO 8601 format
|
|
31
31
|
* @type {string}
|