@emilgroup/insurance-sdk-node 1.93.0 → 1.93.1-beta.11

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 (96) hide show
  1. package/.openapi-generator/FILES +29 -0
  2. package/README.md +2 -2
  3. package/api/product-configs-api.ts +1371 -0
  4. package/api.ts +2 -0
  5. package/dist/api/product-configs-api.d.ts +765 -0
  6. package/dist/api/product-configs-api.js +1225 -0
  7. package/dist/api.d.ts +1 -0
  8. package/dist/api.js +1 -0
  9. package/dist/models/amount-with-limit-class.d.ts +30 -0
  10. package/dist/models/amount-with-limit-class.js +15 -0
  11. package/dist/models/category-class.d.ts +57 -0
  12. package/dist/models/category-class.js +15 -0
  13. package/dist/models/claim-config-class.d.ts +39 -0
  14. package/dist/models/claim-config-class.js +15 -0
  15. package/dist/models/claim-position-fields-class.d.ts +31 -0
  16. package/dist/models/claim-position-fields-class.js +15 -0
  17. package/dist/models/coverage-class.d.ts +43 -0
  18. package/dist/models/coverage-class.js +15 -0
  19. package/dist/models/coverage-term-class.d.ts +54 -0
  20. package/dist/models/coverage-term-class.js +25 -0
  21. package/dist/models/custom-field-class.d.ts +50 -0
  22. package/dist/models/custom-field-class.js +23 -0
  23. package/dist/models/deductible-class.d.ts +60 -0
  24. package/dist/models/deductible-class.js +25 -0
  25. package/dist/models/delete-response-by-code-class.d.ts +24 -0
  26. package/dist/models/delete-response-by-code-class.js +15 -0
  27. package/dist/models/general-setting-class.d.ts +56 -0
  28. package/dist/models/general-setting-class.js +33 -0
  29. package/dist/models/index.d.ts +28 -0
  30. package/dist/models/index.js +28 -0
  31. package/dist/models/rest-create-product-config-response-class.d.ts +25 -0
  32. package/dist/models/rest-create-product-config-response-class.js +15 -0
  33. package/dist/models/rest-create-product-config-version-response-class.d.ts +25 -0
  34. package/dist/models/rest-create-product-config-version-response-class.js +15 -0
  35. package/dist/models/rest-get-product-config-response-class.d.ts +25 -0
  36. package/dist/models/rest-get-product-config-response-class.js +15 -0
  37. package/dist/models/rest-get-product-config-version-response-class.d.ts +25 -0
  38. package/dist/models/rest-get-product-config-version-response-class.js +15 -0
  39. package/dist/models/rest-list-product-config-versions-response-class.d.ts +43 -0
  40. package/dist/models/rest-list-product-config-versions-response-class.js +15 -0
  41. package/dist/models/rest-list-product-configs-response-class.d.ts +43 -0
  42. package/dist/models/rest-list-product-configs-response-class.js +15 -0
  43. package/dist/models/rest-update-product-config-response-class.d.ts +25 -0
  44. package/dist/models/rest-update-product-config-response-class.js +15 -0
  45. package/dist/models/rest-update-product-config-version-response-class.d.ts +25 -0
  46. package/dist/models/rest-update-product-config-version-response-class.js +15 -0
  47. package/dist/models/shared-product-config-class.d.ts +79 -0
  48. package/dist/models/shared-product-config-class.js +15 -0
  49. package/dist/models/shared-product-config-version-class.d.ts +85 -0
  50. package/dist/models/shared-product-config-version-class.js +21 -0
  51. package/dist/models/shared-product-field-override-class.d.ts +48 -0
  52. package/dist/models/shared-product-field-override-class.js +15 -0
  53. package/dist/models/shared-product-version-config-class.d.ts +32 -0
  54. package/dist/models/shared-product-version-config-class.js +15 -0
  55. package/dist/models/shared-tariff-variation-class.d.ts +64 -0
  56. package/dist/models/shared-tariff-variation-class.js +15 -0
  57. package/dist/models/tariff-coverage-term-class.d.ts +72 -0
  58. package/dist/models/tariff-coverage-term-class.js +30 -0
  59. package/dist/models/update-product-config-request-dto.d.ts +24 -0
  60. package/dist/models/update-product-config-request-dto.js +15 -0
  61. package/dist/models/update-product-config-version-status-request-dto.d.ts +30 -0
  62. package/dist/models/update-product-config-version-status-request-dto.js +21 -0
  63. package/dist/models/waiting-period-class.d.ts +41 -0
  64. package/dist/models/waiting-period-class.js +20 -0
  65. package/dist/models/warning-class.d.ts +47 -0
  66. package/dist/models/warning-class.js +20 -0
  67. package/models/amount-with-limit-class.ts +36 -0
  68. package/models/category-class.ts +63 -0
  69. package/models/claim-config-class.ts +45 -0
  70. package/models/claim-position-fields-class.ts +37 -0
  71. package/models/coverage-class.ts +49 -0
  72. package/models/coverage-term-class.ts +64 -0
  73. package/models/custom-field-class.ts +59 -0
  74. package/models/deductible-class.ts +70 -0
  75. package/models/delete-response-by-code-class.ts +30 -0
  76. package/models/general-setting-class.ts +66 -0
  77. package/models/index.ts +28 -0
  78. package/models/rest-create-product-config-response-class.ts +31 -0
  79. package/models/rest-create-product-config-version-response-class.ts +31 -0
  80. package/models/rest-get-product-config-response-class.ts +31 -0
  81. package/models/rest-get-product-config-version-response-class.ts +31 -0
  82. package/models/rest-list-product-config-versions-response-class.ts +49 -0
  83. package/models/rest-list-product-configs-response-class.ts +49 -0
  84. package/models/rest-update-product-config-response-class.ts +31 -0
  85. package/models/rest-update-product-config-version-response-class.ts +31 -0
  86. package/models/shared-product-config-class.ts +85 -0
  87. package/models/shared-product-config-version-class.ts +94 -0
  88. package/models/shared-product-field-override-class.ts +54 -0
  89. package/models/shared-product-version-config-class.ts +38 -0
  90. package/models/shared-tariff-variation-class.ts +70 -0
  91. package/models/tariff-coverage-term-class.ts +83 -0
  92. package/models/update-product-config-request-dto.ts +30 -0
  93. package/models/update-product-config-version-status-request-dto.ts +39 -0
  94. package/models/waiting-period-class.ts +50 -0
  95. package/models/warning-class.ts +56 -0
  96. package/package.json +2 -2
