@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,77 @@
|
|
|
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 { AmountWithLimitClass } from './amount-with-limit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CoverageTermClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CoverageTermClass {
|
|
24
|
+
/**
|
|
25
|
+
* Whether this coverage term is covered
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof CoverageTermClass
|
|
28
|
+
*/
|
|
29
|
+
'isCovered': boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Coverage term type (fixed or percent)
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CoverageTermClass
|
|
34
|
+
*/
|
|
35
|
+
'type': CoverageTermClassTypeEnum;
|
|
36
|
+
/**
|
|
37
|
+
* Time period over which the coverage term applies
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CoverageTermClass
|
|
40
|
+
*/
|
|
41
|
+
'period': CoverageTermClassPeriodEnum;
|
|
42
|
+
/**
|
|
43
|
+
* Coverage term value - fixed amount or percentage with maximum limit
|
|
44
|
+
* @type {AmountWithLimitClass}
|
|
45
|
+
* @memberof CoverageTermClass
|
|
46
|
+
*/
|
|
47
|
+
'value': AmountWithLimitClass;
|
|
48
|
+
/**
|
|
49
|
+
* Pro-rata calculation type
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CoverageTermClass
|
|
52
|
+
*/
|
|
53
|
+
'proRata': CoverageTermClassProRataEnum;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export const CoverageTermClassTypeEnum = {
|
|
57
|
+
Fixed: 'fixed',
|
|
58
|
+
Percent: 'percent'
|
|
59
|
+
} as const;
|
|
60
|
+
|
|
61
|
+
export type CoverageTermClassTypeEnum = typeof CoverageTermClassTypeEnum[keyof typeof CoverageTermClassTypeEnum];
|
|
62
|
+
export const CoverageTermClassPeriodEnum = {
|
|
63
|
+
CalendarYear: 'CALENDAR_YEAR',
|
|
64
|
+
PolicyYear: 'POLICY_YEAR',
|
|
65
|
+
PerClaim: 'PER_CLAIM'
|
|
66
|
+
} as const;
|
|
67
|
+
|
|
68
|
+
export type CoverageTermClassPeriodEnum = typeof CoverageTermClassPeriodEnum[keyof typeof CoverageTermClassPeriodEnum];
|
|
69
|
+
export const CoverageTermClassProRataEnum = {
|
|
70
|
+
Disabled: 'DISABLED',
|
|
71
|
+
Enabled: 'ENABLED',
|
|
72
|
+
EnabledAfterWaitingPeriod: 'ENABLED_AFTER_WAITING_PERIOD'
|
|
73
|
+
} as const;
|
|
74
|
+
|
|
75
|
+
export type CoverageTermClassProRataEnum = typeof CoverageTermClassProRataEnum[keyof typeof CoverageTermClassProRataEnum];
|
|
76
|
+
|
|
77
|
+
|
|
@@ -0,0 +1,70 @@
|
|
|
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 { AmountWithLimitClass } from './amount-with-limit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface DeductibleClass
|
|
22
|
+
*/
|
|
23
|
+
export interface DeductibleClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier key for deductible
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DeductibleClass
|
|
28
|
+
*/
|
|
29
|
+
'key': string;
|
|
30
|
+
/**
|
|
31
|
+
* Display name shown to users
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof DeductibleClass
|
|
34
|
+
*/
|
|
35
|
+
'label': string;
|
|
36
|
+
/**
|
|
37
|
+
* Deductible type (fixed or percent)
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof DeductibleClass
|
|
40
|
+
*/
|
|
41
|
+
'type': DeductibleClassTypeEnum;
|
|
42
|
+
/**
|
|
43
|
+
* Time period over which the deductible applies
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof DeductibleClass
|
|
46
|
+
*/
|
|
47
|
+
'period': DeductibleClassPeriodEnum;
|
|
48
|
+
/**
|
|
49
|
+
* Selectable deductible amounts
|
|
50
|
+
* @type {Array<AmountWithLimitClass>}
|
|
51
|
+
* @memberof DeductibleClass
|
|
52
|
+
*/
|
|
53
|
+
'options': Array<AmountWithLimitClass>;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export const DeductibleClassTypeEnum = {
|
|
57
|
+
Fixed: 'fixed',
|
|
58
|
+
Percent: 'percent'
|
|
59
|
+
} as const;
|
|
60
|
+
|
|
61
|
+
export type DeductibleClassTypeEnum = typeof DeductibleClassTypeEnum[keyof typeof DeductibleClassTypeEnum];
|
|
62
|
+
export const DeductibleClassPeriodEnum = {
|
|
63
|
+
CalendarYear: 'CALENDAR_YEAR',
|
|
64
|
+
PolicyYear: 'POLICY_YEAR',
|
|
65
|
+
PerClaim: 'PER_CLAIM'
|
|
66
|
+
} as const;
|
|
67
|
+
|
|
68
|
+
export type DeductibleClassPeriodEnum = typeof DeductibleClassPeriodEnum[keyof typeof DeductibleClassPeriodEnum];
|
|
69
|
+
|
|
70
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { TariffSummaryClass } from './tariff-summary-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetProductConfigTariffsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetProductConfigTariffsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Tariffs
|
|
26
|
+
* @type {Array<TariffSummaryClass>}
|
|
27
|
+
* @memberof GetProductConfigTariffsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'tariffs': Array<TariffSummaryClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Total amount of items.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof GetProductConfigTariffsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'totalItems': number;
|
|
36
|
+
}
|
|
37
|
+
|
package/models/index.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';
|
|
@@ -86,6 +86,12 @@ export interface ProductFieldClass {
|
|
|
86
86
|
* @memberof ProductFieldClass
|
|
87
87
|
*/
|
|
88
88
|
'isEditableCustomerPortal': boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Whether this field can be overridden by product config.
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof ProductFieldClass
|
|
93
|
+
*/
|
|
94
|
+
'isProductConfigOverridable': boolean;
|
|
89
95
|
/**
|
|
90
96
|
* Is this a system field? - System fields can neither be deleted nor modified
|
|
91
97
|
* @type {boolean}
|
|
@@ -0,0 +1,57 @@
|
|
|
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 { CalculationErrorsClass } from './calculation-errors-class';
|
|
17
|
+
import { CreateEstimatedInvoiceResponseClass } from './create-estimated-invoice-response-class';
|
|
18
|
+
import { PolicyObjectResponseClass } from './policy-object-response-class';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface ProductTariffQuoteClass
|
|
24
|
+
*/
|
|
25
|
+
export interface ProductTariffQuoteClass {
|
|
26
|
+
/**
|
|
27
|
+
* Tariff key
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof ProductTariffQuoteClass
|
|
30
|
+
*/
|
|
31
|
+
'tariffKey': string;
|
|
32
|
+
/**
|
|
33
|
+
* Estimated invoice
|
|
34
|
+
* @type {CreateEstimatedInvoiceResponseClass}
|
|
35
|
+
* @memberof ProductTariffQuoteClass
|
|
36
|
+
*/
|
|
37
|
+
'estimatedInvoice': CreateEstimatedInvoiceResponseClass;
|
|
38
|
+
/**
|
|
39
|
+
* 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
|
|
40
|
+
* @type {Array<PolicyObjectResponseClass>}
|
|
41
|
+
* @memberof ProductTariffQuoteClass
|
|
42
|
+
*/
|
|
43
|
+
'policyObjects': Array<PolicyObjectResponseClass>;
|
|
44
|
+
/**
|
|
45
|
+
* 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
|
|
46
|
+
* @type {Array<PolicyObjectResponseClass>}
|
|
47
|
+
* @memberof ProductTariffQuoteClass
|
|
48
|
+
*/
|
|
49
|
+
'calculatedPolicyObjects': Array<PolicyObjectResponseClass>;
|
|
50
|
+
/**
|
|
51
|
+
* Calculation errors
|
|
52
|
+
* @type {CalculationErrorsClass}
|
|
53
|
+
* @memberof ProductTariffQuoteClass
|
|
54
|
+
*/
|
|
55
|
+
'errors'?: CalculationErrorsClass;
|
|
56
|
+
}
|
|
57
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
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 { CategoryCoverageSummaryClass } from './category-coverage-summary-class';
|
|
17
|
+
import { CoverageTermClass } from './coverage-term-class';
|
|
18
|
+
import { DeductibleClass } from './deductible-class';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface TariffCategorySummaryClass
|
|
24
|
+
*/
|
|
25
|
+
export interface TariffCategorySummaryClass {
|
|
26
|
+
/**
|
|
27
|
+
* Unique identifier key for category
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof TariffCategorySummaryClass
|
|
30
|
+
*/
|
|
31
|
+
'key': string;
|
|
32
|
+
/**
|
|
33
|
+
* Display name shown to users
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof TariffCategorySummaryClass
|
|
36
|
+
*/
|
|
37
|
+
'label': string;
|
|
38
|
+
/**
|
|
39
|
+
* Category description
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof TariffCategorySummaryClass
|
|
42
|
+
*/
|
|
43
|
+
'description'?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Category coverage term
|
|
46
|
+
* @type {CoverageTermClass}
|
|
47
|
+
* @memberof TariffCategorySummaryClass
|
|
48
|
+
*/
|
|
49
|
+
'coverageTerm': CoverageTermClass;
|
|
50
|
+
/**
|
|
51
|
+
* List of category coverages
|
|
52
|
+
* @type {Array<CategoryCoverageSummaryClass>}
|
|
53
|
+
* @memberof TariffCategorySummaryClass
|
|
54
|
+
*/
|
|
55
|
+
'coverages': Array<CategoryCoverageSummaryClass>;
|
|
56
|
+
/**
|
|
57
|
+
* List of category deductibles
|
|
58
|
+
* @type {Array<DeductibleClass>}
|
|
59
|
+
* @memberof TariffCategorySummaryClass
|
|
60
|
+
*/
|
|
61
|
+
'deductibles': Array<DeductibleClass>;
|
|
62
|
+
}
|
|
63
|
+
|
|
@@ -0,0 +1,71 @@
|
|
|
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 { AmountWithLimitClass } from './amount-with-limit-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface TariffCoverageTermClass
|
|
22
|
+
*/
|
|
23
|
+
export interface TariffCoverageTermClass {
|
|
24
|
+
/**
|
|
25
|
+
* Coverage term type (fixed or percent)
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof TariffCoverageTermClass
|
|
28
|
+
*/
|
|
29
|
+
'type': TariffCoverageTermClassTypeEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Time period over which the coverage term applies
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof TariffCoverageTermClass
|
|
34
|
+
*/
|
|
35
|
+
'period': TariffCoverageTermClassPeriodEnum;
|
|
36
|
+
/**
|
|
37
|
+
* Coverage term value - fixed amount or percentage with maximum limit
|
|
38
|
+
* @type {AmountWithLimitClass}
|
|
39
|
+
* @memberof TariffCoverageTermClass
|
|
40
|
+
*/
|
|
41
|
+
'value': AmountWithLimitClass;
|
|
42
|
+
/**
|
|
43
|
+
* Pro-rata calculation type
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof TariffCoverageTermClass
|
|
46
|
+
*/
|
|
47
|
+
'proRata': TariffCoverageTermClassProRataEnum;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export const TariffCoverageTermClassTypeEnum = {
|
|
51
|
+
Fixed: 'fixed',
|
|
52
|
+
Percent: 'percent'
|
|
53
|
+
} as const;
|
|
54
|
+
|
|
55
|
+
export type TariffCoverageTermClassTypeEnum = typeof TariffCoverageTermClassTypeEnum[keyof typeof TariffCoverageTermClassTypeEnum];
|
|
56
|
+
export const TariffCoverageTermClassPeriodEnum = {
|
|
57
|
+
CalendarYear: 'CALENDAR_YEAR',
|
|
58
|
+
PolicyYear: 'POLICY_YEAR',
|
|
59
|
+
PerClaim: 'PER_CLAIM'
|
|
60
|
+
} as const;
|
|
61
|
+
|
|
62
|
+
export type TariffCoverageTermClassPeriodEnum = typeof TariffCoverageTermClassPeriodEnum[keyof typeof TariffCoverageTermClassPeriodEnum];
|
|
63
|
+
export const TariffCoverageTermClassProRataEnum = {
|
|
64
|
+
Disabled: 'DISABLED',
|
|
65
|
+
Enabled: 'ENABLED',
|
|
66
|
+
EnabledAfterWaitingPeriod: 'ENABLED_AFTER_WAITING_PERIOD'
|
|
67
|
+
} as const;
|
|
68
|
+
|
|
69
|
+
export type TariffCoverageTermClassProRataEnum = typeof TariffCoverageTermClassProRataEnum[keyof typeof TariffCoverageTermClassProRataEnum];
|
|
70
|
+
|
|
71
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
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 { DeductibleClass } from './deductible-class';
|
|
17
|
+
import { TariffCategorySummaryClass } from './tariff-category-summary-class';
|
|
18
|
+
import { TariffCoverageTermClass } from './tariff-coverage-term-class';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface TariffSummaryClass
|
|
24
|
+
*/
|
|
25
|
+
export interface TariffSummaryClass {
|
|
26
|
+
/**
|
|
27
|
+
* Unique identifier key for tariff variation
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof TariffSummaryClass
|
|
30
|
+
*/
|
|
31
|
+
'key': string;
|
|
32
|
+
/**
|
|
33
|
+
* Display name shown to users
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof TariffSummaryClass
|
|
36
|
+
*/
|
|
37
|
+
'label': string;
|
|
38
|
+
/**
|
|
39
|
+
* Tariff variation description
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof TariffSummaryClass
|
|
42
|
+
*/
|
|
43
|
+
'description'?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Tariff coverage term
|
|
46
|
+
* @type {TariffCoverageTermClass}
|
|
47
|
+
* @memberof TariffSummaryClass
|
|
48
|
+
*/
|
|
49
|
+
'coverageTerm': TariffCoverageTermClass;
|
|
50
|
+
/**
|
|
51
|
+
* List of tariff variation categories
|
|
52
|
+
* @type {Array<TariffCategorySummaryClass>}
|
|
53
|
+
* @memberof TariffSummaryClass
|
|
54
|
+
*/
|
|
55
|
+
'categories': Array<TariffCategorySummaryClass>;
|
|
56
|
+
/**
|
|
57
|
+
* List of tariff deductibles
|
|
58
|
+
* @type {Array<DeductibleClass>}
|
|
59
|
+
* @memberof TariffSummaryClass
|
|
60
|
+
*/
|
|
61
|
+
'deductibles': Array<DeductibleClass>;
|
|
62
|
+
}
|
|
63
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/public-api-sdk-node",
|
|
3
|
-
"version": "1.35.1-beta.
|
|
3
|
+
"version": "1.35.1-beta.20",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/public-api-sdk-node",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"prepare": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"axios": "^
|
|
21
|
+
"axios": "^1.12.0",
|
|
22
22
|
"form-data": "^4.0.0",
|
|
23
23
|
"url": "^0.11.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
|
|
26
|
+
"@types/node": "^12.11.5",
|
|
27
27
|
"typescript": "^4.0"
|
|
28
28
|
}
|
|
29
29
|
}
|