@emilgroup/public-api-sdk-node 1.35.1-beta.2 → 1.35.1-beta.20
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 +14 -0
- package/README.md +2 -2
- package/api/product-versions-api.ts +223 -0
- package/base.ts +0 -1
- package/dist/api/address-completions-validations-api.d.ts +2 -2
- package/dist/api/booking-funnels-api.d.ts +1 -1
- package/dist/api/default-api.d.ts +1 -1
- package/dist/api/documents-api.d.ts +7 -7
- package/dist/api/leads-api.d.ts +7 -7
- package/dist/api/named-ranges-api.d.ts +1 -1
- package/dist/api/notifications-api.d.ts +3 -3
- package/dist/api/payments-setup-api.d.ts +3 -3
- package/dist/api/product-versions-api.d.ts +124 -2
- package/dist/api/product-versions-api.js +191 -0
- package/dist/api/products-api.d.ts +8 -8
- package/dist/common.d.ts +1 -1
- package/dist/models/amount-with-limit-class.d.ts +30 -0
- package/dist/models/amount-with-limit-class.js +15 -0
- package/dist/models/billing-address-dto.d.ts +6 -0
- package/dist/models/billing-address-response-class.d.ts +6 -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 +14 -0
- package/dist/models/index.js +14 -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/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-summary-class.d.ts +57 -0
- package/dist/models/tariff-summary-class.js +15 -0
- package/models/amount-with-limit-class.ts +36 -0
- package/models/billing-address-dto.ts +6 -0
- package/models/billing-address-response-class.ts +6 -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 +14 -0
- package/models/product-field-class.ts +6 -0
- package/models/product-tariff-quote-class.ts +57 -0
- package/models/tariff-category-summary-class.ts +63 -0
- package/models/tariff-coverage-term-class.ts +71 -0
- package/models/tariff-summary-class.ts +63 -0
- package/package.json +3 -3
|
@@ -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,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,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 { DeductibleClass } from './deductible-class';
|
|
13
|
+
import { TariffCategorySummaryClass } from './tariff-category-summary-class';
|
|
14
|
+
import { TariffCoverageTermClass } from './tariff-coverage-term-class';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface TariffSummaryClass
|
|
19
|
+
*/
|
|
20
|
+
export interface TariffSummaryClass {
|
|
21
|
+
/**
|
|
22
|
+
* Unique identifier key for tariff variation
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof TariffSummaryClass
|
|
25
|
+
*/
|
|
26
|
+
'key': string;
|
|
27
|
+
/**
|
|
28
|
+
* Display name shown to users
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof TariffSummaryClass
|
|
31
|
+
*/
|
|
32
|
+
'label': string;
|
|
33
|
+
/**
|
|
34
|
+
* Tariff variation description
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof TariffSummaryClass
|
|
37
|
+
*/
|
|
38
|
+
'description'?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Tariff coverage term
|
|
41
|
+
* @type {TariffCoverageTermClass}
|
|
42
|
+
* @memberof TariffSummaryClass
|
|
43
|
+
*/
|
|
44
|
+
'coverageTerm': TariffCoverageTermClass;
|
|
45
|
+
/**
|
|
46
|
+
* List of tariff variation categories
|
|
47
|
+
* @type {Array<TariffCategorySummaryClass>}
|
|
48
|
+
* @memberof TariffSummaryClass
|
|
49
|
+
*/
|
|
50
|
+
'categories': Array<TariffCategorySummaryClass>;
|
|
51
|
+
/**
|
|
52
|
+
* List of tariff deductibles
|
|
53
|
+
* @type {Array<DeductibleClass>}
|
|
54
|
+
* @memberof TariffSummaryClass
|
|
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,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
|
+
|
|
@@ -56,5 +56,11 @@ export interface BillingAddressResponseClass {
|
|
|
56
56
|
* @memberof BillingAddressResponseClass
|
|
57
57
|
*/
|
|
58
58
|
'city': string;
|
|
59
|
+
/**
|
|
60
|
+
* Country code for billing address
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof BillingAddressResponseClass
|
|
63
|
+
*/
|
|
64
|
+
'countryCode'?: string;
|
|
59
65
|
}
|
|
60
66
|
|
|
@@ -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
|
+
|
|
@@ -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 CalculationMessageClass
|
|
21
|
+
*/
|
|
22
|
+
export interface CalculationMessageClass {
|
|
23
|
+
/**
|
|
24
|
+
* Message severity (ERROR, WARNING, INFO).
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CalculationMessageClass
|
|
27
|
+
*/
|
|
28
|
+
'severity': string;
|
|
29
|
+
/**
|
|
30
|
+
* Error/warning/info message.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CalculationMessageClass
|
|
33
|
+
*/
|
|
34
|
+
'message': string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -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 { CoverageTermClass } from './coverage-term-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CategoryCoverageSummaryClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CategoryCoverageSummaryClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier key for coverage
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CategoryCoverageSummaryClass
|
|
28
|
+
*/
|
|
29
|
+
'key': string;
|
|
30
|
+
/**
|
|
31
|
+
* Display name shown to users
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CategoryCoverageSummaryClass
|
|
34
|
+
*/
|
|
35
|
+
'label': string;
|
|
36
|
+
/**
|
|
37
|
+
* Coverage description
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CategoryCoverageSummaryClass
|
|
40
|
+
*/
|
|
41
|
+
'description'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Coverage term
|
|
44
|
+
* @type {CoverageTermClass}
|
|
45
|
+
* @memberof CategoryCoverageSummaryClass
|
|
46
|
+
*/
|
|
47
|
+
'coverageTerm': CoverageTermClass;
|
|
48
|
+
}
|
|
49
|
+
|