package/dist/api.d.ts CHANGED
@@ -28,6 +28,7 @@ export * from './api/partner-links-api';
28
28
  export * from './api/partner-roles-api';
29
29
  export * from './api/policies-api';
30
30
  export * from './api/premium-formulas-api';
31
+ export * from './api/product-configs-api';
31
32
  export * from './api/product-factors-api';
32
33
  export * from './api/product-fields-api';
33
34
  export * from './api/product-versions-api';
package/dist/api.js CHANGED
@@ -46,6 +46,7 @@ __exportStar(require("./api/partner-links-api"), exports);
46
46
  __exportStar(require("./api/partner-roles-api"), exports);
47
47
  __exportStar(require("./api/policies-api"), exports);
48
48
  __exportStar(require("./api/premium-formulas-api"), exports);
49
+ __exportStar(require("./api/product-configs-api"), exports);
49
50
  __exportStar(require("./api/product-factors-api"), exports);
50
51
  __exportStar(require("./api/product-fields-api"), exports);
51
52
  __exportStar(require("./api/product-versions-api"), exports);
@@ -0,0 +1,30 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 AmountWithLimitClass
16
+ */
17
+ export interface AmountWithLimitClass {
18
+ /**
19
+ * Amount value (required for percent and fixed types)
20
+ * @type {number}
21
+ * @memberof AmountWithLimitClass
22
+ */
23
+ 'amount': number;
24
+ /**
25
+ * Maximum limit (required for percent type)
26
+ * @type {number}
27
+ * @memberof AmountWithLimitClass
28
+ */
29
+ 'limit': number;
30
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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 InsuranceService
3
+ * The EMIL InsuranceService 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 { CoverageClass } from './coverage-class';
13
+ import { CoverageTermClass } from './coverage-term-class';
14
+ import { DeductibleClass } from './deductible-class';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface CategoryClass
19
+ */
20
+ export interface CategoryClass {
21
+ /**
22
+ * Unique identifier key for category
23
+ * @type {string}
24
+ * @memberof CategoryClass
25
+ */
26
+ 'key': string;
27
+ /**
28
+ * Display name shown to users
29
+ * @type {string}
30
+ * @memberof CategoryClass
31
+ */
32
+ 'label': string;
33
+ /**
34
+ * Category coverage term
35
+ * @type {CoverageTermClass}
36
+ * @memberof CategoryClass
37
+ */
38
+ 'coverageTerm': CoverageTermClass;
39
+ /**
40
+ * Category description
41
+ * @type {string}
42
+ * @memberof CategoryClass
43
+ */
44
+ 'description': string;
45
+ /**
46
+ * List of category coverages
47
+ * @type {Array<CoverageClass>}
48
+ * @memberof CategoryClass
49
+ */
50
+ 'coverages': Array<CoverageClass>;
51
+ /**
52
+ * List of category deductibles
53
+ * @type {Array<DeductibleClass>}
54
+ * @memberof CategoryClass
55
+ */
56
+ 'deductibles': Array<DeductibleClass>;
57
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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,39 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 { ClaimPositionFieldsClass } from './claim-position-fields-class';
13
+ import { GeneralSettingClass } from './general-setting-class';
14
+ import { WarningClass } from './warning-class';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface ClaimConfigClass
19
+ */
20
+ export interface ClaimConfigClass {
21
+ /**
22
+ * General claim processing settings
23
+ * @type {GeneralSettingClass}
24
+ * @memberof ClaimConfigClass
25
+ */
26
+ 'generalSetting': GeneralSettingClass;
27
+ /**
28
+ * List of claim warning messages
29
+ * @type {Array<WarningClass>}
30
+ * @memberof ClaimConfigClass
31
+ */
32
+ 'warnings': Array<WarningClass>;
33
+ /**
34
+ * Fields configuration displayed in claim position table
35
+ * @type {ClaimPositionFieldsClass}
36
+ * @memberof ClaimConfigClass
37
+ */
38
+ 'claimPositionFields': ClaimPositionFieldsClass;
39
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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,31 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 { CustomFieldClass } from './custom-field-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ClaimPositionFieldsClass
17
+ */
18
+ export interface ClaimPositionFieldsClass {
19
+ /**
20
+ * Custom claim position fields
21
+ * @type {Array<CustomFieldClass>}
22
+ * @memberof ClaimPositionFieldsClass
23
+ */
24
+ 'customFields': Array<CustomFieldClass>;
25
+ /**
26
+ * Order for displaying claim position fields
27
+ * @type {Array<string>}
28
+ * @memberof ClaimPositionFieldsClass
29
+ */
30
+ 'fieldsOrder': Array<string>;
31
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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 InsuranceService
3
+ * The EMIL InsuranceService 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 CoverageClass
17
+ */
18
+ export interface CoverageClass {
19
+ /**
20
+ * Unique identifier key for category coverage
21
+ * @type {string}
22
+ * @memberof CoverageClass
23
+ */
24
+ 'key': string;
25
+ /**
26
+ * Display name shown to users
27
+ * @type {string}
28
+ * @memberof CoverageClass
29
+ */
30
+ 'label': string;
31
+ /**
32
+ * Category coverage description
33
+ * @type {string}
34
+ * @memberof CoverageClass
35
+ */
36
+ 'description': string;
37
+ /**
38
+ * Coverage term
39
+ * @type {CoverageTermClass}
40
+ * @memberof CoverageClass
41
+ */
42
+ 'coverageTerm': CoverageTermClass;
43
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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,54 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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
+ export declare const CoverageTermClassTypeEnum: {
45
+ readonly Fixed: "fixed";
46
+ readonly Percent: "percent";
47
+ };
48
+ export type CoverageTermClassTypeEnum = typeof CoverageTermClassTypeEnum[keyof typeof CoverageTermClassTypeEnum];
49
+ export declare const CoverageTermClassPeriodEnum: {
50
+ readonly CalendarYear: "CALENDAR_YEAR";
51
+ readonly PolicyYear: "POLICY_YEAR";
52
+ readonly PerClaim: "PER_CLAIM";
53
+ };
54
+ export type CoverageTermClassPeriodEnum = typeof CoverageTermClassPeriodEnum[keyof typeof CoverageTermClassPeriodEnum];
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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.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
+ };
@@ -0,0 +1,50 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 CustomFieldClass
16
+ */
17
+ export interface CustomFieldClass {
18
+ /**
19
+ * Unique identifier key for custom claim position field
20
+ * @type {string}
21
+ * @memberof CustomFieldClass
22
+ */
23
+ 'key': string;
24
+ /**
25
+ * Display name shown to users
26
+ * @type {string}
27
+ * @memberof CustomFieldClass
28
+ */
29
+ 'label': string;
30
+ /**
31
+ * Type of custom claim position field
32
+ * @type {string}
33
+ * @memberof CustomFieldClass
34
+ */
35
+ 'type': CustomFieldClassTypeEnum;
36
+ /**
37
+ * Whether this custom claim position field is mandatory
38
+ * @type {boolean}
39
+ * @memberof CustomFieldClass
40
+ */
41
+ 'isRequired': boolean;
42
+ }
43
+ export declare const CustomFieldClassTypeEnum: {
44
+ readonly Boolean: "boolean";
45
+ readonly Date: "date";
46
+ readonly DateTime: "dateTime";
47
+ readonly String: "string";
48
+ readonly Number: "number";
49
+ };
50
+ export type CustomFieldClassTypeEnum = typeof CustomFieldClassTypeEnum[keyof typeof CustomFieldClassTypeEnum];
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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.CustomFieldClassTypeEnum = void 0;
17
+ exports.CustomFieldClassTypeEnum = {
18
+ Boolean: 'boolean',
19
+ Date: 'date',
20
+ DateTime: 'dateTime',
21
+ String: 'string',
22
+ Number: 'number'
23
+ };
@@ -0,0 +1,60 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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
+ * Deductible value - fixed amount or percentage with maximum limit
39
+ * @type {AmountWithLimitClass}
40
+ * @memberof DeductibleClass
41
+ */
42
+ 'value': AmountWithLimitClass;
43
+ /**
44
+ * Time period over which the deductible applies
45
+ * @type {string}
46
+ * @memberof DeductibleClass
47
+ */
48
+ 'period': DeductibleClassPeriodEnum;
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 InsuranceService
6
+ * The EMIL InsuranceService 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,24 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 DeleteResponseByCodeClass
16
+ */
17
+ export interface DeleteResponseByCodeClass {
18
+ /**
19
+ *
20
+ * @type {boolean}
21
+ * @memberof DeleteResponseByCodeClass
22
+ */
23
+ 'success': boolean;
24
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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,56 @@
1
+ /**
2
+ * EMIL InsuranceService
3
+ * The EMIL InsuranceService 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 { WaitingPeriodClass } from './waiting-period-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GeneralSettingClass
17
+ */
18
+ export interface GeneralSettingClass {
19
+ /**
20
+ * Type of claim settlement type
21
+ * @type {string}
22
+ * @memberof GeneralSettingClass
23
+ */
24
+ 'settlementType': GeneralSettingClassSettlementTypeEnum;
25
+ /**
26
+ * Currency used for claim settlement
27
+ * @type {string}
28
+ * @memberof GeneralSettingClass
29
+ */
30
+ 'currency': GeneralSettingClassCurrencyEnum;
31
+ /**
32
+ * Waiting period before coverage applies
33
+ * @type {WaitingPeriodClass}
34
+ * @memberof GeneralSettingClass
35
+ */
36
+ 'waitingPeriod': WaitingPeriodClass;
37
+ }
38
+ export declare const GeneralSettingClassSettlementTypeEnum: {
39
+ readonly CompleteClaim: "COMPLETE_CLAIM";
40
+ readonly PartialClaim: "PARTIAL_CLAIM";
41
+ };
42
+ export type GeneralSettingClassSettlementTypeEnum = typeof GeneralSettingClassSettlementTypeEnum[keyof typeof GeneralSettingClassSettlementTypeEnum];
43
+ export declare const GeneralSettingClassCurrencyEnum: {
44
+ readonly Eur: "EUR";
45
+ readonly Usd: "USD";
46
+ readonly Gbp: "GBP";
47
+ readonly Chf: "CHF";
48
+ readonly Pln: "PLN";
49
+ readonly Aud: "AUD";
50
+ readonly Cad: "CAD";
51
+ readonly Ddk: "DDK";
52
+ readonly Huf: "HUF";
53
+ readonly Nok: "NOK";
54
+ readonly Sek: "SEK";
55
+ };
56
+ export type GeneralSettingClassCurrencyEnum = typeof GeneralSettingClassCurrencyEnum[keyof typeof GeneralSettingClassCurrencyEnum];
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * EMIL InsuranceService
6
+ * The EMIL InsuranceService 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.GeneralSettingClassCurrencyEnum = exports.GeneralSettingClassSettlementTypeEnum = void 0;
17
+ exports.GeneralSettingClassSettlementTypeEnum = {
18
+ CompleteClaim: 'COMPLETE_CLAIM',
19
+ PartialClaim: 'PARTIAL_CLAIM'
20
+ };
21
+ exports.GeneralSettingClassCurrencyEnum = {
22
+ Eur: 'EUR',
23
+ Usd: 'USD',
24
+ Gbp: 'GBP',
25
+ Chf: 'CHF',
26
+ Pln: 'PLN',
27
+ Aud: 'AUD',
28
+ Cad: 'CAD',
29
+ Ddk: 'DDK',
30
+ Huf: 'HUF',
31
+ Nok: 'NOK',
32
+ Sek: 'SEK'
33
+ };