@emilgroup/commission-sdk 1.0.0-beta.25 → 1.0.0-beta.27
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@1.0.0-beta.
|
|
20
|
+
npm install @emilgroup/commission-sdk@1.0.0-beta.27 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/commission-sdk@1.0.0-beta.
|
|
24
|
+
yarn add @emilgroup/commission-sdk@1.0.0-beta.27
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `CommissionApi`.
|
|
@@ -35,6 +35,12 @@ export interface CommissionAgreementClass {
|
|
|
35
35
|
* @memberof CommissionAgreementClass
|
|
36
36
|
*/
|
|
37
37
|
'code': string;
|
|
38
|
+
/**
|
|
39
|
+
* Unique number identifier for the commission agreement
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CommissionAgreementClass
|
|
42
|
+
*/
|
|
43
|
+
'commissionAgreementNumber': string;
|
|
38
44
|
/**
|
|
39
45
|
* Current status of the commission agreement (e.g., active, inactive)
|
|
40
46
|
* @type {string}
|
|
@@ -41,6 +41,12 @@ export interface CommissionClass {
|
|
|
41
41
|
* @memberof CommissionClass
|
|
42
42
|
*/
|
|
43
43
|
'description': string;
|
|
44
|
+
/**
|
|
45
|
+
* The commission number for this commission
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CommissionClass
|
|
48
|
+
*/
|
|
49
|
+
'commissionNumber': string;
|
|
44
50
|
/**
|
|
45
51
|
* The version identifier of the commission agreement being used for this commission
|
|
46
52
|
* @type {number}
|
|
@@ -40,6 +40,12 @@ export interface CommissionAgreementClass {
|
|
|
40
40
|
* @memberof CommissionAgreementClass
|
|
41
41
|
*/
|
|
42
42
|
'code': string;
|
|
43
|
+
/**
|
|
44
|
+
* Unique number identifier for the commission agreement
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CommissionAgreementClass
|
|
47
|
+
*/
|
|
48
|
+
'commissionAgreementNumber': string;
|
|
43
49
|
/**
|
|
44
50
|
* Current status of the commission agreement (e.g., active, inactive)
|
|
45
51
|
* @type {string}
|
|
@@ -46,6 +46,12 @@ export interface CommissionClass {
|
|
|
46
46
|
* @memberof CommissionClass
|
|
47
47
|
*/
|
|
48
48
|
'description': string;
|
|
49
|
+
/**
|
|
50
|
+
* The commission number for this commission
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof CommissionClass
|
|
53
|
+
*/
|
|
54
|
+
'commissionNumber': string;
|
|
49
55
|
/**
|
|
50
56
|
* The version identifier of the commission agreement being used for this commission
|
|
51
57
|
* @type {number}
|