@emilgroup/insurance-sdk-node 1.93.0 → 1.93.1-beta.11
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 +29 -0
- package/README.md +2 -2
- package/api/product-configs-api.ts +1371 -0
- package/api.ts +2 -0
- package/dist/api/product-configs-api.d.ts +765 -0
- package/dist/api/product-configs-api.js +1225 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/amount-with-limit-class.d.ts +30 -0
- package/dist/models/amount-with-limit-class.js +15 -0
- package/dist/models/category-class.d.ts +57 -0
- package/dist/models/category-class.js +15 -0
- package/dist/models/claim-config-class.d.ts +39 -0
- package/dist/models/claim-config-class.js +15 -0
- package/dist/models/claim-position-fields-class.d.ts +31 -0
- package/dist/models/claim-position-fields-class.js +15 -0
- package/dist/models/coverage-class.d.ts +43 -0
- package/dist/models/coverage-class.js +15 -0
- package/dist/models/coverage-term-class.d.ts +54 -0
- package/dist/models/coverage-term-class.js +25 -0
- package/dist/models/custom-field-class.d.ts +50 -0
- package/dist/models/custom-field-class.js +23 -0
- package/dist/models/deductible-class.d.ts +60 -0
- package/dist/models/deductible-class.js +25 -0
- package/dist/models/delete-response-by-code-class.d.ts +24 -0
- package/dist/models/delete-response-by-code-class.js +15 -0
- package/dist/models/general-setting-class.d.ts +56 -0
- package/dist/models/general-setting-class.js +33 -0
- package/dist/models/index.d.ts +28 -0
- package/dist/models/index.js +28 -0
- package/dist/models/rest-create-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-create-product-config-response-class.js +15 -0
- package/dist/models/rest-create-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-create-product-config-version-response-class.js +15 -0
- package/dist/models/rest-get-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-get-product-config-response-class.js +15 -0
- package/dist/models/rest-get-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-get-product-config-version-response-class.js +15 -0
- package/dist/models/rest-list-product-config-versions-response-class.d.ts +43 -0
- package/dist/models/rest-list-product-config-versions-response-class.js +15 -0
- package/dist/models/rest-list-product-configs-response-class.d.ts +43 -0
- package/dist/models/rest-list-product-configs-response-class.js +15 -0
- package/dist/models/rest-update-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-update-product-config-response-class.js +15 -0
- package/dist/models/rest-update-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-update-product-config-version-response-class.js +15 -0
- package/dist/models/shared-product-config-class.d.ts +79 -0
- package/dist/models/shared-product-config-class.js +15 -0
- package/dist/models/shared-product-config-version-class.d.ts +85 -0
- package/dist/models/shared-product-config-version-class.js +21 -0
- package/dist/models/shared-product-field-override-class.d.ts +48 -0
- package/dist/models/shared-product-field-override-class.js +15 -0
- package/dist/models/shared-product-version-config-class.d.ts +32 -0
- package/dist/models/shared-product-version-config-class.js +15 -0
- package/dist/models/shared-tariff-variation-class.d.ts +64 -0
- package/dist/models/shared-tariff-variation-class.js +15 -0
- package/dist/models/tariff-coverage-term-class.d.ts +72 -0
- package/dist/models/tariff-coverage-term-class.js +30 -0
- package/dist/models/update-product-config-request-dto.d.ts +24 -0
- package/dist/models/update-product-config-request-dto.js +15 -0
- package/dist/models/update-product-config-version-status-request-dto.d.ts +30 -0
- package/dist/models/update-product-config-version-status-request-dto.js +21 -0
- package/dist/models/waiting-period-class.d.ts +41 -0
- package/dist/models/waiting-period-class.js +20 -0
- package/dist/models/warning-class.d.ts +47 -0
- package/dist/models/warning-class.js +20 -0
- package/models/amount-with-limit-class.ts +36 -0
- package/models/category-class.ts +63 -0
- package/models/claim-config-class.ts +45 -0
- package/models/claim-position-fields-class.ts +37 -0
- package/models/coverage-class.ts +49 -0
- package/models/coverage-term-class.ts +64 -0
- package/models/custom-field-class.ts +59 -0
- package/models/deductible-class.ts +70 -0
- package/models/delete-response-by-code-class.ts +30 -0
- package/models/general-setting-class.ts +66 -0
- package/models/index.ts +28 -0
- package/models/rest-create-product-config-response-class.ts +31 -0
- package/models/rest-create-product-config-version-response-class.ts +31 -0
- package/models/rest-get-product-config-response-class.ts +31 -0
- package/models/rest-get-product-config-version-response-class.ts +31 -0
- package/models/rest-list-product-config-versions-response-class.ts +49 -0
- package/models/rest-list-product-configs-response-class.ts +49 -0
- package/models/rest-update-product-config-response-class.ts +31 -0
- package/models/rest-update-product-config-version-response-class.ts +31 -0
- package/models/shared-product-config-class.ts +85 -0
- package/models/shared-product-config-version-class.ts +94 -0
- package/models/shared-product-field-override-class.ts +54 -0
- package/models/shared-product-version-config-class.ts +38 -0
- package/models/shared-tariff-variation-class.ts +70 -0
- package/models/tariff-coverage-term-class.ts +83 -0
- package/models/update-product-config-request-dto.ts +30 -0
- package/models/update-product-config-version-status-request-dto.ts +39 -0
- package/models/waiting-period-class.ts +50 -0
- package/models/warning-class.ts +56 -0
- package/package.json +2 -2
|
@@ -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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface RestGetProductConfigVersionResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RestGetProductConfigVersionResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The product configuration version
|
|
26
|
+
* @type {SharedProductConfigVersionClass}
|
|
27
|
+
* @memberof RestGetProductConfigVersionResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'productConfigVersion': SharedProductConfigVersionClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface RestListProductConfigVersionsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RestListProductConfigVersionsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* List of product configuration versions
|
|
26
|
+
* @type {Array<SharedProductConfigVersionClass>}
|
|
27
|
+
* @memberof RestListProductConfigVersionsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<SharedProductConfigVersionClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof RestListProductConfigVersionsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof RestListProductConfigVersionsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* Total amount of items.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof RestListProductConfigVersionsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
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 { SharedProductConfigClass } from './shared-product-config-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface RestListProductConfigsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RestListProductConfigsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* List of product configurations
|
|
26
|
+
* @type {Array<SharedProductConfigClass>}
|
|
27
|
+
* @memberof RestListProductConfigsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<SharedProductConfigClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof RestListProductConfigsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof RestListProductConfigsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* Total amount of items.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof RestListProductConfigsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -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 { SharedProductConfigClass } from './shared-product-config-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface RestUpdateProductConfigResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RestUpdateProductConfigResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The product configuration
|
|
26
|
+
* @type {SharedProductConfigClass}
|
|
27
|
+
* @memberof RestUpdateProductConfigResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'productConfig': SharedProductConfigClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface RestUpdateProductConfigVersionResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RestUpdateProductConfigVersionResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The product configuration version
|
|
26
|
+
* @type {SharedProductConfigVersionClass}
|
|
27
|
+
* @memberof RestUpdateProductConfigVersionResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'productConfigVersion': SharedProductConfigVersionClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -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 { SharedProductConfigVersionClass } from './shared-product-config-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface SharedProductConfigClass
|
|
22
|
+
*/
|
|
23
|
+
export interface SharedProductConfigClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique numeric identifier
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof SharedProductConfigClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier for the object.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SharedProductConfigClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
/**
|
|
37
|
+
* URL-friendly unique identifier
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SharedProductConfigClass
|
|
40
|
+
*/
|
|
41
|
+
'slug': string;
|
|
42
|
+
/**
|
|
43
|
+
* URL-friendly product identifier
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SharedProductConfigClass
|
|
46
|
+
*/
|
|
47
|
+
'productSlug': string;
|
|
48
|
+
/**
|
|
49
|
+
* Identifier for the related product version
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof SharedProductConfigClass
|
|
52
|
+
*/
|
|
53
|
+
'productVersionId': number;
|
|
54
|
+
/**
|
|
55
|
+
* Identifier of the user who created the record.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof SharedProductConfigClass
|
|
58
|
+
*/
|
|
59
|
+
'createdBy': string;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who last updated the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SharedProductConfigClass
|
|
64
|
+
*/
|
|
65
|
+
'updatedBy': string;
|
|
66
|
+
/**
|
|
67
|
+
* Time at which the object was created.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SharedProductConfigClass
|
|
70
|
+
*/
|
|
71
|
+
'createdAt': string;
|
|
72
|
+
/**
|
|
73
|
+
* Time at which the object was updated.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof SharedProductConfigClass
|
|
76
|
+
*/
|
|
77
|
+
'updatedAt': string;
|
|
78
|
+
/**
|
|
79
|
+
* Product configuration versions
|
|
80
|
+
* @type {Array<SharedProductConfigVersionClass>}
|
|
81
|
+
* @memberof SharedProductConfigClass
|
|
82
|
+
*/
|
|
83
|
+
'versions': Array<SharedProductConfigVersionClass>;
|
|
84
|
+
}
|
|
85
|
+
|
|
@@ -0,0 +1,94 @@
|
|
|
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 { SharedProductVersionConfigClass } from './shared-product-version-config-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface SharedProductConfigVersionClass
|
|
22
|
+
*/
|
|
23
|
+
export interface SharedProductConfigVersionClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof SharedProductConfigVersionClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier for the object.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SharedProductConfigVersionClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
/**
|
|
37
|
+
* Current status of the product configuration version
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SharedProductConfigVersionClass
|
|
40
|
+
*/
|
|
41
|
+
'status': SharedProductConfigVersionClassStatusEnum;
|
|
42
|
+
/**
|
|
43
|
+
* Version number of the product configuration version
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof SharedProductConfigVersionClass
|
|
46
|
+
*/
|
|
47
|
+
'version': number;
|
|
48
|
+
/**
|
|
49
|
+
* Unique code linking to the parent product configuration
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof SharedProductConfigVersionClass
|
|
52
|
+
*/
|
|
53
|
+
'productConfigCode': string;
|
|
54
|
+
/**
|
|
55
|
+
* Complete product configuration version settings
|
|
56
|
+
* @type {SharedProductVersionConfigClass}
|
|
57
|
+
* @memberof SharedProductConfigVersionClass
|
|
58
|
+
*/
|
|
59
|
+
'config': SharedProductVersionConfigClass;
|
|
60
|
+
/**
|
|
61
|
+
* Identifier of the user who created the record.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof SharedProductConfigVersionClass
|
|
64
|
+
*/
|
|
65
|
+
'createdBy': string;
|
|
66
|
+
/**
|
|
67
|
+
* Identifier of the user who last updated the record.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SharedProductConfigVersionClass
|
|
70
|
+
*/
|
|
71
|
+
'updatedBy': string;
|
|
72
|
+
/**
|
|
73
|
+
* Time at which the object was created.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof SharedProductConfigVersionClass
|
|
76
|
+
*/
|
|
77
|
+
'createdAt': string;
|
|
78
|
+
/**
|
|
79
|
+
* Time at which the object was updated.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof SharedProductConfigVersionClass
|
|
82
|
+
*/
|
|
83
|
+
'updatedAt': string;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export const SharedProductConfigVersionClassStatusEnum = {
|
|
87
|
+
Archived: 'archived',
|
|
88
|
+
Draft: 'draft',
|
|
89
|
+
Published: 'published'
|
|
90
|
+
} as const;
|
|
91
|
+
|
|
92
|
+
export type SharedProductConfigVersionClassStatusEnum = typeof SharedProductConfigVersionClassStatusEnum[keyof typeof SharedProductConfigVersionClassStatusEnum];
|
|
93
|
+
|
|
94
|
+
|
|
@@ -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 SharedProductFieldOverrideClass
|
|
21
|
+
*/
|
|
22
|
+
export interface SharedProductFieldOverrideClass {
|
|
23
|
+
/**
|
|
24
|
+
* Name of the product field
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SharedProductFieldOverrideClass
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Group of the product field
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SharedProductFieldOverrideClass
|
|
33
|
+
*/
|
|
34
|
+
'group': string;
|
|
35
|
+
/**
|
|
36
|
+
* Id of the product field
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof SharedProductFieldOverrideClass
|
|
39
|
+
*/
|
|
40
|
+
'productFieldId': number;
|
|
41
|
+
/**
|
|
42
|
+
* Id of the insured object
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof SharedProductFieldOverrideClass
|
|
45
|
+
*/
|
|
46
|
+
'insuredObjectId': number;
|
|
47
|
+
/**
|
|
48
|
+
* Value of the product field
|
|
49
|
+
* @type {object}
|
|
50
|
+
* @memberof SharedProductFieldOverrideClass
|
|
51
|
+
*/
|
|
52
|
+
'value': object;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { ClaimConfigClass } from './claim-config-class';
|
|
17
|
+
import { SharedTariffVariationClass } from './shared-tariff-variation-class';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface SharedProductVersionConfigClass
|
|
23
|
+
*/
|
|
24
|
+
export interface SharedProductVersionConfigClass {
|
|
25
|
+
/**
|
|
26
|
+
* Claim configuration settings
|
|
27
|
+
* @type {ClaimConfigClass}
|
|
28
|
+
* @memberof SharedProductVersionConfigClass
|
|
29
|
+
*/
|
|
30
|
+
'claimConfig': ClaimConfigClass;
|
|
31
|
+
/**
|
|
32
|
+
* List of tariff variation configurations
|
|
33
|
+
* @type {Array<SharedTariffVariationClass>}
|
|
34
|
+
* @memberof SharedProductVersionConfigClass
|
|
35
|
+
*/
|
|
36
|
+
'tariffVariations': Array<SharedTariffVariationClass>;
|
|
37
|
+
}
|
|
38
|
+
|
|
@@ -0,0 +1,70 @@
|
|
|
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 { CategoryClass } from './category-class';
|
|
17
|
+
import { DeductibleClass } from './deductible-class';
|
|
18
|
+
import { SharedProductFieldOverrideClass } from './shared-product-field-override-class';
|
|
19
|
+
import { TariffCoverageTermClass } from './tariff-coverage-term-class';
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @export
|
|
24
|
+
* @interface SharedTariffVariationClass
|
|
25
|
+
*/
|
|
26
|
+
export interface SharedTariffVariationClass {
|
|
27
|
+
/**
|
|
28
|
+
* Unique identifier key for tariff variation
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof SharedTariffVariationClass
|
|
31
|
+
*/
|
|
32
|
+
'key': string;
|
|
33
|
+
/**
|
|
34
|
+
* Display name shown to users
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof SharedTariffVariationClass
|
|
37
|
+
*/
|
|
38
|
+
'label': string;
|
|
39
|
+
/**
|
|
40
|
+
* Tariff coverage term
|
|
41
|
+
* @type {TariffCoverageTermClass}
|
|
42
|
+
* @memberof SharedTariffVariationClass
|
|
43
|
+
*/
|
|
44
|
+
'coverageTerm': TariffCoverageTermClass;
|
|
45
|
+
/**
|
|
46
|
+
* Tariff variation description
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof SharedTariffVariationClass
|
|
49
|
+
*/
|
|
50
|
+
'description': string;
|
|
51
|
+
/**
|
|
52
|
+
* List of tariff variation categories
|
|
53
|
+
* @type {Array<CategoryClass>}
|
|
54
|
+
* @memberof SharedTariffVariationClass
|
|
55
|
+
*/
|
|
56
|
+
'categories': Array<CategoryClass>;
|
|
57
|
+
/**
|
|
58
|
+
* List of tariff variation deductibles
|
|
59
|
+
* @type {Array<DeductibleClass>}
|
|
60
|
+
* @memberof SharedTariffVariationClass
|
|
61
|
+
*/
|
|
62
|
+
'deductibles': Array<DeductibleClass>;
|
|
63
|
+
/**
|
|
64
|
+
* Custom field values that override product field values
|
|
65
|
+
* @type {Array<SharedProductFieldOverrideClass>}
|
|
66
|
+
* @memberof SharedTariffVariationClass
|
|
67
|
+
*/
|
|
68
|
+
'productFieldOverrides': Array<SharedProductFieldOverrideClass>;
|
|
69
|
+
}
|
|
70
|
+
|
|
@@ -0,0 +1,83 @@
|
|
|
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 { AmountWithLimitClass } from './amount-with-limit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface TariffCoverageTermClass
|
|
22
|
+
*/
|
|
23
|
+
export interface TariffCoverageTermClass {
|
|
24
|
+
/**
|
|
25
|
+
* Coverage term type (fixed or percent)
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof TariffCoverageTermClass
|
|
28
|
+
*/
|
|
29
|
+
'type': TariffCoverageTermClassTypeEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Time period over which the coverage term applies
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof TariffCoverageTermClass
|
|
34
|
+
*/
|
|
35
|
+
'period': TariffCoverageTermClassPeriodEnum;
|
|
36
|
+
/**
|
|
37
|
+
* Coverage term value - fixed amount or percentage with maximum limit
|
|
38
|
+
* @type {AmountWithLimitClass}
|
|
39
|
+
* @memberof TariffCoverageTermClass
|
|
40
|
+
*/
|
|
41
|
+
'value': AmountWithLimitClass;
|
|
42
|
+
/**
|
|
43
|
+
* Method for calculating coverage accrual
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof TariffCoverageTermClass
|
|
46
|
+
*/
|
|
47
|
+
'accrualBasis': TariffCoverageTermClassAccrualBasisEnum;
|
|
48
|
+
/**
|
|
49
|
+
* Maximum percentage for manual coverage term adjustment (0.0 to 1.0, e.g., 0.5 = 50%)
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof TariffCoverageTermClass
|
|
52
|
+
*/
|
|
53
|
+
'maxAdjustmentPercentage': number;
|
|
54
|
+
/**
|
|
55
|
+
* Whether manual coverage term adjustment is permitted
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof TariffCoverageTermClass
|
|
58
|
+
*/
|
|
59
|
+
'isManualAdjustmentAllowed': boolean;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export const TariffCoverageTermClassTypeEnum = {
|
|
63
|
+
Fixed: 'fixed',
|
|
64
|
+
Percent: 'percent'
|
|
65
|
+
} as const;
|
|
66
|
+
|
|
67
|
+
export type TariffCoverageTermClassTypeEnum = typeof TariffCoverageTermClassTypeEnum[keyof typeof TariffCoverageTermClassTypeEnum];
|
|
68
|
+
export const TariffCoverageTermClassPeriodEnum = {
|
|
69
|
+
CalendarYear: 'CALENDAR_YEAR',
|
|
70
|
+
PolicyYear: 'POLICY_YEAR',
|
|
71
|
+
PerClaim: 'PER_CLAIM'
|
|
72
|
+
} as const;
|
|
73
|
+
|
|
74
|
+
export type TariffCoverageTermClassPeriodEnum = typeof TariffCoverageTermClassPeriodEnum[keyof typeof TariffCoverageTermClassPeriodEnum];
|
|
75
|
+
export const TariffCoverageTermClassAccrualBasisEnum = {
|
|
76
|
+
CalendarYearProRata: 'CALENDAR_YEAR_PRO_RATA',
|
|
77
|
+
PolicyYearProRata: 'POLICY_YEAR_PRO_RATA',
|
|
78
|
+
PolicyYearProRataAfterWaitingPeriod: 'POLICY_YEAR_PRO_RATA_AFTER_WAITING_PERIOD'
|
|
79
|
+
} as const;
|
|
80
|
+
|
|
81
|
+
export type TariffCoverageTermClassAccrualBasisEnum = typeof TariffCoverageTermClassAccrualBasisEnum[keyof typeof TariffCoverageTermClassAccrualBasisEnum];
|
|
82
|
+
|
|
83
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
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 UpdateProductConfigRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateProductConfigRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* URL-friendly unique identifier
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateProductConfigRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'slug': string;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
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 UpdateProductConfigVersionStatusRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateProductConfigVersionStatusRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Status of the product config version
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateProductConfigVersionStatusRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'status': UpdateProductConfigVersionStatusRequestDtoStatusEnum;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export const UpdateProductConfigVersionStatusRequestDtoStatusEnum = {
|
|
32
|
+
Archived: 'archived',
|
|
33
|
+
Draft: 'draft',
|
|
34
|
+
Published: 'published'
|
|
35
|
+
} as const;
|
|
36
|
+
|
|
37
|
+
export type UpdateProductConfigVersionStatusRequestDtoStatusEnum = typeof UpdateProductConfigVersionStatusRequestDtoStatusEnum[keyof typeof UpdateProductConfigVersionStatusRequestDtoStatusEnum];
|
|
38
|
+
|
|
39
|
+
|