@emilgroup/public-api-sdk 1.33.1-beta.9 → 1.34.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.
Files changed (58) hide show
  1. package/.openapi-generator/FILES +15 -0
  2. package/README.md +2 -2
  3. package/api/product-versions-api.ts +223 -0
  4. package/dist/api/product-versions-api.d.ts +122 -0
  5. package/dist/api/product-versions-api.js +191 -0
  6. package/dist/models/amount-with-limit-class.d.ts +30 -0
  7. package/dist/models/amount-with-limit-class.js +15 -0
  8. package/dist/models/calculate-product-tariff-quote-request-dto.d.ts +38 -0
  9. package/dist/models/calculate-product-tariff-quote-request-dto.js +15 -0
  10. package/dist/models/calculate-product-tariff-quote-response-class.d.ts +25 -0
  11. package/dist/models/calculate-product-tariff-quote-response-class.js +15 -0
  12. package/dist/models/calculation-errors-class.d.ts +25 -0
  13. package/dist/models/calculation-errors-class.js +15 -0
  14. package/dist/models/calculation-item-errors-class.d.ts +43 -0
  15. package/dist/models/calculation-item-errors-class.js +15 -0
  16. package/dist/models/calculation-message-class.d.ts +30 -0
  17. package/dist/models/calculation-message-class.js +15 -0
  18. package/dist/models/category-coverage-summary-class.d.ts +43 -0
  19. package/dist/models/category-coverage-summary-class.js +15 -0
  20. package/dist/models/coverage-term-class.d.ts +66 -0
  21. package/dist/models/coverage-term-class.js +30 -0
  22. package/dist/models/deductible-class.d.ts +60 -0
  23. package/dist/models/deductible-class.js +25 -0
  24. package/dist/models/get-product-config-tariffs-response-class.d.ts +31 -0
  25. package/dist/models/get-product-config-tariffs-response-class.js +15 -0
  26. package/dist/models/index.d.ts +15 -0
  27. package/dist/models/index.js +15 -0
  28. package/dist/models/product-field-class.d.ts +6 -0
  29. package/dist/models/product-tariff-quote-class.d.ts +51 -0
  30. package/dist/models/product-tariff-quote-class.js +15 -0
  31. package/dist/models/product-version-class.d.ts +6 -0
  32. package/dist/models/tariff-category-summary-class.d.ts +57 -0
  33. package/dist/models/tariff-category-summary-class.js +15 -0
  34. package/dist/models/tariff-coverage-term-class.d.ts +60 -0
  35. package/dist/models/tariff-coverage-term-class.js +30 -0
  36. package/dist/models/tariff-info-class.d.ts +47 -0
  37. package/dist/models/tariff-info-class.js +20 -0
  38. package/dist/models/tariff-summary-class.d.ts +52 -0
  39. package/dist/models/tariff-summary-class.js +15 -0
  40. package/models/amount-with-limit-class.ts +36 -0
  41. package/models/calculate-product-tariff-quote-request-dto.ts +44 -0
  42. package/models/calculate-product-tariff-quote-response-class.ts +31 -0
  43. package/models/calculation-errors-class.ts +31 -0
  44. package/models/calculation-item-errors-class.ts +49 -0
  45. package/models/calculation-message-class.ts +36 -0
  46. package/models/category-coverage-summary-class.ts +49 -0
  47. package/models/coverage-term-class.ts +77 -0
  48. package/models/deductible-class.ts +70 -0
  49. package/models/get-product-config-tariffs-response-class.ts +37 -0
  50. package/models/index.ts +15 -0
  51. package/models/product-field-class.ts +6 -0
  52. package/models/product-tariff-quote-class.ts +57 -0
  53. package/models/product-version-class.ts +6 -0
  54. package/models/tariff-category-summary-class.ts +63 -0
  55. package/models/tariff-coverage-term-class.ts +71 -0
  56. package/models/tariff-info-class.ts +56 -0
  57. package/models/tariff-summary-class.ts +58 -0
  58. package/package.json +2 -1
@@ -0,0 +1,52 @@
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
+ import { TariffInfoClass } from './tariff-info-class';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface TariffSummaryClass
20
+ */
21
+ export interface TariffSummaryClass {
22
+ /**
23
+ * Unique identifier key for tariff variation
24
+ * @type {string}
25
+ * @memberof TariffSummaryClass
26
+ */
27
+ 'key': string;
28
+ /**
29
+ * Tariff variation display information
30
+ * @type {TariffInfoClass}
31
+ * @memberof TariffSummaryClass
32
+ */
33
+ 'info': TariffInfoClass;
34
+ /**
35
+ * Tariff coverage term
36
+ * @type {TariffCoverageTermClass}
37
+ * @memberof TariffSummaryClass
38
+ */
39
+ 'coverageTerm': TariffCoverageTermClass;
40
+ /**
41
+ * List of tariff variation categories
42
+ * @type {Array<TariffCategorySummaryClass>}
43
+ * @memberof TariffSummaryClass
44
+ */
45
+ 'categories': Array<TariffCategorySummaryClass>;
46
+ /**
47
+ * List of tariff deductibles
48
+ * @type {Array<DeductibleClass>}
49
+ * @memberof TariffSummaryClass
50
+ */
51
+ 'deductibles': Array<DeductibleClass>;
52
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Emil PublicAPI
6
+ * The Emil Public API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface AmountWithLimitClass
21
+ */
22
+ export interface AmountWithLimitClass {
23
+ /**
24
+ * Amount value (required for percent and fixed types)
25
+ * @type {number}
26
+ * @memberof AmountWithLimitClass
27
+ */
28
+ 'amount': number;
29
+ /**
30
+ * Maximum limit (required for percent type)
31
+ * @type {number}
32
+ * @memberof AmountWithLimitClass
33
+ */
34
+ 'limit': number;
35
+ }
36
+
@@ -0,0 +1,44 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { PolicyObjectRequestDto } from './policy-object-request-dto';
17
+ import { PremiumOverrideRequestDto } from './premium-override-request-dto';
18
+
19
+ /**
20
+ *
21
+ * @export
22
+ * @interface CalculateProductTariffQuoteRequestDto
23
+ */
24
+ export interface CalculateProductTariffQuoteRequestDto {
25
+ /**
26
+ * Tariff key
27
+ * @type {string}
28
+ * @memberof CalculateProductTariffQuoteRequestDto
29
+ */
30
+ 'tariffKey': string;
31
+ /**
32
+ * The policy objects contains necessary information to create a policy. The Policy objects array will be validated if the \'validate\' flag is set to true
33
+ * @type {Array<PolicyObjectRequestDto>}
34
+ * @memberof CalculateProductTariffQuoteRequestDto
35
+ */
36
+ 'policyObjects'?: Array<PolicyObjectRequestDto>;
37
+ /**
38
+ * Premium Override is utilized to override the premium calculation. The premium formulas will be disregarded when this object is present. The premium override content will be validated if the \'validate\' flag is set to true.
39
+ * @type {PremiumOverrideRequestDto}
40
+ * @memberof CalculateProductTariffQuoteRequestDto
41
+ */
42
+ 'premiumOverride'?: PremiumOverrideRequestDto;
43
+ }
44
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { ProductTariffQuoteClass } from './product-tariff-quote-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CalculateProductTariffQuoteResponseClass
22
+ */
23
+ export interface CalculateProductTariffQuoteResponseClass {
24
+ /**
25
+ * Product tariff quote
26
+ * @type {ProductTariffQuoteClass}
27
+ * @memberof CalculateProductTariffQuoteResponseClass
28
+ */
29
+ 'productTariffQuote': ProductTariffQuoteClass;
30
+ }
31
+
@@ -0,0 +1,31 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { CalculationItemErrorsClass } from './calculation-item-errors-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CalculationErrorsClass
22
+ */
23
+ export interface CalculationErrorsClass {
24
+ /**
25
+ * Calculation errors.
26
+ * @type {Array<CalculationItemErrorsClass>}
27
+ * @memberof CalculationErrorsClass
28
+ */
29
+ 'itemErrors': Array<CalculationItemErrorsClass>;
30
+ }
31
+
@@ -0,0 +1,49 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { CalculationMessageClass } from './calculation-message-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CalculationItemErrorsClass
22
+ */
23
+ export interface CalculationItemErrorsClass {
24
+ /**
25
+ * Type of the calculated item (PREMIUM_ITEM or PRODUCT_FIELD).
26
+ * @type {string}
27
+ * @memberof CalculationItemErrorsClass
28
+ */
29
+ 'itemType': string;
30
+ /**
31
+ * Unique identifier referencing the premium item/product field..
32
+ * @type {number}
33
+ * @memberof CalculationItemErrorsClass
34
+ */
35
+ 'itemId': number;
36
+ /**
37
+ * Name of the calculated item.
38
+ * @type {string}
39
+ * @memberof CalculationItemErrorsClass
40
+ */
41
+ 'itemName': string;
42
+ /**
43
+ * Item messages.
44
+ * @type {Array<CalculationMessageClass>}
45
+ * @memberof CalculationItemErrorsClass
46
+ */
47
+ 'messages': Array<CalculationMessageClass>;
48
+ }
49
+
@@ -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
+
@@ -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,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';
@@ -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
+
@@ -26,6 +26,12 @@ export interface ProductVersionClass {
26
26
  * @memberof ProductVersionClass
27
27
  */
28
28
  'id': number;
29
+ /**
30
+ * Unique identifier for the object.
31
+ * @type {string}
32
+ * @memberof ProductVersionClass
33
+ */
34
+ 'code': string;
29
35
  /**
30
36
  * Unique identifier referencing the product.
31
37
  * @type {number}