@emilgroup/insurance-sdk 1.99.1-beta.9 → 1.100.1-beta.0

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 (33) hide show
  1. package/.openapi-generator/FILES +0 -2
  2. package/README.md +2 -2
  3. package/dist/models/category-class.d.ts +0 -14
  4. package/dist/models/deductible-class.d.ts +6 -0
  5. package/dist/models/general-setting-class.d.ts +11 -0
  6. package/dist/models/general-setting-class.js +5 -1
  7. package/dist/models/index.d.ts +0 -2
  8. package/dist/models/index.js +0 -2
  9. package/dist/models/insured-object-type-class.d.ts +2 -2
  10. package/dist/models/lead-status-class.d.ts +1 -1
  11. package/dist/models/shared-tariff-variation-class.d.ts +1 -1
  12. package/dist/models/tariff-calculation-order-class.d.ts +0 -11
  13. package/dist/models/tariff-calculation-order-class.js +0 -5
  14. package/dist/models/tariff-calculation-step-class.d.ts +9 -8
  15. package/dist/models/tariff-calculation-step-class.js +4 -3
  16. package/dist/models/tariff-category-summary-class.d.ts +0 -7
  17. package/models/category-class.ts +0 -14
  18. package/models/deductible-class.ts +6 -0
  19. package/models/general-setting-class.ts +12 -0
  20. package/models/index.ts +0 -2
  21. package/models/insured-object-type-class.ts +2 -2
  22. package/models/lead-status-class.ts +1 -1
  23. package/models/shared-tariff-variation-class.ts +1 -1
  24. package/models/tariff-calculation-order-class.ts +0 -14
  25. package/models/tariff-calculation-step-class.ts +9 -8
  26. package/models/tariff-category-summary-class.ts +0 -7
  27. package/package.json +1 -1
  28. package/dist/models/category-calculation-order-class.d.ts +0 -25
  29. package/dist/models/category-calculation-order-class.js +0 -15
  30. package/dist/models/category-calculation-step-class.d.ts +0 -58
  31. package/dist/models/category-calculation-step-class.js +0 -24
  32. package/models/category-calculation-order-class.ts +0 -31
  33. package/models/category-calculation-step-class.ts +0 -68
@@ -47,8 +47,6 @@ models/calculated-policy-object-class.ts
47
47
  models/calculation-errors-class.ts
48
48
  models/calculation-item-errors-class.ts
49
49
  models/calculation-message-class.ts
50
- models/category-calculation-order-class.ts
51
- models/category-calculation-step-class.ts
52
50
  models/category-class.ts
53
51
  models/category-coverage-summary-class.ts
