@emilgroup/public-api-sdk-node 1.35.1-beta.9 → 1.36.1-beta.1
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 +15 -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 +66 -0
- package/dist/models/coverage-term-class.js +30 -0
- package/dist/models/deductible-class.d.ts +60 -0
- package/dist/models/deductible-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 +15 -0
- package/dist/models/index.js +15 -0
- package/dist/models/product-field-class.d.ts +6 -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/product-version-class.d.ts +6 -0
- package/dist/models/tariff-category-summary-class.d.ts +57 -0
- package/dist/models/tariff-category-summary-class.js +15 -0
- package/dist/models/tariff-coverage-term-class.d.ts +60 -0
- package/dist/models/tariff-coverage-term-class.js +30 -0
- package/dist/models/tariff-info-class.d.ts +47 -0
- package/dist/models/tariff-info-class.js +20 -0
- package/dist/models/tariff-summary-class.d.ts +52 -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 +77 -0
- package/models/deductible-class.ts +70 -0
- package/models/get-product-config-tariffs-response-class.ts +37 -0
- package/models/index.ts +15 -0
- package/models/product-field-class.ts +6 -0
- package/models/product-tariff-quote-class.ts +57 -0
- package/models/product-version-class.ts +6 -0
- package/models/tariff-category-summary-class.ts +63 -0
- package/models/tariff-coverage-term-class.ts +71 -0
- package/models/tariff-info-class.ts +56 -0
- package/models/tariff-summary-class.ts +58 -0
- package/package.json +2 -2
|
@@ -0,0 +1,30 @@
|
|
|
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.CoverageTermClassProRataEnum = 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
|
+
};
|
|
26
|
+
exports.CoverageTermClassProRataEnum = {
|
|
27
|
+
Disabled: 'DISABLED',
|
|
28
|
+
Enabled: 'ENABLED',
|
|
29
|
+
EnabledAfterWaitingPeriod: 'ENABLED_AFTER_WAITING_PERIOD'
|
|
30
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
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 DeductibleClass
|
|
17
|
+
*/
|
|
18
|
+
export interface DeductibleClass {
|
|
19
|
+
/**
|
|
20
|
+
* Unique identifier key for deductible
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof DeductibleClass
|
|
23
|
+
*/
|
|
24
|
+
'key': string;
|
|
25
|
+
/**
|
|
26
|
+
* Display name shown to users
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof DeductibleClass
|
|
29
|
+
*/
|
|
30
|
+
'label': string;
|
|
31
|
+
/**
|
|
32
|
+
* Deductible type (fixed or percent)
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof DeductibleClass
|
|
35
|
+
*/
|
|
36
|
+
'type': DeductibleClassTypeEnum;
|
|
37
|
+
/**
|
|
38
|
+
* Time period over which the deductible applies
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof DeductibleClass
|
|
41
|
+
*/
|
|
42
|
+
'period': DeductibleClassPeriodEnum;
|
|
43
|
+
/**
|
|
44
|
+
* Selectable deductible amounts
|
|
45
|
+
* @type {Array<AmountWithLimitClass>}
|
|
46
|
+
* @memberof DeductibleClass
|
|
47
|
+
*/
|
|
48
|
+
'options': Array<AmountWithLimitClass>;
|
|
49
|
+
}
|
|
50
|
+
export declare const DeductibleClassTypeEnum: {
|
|
51
|
+
readonly Fixed: "fixed";
|
|
52
|
+
readonly Percent: "percent";
|
|
53
|
+
};
|
|
54
|
+
export type DeductibleClassTypeEnum = typeof DeductibleClassTypeEnum[keyof typeof DeductibleClassTypeEnum];
|
|
55
|
+
export declare const DeductibleClassPeriodEnum: {
|
|
56
|
+
readonly CalendarYear: "CALENDAR_YEAR";
|
|
57
|
+
readonly PolicyYear: "POLICY_YEAR";
|
|
58
|
+
readonly PerClaim: "PER_CLAIM";
|
|
59
|
+
};
|
|
60
|
+
export type DeductibleClassPeriodEnum = typeof DeductibleClassPeriodEnum[keyof typeof DeductibleClassPeriodEnum];
|
|
@@ -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.DeductibleClassPeriodEnum = exports.DeductibleClassTypeEnum = void 0;
|
|
17
|
+
exports.DeductibleClassTypeEnum = {
|
|
18
|
+
Fixed: 'fixed',
|
|
19
|
+
Percent: 'percent'
|
|
20
|
+
};
|
|
21
|
+
exports.DeductibleClassPeriodEnum = {
|
|
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';
|
|
@@ -30,6 +38,7 @@ export * from './create-lead-response-class';
|
|
|
30
38
|
export * from './create-payment-method-request-dto';
|
|
31
39
|
export * from './create-presigned-post-request-dto';
|
|
32
40
|
export * from './create-presigned-post-response-class';
|
|
41
|
+
export * from './deductible-class';
|
|
33
42
|
export * from './document-class';
|
|
34
43
|
export * from './eis-sepa-debit-config-response-class';
|
|
35
44
|
export * from './eis-sepa-debit-dto';
|
|
@@ -38,6 +47,7 @@ export * from './filter-named-range-response-class';
|
|
|
38
47
|
export * from './get-booking-funnel-response-class';
|
|
39
48
|
export * from './get-custom-css-response-class';
|
|
40
49
|
export * from './get-lead-response-class';
|
|
50
|
+
export * from './get-product-config-tariffs-response-class';
|
|
41
51
|
export * from './get-product-document-download-url-response-class';
|
|
42
52
|
export * from './get-public-psp-settings-response-class';
|
|
43
53
|
export * from './initiate-adyen-payment-setup-request-dto';
|
|
@@ -86,6 +96,7 @@ export * from './product-document-class';
|
|
|
86
96
|
export * from './product-factor-for-version-class';
|
|
87
97
|
export * from './product-factor-value-for-version-class';
|
|
88
98
|
export * from './product-field-class';
|
|
99
|
+
export * from './product-tariff-quote-class';
|
|
89
100
|
export * from './product-version-class';
|
|
90
101
|
export * from './psp-configuration-response-class';
|
|
91
102
|
export * from './send-notification-request-dto';
|
|
@@ -95,6 +106,10 @@ export * from './sepa-dto';
|
|
|
95
106
|
export * from './sepa-response-class';
|
|
96
107
|
export * from './structured-address-class';
|
|
97
108
|
export * from './suggested-address-details-class';
|
|
109
|
+
export * from './tariff-category-summary-class';
|
|
110
|
+
export * from './tariff-coverage-term-class';
|
|
111
|
+
export * from './tariff-info-class';
|
|
112
|
+
export * from './tariff-summary-class';
|
|
98
113
|
export * from './update-lead-request-dto';
|
|
99
114
|
export * from './update-lead-response-class';
|
|
100
115
|
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);
|
|
@@ -46,6 +54,7 @@ __exportStar(require("./create-lead-response-class"), exports);
|
|
|
46
54
|
__exportStar(require("./create-payment-method-request-dto"), exports);
|
|
47
55
|
__exportStar(require("./create-presigned-post-request-dto"), exports);
|
|
48
56
|
__exportStar(require("./create-presigned-post-response-class"), exports);
|
|
57
|
+
__exportStar(require("./deductible-class"), exports);
|
|
49
58
|
__exportStar(require("./document-class"), exports);
|
|
50
59
|
__exportStar(require("./eis-sepa-debit-config-response-class"), exports);
|
|
51
60
|
__exportStar(require("./eis-sepa-debit-dto"), exports);
|
|
@@ -54,6 +63,7 @@ __exportStar(require("./filter-named-range-response-class"), exports);
|
|
|
54
63
|
__exportStar(require("./get-booking-funnel-response-class"), exports);
|
|
55
64
|
__exportStar(require("./get-custom-css-response-class"), exports);
|
|
56
65
|
__exportStar(require("./get-lead-response-class"), exports);
|
|
66
|
+
__exportStar(require("./get-product-config-tariffs-response-class"), exports);
|
|
57
67
|
__exportStar(require("./get-product-document-download-url-response-class"), exports);
|
|
58
68
|
__exportStar(require("./get-public-psp-settings-response-class"), exports);
|
|
59
69
|
__exportStar(require("./initiate-adyen-payment-setup-request-dto"), exports);
|
|
@@ -102,6 +112,7 @@ __exportStar(require("./product-document-class"), exports);
|
|
|
102
112
|
__exportStar(require("./product-factor-for-version-class"), exports);
|
|
103
113
|
__exportStar(require("./product-factor-value-for-version-class"), exports);
|
|
104
114
|
__exportStar(require("./product-field-class"), exports);
|
|
115
|
+
__exportStar(require("./product-tariff-quote-class"), exports);
|
|
105
116
|
__exportStar(require("./product-version-class"), exports);
|
|
106
117
|
__exportStar(require("./psp-configuration-response-class"), exports);
|
|
107
118
|
__exportStar(require("./send-notification-request-dto"), exports);
|
|
@@ -111,6 +122,10 @@ __exportStar(require("./sepa-dto"), exports);
|
|
|
111
122
|
__exportStar(require("./sepa-response-class"), exports);
|
|
112
123
|
__exportStar(require("./structured-address-class"), exports);
|
|
113
124
|
__exportStar(require("./suggested-address-details-class"), exports);
|
|
125
|
+
__exportStar(require("./tariff-category-summary-class"), exports);
|
|
126
|
+
__exportStar(require("./tariff-coverage-term-class"), exports);
|
|
127
|
+
__exportStar(require("./tariff-info-class"), exports);
|
|
128
|
+
__exportStar(require("./tariff-summary-class"), exports);
|
|
114
129
|
__exportStar(require("./update-lead-request-dto"), exports);
|
|
115
130
|
__exportStar(require("./update-lead-response-class"), exports);
|
|
116
131
|
__exportStar(require("./uploaded-document-dto"), exports);
|
|
@@ -81,6 +81,12 @@ export interface ProductFieldClass {
|
|
|
81
81
|
* @memberof ProductFieldClass
|
|
82
82
|
*/
|
|
83
83
|
'isEditableCustomerPortal': boolean;
|
|
84
|
+
/**
|
|
85
|
+
* Whether this field can be overridden by product config.
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @memberof ProductFieldClass
|
|
88
|
+
*/
|
|
89
|
+
'isProductConfigOverridable': boolean;
|
|
84
90
|
/**
|
|
85
91
|
* Is this a system field? - System fields can neither be deleted nor modified
|
|
86
92
|
* @type {boolean}
|
|
@@ -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 });
|
|
@@ -21,6 +21,12 @@ export interface ProductVersionClass {
|
|
|
21
21
|
* @memberof ProductVersionClass
|
|
22
22
|
*/
|
|
23
23
|
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ProductVersionClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
24
30
|
/**
|
|
25
31
|
* Unique identifier referencing the product.
|
|
26
32
|
* @type {number}
|
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
import { DeductibleClass } from './deductible-class';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface TariffCategorySummaryClass
|
|
19
|
+
*/
|
|
20
|
+
export interface TariffCategorySummaryClass {
|
|
21
|
+
/**
|
|
22
|
+
* Unique identifier key for category
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof TariffCategorySummaryClass
|
|
25
|
+
*/
|
|
26
|
+
'key': string;
|
|
27
|
+
/**
|
|
28
|
+
* Display name shown to users
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof TariffCategorySummaryClass
|
|
31
|
+
*/
|
|
32
|
+
'label': string;
|
|
33
|
+
/**
|
|
34
|
+
* Category description
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof TariffCategorySummaryClass
|
|
37
|
+
*/
|
|
38
|
+
'description'?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Category coverage term
|
|
41
|
+
* @type {CoverageTermClass}
|
|
42
|
+
* @memberof TariffCategorySummaryClass
|
|
43
|
+
*/
|
|
44
|
+
'coverageTerm': CoverageTermClass;
|
|
45
|
+
/**
|
|
46
|
+
* List of category coverages
|
|
47
|
+
* @type {Array<CategoryCoverageSummaryClass>}
|
|
48
|
+
* @memberof TariffCategorySummaryClass
|
|
49
|
+
*/
|
|
50
|
+
'coverages': Array<CategoryCoverageSummaryClass>;
|
|
51
|
+
/**
|
|
52
|
+
* List of category deductibles
|
|
53
|
+
* @type {Array<DeductibleClass>}
|
|
54
|
+
* @memberof TariffCategorySummaryClass
|
|
55
|
+
*/
|
|
56
|
+
'deductibles': Array<DeductibleClass>;
|
|
57
|
+
}
|
|
@@ -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,60 @@
|
|
|
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
|
+
* Pro-rata calculation type
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof TariffCoverageTermClass
|
|
41
|
+
*/
|
|
42
|
+
'proRata': TariffCoverageTermClassProRataEnum;
|
|
43
|
+
}
|
|
44
|
+
export declare const TariffCoverageTermClassTypeEnum: {
|
|
45
|
+
readonly Fixed: "fixed";
|
|
46
|
+
readonly Percent: "percent";
|
|
47
|
+
};
|
|
48
|
+
export type TariffCoverageTermClassTypeEnum = typeof TariffCoverageTermClassTypeEnum[keyof typeof TariffCoverageTermClassTypeEnum];
|
|
49
|
+
export declare const TariffCoverageTermClassPeriodEnum: {
|
|
50
|
+
readonly CalendarYear: "CALENDAR_YEAR";
|
|
51
|
+
readonly PolicyYear: "POLICY_YEAR";
|
|
52
|
+
readonly PerClaim: "PER_CLAIM";
|
|
53
|
+
};
|
|
54
|
+
export type TariffCoverageTermClassPeriodEnum = typeof TariffCoverageTermClassPeriodEnum[keyof typeof TariffCoverageTermClassPeriodEnum];
|
|
55
|
+
export declare const TariffCoverageTermClassProRataEnum: {
|
|
56
|
+
readonly Disabled: "DISABLED";
|
|
57
|
+
readonly Enabled: "ENABLED";
|
|
58
|
+
readonly EnabledAfterWaitingPeriod: "ENABLED_AFTER_WAITING_PERIOD";
|
|
59
|
+
};
|
|
60
|
+
export type TariffCoverageTermClassProRataEnum = typeof TariffCoverageTermClassProRataEnum[keyof typeof TariffCoverageTermClassProRataEnum];
|
|
@@ -0,0 +1,30 @@
|
|
|
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.TariffCoverageTermClassProRataEnum = 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
|
+
};
|
|
26
|
+
exports.TariffCoverageTermClassProRataEnum = {
|
|
27
|
+
Disabled: 'DISABLED',
|
|
28
|
+
Enabled: 'ENABLED',
|
|
29
|
+
EnabledAfterWaitingPeriod: 'ENABLED_AFTER_WAITING_PERIOD'
|
|
30
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface TariffInfoClass
|
|
16
|
+
*/
|
|
17
|
+
export interface TariffInfoClass {
|
|
18
|
+
/**
|
|
19
|
+
* Display name shown to users
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof TariffInfoClass
|
|
22
|
+
*/
|
|
23
|
+
'label': string;
|
|
24
|
+
/**
|
|
25
|
+
* Tariff variation description
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof TariffInfoClass
|
|
28
|
+
*/
|
|
29
|
+
'description': string;
|
|
30
|
+
/**
|
|
31
|
+
* Starting premium amount for display
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof TariffInfoClass
|
|
34
|
+
*/
|
|
35
|
+
'startingPremium': number;
|
|
36
|
+
/**
|
|
37
|
+
* Premium billing period, used for display
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof TariffInfoClass
|
|
40
|
+
*/
|
|
41
|
+
'billingPeriod': TariffInfoClassBillingPeriodEnum;
|
|
42
|
+
}
|
|
43
|
+
export declare const TariffInfoClassBillingPeriodEnum: {
|
|
44
|
+
readonly Monthly: "MONTHLY";
|
|
45
|
+
readonly Yearly: "YEARLY";
|
|
46
|
+
};
|
|
47
|
+
export type TariffInfoClassBillingPeriodEnum = typeof TariffInfoClassBillingPeriodEnum[keyof typeof TariffInfoClassBillingPeriodEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
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.TariffInfoClassBillingPeriodEnum = void 0;
|
|
17
|
+
exports.TariffInfoClassBillingPeriodEnum = {
|
|
18
|
+
Monthly: 'MONTHLY',
|
|
19
|
+
Yearly: 'YEARLY'
|
|
20
|
+
};
|