@emilgroup/public-api-sdk 1.33.1-beta.13 → 1.33.1-beta.15
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 +13 -0
- package/README.md +2 -2
- package/api/product-versions-api.ts +223 -0
- package/dist/api/product-versions-api.d.ts +122 -0
- package/dist/api/product-versions-api.js +191 -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/calculate-product-tariff-quote-request-dto.d.ts +38 -0
- package/dist/models/calculate-product-tariff-quote-request-dto.js +15 -0
- package/dist/models/calculate-product-tariff-quote-response-class.d.ts +25 -0
- package/dist/models/calculate-product-tariff-quote-response-class.js +15 -0
- package/dist/models/calculation-errors-class.d.ts +25 -0
- package/dist/models/calculation-errors-class.js +15 -0
- package/dist/models/calculation-item-errors-class.d.ts +43 -0
- package/dist/models/calculation-item-errors-class.js +15 -0
- package/dist/models/calculation-message-class.d.ts +30 -0
- package/dist/models/calculation-message-class.js +15 -0
- package/dist/models/category-coverage-summary-class.d.ts +43 -0
- package/dist/models/category-coverage-summary-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/get-product-config-tariffs-response-class.d.ts +31 -0
- package/dist/models/get-product-config-tariffs-response-class.js +15 -0
- package/dist/models/index.d.ts +13 -0
- package/dist/models/index.js +13 -0
- package/dist/models/product-tariff-quote-class.d.ts +51 -0
- package/dist/models/product-tariff-quote-class.js +15 -0
- package/dist/models/tariff-category-summary-class.d.ts +50 -0
- package/dist/models/tariff-category-summary-class.js +15 -0
- package/dist/models/tariff-coverage-term-class.d.ts +48 -0
- package/dist/models/tariff-coverage-term-class.js +25 -0
- package/dist/models/tariff-summary-class.d.ts +50 -0
- package/dist/models/tariff-summary-class.js +15 -0
- package/models/amount-with-limit-class.ts +36 -0
- package/models/calculate-product-tariff-quote-request-dto.ts +44 -0
- package/models/calculate-product-tariff-quote-response-class.ts +31 -0
- package/models/calculation-errors-class.ts +31 -0
- package/models/calculation-item-errors-class.ts +49 -0
- package/models/calculation-message-class.ts +36 -0
- package/models/category-coverage-summary-class.ts +49 -0
- package/models/coverage-term-class.ts +64 -0
- package/models/get-product-config-tariffs-response-class.ts +37 -0
- package/models/index.ts +13 -0
- package/models/product-tariff-quote-class.ts +57 -0
- package/models/tariff-category-summary-class.ts +56 -0
- package/models/tariff-coverage-term-class.ts +58 -0
- package/models/tariff-summary-class.ts +56 -0
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.CoverageTermClassPeriodEnum = exports.CoverageTermClassTypeEnum = void 0;
|
|
17
|
+
exports.CoverageTermClassTypeEnum = {
|
|
18
|
+
Fixed: 'fixed',
|
|
19
|
+
Percent: 'percent'
|
|
20
|
+
};
|
|
21
|
+
exports.CoverageTermClassPeriodEnum = {
|
|
22
|
+
CalendarYear: 'CALENDAR_YEAR',
|
|
23
|
+
PolicyYear: 'POLICY_YEAR',
|
|
24
|
+
PerClaim: 'PER_CLAIM'
|
|
25
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { TariffSummaryClass } from './tariff-summary-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetProductConfigTariffsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetProductConfigTariffsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Tariffs
|
|
21
|
+
* @type {Array<TariffSummaryClass>}
|
|
22
|
+
* @memberof GetProductConfigTariffsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'tariffs': Array<TariffSummaryClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Total amount of items.
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof GetProductConfigTariffsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'totalItems': number;
|
|
31
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './address-completion-item-class';
|
|
2
2
|
export * from './address-completion-response-class';
|
|
3
3
|
export * from './address-field-score-class';
|
|
4
|
+
export * from './amount-with-limit-class';
|
|
4
5
|
export * from './bank-transfer-dto';
|
|
5
6
|
export * from './bank-transfer-response-class';
|
|
6
7
|
export * from './billing-address-dto';
|
|
@@ -8,7 +9,13 @@ export * from './billing-address-response-class';
|
|
|
8
9
|
export * from './booking-funnel-class';
|
|
9
10
|
export * from './calculate-product-fields-request-dto';
|
|
10
11
|
export * from './calculate-product-fields-response-class';
|
|
12
|
+
export * from './calculate-product-tariff-quote-request-dto';
|
|
13
|
+
export * from './calculate-product-tariff-quote-response-class';
|
|
14
|
+
export * from './calculation-errors-class';
|
|
15
|
+
export * from './calculation-item-errors-class';
|
|
16
|
+
export * from './calculation-message-class';
|
|
11
17
|
export * from './card-details-dto';
|
|
18
|
+
export * from './category-coverage-summary-class';
|
|
12
19
|
export * from './complete-adyen-payment-setup-request-dto';
|
|
13
20
|
export * from './complete-braintree-payment-setup-request-dto';
|
|
14
21
|
export * from './complete-eis-payment-setup-request-dto';
|
|
@@ -17,6 +24,7 @@ export * from './complete-email-verification-response-class';
|
|
|
17
24
|
export * from './complete-payment-setup-request-dto';
|
|
18
25
|
export * from './complete-payment-setup-response-class';
|
|
19
26
|
export * from './complete-stripe-payment-setup-request-dto';
|
|
27
|
+
export * from './coverage-term-class';
|
|
20
28
|
export * from './create-account-request-dto';
|
|
21
29
|
export * from './create-bank-account-request-dto';
|
|
22
30
|
export * from './create-custom-application-request-dto';
|
|
@@ -38,6 +46,7 @@ export * from './filter-named-range-response-class';
|
|
|
38
46
|
export * from './get-booking-funnel-response-class';
|
|
39
47
|
export * from './get-custom-css-response-class';
|
|
40
48
|
export * from './get-lead-response-class';
|
|
49
|
+
export * from './get-product-config-tariffs-response-class';
|
|
41
50
|
export * from './get-product-document-download-url-response-class';
|
|
42
51
|
export * from './get-public-psp-settings-response-class';
|
|
43
52
|
export * from './initiate-adyen-payment-setup-request-dto';
|
|
@@ -86,6 +95,7 @@ export * from './product-document-class';
|
|
|
86
95
|
export * from './product-factor-for-version-class';
|
|
87
96
|
export * from './product-factor-value-for-version-class';
|
|
88
97
|
export * from './product-field-class';
|
|
98
|
+
export * from './product-tariff-quote-class';
|
|
89
99
|
export * from './product-version-class';
|
|
90
100
|
export * from './psp-configuration-response-class';
|
|
91
101
|
export * from './send-notification-request-dto';
|
|
@@ -95,6 +105,9 @@ export * from './sepa-dto';
|
|
|
95
105
|
export * from './sepa-response-class';
|
|
96
106
|
export * from './structured-address-class';
|
|
97
107
|
export * from './suggested-address-details-class';
|
|
108
|
+
export * from './tariff-category-summary-class';
|
|
109
|
+
export * from './tariff-coverage-term-class';
|
|
110
|
+
export * from './tariff-summary-class';
|
|
98
111
|
export * from './update-lead-request-dto';
|
|
99
112
|
export * from './update-lead-response-class';
|
|
100
113
|
export * from './uploaded-document-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./address-completion-item-class"), exports);
|
|
18
18
|
__exportStar(require("./address-completion-response-class"), exports);
|
|
19
19
|
__exportStar(require("./address-field-score-class"), exports);
|
|
20
|
+
__exportStar(require("./amount-with-limit-class"), exports);
|
|
20
21
|
__exportStar(require("./bank-transfer-dto"), exports);
|
|
21
22
|
__exportStar(require("./bank-transfer-response-class"), exports);
|
|
22
23
|
__exportStar(require("./billing-address-dto"), exports);
|
|
@@ -24,7 +25,13 @@ __exportStar(require("./billing-address-response-class"), exports);
|
|
|
24
25
|
__exportStar(require("./booking-funnel-class"), exports);
|
|
25
26
|
__exportStar(require("./calculate-product-fields-request-dto"), exports);
|
|
26
27
|
__exportStar(require("./calculate-product-fields-response-class"), exports);
|
|
28
|
+
__exportStar(require("./calculate-product-tariff-quote-request-dto"), exports);
|
|
29
|
+
__exportStar(require("./calculate-product-tariff-quote-response-class"), exports);
|
|
30
|
+
__exportStar(require("./calculation-errors-class"), exports);
|
|
31
|
+
__exportStar(require("./calculation-item-errors-class"), exports);
|
|
32
|
+
__exportStar(require("./calculation-message-class"), exports);
|
|
27
33
|
__exportStar(require("./card-details-dto"), exports);
|
|
34
|
+
__exportStar(require("./category-coverage-summary-class"), exports);
|
|
28
35
|
__exportStar(require("./complete-adyen-payment-setup-request-dto"), exports);
|
|
29
36
|
__exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
|
|
30
37
|
__exportStar(require("./complete-eis-payment-setup-request-dto"), exports);
|
|
@@ -33,6 +40,7 @@ __exportStar(require("./complete-email-verification-response-class"), exports);
|
|
|
33
40
|
__exportStar(require("./complete-payment-setup-request-dto"), exports);
|
|
34
41
|
__exportStar(require("./complete-payment-setup-response-class"), exports);
|
|
35
42
|
__exportStar(require("./complete-stripe-payment-setup-request-dto"), exports);
|
|
43
|
+
__exportStar(require("./coverage-term-class"), exports);
|
|
36
44
|
__exportStar(require("./create-account-request-dto"), exports);
|
|
37
45
|
__exportStar(require("./create-bank-account-request-dto"), exports);
|
|
38
46
|
__exportStar(require("./create-custom-application-request-dto"), exports);
|
|
@@ -54,6 +62,7 @@ __exportStar(require("./filter-named-range-response-class"), exports);
|
|
|
54
62
|
__exportStar(require("./get-booking-funnel-response-class"), exports);
|
|
55
63
|
__exportStar(require("./get-custom-css-response-class"), exports);
|
|
56
64
|
__exportStar(require("./get-lead-response-class"), exports);
|
|
65
|
+
__exportStar(require("./get-product-config-tariffs-response-class"), exports);
|
|
57
66
|
__exportStar(require("./get-product-document-download-url-response-class"), exports);
|
|
58
67
|
__exportStar(require("./get-public-psp-settings-response-class"), exports);
|
|
59
68
|
__exportStar(require("./initiate-adyen-payment-setup-request-dto"), exports);
|
|
@@ -102,6 +111,7 @@ __exportStar(require("./product-document-class"), exports);
|
|
|
102
111
|
__exportStar(require("./product-factor-for-version-class"), exports);
|
|
103
112
|
__exportStar(require("./product-factor-value-for-version-class"), exports);
|
|
104
113
|
__exportStar(require("./product-field-class"), exports);
|
|
114
|
+
__exportStar(require("./product-tariff-quote-class"), exports);
|
|
105
115
|
__exportStar(require("./product-version-class"), exports);
|
|
106
116
|
__exportStar(require("./psp-configuration-response-class"), exports);
|
|
107
117
|
__exportStar(require("./send-notification-request-dto"), exports);
|
|
@@ -111,6 +121,9 @@ __exportStar(require("./sepa-dto"), exports);
|
|
|
111
121
|
__exportStar(require("./sepa-response-class"), exports);
|
|
112
122
|
__exportStar(require("./structured-address-class"), exports);
|
|
113
123
|
__exportStar(require("./suggested-address-details-class"), exports);
|
|
124
|
+
__exportStar(require("./tariff-category-summary-class"), exports);
|
|
125
|
+
__exportStar(require("./tariff-coverage-term-class"), exports);
|
|
126
|
+
__exportStar(require("./tariff-summary-class"), exports);
|
|
114
127
|
__exportStar(require("./update-lead-request-dto"), exports);
|
|
115
128
|
__exportStar(require("./update-lead-response-class"), exports);
|
|
116
129
|
__exportStar(require("./uploaded-document-dto"), exports);
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { CalculationErrorsClass } from './calculation-errors-class';
|
|
13
|
+
import { CreateEstimatedInvoiceResponseClass } from './create-estimated-invoice-response-class';
|
|
14
|
+
import { PolicyObjectResponseClass } from './policy-object-response-class';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ProductTariffQuoteClass
|
|
19
|
+
*/
|
|
20
|
+
export interface ProductTariffQuoteClass {
|
|
21
|
+
/**
|
|
22
|
+
* Tariff key
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof ProductTariffQuoteClass
|
|
25
|
+
*/
|
|
26
|
+
'tariffKey': string;
|
|
27
|
+
/**
|
|
28
|
+
* Estimated invoice
|
|
29
|
+
* @type {CreateEstimatedInvoiceResponseClass}
|
|
30
|
+
* @memberof ProductTariffQuoteClass
|
|
31
|
+
*/
|
|
32
|
+
'estimatedInvoice': CreateEstimatedInvoiceResponseClass;
|
|
33
|
+
/**
|
|
34
|
+
* The policy objects contains necessary information to create a policy. The Policy objects array will be validated if the \'validate\' flag is set to true
|
|
35
|
+
* @type {Array<PolicyObjectResponseClass>}
|
|
36
|
+
* @memberof ProductTariffQuoteClass
|
|
37
|
+
*/
|
|
38
|
+
'policyObjects': Array<PolicyObjectResponseClass>;
|
|
39
|
+
/**
|
|
40
|
+
* The policy objects contains necessary information to create a policy. The Policy objects array will be validated if the \'validate\' flag is set to true
|
|
41
|
+
* @type {Array<PolicyObjectResponseClass>}
|
|
42
|
+
* @memberof ProductTariffQuoteClass
|
|
43
|
+
*/
|
|
44
|
+
'calculatedPolicyObjects': Array<PolicyObjectResponseClass>;
|
|
45
|
+
/**
|
|
46
|
+
* Calculation errors
|
|
47
|
+
* @type {CalculationErrorsClass}
|
|
48
|
+
* @memberof ProductTariffQuoteClass
|
|
49
|
+
*/
|
|
50
|
+
'errors'?: CalculationErrorsClass;
|
|
51
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { CategoryCoverageSummaryClass } from './category-coverage-summary-class';
|
|
13
|
+
import { CoverageTermClass } from './coverage-term-class';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface TariffCategorySummaryClass
|
|
18
|
+
*/
|
|
19
|
+
export interface TariffCategorySummaryClass {
|
|
20
|
+
/**
|
|
21
|
+
* Unique identifier key for category
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof TariffCategorySummaryClass
|
|
24
|
+
*/
|
|
25
|
+
'key': string;
|
|
26
|
+
/**
|
|
27
|
+
* Display name shown to users
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof TariffCategorySummaryClass
|
|
30
|
+
*/
|
|
31
|
+
'label': string;
|
|
32
|
+
/**
|
|
33
|
+
* Category description
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof TariffCategorySummaryClass
|
|
36
|
+
*/
|
|
37
|
+
'description'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Category coverage term
|
|
40
|
+
* @type {CoverageTermClass}
|
|
41
|
+
* @memberof TariffCategorySummaryClass
|
|
42
|
+
*/
|
|
43
|
+
'coverageTerm': CoverageTermClass;
|
|
44
|
+
/**
|
|
45
|
+
* List of category coverages
|
|
46
|
+
* @type {Array<CategoryCoverageSummaryClass>}
|
|
47
|
+
* @memberof TariffCategorySummaryClass
|
|
48
|
+
*/
|
|
49
|
+
'coverages': Array<CategoryCoverageSummaryClass>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AmountWithLimitClass } from './amount-with-limit-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface TariffCoverageTermClass
|
|
17
|
+
*/
|
|
18
|
+
export interface TariffCoverageTermClass {
|
|
19
|
+
/**
|
|
20
|
+
* Coverage term type (fixed or percent)
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof TariffCoverageTermClass
|
|
23
|
+
*/
|
|
24
|
+
'type': TariffCoverageTermClassTypeEnum;
|
|
25
|
+
/**
|
|
26
|
+
* Time period over which the coverage term applies
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof TariffCoverageTermClass
|
|
29
|
+
*/
|
|
30
|
+
'period': TariffCoverageTermClassPeriodEnum;
|
|
31
|
+
/**
|
|
32
|
+
* Coverage term value - fixed amount or percentage with maximum limit
|
|
33
|
+
* @type {AmountWithLimitClass}
|
|
34
|
+
* @memberof TariffCoverageTermClass
|
|
35
|
+
*/
|
|
36
|
+
'value': AmountWithLimitClass;
|
|
37
|
+
}
|
|
38
|
+
export declare const TariffCoverageTermClassTypeEnum: {
|
|
39
|
+
readonly Fixed: "fixed";
|
|
40
|
+
readonly Percent: "percent";
|
|
41
|
+
};
|
|
42
|
+
export type TariffCoverageTermClassTypeEnum = typeof TariffCoverageTermClassTypeEnum[keyof typeof TariffCoverageTermClassTypeEnum];
|
|
43
|
+
export declare const TariffCoverageTermClassPeriodEnum: {
|
|
44
|
+
readonly CalendarYear: "CALENDAR_YEAR";
|
|
45
|
+
readonly PolicyYear: "POLICY_YEAR";
|
|
46
|
+
readonly PerClaim: "PER_CLAIM";
|
|
47
|
+
};
|
|
48
|
+
export type TariffCoverageTermClassPeriodEnum = typeof TariffCoverageTermClassPeriodEnum[keyof typeof TariffCoverageTermClassPeriodEnum];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.TariffCoverageTermClassPeriodEnum = exports.TariffCoverageTermClassTypeEnum = void 0;
|
|
17
|
+
exports.TariffCoverageTermClassTypeEnum = {
|
|
18
|
+
Fixed: 'fixed',
|
|
19
|
+
Percent: 'percent'
|
|
20
|
+
};
|
|
21
|
+
exports.TariffCoverageTermClassPeriodEnum = {
|
|
22
|
+
CalendarYear: 'CALENDAR_YEAR',
|
|
23
|
+
PolicyYear: 'POLICY_YEAR',
|
|
24
|
+
PerClaim: 'PER_CLAIM'
|
|
25
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { TariffCategorySummaryClass } from './tariff-category-summary-class';
|
|
13
|
+
import { TariffCoverageTermClass } from './tariff-coverage-term-class';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface TariffSummaryClass
|
|
18
|
+
*/
|
|
19
|
+
export interface TariffSummaryClass {
|
|
20
|
+
/**
|
|
21
|
+
* Unique identifier key for tariff variation
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof TariffSummaryClass
|
|
24
|
+
*/
|
|
25
|
+
'key': string;
|
|
26
|
+
/**
|
|
27
|
+
* Display name shown to users
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof TariffSummaryClass
|
|
30
|
+
*/
|
|
31
|
+
'label': string;
|
|
32
|
+
/**
|
|
33
|
+
* Tariff variation description
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof TariffSummaryClass
|
|
36
|
+
*/
|
|
37
|
+
'description'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Tariff coverage term
|
|
40
|
+
* @type {TariffCoverageTermClass}
|
|
41
|
+
* @memberof TariffSummaryClass
|
|
42
|
+
*/
|
|
43
|
+
'coverageTerm': TariffCoverageTermClass;
|
|
44
|
+
/**
|
|
45
|
+
* List of tariff variation categories
|
|
46
|
+
* @type {Array<TariffCategorySummaryClass>}
|
|
47
|
+
* @memberof TariffSummaryClass
|
|
48
|
+
*/
|
|
49
|
+
'categories': Array<TariffCategorySummaryClass>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 AmountWithLimitClass
|
|
21
|
+
*/
|
|
22
|
+
export interface AmountWithLimitClass {
|
|
23
|
+
/**
|
|
24
|
+
* Amount value (required for percent and fixed types)
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof AmountWithLimitClass
|
|
27
|
+
*/
|
|
28
|
+
'amount': number;
|
|
29
|
+
/**
|
|
30
|
+
* Maximum limit (required for percent type)
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof AmountWithLimitClass
|
|
33
|
+
*/
|
|
34
|
+
'limit': number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 { PolicyObjectRequestDto } from './policy-object-request-dto';
|
|
17
|
+
import { PremiumOverrideRequestDto } from './premium-override-request-dto';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @export
|
|
22
|
+
* @interface CalculateProductTariffQuoteRequestDto
|
|
23
|
+
*/
|
|
24
|
+
export interface CalculateProductTariffQuoteRequestDto {
|
|
25
|
+
/**
|
|
26
|
+
* Tariff key
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CalculateProductTariffQuoteRequestDto
|
|
29
|
+
*/
|
|
30
|
+
'tariffKey': string;
|
|
31
|
+
/**
|
|
32
|
+
* The policy objects contains necessary information to create a policy. The Policy objects array will be validated if the \'validate\' flag is set to true
|
|
33
|
+
* @type {Array<PolicyObjectRequestDto>}
|
|
34
|
+
* @memberof CalculateProductTariffQuoteRequestDto
|
|
35
|
+
*/
|
|
36
|
+
'policyObjects'?: Array<PolicyObjectRequestDto>;
|
|
37
|
+
/**
|
|
38
|
+
* Premium Override is utilized to override the premium calculation. The premium formulas will be disregarded when this object is present. The premium override content will be validated if the \'validate\' flag is set to true.
|
|
39
|
+
* @type {PremiumOverrideRequestDto}
|
|
40
|
+
* @memberof CalculateProductTariffQuoteRequestDto
|
|
41
|
+
*/
|
|
42
|
+
'premiumOverride'?: PremiumOverrideRequestDto;
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 { ProductTariffQuoteClass } from './product-tariff-quote-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CalculateProductTariffQuoteResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CalculateProductTariffQuoteResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Product tariff quote
|
|
26
|
+
* @type {ProductTariffQuoteClass}
|
|
27
|
+
* @memberof CalculateProductTariffQuoteResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'productTariffQuote': ProductTariffQuoteClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 { CalculationItemErrorsClass } from './calculation-item-errors-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CalculationErrorsClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CalculationErrorsClass {
|
|
24
|
+
/**
|
|
25
|
+
* Calculation errors.
|
|
26
|
+
* @type {Array<CalculationItemErrorsClass>}
|
|
27
|
+
* @memberof CalculationErrorsClass
|
|
28
|
+
*/
|
|
29
|
+
'itemErrors': Array<CalculationItemErrorsClass>;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 { CalculationMessageClass } from './calculation-message-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CalculationItemErrorsClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CalculationItemErrorsClass {
|
|
24
|
+
/**
|
|
25
|
+
* Type of the calculated item (PREMIUM_ITEM or PRODUCT_FIELD).
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CalculationItemErrorsClass
|
|
28
|
+
*/
|
|
29
|
+
'itemType': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier referencing the premium item/product field..
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof CalculationItemErrorsClass
|
|
34
|
+
*/
|
|
35
|
+
'itemId': number;
|
|
36
|
+
/**
|
|
37
|
+
* Name of the calculated item.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CalculationItemErrorsClass
|
|
40
|
+
*/
|
|
41
|
+
'itemName': string;
|
|
42
|
+
/**
|
|
43
|
+
* Item messages.
|
|
44
|
+
* @type {Array<CalculationMessageClass>}
|
|
45
|
+
* @memberof CalculationItemErrorsClass
|
|
46
|
+
*/
|
|
47
|
+
'messages': Array<CalculationMessageClass>;
|
|
48
|
+
}
|
|
49
|
+
|