@emilgroup/insurance-sdk-node 1.52.0 → 1.53.0
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/.openapi-generator/FILES +33 -1
- package/README.md +2 -2
- package/api/commission-agreement-products-api.ts +710 -0
- package/api/commission-agreement-versions-api.ts +592 -0
- package/api/commission-agreements-api.ts +697 -0
- package/api/commission-recipients-api.ts +696 -0
- package/api/{default-api.ts → health-check-api.ts} +21 -17
- package/api/insured-objects-api.ts +5 -2
- package/api/policies-api.ts +176 -221
- package/api.ts +10 -2
- package/dist/api/commission-agreement-products-api.d.ts +403 -0
- package/dist/api/commission-agreement-products-api.js +652 -0
- package/dist/api/commission-agreement-versions-api.d.ts +337 -0
- package/dist/api/commission-agreement-versions-api.js +555 -0
- package/dist/api/commission-agreements-api.d.ts +394 -0
- package/dist/api/commission-agreements-api.js +646 -0
- package/dist/api/commission-recipients-api.d.ts +394 -0
- package/dist/api/commission-recipients-api.js +646 -0
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +30 -26
- package/dist/api/insured-objects-api.js +4 -2
- package/dist/api/policies-api.d.ts +134 -161
- package/dist/api/policies-api.js +129 -151
- package/dist/api.d.ts +5 -1
- package/dist/api.js +5 -1
- package/dist/models/commission-agreement-class.d.ts +89 -0
- package/dist/models/commission-agreement-class.js +23 -0
- package/dist/models/commission-agreement-item-class.d.ts +66 -0
- package/dist/models/commission-agreement-item-class.js +15 -0
- package/dist/models/commission-agreement-product-class.d.ts +72 -0
- package/dist/models/commission-agreement-product-class.js +15 -0
- package/dist/models/commission-agreement-version-class.d.ts +79 -0
- package/dist/models/commission-agreement-version-class.js +15 -0
- package/dist/models/commission-recipient-class.d.ts +78 -0
- package/dist/models/commission-recipient-class.js +15 -0
- package/dist/models/create-commission-agreement-item-dto.d.ts +36 -0
- package/dist/models/create-commission-agreement-item-dto.js +15 -0
- package/dist/models/create-commission-agreement-product-request-dto.d.ts +42 -0
- package/dist/models/create-commission-agreement-product-request-dto.js +15 -0
- package/dist/models/create-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/create-commission-agreement-product-response-class.js +15 -0
- package/dist/models/create-commission-agreement-request-dto.d.ts +75 -0
- package/dist/models/create-commission-agreement-request-dto.js +23 -0
- package/dist/models/create-commission-agreement-response-class.d.ts +25 -0
- package/dist/models/create-commission-agreement-response-class.js +15 -0
- package/dist/models/create-commission-agreement-version-request-dto.d.ts +49 -0
- package/dist/models/create-commission-agreement-version-request-dto.js +15 -0
- package/dist/models/create-commission-agreement-version-response-class.d.ts +25 -0
- package/dist/models/create-commission-agreement-version-response-class.js +15 -0
- package/dist/models/create-commission-recipient-request-dto.d.ts +48 -0
- package/dist/models/create-commission-recipient-request-dto.js +15 -0
- package/dist/models/create-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/create-commission-recipient-response-class.js +15 -0
- package/dist/models/get-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/get-commission-agreement-product-response-class.js +15 -0
- package/dist/models/get-commission-agreement-response-class.d.ts +25 -0
- package/dist/models/get-commission-agreement-response-class.js +15 -0
- package/dist/models/get-commission-agreement-version-response-class.d.ts +25 -0
- package/dist/models/get-commission-agreement-version-response-class.js +15 -0
- package/dist/models/get-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/get-commission-recipient-response-class.js +15 -0
- package/dist/models/index.d.ts +28 -0
- package/dist/models/index.js +28 -0
- package/dist/models/list-commission-agreement-products-response-class.d.ts +31 -0
- package/dist/models/list-commission-agreement-products-response-class.js +15 -0
- package/dist/models/list-commission-agreement-versions-response-class.d.ts +31 -0
- package/dist/models/list-commission-agreement-versions-response-class.js +15 -0
- package/dist/models/list-commission-agreements-response-class.d.ts +31 -0
- package/dist/models/list-commission-agreements-response-class.js +15 -0
- package/dist/models/list-commission-recipients-response-class.d.ts +31 -0
- package/dist/models/list-commission-recipients-response-class.js +15 -0
- package/dist/models/update-commission-agreement-product-request-dto.d.ts +42 -0
- package/dist/models/update-commission-agreement-product-request-dto.js +15 -0
- package/dist/models/update-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/update-commission-agreement-product-response-class.js +15 -0
- package/dist/models/update-commission-agreement-request-dto.d.ts +44 -0
- package/dist/models/update-commission-agreement-request-dto.js +23 -0
- package/dist/models/update-commission-agreement-response-class.d.ts +25 -0
- package/dist/models/update-commission-agreement-response-class.js +15 -0
- package/dist/models/update-commission-recipient-request-dto.d.ts +48 -0
- package/dist/models/update-commission-recipient-request-dto.js +15 -0
- package/dist/models/update-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/update-commission-recipient-response-class.js +15 -0
- package/models/commission-agreement-class.ts +98 -0
- package/models/commission-agreement-item-class.ts +72 -0
- package/models/commission-agreement-product-class.ts +78 -0
- package/models/commission-agreement-version-class.ts +85 -0
- package/models/commission-recipient-class.ts +84 -0
- package/models/create-commission-agreement-item-dto.ts +42 -0
- package/models/create-commission-agreement-product-request-dto.ts +48 -0
- package/models/create-commission-agreement-product-response-class.ts +31 -0
- package/models/create-commission-agreement-request-dto.ts +84 -0
- package/models/create-commission-agreement-response-class.ts +31 -0
- package/models/create-commission-agreement-version-request-dto.ts +55 -0
- package/models/create-commission-agreement-version-response-class.ts +31 -0
- package/models/create-commission-recipient-request-dto.ts +54 -0
- package/models/create-commission-recipient-response-class.ts +31 -0
- package/models/get-commission-agreement-product-response-class.ts +31 -0
- package/models/get-commission-agreement-response-class.ts +31 -0
- package/models/get-commission-agreement-version-response-class.ts +31 -0
- package/models/get-commission-recipient-response-class.ts +31 -0
- package/models/index.ts +28 -0
- package/models/list-commission-agreement-products-response-class.ts +37 -0
- package/models/list-commission-agreement-versions-response-class.ts +37 -0
- package/models/list-commission-agreements-response-class.ts +37 -0
- package/models/list-commission-recipients-response-class.ts +37 -0
- package/models/update-commission-agreement-product-request-dto.ts +48 -0
- package/models/update-commission-agreement-product-response-class.ts +31 -0
- package/models/update-commission-agreement-request-dto.ts +53 -0
- package/models/update-commission-agreement-response-class.ts +31 -0
- package/models/update-commission-recipient-request-dto.ts +54 -0
- package/models/update-commission-recipient-response-class.ts +31 -0
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CommissionAgreementItemClass
|
|
21
|
+
*/
|
|
22
|
+
export interface CommissionAgreementItemClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof CommissionAgreementItemClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier referencing the commission agreement version.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CommissionAgreementItemClass
|
|
33
|
+
*/
|
|
34
|
+
'commissionAgreementVersionId': number;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier for the object.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CommissionAgreementItemClass
|
|
39
|
+
*/
|
|
40
|
+
'code': string;
|
|
41
|
+
/**
|
|
42
|
+
* Commission agreement item name.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CommissionAgreementItemClass
|
|
45
|
+
*/
|
|
46
|
+
'itemName': string;
|
|
47
|
+
/**
|
|
48
|
+
* Commission agreement item description.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CommissionAgreementItemClass
|
|
51
|
+
*/
|
|
52
|
+
'itemDescription': string;
|
|
53
|
+
/**
|
|
54
|
+
* Commission formula (Python expression).
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CommissionAgreementItemClass
|
|
57
|
+
*/
|
|
58
|
+
'commissionFormula': string;
|
|
59
|
+
/**
|
|
60
|
+
* Time at which the object was created.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CommissionAgreementItemClass
|
|
63
|
+
*/
|
|
64
|
+
'createdAt': string;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was updated.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CommissionAgreementItemClass
|
|
69
|
+
*/
|
|
70
|
+
'updatedAt': string;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CommissionAgreementProductClass
|
|
21
|
+
*/
|
|
22
|
+
export interface CommissionAgreementProductClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof CommissionAgreementProductClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier referencing the commission agreement.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CommissionAgreementProductClass
|
|
33
|
+
*/
|
|
34
|
+
'commissionAgreementId': number;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier referencing the product.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof CommissionAgreementProductClass
|
|
39
|
+
*/
|
|
40
|
+
'productId': number;
|
|
41
|
+
/**
|
|
42
|
+
* Unique identifier for the object.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CommissionAgreementProductClass
|
|
45
|
+
*/
|
|
46
|
+
'code': string;
|
|
47
|
+
/**
|
|
48
|
+
* The date the commission agreement and product association is valid from.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CommissionAgreementProductClass
|
|
51
|
+
*/
|
|
52
|
+
'startDate': string;
|
|
53
|
+
/**
|
|
54
|
+
* The date the commission agreement and product association is valid to.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CommissionAgreementProductClass
|
|
57
|
+
*/
|
|
58
|
+
'endDate': string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Is the commission agreement and product association is enabed or not.
|
|
61
|
+
* @type {boolean}
|
|
62
|
+
* @memberof CommissionAgreementProductClass
|
|
63
|
+
*/
|
|
64
|
+
'enabled': boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was created.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CommissionAgreementProductClass
|
|
69
|
+
*/
|
|
70
|
+
'createdAt': string;
|
|
71
|
+
/**
|
|
72
|
+
* Time at which the object was updated.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof CommissionAgreementProductClass
|
|
75
|
+
*/
|
|
76
|
+
'updatedAt': string;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionAgreementItemClass } from './commission-agreement-item-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CommissionAgreementVersionClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CommissionAgreementVersionClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CommissionAgreementVersionClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier referencing the commission agreement.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof CommissionAgreementVersionClass
|
|
34
|
+
*/
|
|
35
|
+
'commissionAgreementId': number;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier for the object.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CommissionAgreementVersionClass
|
|
40
|
+
*/
|
|
41
|
+
'code': string;
|
|
42
|
+
/**
|
|
43
|
+
* Commission agreement version description.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CommissionAgreementVersionClass
|
|
46
|
+
*/
|
|
47
|
+
'versionDescription'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Commission formula (Python expression).
|
|
50
|
+
* @type {Array<CommissionAgreementItemClass>}
|
|
51
|
+
* @memberof CommissionAgreementVersionClass
|
|
52
|
+
*/
|
|
53
|
+
'items': Array<CommissionAgreementItemClass>;
|
|
54
|
+
/**
|
|
55
|
+
* The date the commission agreement version is valid from.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CommissionAgreementVersionClass
|
|
58
|
+
*/
|
|
59
|
+
'startDate': string;
|
|
60
|
+
/**
|
|
61
|
+
* The date the commission agreement version is valid to.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CommissionAgreementVersionClass
|
|
64
|
+
*/
|
|
65
|
+
'endDate': string | null;
|
|
66
|
+
/**
|
|
67
|
+
* Is the commission agreement version is enabed or not.
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof CommissionAgreementVersionClass
|
|
70
|
+
*/
|
|
71
|
+
'enabled': boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Time at which the object was created.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CommissionAgreementVersionClass
|
|
76
|
+
*/
|
|
77
|
+
'createdAt': string;
|
|
78
|
+
/**
|
|
79
|
+
* Time at which the object was updated.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CommissionAgreementVersionClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedAt': string;
|
|
84
|
+
}
|
|
85
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CommissionRecipientClass
|
|
21
|
+
*/
|
|
22
|
+
export interface CommissionRecipientClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof CommissionRecipientClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier referencing the commission agreement.
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CommissionRecipientClass
|
|
33
|
+
*/
|
|
34
|
+
'commissionAgreementId': number;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier for the object.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CommissionRecipientClass
|
|
39
|
+
*/
|
|
40
|
+
'code': string;
|
|
41
|
+
/**
|
|
42
|
+
* For person partner type displayName is a combination if firstname and lastname. For organization its organization name.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CommissionRecipientClass
|
|
45
|
+
*/
|
|
46
|
+
'displayName': string;
|
|
47
|
+
/**
|
|
48
|
+
* Unique identifier of the partner that this object belongs to.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CommissionRecipientClass
|
|
51
|
+
*/
|
|
52
|
+
'partnerCode': string;
|
|
53
|
+
/**
|
|
54
|
+
* The date the recipient receives the commission from.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CommissionRecipientClass
|
|
57
|
+
*/
|
|
58
|
+
'startDate': string;
|
|
59
|
+
/**
|
|
60
|
+
* The date the recipient receives the commission to.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CommissionRecipientClass
|
|
63
|
+
*/
|
|
64
|
+
'endDate': string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Is the recipient should receive the commission or not.
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof CommissionRecipientClass
|
|
69
|
+
*/
|
|
70
|
+
'enabled': boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Time at which the object was created.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof CommissionRecipientClass
|
|
75
|
+
*/
|
|
76
|
+
'createdAt': string;
|
|
77
|
+
/**
|
|
78
|
+
* Time at which the object was updated.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof CommissionRecipientClass
|
|
81
|
+
*/
|
|
82
|
+
'updatedAt': string;
|
|
83
|
+
}
|
|
84
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateCommissionAgreementItemDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCommissionAgreementItemDto {
|
|
23
|
+
/**
|
|
24
|
+
* Commission agreement item name.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateCommissionAgreementItemDto
|
|
27
|
+
*/
|
|
28
|
+
'itemName': string;
|
|
29
|
+
/**
|
|
30
|
+
* Commission agreement item description.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateCommissionAgreementItemDto
|
|
33
|
+
*/
|
|
34
|
+
'itemDescription': string;
|
|
35
|
+
/**
|
|
36
|
+
* Commission formula (Python expression).
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateCommissionAgreementItemDto
|
|
39
|
+
*/
|
|
40
|
+
'commissionFormula': string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateCommissionAgreementProductRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCommissionAgreementProductRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier referencing the product.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof CreateCommissionAgreementProductRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'productId': number;
|
|
29
|
+
/**
|
|
30
|
+
* The date the product can use the commision agreement from.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateCommissionAgreementProductRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'startDate'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The date the product can use the commision agreement to.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateCommissionAgreementProductRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'endDate'?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof CreateCommissionAgreementProductRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'enabled': boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionAgreementProductClass } from './commission-agreement-product-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateCommissionAgreementProductResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateCommissionAgreementProductResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Commission agreement product
|
|
26
|
+
* @type {CommissionAgreementProductClass}
|
|
27
|
+
* @memberof CreateCommissionAgreementProductResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'product': CommissionAgreementProductClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CreateCommissionAgreementItemDto } from './create-commission-agreement-item-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateCommissionAgreementRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateCommissionAgreementRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* Commission agreement name.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateCommissionAgreementRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* Commission agreement description.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateCommissionAgreementRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'description'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Type of the commission agreement.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateCommissionAgreementRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'type': CreateCommissionAgreementRequestDtoTypeEnum;
|
|
42
|
+
/**
|
|
43
|
+
* Commission agreement item list.
|
|
44
|
+
* @type {Array<CreateCommissionAgreementItemDto>}
|
|
45
|
+
* @memberof CreateCommissionAgreementRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'items': Array<CreateCommissionAgreementItemDto>;
|
|
48
|
+
/**
|
|
49
|
+
* IDs of the products the commission agreement applies to.
|
|
50
|
+
* @type {Array<number>}
|
|
51
|
+
* @memberof CreateCommissionAgreementRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'productIds': Array<number>;
|
|
54
|
+
/**
|
|
55
|
+
* Date the commission agreement should work from.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateCommissionAgreementRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'startDate'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Date the commission agreement should work to.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CreateCommissionAgreementRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'endDate'?: string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof CreateCommissionAgreementRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'enabled'?: boolean;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export const CreateCommissionAgreementRequestDtoTypeEnum = {
|
|
75
|
+
PerPolicy: 'PerPolicy',
|
|
76
|
+
Monthly: 'Monthly',
|
|
77
|
+
Quarterly: 'Quarterly',
|
|
78
|
+
Semiannually: 'Semiannually',
|
|
79
|
+
Annually: 'Annually'
|
|
80
|
+
} as const;
|
|
81
|
+
|
|
82
|
+
export type CreateCommissionAgreementRequestDtoTypeEnum = typeof CreateCommissionAgreementRequestDtoTypeEnum[keyof typeof CreateCommissionAgreementRequestDtoTypeEnum];
|
|
83
|
+
|
|
84
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionAgreementClass } from './commission-agreement-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateCommissionAgreementResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateCommissionAgreementResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Commission agreement
|
|
26
|
+
* @type {CommissionAgreementClass}
|
|
27
|
+
* @memberof CreateCommissionAgreementResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'commissionAgreement': CommissionAgreementClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CreateCommissionAgreementItemDto } from './create-commission-agreement-item-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateCommissionAgreementVersionRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateCommissionAgreementVersionRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* Commission agreement version description.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateCommissionAgreementVersionRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'versionDescription'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Commission agreement item list.
|
|
32
|
+
* @type {Array<CreateCommissionAgreementItemDto>}
|
|
33
|
+
* @memberof CreateCommissionAgreementVersionRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'items': Array<CreateCommissionAgreementItemDto>;
|
|
36
|
+
/**
|
|
37
|
+
* The date the version is valid from.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateCommissionAgreementVersionRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'startDate'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* The date the version is valid to.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateCommissionAgreementVersionRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'endDate'?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof CreateCommissionAgreementVersionRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'enabled': boolean;
|
|
54
|
+
}
|
|
55
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import { CommissionAgreementVersionClass } from './commission-agreement-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateCommissionAgreementVersionResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateCommissionAgreementVersionResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Commission agreement version
|
|
26
|
+
* @type {CommissionAgreementVersionClass}
|
|
27
|
+
* @memberof CreateCommissionAgreementVersionResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'version': CommissionAgreementVersionClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateCommissionRecipientRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateCommissionRecipientRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier of the partner that this object belongs to.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateCommissionRecipientRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'partnerCode': string;
|
|
29
|
+
/**
|
|
30
|
+
* The date the recipient receives the commission from.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateCommissionRecipientRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'startDate'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The date the recipient receives the commission to.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateCommissionRecipientRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'endDate'?: string;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateCommissionRecipientRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'displayName': string;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {boolean}
|
|
50
|
+
* @memberof CreateCommissionRecipientRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'enabled': boolean;
|
|
53
|
+
}
|
|
54
|
+
|