@emilgroup/commission-sdk-node 1.0.0-beta.18 → 1.0.0-beta.19
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/create-commission-agreement-request-dto.d.ts +1 -1
- package/dist/models/create-commission-agreement-version-request-dto.d.ts +1 -1
- package/models/create-commission-agreement-request-dto.ts +1 -1
- package/models/create-commission-agreement-version-request-dto.ts +1 -1
- 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/commission-sdk-node@1.0.0-beta.
|
|
20
|
+
npm install @emilgroup/commission-sdk-node@1.0.0-beta.19 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/commission-sdk-node@1.0.0-beta.
|
|
24
|
+
yarn add @emilgroup/commission-sdk-node@1.0.0-beta.19
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `CommissionApi`.
|
|
@@ -57,7 +57,7 @@ export interface CreateCommissionAgreementRequestDto {
|
|
|
57
57
|
* @type {string}
|
|
58
58
|
* @memberof CreateCommissionAgreementRequestDto
|
|
59
59
|
*/
|
|
60
|
-
'startDate'
|
|
60
|
+
'startDate': string;
|
|
61
61
|
/**
|
|
62
62
|
* End date when the commission agreement expires or is terminated
|
|
63
63
|
* @type {string}
|
|
@@ -26,7 +26,7 @@ export interface CreateCommissionAgreementVersionRequestDto {
|
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof CreateCommissionAgreementVersionRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'startDate'
|
|
29
|
+
'startDate': string;
|
|
30
30
|
/**
|
|
31
31
|
* End date when this version of the commission agreement expires
|
|
32
32
|
* @type {string}
|
|
@@ -62,7 +62,7 @@ export interface CreateCommissionAgreementRequestDto {
|
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof CreateCommissionAgreementRequestDto
|
|
64
64
|
*/
|
|
65
|
-
'startDate'
|
|
65
|
+
'startDate': string;
|
|
66
66
|
/**
|
|
67
67
|
* End date when the commission agreement expires or is terminated
|
|
68
68
|
* @type {string}
|
|
@@ -31,7 +31,7 @@ export interface CreateCommissionAgreementVersionRequestDto {
|
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof CreateCommissionAgreementVersionRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'startDate'
|
|
34
|
+
'startDate': string;
|
|
35
35
|
/**
|
|
36
36
|
* End date when this version of the commission agreement expires
|
|
37
37
|
* @type {string}
|