@emilgroup/public-api-sdk-node 1.35.1-beta.16 → 1.35.1-beta.18

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.
@@ -58,6 +58,7 @@ models/create-lead-response-class.ts
58
58
  models/create-payment-method-request-dto.ts
59
59
  models/create-presigned-post-request-dto.ts
60
60
  models/create-presigned-post-response-class.ts
61
+ models/deductible-class.ts
61
62
  models/document-class.ts
62
63
  models/eis-sepa-debit-config-response-class.ts
63
64
  models/eis-sepa-debit-dto.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/public-api-sdk-node@1.35.1-beta.16 --save
20
+ npm install @emilgroup/public-api-sdk-node@1.35.1-beta.18 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/public-api-sdk-node@1.35.1-beta.16
24
+ yarn add @emilgroup/public-api-sdk-node@1.35.1-beta.18
25
25
  ```
26
26
 
27
27
  And then you can import `PublicApi`.
@@ -40,6 +40,12 @@ export interface CoverageTermClass {
40
40
  * @memberof CoverageTermClass
41
41
  */
42
42
  'value': AmountWithLimitClass;
43
+ /**
44
+ * Pro-rata calculation type
45
+ * @type {string}
46
+ * @memberof CoverageTermClass
47
+ */
48
+ 'proRata': CoverageTermClassProRataEnum;
43
49
  }
44
50
  export declare const CoverageTermClassTypeEnum: {
45
51
  readonly Fixed: "fixed";
@@ -52,3 +58,9 @@ export declare const CoverageTermClassPeriodEnum: {
52
58
  readonly PerClaim: "PER_CLAIM";
53
59
  };
54
60
  export type CoverageTermClassPeriodEnum = typeof CoverageTermClassPeriodEnum[keyof typeof CoverageTermClassPeriodEnum];
61
+ export declare const CoverageTermClassProRataEnum: {
62
+ readonly Disabled: "DISABLED";
63
+ readonly Enabled: "ENABLED";
64
+ readonly EnabledAfterWaitingPeriod: "ENABLED_AFTER_WAITING_PERIOD";
65
+ };
66
+ export type CoverageTermClassProRataEnum = typeof CoverageTermClassProRataEnum[keyof typeof CoverageTermClassProRataEnum];
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.CoverageTermClassPeriodEnum = exports.CoverageTermClassTypeEnum = void 0;
16
+ exports.CoverageTermClassProRataEnum = exports.CoverageTermClassPeriodEnum = exports.CoverageTermClassTypeEnum = void 0;
17
17
  exports.CoverageTermClassTypeEnum = {
18
18
  Fixed: 'fixed',
19
19
  Percent: 'percent'
@@ -23,3 +23,8 @@ exports.CoverageTermClassPeriodEnum = {
23
23
  PolicyYear: 'POLICY_YEAR',
24
24
  PerClaim: 'PER_CLAIM'
25
25
  };
26
+ exports.CoverageTermClassProRataEnum = {
27
+ Disabled: 'DISABLED',
28
+ Enabled: 'ENABLED',
29
+ EnabledAfterWaitingPeriod: 'ENABLED_AFTER_WAITING_PERIOD'
30
+ };
@@ -0,0 +1,60 @@
1
+ /**
2
+ * Emil PublicAPI
3
+ * The Emil Public API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AmountWithLimitClass } from './amount-with-limit-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface DeductibleClass
17
+ */
18
+ export interface DeductibleClass {
19
+ /**
20
+ * Unique identifier key for deductible
21
+ * @type {string}
22
+ * @memberof DeductibleClass
23
+ */
24
+ 'key': string;
25
+ /**
26
+ * Display name shown to users
27
+ * @type {string}
28
+ * @memberof DeductibleClass
29
+ */
30
+ 'label': string;
31
+ /**
32
+ * Deductible type (fixed or percent)
33
+ * @type {string}
34
+ * @memberof DeductibleClass
35
+ */
36
+ 'type': DeductibleClassTypeEnum;
37
+ /**
38
+ * 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 PublicAPI
6
+ * The Emil Public API description
7
+ *
8
+ * The version of the OpenAPI document: 1.0
9
+ * Contact: kontakt@emil.de
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.DeductibleClassPeriodEnum = exports.DeductibleClassTypeEnum = void 0;
17
+ exports.DeductibleClassTypeEnum = {
18
+ Fixed: 'fixed',
19
+ Percent: 'percent'
20
+ };
21
+ exports.DeductibleClassPeriodEnum = {
22
+ CalendarYear: 'CALENDAR_YEAR',
23
+ PolicyYear: 'POLICY_YEAR',
24
+ PerClaim: 'PER_CLAIM'
25
+ };
@@ -38,6 +38,7 @@ export * from './create-lead-response-class';
38
38
  export * from './create-payment-method-request-dto';
39
39
  export * from './create-presigned-post-request-dto';
40
40
  export * from './create-presigned-post-response-class';
41
+ export * from './deductible-class';
41
42
  export * from './document-class';
42
43
  export * from './eis-sepa-debit-config-response-class';
43
44
  export * from './eis-sepa-debit-dto';
@@ -54,6 +54,7 @@ __exportStar(require("./create-lead-response-class"), exports);
54
54
  __exportStar(require("./create-payment-method-request-dto"), exports);
55
55
  __exportStar(require("./create-presigned-post-request-dto"), exports);
56
56
  __exportStar(require("./create-presigned-post-response-class"), exports);
57
+ __exportStar(require("./deductible-class"), exports);
57
58
  __exportStar(require("./document-class"), exports);
58
59
  __exportStar(require("./eis-sepa-debit-config-response-class"), exports);
59
60
  __exportStar(require("./eis-sepa-debit-dto"), exports);
@@ -11,6 +11,7 @@
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';
14
15
  /**
15
16
  *
16
17
  * @export
@@ -47,4 +48,10 @@ export interface TariffCategorySummaryClass {
47
48
  * @memberof TariffCategorySummaryClass
48
49
  */
49
50
  'coverages': Array<CategoryCoverageSummaryClass>;
51
+ /**
52
+ * List of category deductibles
53
+ * @type {Array<DeductibleClass>}
54
+ * @memberof TariffCategorySummaryClass
55
+ */
56
+ 'deductibles': Array<DeductibleClass>;
50
57
  }
@@ -34,6 +34,12 @@ export interface TariffCoverageTermClass {
34
34
  * @memberof TariffCoverageTermClass
35
35
  */
36
36
  'value': AmountWithLimitClass;
37
+ /**
38
+ * Pro-rata calculation type
39
+ * @type {string}
40
+ * @memberof TariffCoverageTermClass
41
+ */
42
+ 'proRata': TariffCoverageTermClassProRataEnum;
37
43
  }
38
44
  export declare const TariffCoverageTermClassTypeEnum: {
39
45
  readonly Fixed: "fixed";
@@ -46,3 +52,9 @@ export declare const TariffCoverageTermClassPeriodEnum: {
46
52
  readonly PerClaim: "PER_CLAIM";
47
53
  };
48
54
  export type TariffCoverageTermClassPeriodEnum = typeof TariffCoverageTermClassPeriodEnum[keyof typeof TariffCoverageTermClassPeriodEnum];
55
+ export declare const TariffCoverageTermClassProRataEnum: {
56
+ readonly Disabled: "DISABLED";
57
+ readonly Enabled: "ENABLED";
58
+ readonly EnabledAfterWaitingPeriod: "ENABLED_AFTER_WAITING_PERIOD";
59
+ };
60
+ export type TariffCoverageTermClassProRataEnum = typeof TariffCoverageTermClassProRataEnum[keyof typeof TariffCoverageTermClassProRataEnum];
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.TariffCoverageTermClassPeriodEnum = exports.TariffCoverageTermClassTypeEnum = void 0;
16
+ exports.TariffCoverageTermClassProRataEnum = exports.TariffCoverageTermClassPeriodEnum = exports.TariffCoverageTermClassTypeEnum = void 0;
17
17
  exports.TariffCoverageTermClassTypeEnum = {
18
18
  Fixed: 'fixed',
19
19
  Percent: 'percent'
@@ -23,3 +23,8 @@ exports.TariffCoverageTermClassPeriodEnum = {
23
23
  PolicyYear: 'POLICY_YEAR',
24
24
  PerClaim: 'PER_CLAIM'
25
25
  };
26
+ exports.TariffCoverageTermClassProRataEnum = {
27
+ Disabled: 'DISABLED',
28
+ Enabled: 'ENABLED',
29
+ EnabledAfterWaitingPeriod: 'ENABLED_AFTER_WAITING_PERIOD'
30
+ };
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DeductibleClass } from './deductible-class';
12
13
  import { TariffCategorySummaryClass } from './tariff-category-summary-class';
13
14
  import { TariffCoverageTermClass } from './tariff-coverage-term-class';
14
15
  /**
@@ -47,4 +48,10 @@ export interface TariffSummaryClass {
47
48
  * @memberof TariffSummaryClass
48
49
  */
49
50
  'categories': Array<TariffCategorySummaryClass>;
51
+ /**
52
+ * List of tariff deductibles
53
+ * @type {Array<DeductibleClass>}
54
+ * @memberof TariffSummaryClass
55
+ */
56
+ 'deductibles': Array<DeductibleClass>;
50
57
  }
@@ -45,6 +45,12 @@ export interface CoverageTermClass {
45
45
  * @memberof CoverageTermClass
46
46
  */
47
47
  'value': AmountWithLimitClass;
48
+ /**
49
+ * Pro-rata calculation type
50
+ * @type {string}
51
+ * @memberof CoverageTermClass
52
+ */
53
+ 'proRata': CoverageTermClassProRataEnum;
48
54
  }
49
55
 
50
56
  export const CoverageTermClassTypeEnum = {
@@ -60,5 +66,12 @@ export const CoverageTermClassPeriodEnum = {
60
66
  } as const;
61
67
 
62
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];
63
76
 
64
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
+ * Deductible value - fixed amount or percentage with maximum limit
44
+ * @type {AmountWithLimitClass}
45
+ * @memberof DeductibleClass
46
+ */
47
+ 'value': AmountWithLimitClass;
48
+ /**
49
+ * Time period over which the deductible applies
50
+ * @type {string}
51
+ * @memberof DeductibleClass
52
+ */
53
+ 'period': DeductibleClassPeriodEnum;
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
+
package/models/index.ts CHANGED
@@ -38,6 +38,7 @@ export * from './create-lead-response-class';
38
38
  export * from './create-payment-method-request-dto';
39
39
  export * from './create-presigned-post-request-dto';
40
40
  export * from './create-presigned-post-response-class';
41
+ export * from './deductible-class';
41
42
  export * from './document-class';
42
43
  export * from './eis-sepa-debit-config-response-class';
43
44
  export * from './eis-sepa-debit-dto';
@@ -15,6 +15,7 @@
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';
18
19
 
19
20
  /**
20
21
  *
@@ -52,5 +53,11 @@ export interface TariffCategorySummaryClass {
52
53
  * @memberof TariffCategorySummaryClass
53
54
  */
54
55
  'coverages': Array<CategoryCoverageSummaryClass>;
56
+ /**
57
+ * List of category deductibles
58
+ * @type {Array<DeductibleClass>}
59
+ * @memberof TariffCategorySummaryClass
60
+ */
61
+ 'deductibles': Array<DeductibleClass>;
55
62
  }
56
63
 
@@ -39,6 +39,12 @@ export interface TariffCoverageTermClass {
39
39
  * @memberof TariffCoverageTermClass
40
40
  */
41
41
  'value': AmountWithLimitClass;
42
+ /**
43
+ * Pro-rata calculation type
44
+ * @type {string}
45
+ * @memberof TariffCoverageTermClass
46
+ */
47
+ 'proRata': TariffCoverageTermClassProRataEnum;
42
48
  }
43
49
 
44
50
  export const TariffCoverageTermClassTypeEnum = {
@@ -54,5 +60,12 @@ export const TariffCoverageTermClassPeriodEnum = {
54
60
  } as const;
55
61
 
56
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];
57
70
 
58
71
 
@@ -13,6 +13,7 @@
13
13
  */
14
14
 
15
15
 
16
+ import { DeductibleClass } from './deductible-class';
16
17
  import { TariffCategorySummaryClass } from './tariff-category-summary-class';
17
18
  import { TariffCoverageTermClass } from './tariff-coverage-term-class';
18
19
 
@@ -52,5 +53,11 @@ export interface TariffSummaryClass {
52
53
  * @memberof TariffSummaryClass
53
54
  */
54
55
  'categories': Array<TariffCategorySummaryClass>;
56
+ /**
57
+ * List of tariff deductibles
58
+ * @type {Array<DeductibleClass>}
59
+ * @memberof TariffSummaryClass
60
+ */
61
+ 'deductibles': Array<DeductibleClass>;
55
62
  }
56
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.16",
3
+ "version": "1.35.1-beta.18",
4
4
  "description": "OpenAPI client for @emilgroup/public-api-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [