@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,63 @@
|
|
|
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 { CoverageClass } from './coverage-class';
|
|
17
|
+
import { CoverageTermClass } from './coverage-term-class';
|
|
18
|
+
import { DeductibleClass } from './deductible-class';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CategoryClass
|
|
24
|
+
*/
|
|
25
|
+
export interface CategoryClass {
|
|
26
|
+
/**
|
|
27
|
+
* Unique identifier key for category
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CategoryClass
|
|
30
|
+
*/
|
|
31
|
+
'key': string;
|
|
32
|
+
/**
|
|
33
|
+
* Display name shown to users
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CategoryClass
|
|
36
|
+
*/
|
|
37
|
+
'label': string;
|
|
38
|
+
/**
|
|
39
|
+
* Category coverage term
|
|
40
|
+
* @type {CoverageTermClass}
|
|
41
|
+
* @memberof CategoryClass
|
|
42
|
+
*/
|
|
43
|
+
'coverageTerm': CoverageTermClass;
|
|
44
|
+
/**
|
|
45
|
+
* Category description
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CategoryClass
|
|
48
|
+
*/
|
|
49
|
+
'description': string;
|
|
50
|
+
/**
|
|
51
|
+
* List of category coverages
|
|
52
|
+
* @type {Array<CoverageClass>}
|
|
53
|
+
* @memberof CategoryClass
|
|
54
|
+
*/
|
|
55
|
+
'coverages': Array<CoverageClass>;
|
|
56
|
+
/**
|
|
57
|
+
* List of category deductibles
|
|
58
|
+
* @type {Array<DeductibleClass>}
|
|
59
|
+
* @memberof CategoryClass
|
|
60
|
+
*/
|
|
61
|
+
'deductibles': Array<DeductibleClass>;
|
|
62
|
+
}
|
|
63
|
+
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { ClaimPositionFieldsClass } from './claim-position-fields-class';
|
|
17
|
+
import { GeneralSettingClass } from './general-setting-class';
|
|
18
|
+
import { WarningClass } from './warning-class';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ClaimConfigClass
|
|
24
|
+
*/
|
|
25
|
+
export interface ClaimConfigClass {
|
|
26
|
+
/**
|
|
27
|
+
* General claim processing settings
|
|
28
|
+
* @type {GeneralSettingClass}
|
|
29
|
+
* @memberof ClaimConfigClass
|
|
30
|
+
*/
|
|
31
|
+
'generalSetting': GeneralSettingClass;
|
|
32
|
+
/**
|
|
33
|
+
* List of claim warning messages
|
|
34
|
+
* @type {Array<WarningClass>}
|
|
35
|
+
* @memberof ClaimConfigClass
|
|
36
|
+
*/
|
|
37
|
+
'warnings': Array<WarningClass>;
|
|
38
|
+
/**
|
|
39
|
+
* Fields configuration displayed in claim position table
|
|
40
|
+
* @type {ClaimPositionFieldsClass}
|
|
41
|
+
* @memberof ClaimConfigClass
|
|
42
|
+
*/
|
|
43
|
+
'claimPositionFields': ClaimPositionFieldsClass;
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { CustomFieldClass } from './custom-field-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ClaimPositionFieldsClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ClaimPositionFieldsClass {
|
|
24
|
+
/**
|
|
25
|
+
* Custom claim position fields
|
|
26
|
+
* @type {Array<CustomFieldClass>}
|
|
27
|
+
* @memberof ClaimPositionFieldsClass
|
|
28
|
+
*/
|
|
29
|
+
'customFields': Array<CustomFieldClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Order for displaying claim position fields
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof ClaimPositionFieldsClass
|
|
34
|
+
*/
|
|
35
|
+
'fieldsOrder': Array<string>;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -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 { CoverageTermClass } from './coverage-term-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CoverageClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CoverageClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier key for category coverage
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CoverageClass
|
|
28
|
+
*/
|
|
29
|
+
'key': string;
|
|
30
|
+
/**
|
|
31
|
+
* Display name shown to users
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CoverageClass
|
|
34
|
+
*/
|
|
35
|
+
'label': string;
|
|
36
|
+
/**
|
|
37
|
+
* Category coverage description
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CoverageClass
|
|
40
|
+
*/
|
|
41
|
+
'description': string;
|
|
42
|
+
/**
|
|
43
|
+
* Coverage term
|
|
44
|
+
* @type {CoverageTermClass}
|
|
45
|
+
* @memberof CoverageClass
|
|
46
|
+
*/
|
|
47
|
+
'coverageTerm': CoverageTermClass;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,64 @@
|
|
|
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 CoverageTermClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CoverageTermClass {
|
|
24
|
+
/**
|
|
25
|
+
* Whether this coverage term is covered
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof CoverageTermClass
|
|
28
|
+
*/
|
|
29
|
+
'isCovered': boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Coverage term type (fixed or percent)
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CoverageTermClass
|
|
34
|
+
*/
|
|
35
|
+
'type': CoverageTermClassTypeEnum;
|
|
36
|
+
/**
|
|
37
|
+
* Time period over which the coverage term applies
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CoverageTermClass
|
|
40
|
+
*/
|
|
41
|
+
'period': CoverageTermClassPeriodEnum;
|
|
42
|
+
/**
|
|
43
|
+
* Coverage term value - fixed amount or percentage with maximum limit
|
|
44
|
+
* @type {AmountWithLimitClass}
|
|
45
|
+
* @memberof CoverageTermClass
|
|
46
|
+
*/
|
|
47
|
+
'value': AmountWithLimitClass;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export const CoverageTermClassTypeEnum = {
|
|
51
|
+
Fixed: 'fixed',
|
|
52
|
+
Percent: 'percent'
|
|
53
|
+
} as const;
|
|
54
|
+
|
|
55
|
+
export type CoverageTermClassTypeEnum = typeof CoverageTermClassTypeEnum[keyof typeof CoverageTermClassTypeEnum];
|
|
56
|
+
export const CoverageTermClassPeriodEnum = {
|
|
57
|
+
CalendarYear: 'CALENDAR_YEAR',
|
|
58
|
+
PolicyYear: 'POLICY_YEAR',
|
|
59
|
+
PerClaim: 'PER_CLAIM'
|
|
60
|
+
} as const;
|
|
61
|
+
|
|
62
|
+
export type CoverageTermClassPeriodEnum = typeof CoverageTermClassPeriodEnum[keyof typeof CoverageTermClassPeriodEnum];
|
|
63
|
+
|
|
64
|
+
|
|
@@ -0,0 +1,59 @@
|
|
|
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 CustomFieldClass
|
|
21
|
+
*/
|
|
22
|
+
export interface CustomFieldClass {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier key for custom claim position field
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CustomFieldClass
|
|
27
|
+
*/
|
|
28
|
+
'key': string;
|
|
29
|
+
/**
|
|
30
|
+
* Display name shown to users
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CustomFieldClass
|
|
33
|
+
*/
|
|
34
|
+
'label': string;
|
|
35
|
+
/**
|
|
36
|
+
* Type of custom claim position field
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CustomFieldClass
|
|
39
|
+
*/
|
|
40
|
+
'type': CustomFieldClassTypeEnum;
|
|
41
|
+
/**
|
|
42
|
+
* Whether this custom claim position field is mandatory
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof CustomFieldClass
|
|
45
|
+
*/
|
|
46
|
+
'isRequired': boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export const CustomFieldClassTypeEnum = {
|
|
50
|
+
Boolean: 'boolean',
|
|
51
|
+
Date: 'date',
|
|
52
|
+
DateTime: 'dateTime',
|
|
53
|
+
String: 'string',
|
|
54
|
+
Number: 'number'
|
|
55
|
+
} as const;
|
|
56
|
+
|
|
57
|
+
export type CustomFieldClassTypeEnum = typeof CustomFieldClassTypeEnum[keyof typeof CustomFieldClassTypeEnum];
|
|
58
|
+
|
|
59
|
+
|
|
@@ -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 { AmountWithLimitClass } from './amount-with-limit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface DeductibleClass
|
|
22
|
+
*/
|
|
23
|
+
export interface DeductibleClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier key for deductible
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DeductibleClass
|
|
28
|
+
*/
|
|
29
|
+
'key': string;
|
|
30
|
+
/**
|
|
31
|
+
* Display name shown to users
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DeductibleClass
|
|
34
|
+
*/
|
|
35
|
+
'label': string;
|
|
36
|
+
/**
|
|
37
|
+
* Deductible type (fixed or percent)
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DeductibleClass
|
|
40
|
+
*/
|
|
41
|
+
'type': DeductibleClassTypeEnum;
|
|
42
|
+
/**
|
|
43
|
+
* Deductible value - fixed amount or percentage with maximum limit
|
|
44
|
+
* @type {AmountWithLimitClass}
|
|
45
|
+
* @memberof DeductibleClass
|
|
46
|
+
*/
|
|
47
|
+
'value': AmountWithLimitClass;
|
|
48
|
+
/**
|
|
49
|
+
* Time period over which the deductible applies
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof DeductibleClass
|
|
52
|
+
*/
|
|
53
|
+
'period': DeductibleClassPeriodEnum;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export const DeductibleClassTypeEnum = {
|
|
57
|
+
Fixed: 'fixed',
|
|
58
|
+
Percent: 'percent'
|
|
59
|
+
} as const;
|
|
60
|
+
|
|
61
|
+
export type DeductibleClassTypeEnum = typeof DeductibleClassTypeEnum[keyof typeof DeductibleClassTypeEnum];
|
|
62
|
+
export const DeductibleClassPeriodEnum = {
|
|
63
|
+
CalendarYear: 'CALENDAR_YEAR',
|
|
64
|
+
PolicyYear: 'POLICY_YEAR',
|
|
65
|
+
PerClaim: 'PER_CLAIM'
|
|
66
|
+
} as const;
|
|
67
|
+
|
|
68
|
+
export type DeductibleClassPeriodEnum = typeof DeductibleClassPeriodEnum[keyof typeof DeductibleClassPeriodEnum];
|
|
69
|
+
|
|
70
|
+
|
|
@@ -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 DeleteResponseByCodeClass
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteResponseByCodeClass {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof DeleteResponseByCodeClass
|
|
27
|
+
*/
|
|
28
|
+
'success': boolean;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
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 { WaitingPeriodClass } from './waiting-period-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GeneralSettingClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GeneralSettingClass {
|
|
24
|
+
/**
|
|
25
|
+
* Type of claim settlement type
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof GeneralSettingClass
|
|
28
|
+
*/
|
|
29
|
+
'settlementType': GeneralSettingClassSettlementTypeEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Currency used for claim settlement
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof GeneralSettingClass
|
|
34
|
+
*/
|
|
35
|
+
'currency': GeneralSettingClassCurrencyEnum;
|
|
36
|
+
/**
|
|
37
|
+
* Waiting period before coverage applies
|
|
38
|
+
* @type {WaitingPeriodClass}
|
|
39
|
+
* @memberof GeneralSettingClass
|
|
40
|
+
*/
|
|
41
|
+
'waitingPeriod': WaitingPeriodClass;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export const GeneralSettingClassSettlementTypeEnum = {
|
|
45
|
+
CompleteClaim: 'COMPLETE_CLAIM',
|
|
46
|
+
PartialClaim: 'PARTIAL_CLAIM'
|
|
47
|
+
} as const;
|
|
48
|
+
|
|
49
|
+
export type GeneralSettingClassSettlementTypeEnum = typeof GeneralSettingClassSettlementTypeEnum[keyof typeof GeneralSettingClassSettlementTypeEnum];
|
|
50
|
+
export const GeneralSettingClassCurrencyEnum = {
|
|
51
|
+
Eur: 'EUR',
|
|
52
|
+
Usd: 'USD',
|
|
53
|
+
Gbp: 'GBP',
|
|
54
|
+
Chf: 'CHF',
|
|
55
|
+
Pln: 'PLN',
|
|
56
|
+
Aud: 'AUD',
|
|
57
|
+
Cad: 'CAD',
|
|
58
|
+
Ddk: 'DDK',
|
|
59
|
+
Huf: 'HUF',
|
|
60
|
+
Nok: 'NOK',
|
|
61
|
+
Sek: 'SEK'
|
|
62
|
+
} as const;
|
|
63
|
+
|
|
64
|
+
export type GeneralSettingClassCurrencyEnum = typeof GeneralSettingClassCurrencyEnum[keyof typeof GeneralSettingClassCurrencyEnum];
|
|
65
|
+
|
|
66
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
export * from './activate-policy-request-dto';
|
|
2
2
|
export * from './activate-policy-response-class';
|
|
3
|
+
export * from './amount-with-limit-class';
|
|
3
4
|
export * from './bank-transfer-dto';
|
|
4
5
|
export * from './billing-address-dto';
|
|
5
6
|
export * from './booking-funnel-class';
|
|
6
7
|
export * from './calculate-custom-premium-request-dto';
|
|
7
8
|
export * from './calculate-premium-request-dto';
|
|
8
9
|
export * from './calculate-product-fields-request-dto';
|
|
10
|
+
export * from './category-class';
|
|
11
|
+
export * from './claim-config-class';
|
|
12
|
+
export * from './claim-position-fields-class';
|
|
9
13
|
export * from './clone-lead-request-dto';
|
|
10
14
|
export * from './clone-product-version-request-dto';
|
|
11
15
|
export * from './commission-agreement-class';
|
|
@@ -13,6 +17,8 @@ export * from './commission-agreement-item-class';
|
|
|
13
17
|
export * from './commission-agreement-product-class';
|
|
14
18
|
export * from './commission-agreement-version-class';
|
|
15
19
|
export * from './commission-recipient-class';
|
|
20
|
+
export * from './coverage-class';
|
|
21
|
+
export * from './coverage-term-class';
|
|
16
22
|
export * from './create-account-request-dto';
|
|
17
23
|
export * from './create-bank-account-request-dto';
|
|
18
24
|
export * from './create-booking-funnel-request-dto';
|
|
@@ -58,7 +64,10 @@ export * from './create-product-version-request-dto';
|
|
|
58
64
|
export * from './create-status-transition-rule-request-dto';
|
|
59
65
|
export * from './create-status-transition-rule-response-class';
|
|
60
66
|
export * from './csv-product-factor-dto';
|
|
67
|
+
export * from './custom-field-class';
|
|
68
|
+
export * from './deductible-class';
|
|
61
69
|
export * from './delete-draft-policy-request-dto';
|
|
70
|
+
export * from './delete-response-by-code-class';
|
|
62
71
|
export * from './delete-response-class';
|
|
63
72
|
export * from './emil-function-class';
|
|
64
73
|
export * from './emil-function-secret-class';
|
|
@@ -66,6 +75,7 @@ export * from './empty-response-class';
|
|
|
66
75
|
export * from './execute-emil-function-request-dto';
|
|
67
76
|
export * from './filter-named-range-request-dto';
|
|
68
77
|
export * from './filter-named-range-response-class';
|
|
78
|
+
export * from './general-setting-class';
|
|
69
79
|
export * from './get-booking-funnel-response-class';
|
|
70
80
|
export * from './get-booking-funnel-version-request-dto';
|
|
71
81
|
export * from './get-commission-agreement-item-response-class';
|
|
@@ -177,6 +187,14 @@ export * from './product-field-class';
|
|
|
177
187
|
export * from './product-field-type-class';
|
|
178
188
|
export * from './product-version-class';
|
|
179
189
|
export * from './rest-clone-lead-account-request-dto';
|
|
190
|
+
export * from './rest-create-product-config-response-class';
|
|
191
|
+
export * from './rest-create-product-config-version-response-class';
|
|
192
|
+
export * from './rest-get-product-config-response-class';
|
|
193
|
+
export * from './rest-get-product-config-version-response-class';
|
|
194
|
+
export * from './rest-list-product-config-versions-response-class';
|
|
195
|
+
export * from './rest-list-product-configs-response-class';
|
|
196
|
+
export * from './rest-update-product-config-response-class';
|
|
197
|
+
export * from './rest-update-product-config-version-response-class';
|
|
180
198
|
export * from './restore-policy-version-request-dto';
|
|
181
199
|
export * from './restore-policy-version-response-class';
|
|
182
200
|
export * from './sepa-dto';
|
|
@@ -192,8 +210,13 @@ export * from './shared-mandate-hash-data-dto';
|
|
|
192
210
|
export * from './shared-mandate-hash-data-response-class';
|
|
193
211
|
export * from './shared-mandate-response-class';
|
|
194
212
|
export * from './shared-payment-method-response-class';
|
|
213
|
+
export * from './shared-product-config-class';
|
|
214
|
+
export * from './shared-product-config-version-class';
|
|
195
215
|
export * from './shared-product-field-class';
|
|
216
|
+
export * from './shared-product-field-override-class';
|
|
217
|
+
export * from './shared-product-version-config-class';
|
|
196
218
|
export * from './shared-sepa-response-class';
|
|
219
|
+
export * from './shared-tariff-variation-class';
|
|
197
220
|
export * from './shared-update-named-range-request-dto';
|
|
198
221
|
export * from './shared-update-premium-formula-request-dto';
|
|
199
222
|
export * from './status-transition-rule-class';
|
|
@@ -204,6 +227,7 @@ export * from './suspend-policy-response-class';
|
|
|
204
227
|
export * from './swap-premium-formulas-order-request-dto';
|
|
205
228
|
export * from './swap-product-fields-order-request-dto';
|
|
206
229
|
export * from './tag-class';
|
|
230
|
+
export * from './tariff-coverage-term-class';
|
|
207
231
|
export * from './terminate-policy-request-dto';
|
|
208
232
|
export * from './terminate-policy-response-class';
|
|
209
233
|
export * from './timeslice-class';
|
|
@@ -235,6 +259,8 @@ export * from './update-policy-request-dto';
|
|
|
235
259
|
export * from './update-policy-response-class';
|
|
236
260
|
export * from './update-premium-formula-request-dto';
|
|
237
261
|
export * from './update-premium-formula-response-class';
|
|
262
|
+
export * from './update-product-config-request-dto';
|
|
263
|
+
export * from './update-product-config-version-status-request-dto';
|
|
238
264
|
export * from './update-product-field-request-dto';
|
|
239
265
|
export * from './update-product-field-response-class';
|
|
240
266
|
export * from './update-product-request-dto';
|
|
@@ -245,4 +271,6 @@ export * from './update-status-transition-rule-request-dto';
|
|
|
245
271
|
export * from './update-status-transition-rule-response-class';
|
|
246
272
|
export * from './uploaded-document-dto';
|
|
247
273
|
export * from './validate-product-factors-request-dto';
|
|
274
|
+
export * from './waiting-period-class';
|
|
275
|
+
export * from './warning-class';
|
|
248
276
|
export * from './withdraw-policy-response-class';
|
|
@@ -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 RestCreateProductConfigResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RestCreateProductConfigResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The product configuration
|
|
26
|
+
* @type {SharedProductConfigClass}
|
|
27
|
+
* @memberof RestCreateProductConfigResponseClass
|
|
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 RestCreateProductConfigVersionResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RestCreateProductConfigVersionResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The product configuration version
|
|
26
|
+
* @type {SharedProductConfigVersionClass}
|
|
27
|
+
* @memberof RestCreateProductConfigVersionResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'productConfigVersion': SharedProductConfigVersionClass;
|
|
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 { SharedProductConfigClass } from './shared-product-config-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface RestGetProductConfigResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RestGetProductConfigResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The product configuration
|
|
26
|
+
* @type {SharedProductConfigClass}
|
|
27
|
+
* @memberof RestGetProductConfigResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'productConfig': SharedProductConfigClass;
|
|
30
|
+
}
|
|
31
|
+
|