@emilgroup/public-api-sdk 1.33.1-beta.2 → 1.33.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 +4 -0
- 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/base.js +3 -1
- 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 -2
|
@@ -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,25 @@
|
|
|
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 { ProductTariffQuoteClass } from './product-tariff-quote-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CalculateProductTariffQuoteResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CalculateProductTariffQuoteResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Product tariff quote
|
|
21
|
+
* @type {ProductTariffQuoteClass}
|
|
22
|
+
* @memberof CalculateProductTariffQuoteResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'productTariffQuote': ProductTariffQuoteClass;
|
|
25
|
+
}
|
|
@@ -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,25 @@
|
|
|
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 { CalculationItemErrorsClass } from './calculation-item-errors-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CalculationErrorsClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CalculationErrorsClass {
|
|
19
|
+
/**
|
|
20
|
+
* Calculation errors.
|
|
21
|
+
* @type {Array<CalculationItemErrorsClass>}
|
|
22
|
+
* @memberof CalculationErrorsClass
|
|
23
|
+
*/
|
|
24
|
+
'itemErrors': Array<CalculationItemErrorsClass>;
|
|
25
|
+
}
|
|
@@ -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,43 @@
|
|
|
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 { CalculationMessageClass } from './calculation-message-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CalculationItemErrorsClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CalculationItemErrorsClass {
|
|
19
|
+
/**
|
|
20
|
+
* Type of the calculated item (PREMIUM_ITEM or PRODUCT_FIELD).
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CalculationItemErrorsClass
|
|
23
|
+
*/
|
|
24
|
+
'itemType': string;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier referencing the premium item/product field..
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof CalculationItemErrorsClass
|
|
29
|
+
*/
|
|
30
|
+
'itemId': number;
|
|
31
|
+
/**
|
|
32
|
+
* Name of the calculated item.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CalculationItemErrorsClass
|
|
35
|
+
*/
|
|
36
|
+
'itemName': string;
|
|
37
|
+
/**
|
|
38
|
+
* Item messages.
|
|
39
|
+
* @type {Array<CalculationMessageClass>}
|
|
40
|
+
* @memberof CalculationItemErrorsClass
|
|
41
|
+
*/
|
|
42
|
+
'messages': Array<CalculationMessageClass>;
|
|
43
|
+
}
|
|
@@ -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,30 @@
|
|
|
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 CalculationMessageClass
|
|
16
|
+
*/
|
|
17
|
+
export interface CalculationMessageClass {
|
|
18
|
+
/**
|
|
19
|
+
* Message severity (ERROR, WARNING, INFO).
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CalculationMessageClass
|
|
22
|
+
*/
|
|
23
|
+
'severity': string;
|
|
24
|
+
/**
|
|
25
|
+
* Error/warning/info message.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CalculationMessageClass
|
|
28
|
+
*/
|
|
29
|
+
'message': string;
|
|
30
|
+
}
|
|
@@ -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,43 @@
|
|
|
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 { CoverageTermClass } from './coverage-term-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CategoryCoverageSummaryClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CategoryCoverageSummaryClass {
|
|
19
|
+
/**
|
|
20
|
+
* Unique identifier key for coverage
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CategoryCoverageSummaryClass
|
|
23
|
+
*/
|
|
24
|
+
'key': string;
|
|
25
|
+
/**
|
|
26
|
+
* Display name shown to users
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CategoryCoverageSummaryClass
|
|
29
|
+
*/
|
|
30
|
+
'label': string;
|
|
31
|
+
/**
|
|
32
|
+
* Coverage description
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CategoryCoverageSummaryClass
|
|
35
|
+
*/
|
|
36
|
+
'description'?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Coverage term
|
|
39
|
+
* @type {CoverageTermClass}
|
|
40
|
+
* @memberof CategoryCoverageSummaryClass
|
|
41
|
+
*/
|
|
42
|
+
'coverageTerm': CoverageTermClass;
|
|
43
|
+
}
|
|
@@ -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,66 @@
|
|
|
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 CoverageTermClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CoverageTermClass {
|
|
19
|
+
/**
|
|
20
|
+
* Whether this coverage term is covered
|
|
21
|
+
* @type {boolean}
|
|
22
|
+
* @memberof CoverageTermClass
|
|
23
|
+
*/
|
|
24
|
+
'isCovered': boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Coverage term type (fixed or percent)
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CoverageTermClass
|
|
29
|
+
*/
|
|
30
|
+
'type': CoverageTermClassTypeEnum;
|
|
31
|
+
/**
|
|
32
|
+
* Time period over which the coverage term applies
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CoverageTermClass
|
|
35
|
+
*/
|
|
36
|
+
'period': CoverageTermClassPeriodEnum;
|
|
37
|
+
/**
|
|
38
|
+
* Coverage term value - fixed amount or percentage with maximum limit
|
|
39
|
+
* @type {AmountWithLimitClass}
|
|
40
|
+
* @memberof CoverageTermClass
|
|
41
|
+
*/
|
|
42
|
+
'value': AmountWithLimitClass;
|
|
43
|
+
/**
|
|
44
|
+
* Pro-rata calculation type
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CoverageTermClass
|
|
47
|
+
*/
|
|
48
|
+
'proRata': CoverageTermClassProRataEnum;
|
|
49
|
+
}
|
|
50
|
+
export declare const CoverageTermClassTypeEnum: {
|
|
51
|
+
readonly Fixed: "fixed";
|
|
52
|
+
readonly Percent: "percent";
|
|
53
|
+
};
|
|
54
|
+
export type CoverageTermClassTypeEnum = typeof CoverageTermClassTypeEnum[keyof typeof CoverageTermClassTypeEnum];
|
|
55
|
+
export declare const CoverageTermClassPeriodEnum: {
|
|
56
|
+
readonly CalendarYear: "CALENDAR_YEAR";
|
|
57
|
+
readonly PolicyYear: "POLICY_YEAR";
|
|
58
|
+
readonly PerClaim: "PER_CLAIM";
|
|
59
|
+
};
|
|
60
|
+
export type CoverageTermClassPeriodEnum = typeof CoverageTermClassPeriodEnum[keyof typeof CoverageTermClassPeriodEnum];
|
|
61
|
+
export declare const CoverageTermClassProRataEnum: {
|
|
62
|
+
readonly Disabled: "DISABLED";
|
|
63
|
+
readonly Enabled: "ENABLED";
|
|
64
|
+
readonly EnabledAfterWaitingPeriod: "ENABLED_AFTER_WAITING_PERIOD";
|
|
65
|
+
};
|
|
66
|
+
export type CoverageTermClassProRataEnum = typeof CoverageTermClassProRataEnum[keyof typeof CoverageTermClassProRataEnum];
|
|
@@ -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,9 @@ 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-summary-class';
|
|
98
112
|
export * from './update-lead-request-dto';
|
|
99
113
|
export * from './update-lead-response-class';
|
|
100
114
|
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,9 @@ __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-summary-class"), exports);
|
|
114
128
|
__exportStar(require("./update-lead-request-dto"), exports);
|
|
115
129
|
__exportStar(require("./update-lead-response-class"), exports);
|
|
116
130
|
__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}
|