@emilgroup/commission-sdk-node 2.9.1-beta.6 → 2.9.1-beta.7
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/commission-sdk-node@2.9.1-beta.
|
|
20
|
+
npm install @emilgroup/commission-sdk-node@2.9.1-beta.7 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/commission-sdk-node@2.9.1-beta.
|
|
24
|
+
yarn add @emilgroup/commission-sdk-node@2.9.1-beta.7
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `CommissionApi`.
|
|
@@ -46,4 +46,10 @@ export interface CreateCommissionRequestDto {
|
|
|
46
46
|
* @memberof CreateCommissionRequestDto
|
|
47
47
|
*/
|
|
48
48
|
'items': Array<CreateCommissionItemRequestDto>;
|
|
49
|
+
/**
|
|
50
|
+
* Commission candidate code linked to this commission.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof CreateCommissionRequestDto
|
|
53
|
+
*/
|
|
54
|
+
'commissionCandidateCode'?: string;
|
|
49
55
|
}
|
|
@@ -51,5 +51,11 @@ export interface CreateCommissionRequestDto {
|
|
|
51
51
|
* @memberof CreateCommissionRequestDto
|
|
52
52
|
*/
|
|
53
53
|
'items': Array<CreateCommissionItemRequestDto>;
|
|
54
|
+
/**
|
|
55
|
+
* Commission candidate code linked to this commission.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateCommissionRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'commissionCandidateCode'?: string;
|
|
54
60
|
}
|
|
55
61
|
|