@emilgroup/commission-sdk 1.0.0-beta.24 → 1.0.0-beta.26
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.26 --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.26
|
|
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}
|
|
@@ -59,6 +59,18 @@ export interface CommissionClass {
|
|
|
59
59
|
* @memberof CommissionClass
|
|
60
60
|
*/
|
|
61
61
|
'policyCode': string;
|
|
62
|
+
/**
|
|
63
|
+
* The unique number of the partner associated with this commission
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CommissionClass
|
|
66
|
+
*/
|
|
67
|
+
'partnerNumber': string;
|
|
68
|
+
/**
|
|
69
|
+
* The unique number of the policy associated with this commission
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof CommissionClass
|
|
72
|
+
*/
|
|
73
|
+
'policyNumber': string;
|
|
62
74
|
/**
|
|
63
75
|
* The total monetary amount of the commission in the smallest currency unit (e.g., cents). This is the sum of all commission items
|
|
64
76
|
* @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}
|
|
@@ -64,6 +64,18 @@ export interface CommissionClass {
|
|
|
64
64
|
* @memberof CommissionClass
|
|
65
65
|
*/
|
|
66
66
|
'policyCode': string;
|
|
67
|
+
/**
|
|
68
|
+
* The unique number of the partner associated with this commission
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof CommissionClass
|
|
71
|
+
*/
|
|
72
|
+
'partnerNumber': string;
|
|
73
|
+
/**
|
|
74
|
+
* The unique number of the policy associated with this commission
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof CommissionClass
|
|
77
|
+
*/
|
|
78
|
+
'policyNumber': string;
|
|
67
79
|
/**
|
|
68
80
|
* The total monetary amount of the commission in the smallest currency unit (e.g., cents). This is the sum of all commission items
|
|
69
81
|
* @type {number}
|