54
52
  models/category-definition-class.ts
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/insurance-sdk@1.99.1-beta.9 --save
20
+ npm install @emilgroup/insurance-sdk@1.100.1-beta.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/insurance-sdk@1.99.1-beta.9
24
+ yarn add @emilgroup/insurance-sdk@1.100.1-beta.0
25
25
  ```
26
26
 
27
27
  And then you can import `PoliciesApi`.
@@ -9,10 +9,8 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { CategoryCalculationOrderClass } from './category-calculation-order-class';
13
12
  import { CoverageClass } from './coverage-class';
14
13
  import { CoverageTermClass } from './coverage-term-class';
15
- import { DeductibleClass } from './deductible-class';
16
14
  /**
17
15
  *
18
16
  * @export
@@ -37,16 +35,4 @@ export interface CategoryClass {
37
35
  * @memberof CategoryClass
38
36
  */
39
37
  'coverages': Array<CoverageClass>;
40
- /**
41
- * List of category deductibles
42
- * @type {Array<DeductibleClass>}
43
- * @memberof CategoryClass
44
- */
45
- 'deductibles': Array<DeductibleClass>;
46
- /**
47
- * Category calculation order configuration
48
- * @type {CategoryCalculationOrderClass}
49
- * @memberof CategoryClass
50
- */
51
- 'calculationOrder': CategoryCalculationOrderClass;
52
38
  }
@@ -46,6 +46,12 @@ export interface DeductibleClass {
46
46
  * @memberof DeductibleClass
47
47
  */
48
48
  'options': Array<AmountWithLimitClass>;
49
+ /**
50
+ * Categories this deductible applies to
51
+ * @type {Array<string>}
52
+ * @memberof DeductibleClass
53
+ */
54
+ 'applicableCategoryKeys': Array<string>;
49
55
  }
50
56
  export declare const DeductibleClassTypeEnum: {
51
57
  readonly Fixed: "fixed";
@@ -27,6 +27,12 @@ export interface GeneralSettingClass {
27
27
  * @memberof GeneralSettingClass
28
28
  */
29
29
  'currency': GeneralSettingClassCurrencyEnum;
30
+ /**
31
+ * Rounding strategy for claim amounts
32
+ * @type {string}
33
+ * @memberof GeneralSettingClass
34
+ */
35
+ 'roundingStrategy': GeneralSettingClassRoundingStrategyEnum;
30
36
  }
31
37
  export declare const GeneralSettingClassSettlementTypeEnum: {
32
38
  readonly CompleteClaim: "COMPLETE_CLAIM";
@@ -47,3 +53,8 @@ export declare const GeneralSettingClassCurrencyEnum: {
47
53
  readonly Sek: "SEK";
48
54
  };
49
55
  export type GeneralSettingClassCurrencyEnum = typeof GeneralSettingClassCurrencyEnum[keyof typeof GeneralSettingClassCurrencyEnum];
56
+ export declare const GeneralSettingClassRoundingStrategyEnum: {
57
+ readonly None: "NONE";
58
+ readonly Nearest005: "NEAREST_0_05";
59
+ };
60
+ export type GeneralSettingClassRoundingStrategyEnum = typeof GeneralSettingClassRoundingStrategyEnum[keyof typeof GeneralSettingClassRoundingStrategyEnum];
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.GeneralSettingClassCurrencyEnum = exports.GeneralSettingClassSettlementTypeEnum = void 0;
16
+ exports.GeneralSettingClassRoundingStrategyEnum = exports.GeneralSettingClassCurrencyEnum = exports.GeneralSettingClassSettlementTypeEnum = void 0;
17
17
  exports.GeneralSettingClassSettlementTypeEnum = {
18
18
  CompleteClaim: 'COMPLETE_CLAIM',
19
19
  PartialClaim: 'PARTIAL_CLAIM'
@@ -31,3 +31,7 @@ exports.GeneralSettingClassCurrencyEnum = {
31
31
  Nok: 'NOK',
32
32
  Sek: 'SEK'
33
33
  };
34
+ exports.GeneralSettingClassRoundingStrategyEnum = {
35
+ None: 'NONE',
36
+ Nearest005: 'NEAREST_0_05'
37
+ };
@@ -12,8 +12,6 @@ export * from './calculated-policy-object-class';
12
12
  export * from './calculation-errors-class';
13
13
  export * from './calculation-item-errors-class';
14
14
  export * from './calculation-message-class';
15
- export * from './category-calculation-order-class';
16
- export * from './category-calculation-step-class';
17
15
  export * from './category-class';
18
16
  export * from './category-coverage-summary-class';
19
17
  export * from './category-definition-class';
@@ -28,8 +28,6 @@ __exportStar(require("./calculated-policy-object-class"), exports);
28
28
  __exportStar(require("./calculation-errors-class"), exports);
29
29
  __exportStar(require("./calculation-item-errors-class"), exports);
30
30
  __exportStar(require("./calculation-message-class"), exports);
31
- __exportStar(require("./category-calculation-order-class"), exports);
32
- __exportStar(require("./category-calculation-step-class"), exports);
33
31
  __exportStar(require("./category-class"), exports);
34
32
  __exportStar(require("./category-coverage-summary-class"), exports);
35
33
  __exportStar(require("./category-definition-class"), exports);
@@ -34,13 +34,13 @@ export interface InsuredObjectTypeClass {
34
34
  */
35
35
  'slug': string;
36
36
  /**
37
- * Time at which the object was created.
37
+ * Date created
38
38
  * @type {string}
39
39
  * @memberof InsuredObjectTypeClass
40
40
  */
41
41
  'createdAt': string;
42
42
  /**
43
- * Time at which the object was updated.
43
+ * Date updated
44
44
  * @type {string}
45
45
  * @memberof InsuredObjectTypeClass
46
46
  */
@@ -40,7 +40,7 @@ export interface LeadStatusClass {
40
40
  */
41
41
  'productSlug': string;
42
42
  /**
43
- * Indicates if this status is the default for the lead. Defaults to false. When set to true, this status will automatically become the default for new leads, and any other status currently marked as default will be updated to false.
43
+ * Indicates if this status is the default for the lead. Defaults to false. When set to true, this status will automatically become the default for new leads, and any other status currently marked as default will be updated to false.
44
44
  * @type {boolean}
45
45
  * @memberof LeadStatusClass
46
46
  */
@@ -72,7 +72,7 @@ export interface SharedTariffVariationClass {
72
72
  */
73
73
  'waitingPeriod': WaitingPeriodClass;
74
74
  /**
75
- * Approval limits by role within the tariff variation
75
+ * Approval limits for each role in this tariff variation
76
76
  * @type {Array<ApprovalLimitClass>}
77
77
  * @memberof SharedTariffVariationClass
78
78
  */
@@ -22,15 +22,4 @@ export interface TariffCalculationOrderClass {
22
22
  * @memberof TariffCalculationOrderClass
23
23
  */
24
24
  'steps': Array<TariffCalculationStepClass>;
25
- /**
26
- * Defines when tariff steps run relative to category steps
27
- * @type {string}
28
- * @memberof TariffCalculationOrderClass
29
- */
30
- 'tariffExecutionOrder': TariffCalculationOrderClassTariffExecutionOrderEnum;
31
25
  }
32
- export declare const TariffCalculationOrderClassTariffExecutionOrderEnum: {
33
- readonly BeforeCategory: "BEFORE_CATEGORY";
34
- readonly AfterCategory: "AFTER_CATEGORY";
35
- };
36
- export type TariffCalculationOrderClassTariffExecutionOrderEnum = typeof TariffCalculationOrderClassTariffExecutionOrderEnum[keyof typeof TariffCalculationOrderClassTariffExecutionOrderEnum];
@@ -13,8 +13,3 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.TariffCalculationOrderClassTariffExecutionOrderEnum = void 0;
17
- exports.TariffCalculationOrderClassTariffExecutionOrderEnum = {
18
- BeforeCategory: 'BEFORE_CATEGORY',
19
- AfterCategory: 'AFTER_CATEGORY'
20
- };
@@ -28,28 +28,29 @@ export interface TariffCalculationStepClass {
28
28
  */
29
29
  'order': number;
30
30
  /**
31
- * The level where this step applies
31
+ * Only set for coverage calculation steps
32
32
  * @type {string}
33
33
  * @memberof TariffCalculationStepClass
34
34
  */
35
- 'appliesTo': TariffCalculationStepClassAppliesToEnum;
35
+ 'coverageLevel': TariffCalculationStepClassCoverageLevelEnum;
36
36
  /**
37
- * Deductible key used when scope is deductible
37
+ * Only set for deductible calculation steps
38
38
  * @type {string}
39
39
  * @memberof TariffCalculationStepClass
40
40
  */
41
- 'deductibleKey'?: string;
41
+ 'deductibleKey': string;
42
42
  /**
43
- * Tariff calculation step type
43
+ * Calculation step type
44
44
  * @type {string}
45
45
  * @memberof TariffCalculationStepClass
46
46
  */
47
47
  'type': TariffCalculationStepClassTypeEnum;
48
48
  }
49
- export declare const TariffCalculationStepClassAppliesToEnum: {
50
- readonly Position: "position";
49
+ export declare const TariffCalculationStepClassCoverageLevelEnum: {
50
+ readonly Tariff: "tariff";
51
+ readonly Category: "category";
51
52
  };
52
- export type TariffCalculationStepClassAppliesToEnum = typeof TariffCalculationStepClassAppliesToEnum[keyof typeof TariffCalculationStepClassAppliesToEnum];
53
+ export type TariffCalculationStepClassCoverageLevelEnum = typeof TariffCalculationStepClassCoverageLevelEnum[keyof typeof TariffCalculationStepClassCoverageLevelEnum];
53
54
  export declare const TariffCalculationStepClassTypeEnum: {
54
55
  readonly Coverage: "coverage";
55
56
  readonly Deductible: "deductible";
@@ -13,9 +13,10 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.TariffCalculationStepClassTypeEnum = exports.TariffCalculationStepClassAppliesToEnum = void 0;
17
- exports.TariffCalculationStepClassAppliesToEnum = {
18
- Position: 'position'
16
+ exports.TariffCalculationStepClassTypeEnum = exports.TariffCalculationStepClassCoverageLevelEnum = void 0;
17
+ exports.TariffCalculationStepClassCoverageLevelEnum = {
18
+ Tariff: 'tariff',
19
+ Category: 'category'
19
20
  };
20
21
  exports.TariffCalculationStepClassTypeEnum = {
21
22
  Coverage: 'coverage',
@@ -11,7 +11,6 @@
11
11
  */
12
12
  import { CategoryCoverageSummaryClass } from './category-coverage-summary-class';
13
13
  import { CoverageTermClass } from './coverage-term-class';
14
- import { DeductibleClass } from './deductible-class';
15
14
  /**
16
15
  *
17
16
  * @export
@@ -48,10 +47,4 @@ export interface TariffCategorySummaryClass {
48
47
  * @memberof TariffCategorySummaryClass
49
48
  */
50
49
  'coverages': Array<CategoryCoverageSummaryClass>;
51
- /**
52
- * List of category deductibles
53
- * @type {Array<DeductibleClass>}
54
- * @memberof TariffCategorySummaryClass
55
- */
56
- 'deductibles': Array<DeductibleClass>;
57
50
  }
@@ -13,10 +13,8 @@
13
13
  */
14
14
 
15
15
 
16
- import { CategoryCalculationOrderClass } from './category-calculation-order-class';
17
16
  import { CoverageClass } from './coverage-class';
18
17
  import { CoverageTermClass } from './coverage-term-class';
19
- import { DeductibleClass } from './deductible-class';
20
18
 
21
19
  /**
22
20
  *
@@ -42,17 +40,5 @@ export interface CategoryClass {
42
40
  * @memberof CategoryClass
43
41
  */
44
42
  'coverages': Array<CoverageClass>;
45
- /**
46
- * List of category deductibles
47
- * @type {Array<DeductibleClass>}
48
- * @memberof CategoryClass
49
- */
50
- 'deductibles': Array<DeductibleClass>;
51
- /**
52
- * Category calculation order configuration
53
- * @type {CategoryCalculationOrderClass}
54
- * @memberof CategoryClass
55
- */
56
- 'calculationOrder': CategoryCalculationOrderClass;
57
43
  }
58
44
 
@@ -51,6 +51,12 @@ export interface DeductibleClass {
51
51
  * @memberof DeductibleClass
52
52
  */
53
53
  'options': Array<AmountWithLimitClass>;
54
+ /**
55
+ * Categories this deductible applies to
56
+ * @type {Array<string>}
57
+ * @memberof DeductibleClass
58
+ */
59
+ 'applicableCategoryKeys': Array<string>;
54
60
  }
55
61
 
56
62
  export const DeductibleClassTypeEnum = {
@@ -32,6 +32,12 @@ export interface GeneralSettingClass {
32
32
  * @memberof GeneralSettingClass
33
33
  */
34
34
  'currency': GeneralSettingClassCurrencyEnum;
35
+ /**
36
+ * Rounding strategy for claim amounts
37
+ * @type {string}
38
+ * @memberof GeneralSettingClass
39
+ */
40
+ 'roundingStrategy': GeneralSettingClassRoundingStrategyEnum;
35
41
  }
36
42
 
37
43
  export const GeneralSettingClassSettlementTypeEnum = {
@@ -55,5 +61,11 @@ export const GeneralSettingClassCurrencyEnum = {
55
61
  } as const;
56
62
 
57
63
  export type GeneralSettingClassCurrencyEnum = typeof GeneralSettingClassCurrencyEnum[keyof typeof GeneralSettingClassCurrencyEnum];
64
+ export const GeneralSettingClassRoundingStrategyEnum = {
65
+ None: 'NONE',
66
+ Nearest005: 'NEAREST_0_05'
67
+ } as const;
68
+
69
+ export type GeneralSettingClassRoundingStrategyEnum = typeof GeneralSettingClassRoundingStrategyEnum[keyof typeof GeneralSettingClassRoundingStrategyEnum];
58
70
 
59
71
 
package/models/index.ts CHANGED
@@ -12,8 +12,6 @@ export * from './calculated-policy-object-class';
12
12
  export * from './calculation-errors-class';
13
13
  export * from './calculation-item-errors-class';
14
14
  export * from './calculation-message-class';
15
- export * from './category-calculation-order-class';
16
- export * from './category-calculation-step-class';
17
15
  export * from './category-class';
18
16
  export * from './category-coverage-summary-class';
19
17
  export * from './category-definition-class';
@@ -39,13 +39,13 @@ export interface InsuredObjectTypeClass {
39
39
  */
40
40
  'slug': string;
41
41
  /**
42
- * Time at which the object was created.
42
+ * Date created
43
43
  * @type {string}
44
44
  * @memberof InsuredObjectTypeClass
45
45
  */
46
46
  'createdAt': string;
47
47
  /**
48
- * Time at which the object was updated.
48
+ * Date updated
49
49
  * @type {string}
50
50
  * @memberof InsuredObjectTypeClass
51
51
  */
@@ -45,7 +45,7 @@ export interface LeadStatusClass {
45
45
  */
46
46
  'productSlug': string;
47
47
  /**
48
- * Indicates if this status is the default for the lead. Defaults to false. When set to true, this status will automatically become the default for new leads, and any other status currently marked as default will be updated to false.
48
+ * Indicates if this status is the default for the lead. Defaults to false. When set to true, this status will automatically become the default for new leads, and any other status currently marked as default will be updated to false.
49
49
  * @type {boolean}
50
50
  * @memberof LeadStatusClass
51
51
  */
@@ -77,7 +77,7 @@ export interface SharedTariffVariationClass {
77
77
  */
78
78
  'waitingPeriod': WaitingPeriodClass;
79
79
  /**
80
- * Approval limits by role within the tariff variation
80
+ * Approval limits for each role in this tariff variation
81
81
  * @type {Array<ApprovalLimitClass>}
82
82
  * @memberof SharedTariffVariationClass
83
83
  */
@@ -27,19 +27,5 @@ export interface TariffCalculationOrderClass {
27
27
  * @memberof TariffCalculationOrderClass
28
28
  */
29
29
  'steps': Array<TariffCalculationStepClass>;
30
- /**
31
- * Defines when tariff steps run relative to category steps
32
- * @type {string}
33
- * @memberof TariffCalculationOrderClass
34
- */
35
- 'tariffExecutionOrder': TariffCalculationOrderClassTariffExecutionOrderEnum;
36
30
  }
37
31
 
38
- export const TariffCalculationOrderClassTariffExecutionOrderEnum = {
39
- BeforeCategory: 'BEFORE_CATEGORY',
40
- AfterCategory: 'AFTER_CATEGORY'
41
- } as const;
42
-
43
- export type TariffCalculationOrderClassTariffExecutionOrderEnum = typeof TariffCalculationOrderClassTariffExecutionOrderEnum[keyof typeof TariffCalculationOrderClassTariffExecutionOrderEnum];
44
-
45
-
@@ -33,30 +33,31 @@ export interface TariffCalculationStepClass {
33
33
  */
34
34
  'order': number;
35
35
  /**
36
- * The level where this step applies
36
+ * Only set for coverage calculation steps
37
37
  * @type {string}
38
38
  * @memberof TariffCalculationStepClass
39
39
  */
40
- 'appliesTo': TariffCalculationStepClassAppliesToEnum;
40
+ 'coverageLevel': TariffCalculationStepClassCoverageLevelEnum;
41
41
  /**
42
- * Deductible key used when scope is deductible
42
+ * Only set for deductible calculation steps
43
43
  * @type {string}
44
44
  * @memberof TariffCalculationStepClass
45
45
  */
46
- 'deductibleKey'?: string;
46
+ 'deductibleKey': string;
47
47
  /**
48
- * Tariff calculation step type
48
+ * Calculation step type
49
49
  * @type {string}
50
50
  * @memberof TariffCalculationStepClass
51
51
  */
52
52
  'type': TariffCalculationStepClassTypeEnum;
53
53
  }
54
54
 
55
- export const TariffCalculationStepClassAppliesToEnum = {
56
- Position: 'position'
55
+ export const TariffCalculationStepClassCoverageLevelEnum = {
56
+ Tariff: 'tariff',
57
+ Category: 'category'
57
58
  } as const;
58
59
 
59
- export type TariffCalculationStepClassAppliesToEnum = typeof TariffCalculationStepClassAppliesToEnum[keyof typeof TariffCalculationStepClassAppliesToEnum];
60
+ export type TariffCalculationStepClassCoverageLevelEnum = typeof TariffCalculationStepClassCoverageLevelEnum[keyof typeof TariffCalculationStepClassCoverageLevelEnum];
60
61
  export const TariffCalculationStepClassTypeEnum = {
61
62
  Coverage: 'coverage',
62
63
  Deductible: 'deductible',
@@ -15,7 +15,6 @@
15
15
 
16
16
  import { CategoryCoverageSummaryClass } from './category-coverage-summary-class';
17
17
  import { CoverageTermClass } from './coverage-term-class';
18
- import { DeductibleClass } from './deductible-class';
19
18
 
20
19
  /**
21
20
  *
@@ -53,11 +52,5 @@ export interface TariffCategorySummaryClass {
53
52
  * @memberof TariffCategorySummaryClass
54
53
  */
55
54
  'coverages': Array<CategoryCoverageSummaryClass>;
56
- /**
57
- * List of category deductibles
58
- * @type {Array<DeductibleClass>}
59
- * @memberof TariffCategorySummaryClass
60
- */
61
- 'deductibles': Array<DeductibleClass>;
62
55
  }
63
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/insurance-sdk",
3
- "version": "1.99.1-beta.9",
3
+ "version": "1.100.1-beta.0",
4
4
  "description": "OpenAPI client for @emilgroup/insurance-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -1,25 +0,0 @@
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 { CategoryCalculationStepClass } from './category-calculation-step-class';
13
- /**
14
- *
15
- * @export
16
- * @interface CategoryCalculationOrderClass
17
- */
18
- export interface CategoryCalculationOrderClass {
19
- /**
20
- * Ordered list of category calculation steps
21
- * @type {Array<CategoryCalculationStepClass>}
22
- * @memberof CategoryCalculationOrderClass
23
- */
24
- 'steps': Array<CategoryCalculationStepClass>;
25
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,58 +0,0 @@
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 CategoryCalculationStepClass
16
- */
17
- export interface CategoryCalculationStepClass {
18
- /**
19
- * Unique key for the calculation step
20
- * @type {string}
21
- * @memberof CategoryCalculationStepClass
22
- */
23
- 'key': string;
24
- /**
25
- * Execution order index for this step
26
- * @type {number}
27
- * @memberof CategoryCalculationStepClass
28
- */
29
- 'order': number;
30
- /**
31
- * The level where this step applies
32
- * @type {string}
33
- * @memberof CategoryCalculationStepClass
34
- */
35
- 'appliesTo': CategoryCalculationStepClassAppliesToEnum;
36
- /**
37
- * Deductible key used when scope is deductible
38
- * @type {string}
39
- * @memberof CategoryCalculationStepClass
40
- */
41
- 'deductibleKey'?: string;
42
- /**
43
- * Category calculation step type
44
- * @type {string}
45
- * @memberof CategoryCalculationStepClass
46
- */
47
- 'type': CategoryCalculationStepClassTypeEnum;
48
- }
49
- export declare const CategoryCalculationStepClassAppliesToEnum: {
50
- readonly Position: "position";
51
- };
52
- export type CategoryCalculationStepClassAppliesToEnum = typeof CategoryCalculationStepClassAppliesToEnum[keyof typeof CategoryCalculationStepClassAppliesToEnum];
53
- export declare const CategoryCalculationStepClassTypeEnum: {
54
- readonly Coverage: "coverage";
55
- readonly Deductible: "deductible";
56
- readonly ManualAdjustment: "manualAdjustment";
57
- };
58
- export type CategoryCalculationStepClassTypeEnum = typeof CategoryCalculationStepClassTypeEnum[keyof typeof CategoryCalculationStepClassTypeEnum];
@@ -1,24 +0,0 @@
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.CategoryCalculationStepClassTypeEnum = exports.CategoryCalculationStepClassAppliesToEnum = void 0;
17
- exports.CategoryCalculationStepClassAppliesToEnum = {
18
- Position: 'position'
19
- };
20
- exports.CategoryCalculationStepClassTypeEnum = {
21
- Coverage: 'coverage',
22
- Deductible: 'deductible',
23
- ManualAdjustment: 'manualAdjustment'
24
- };
@@ -1,31 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL InsuranceService
5
- * The EMIL InsuranceService 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 { CategoryCalculationStepClass } from './category-calculation-step-class';
17
-
18
- /**
19
- *
20
- * @export
21
- * @interface CategoryCalculationOrderClass
22
- */
23
- export interface CategoryCalculationOrderClass {
24
- /**
25
- * Ordered list of category calculation steps
26
- * @type {Array<CategoryCalculationStepClass>}
27
- * @memberof CategoryCalculationOrderClass
28
- */
29
- 'steps': Array<CategoryCalculationStepClass>;
30
- }
31
-
@@ -1,68 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL InsuranceService
5
- * The EMIL InsuranceService 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 CategoryCalculationStepClass
21
- */
22
- export interface CategoryCalculationStepClass {
23
- /**
24
- * Unique key for the calculation step
25
- * @type {string}
26
- * @memberof CategoryCalculationStepClass
27
- */
28
- 'key': string;
29
- /**
30
- * Execution order index for this step
31
- * @type {number}
32
- * @memberof CategoryCalculationStepClass
33
- */
34
- 'order': number;
35
- /**
36
- * The level where this step applies
37
- * @type {string}
38
- * @memberof CategoryCalculationStepClass
39
- */
40
- 'appliesTo': CategoryCalculationStepClassAppliesToEnum;
41
- /**
42
- * Deductible key used when scope is deductible
43
- * @type {string}
44
- * @memberof CategoryCalculationStepClass
45
- */
46
- 'deductibleKey'?: string;
47
- /**
48
- * Category calculation step type
49
- * @type {string}
50
- * @memberof CategoryCalculationStepClass
51
- */
52
- 'type': CategoryCalculationStepClassTypeEnum;
53
- }
54
-
55
- export const CategoryCalculationStepClassAppliesToEnum = {
56
- Position: 'position'
57
- } as const;
58
-
59
- export type CategoryCalculationStepClassAppliesToEnum = typeof CategoryCalculationStepClassAppliesToEnum[keyof typeof CategoryCalculationStepClassAppliesToEnum];
60
- export const CategoryCalculationStepClassTypeEnum = {
61
- Coverage: 'coverage',
62
- Deductible: 'deductible',
63
- ManualAdjustment: 'manualAdjustment'
64
- } as const;
65
-
66
- export type CategoryCalculationStepClassTypeEnum = typeof CategoryCalculationStepClassTypeEnum[keyof typeof CategoryCalculationStepClassTypeEnum];
67
-
68
-