@emilgroup/commission-sdk-node 1.0.0-beta.30 → 1.0.0-beta.31
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@1.0.0-beta.
|
|
20
|
+
npm install @emilgroup/commission-sdk-node@1.0.0-beta.31 --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.31
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `CommissionApi`.
|
|
@@ -49,10 +49,10 @@ export interface CommissionClass {
|
|
|
49
49
|
'commissionNumber': string;
|
|
50
50
|
/**
|
|
51
51
|
* The version identifier of the commission agreement being used for this commission
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {string}
|
|
53
53
|
* @memberof CommissionClass
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'commissionAgreementVersionCode': string;
|
|
56
56
|
/**
|
|
57
57
|
* The unique code or identifier of the partner associated with this commission
|
|
58
58
|
* @type {string}
|
|
@@ -16,12 +16,6 @@ import { CreateCommissionItemRequestDto } from './create-commission-item-request
|
|
|
16
16
|
* @interface CreateCommissionRequestDto
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateCommissionRequestDto {
|
|
19
|
-
/**
|
|
20
|
-
* The unique code or identifier of the commission agreement this commission is based on
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof CreateCommissionRequestDto
|
|
23
|
-
*/
|
|
24
|
-
'commissionAgreementCode': string;
|
|
25
19
|
/**
|
|
26
20
|
* A detailed description explaining what this commission represents and its purpose
|
|
27
21
|
* @type {string}
|
|
@@ -29,11 +23,11 @@ export interface CreateCommissionRequestDto {
|
|
|
29
23
|
*/
|
|
30
24
|
'description': string;
|
|
31
25
|
/**
|
|
32
|
-
* The
|
|
33
|
-
* @type {
|
|
26
|
+
* The code of the commission agreement version being used for this commission
|
|
27
|
+
* @type {string}
|
|
34
28
|
* @memberof CreateCommissionRequestDto
|
|
35
29
|
*/
|
|
36
|
-
'
|
|
30
|
+
'commissionAgreementVersionCode': string;
|
|
37
31
|
/**
|
|
38
32
|
* The unique code or identifier of the partner associated with this commission
|
|
39
33
|
* @type {string}
|
|
@@ -54,10 +54,10 @@ export interface CommissionClass {
|
|
|
54
54
|
'commissionNumber': string;
|
|
55
55
|
/**
|
|
56
56
|
* The version identifier of the commission agreement being used for this commission
|
|
57
|
-
* @type {
|
|
57
|
+
* @type {string}
|
|
58
58
|
* @memberof CommissionClass
|
|
59
59
|
*/
|
|
60
|
-
'
|
|
60
|
+
'commissionAgreementVersionCode': string;
|
|
61
61
|
/**
|
|
62
62
|
* The unique code or identifier of the partner associated with this commission
|
|
63
63
|
* @type {string}
|
|
@@ -21,12 +21,6 @@ import { CreateCommissionItemRequestDto } from './create-commission-item-request
|
|
|
21
21
|
* @interface CreateCommissionRequestDto
|
|
22
22
|
*/
|
|
23
23
|
export interface CreateCommissionRequestDto {
|
|
24
|
-
/**
|
|
25
|
-
* The unique code or identifier of the commission agreement this commission is based on
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CreateCommissionRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'commissionAgreementCode': string;
|
|
30
24
|
/**
|
|
31
25
|
* A detailed description explaining what this commission represents and its purpose
|
|
32
26
|
* @type {string}
|
|
@@ -34,11 +28,11 @@ export interface CreateCommissionRequestDto {
|
|
|
34
28
|
*/
|
|
35
29
|
'description': string;
|
|
36
30
|
/**
|
|
37
|
-
* The
|
|
38
|
-
* @type {
|
|
31
|
+
* The code of the commission agreement version being used for this commission
|
|
32
|
+
* @type {string}
|
|
39
33
|
* @memberof CreateCommissionRequestDto
|
|
40
34
|
*/
|
|
41
|
-
'
|
|
35
|
+
'commissionAgreementVersionCode': string;
|
|
42
36
|
/**
|
|
43
37
|
* The unique code or identifier of the partner associated with this commission
|
|
44
38
|
* @type {string}
|