@emilgroup/public-api-sdk 1.33.1-beta.8 → 1.34.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 (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,63 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { CategoryCoverageSummaryClass } from './category-coverage-summary-class';
17
+ import { CoverageTermClass } from './coverage-term-class';
18
+ import { DeductibleClass } from './deductible-class';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface TariffCategorySummaryClass
24
+ */
25
+ export interface TariffCategorySummaryClass {
26
+ /**
27
+ * Unique identifier key for category
28
+ * @type {string}
29
+ * @memberof TariffCategorySummaryClass
30
+ */
31
+ 'key': string;
32
+ /**
33
+ * Display name shown to users
34
+ * @type {string}
35
+ * @memberof TariffCategorySummaryClass
36
+ */
37
+ 'label': string;
38
+ /**
39
+ * Category description
40
+ * @type {string}
41
+ * @memberof TariffCategorySummaryClass
42
+ */
43
+ 'description'?: string;
44
+ /**
45
+ * Category coverage term
46
+ * @type {CoverageTermClass}
47
+ * @memberof TariffCategorySummaryClass
48
+ */
49
+ 'coverageTerm': CoverageTermClass;
50
+ /**
51
+ * List of category coverages
52
+ * @type {Array<CategoryCoverageSummaryClass>}
53
+ * @memberof TariffCategorySummaryClass
54
+ */
55
+ 'coverages': Array<CategoryCoverageSummaryClass>;
56
+ /**
57
+ * List of category deductibles
58
+ * @type {Array<DeductibleClass>}
59
+ * @memberof TariffCategorySummaryClass
60
+ */
61
+ 'deductibles': Array<DeductibleClass>;
62
+ }
63
+
@@ -0,0 +1,71 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { AmountWithLimitClass } from './amount-with-limit-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface TariffCoverageTermClass
22
+ */
23
+ export interface TariffCoverageTermClass {
24
+ /**
25
+ * Coverage term type (fixed or percent)
26
+ * @type {string}
27
+ * @memberof TariffCoverageTermClass
28
+ */
29
+ 'type': TariffCoverageTermClassTypeEnum;
30
+ /**
31
+ * Time period over which the coverage term applies
32
+ * @type {string}
33
+ * @memberof TariffCoverageTermClass
34
+ */
35
+ 'period': TariffCoverageTermClassPeriodEnum;
36
+ /**
37
+ * Coverage term value - fixed amount or percentage with maximum limit
38
+ * @type {AmountWithLimitClass}
39
+ * @memberof TariffCoverageTermClass
40
+ */
41
+ 'value': AmountWithLimitClass;
42
+ /**
43
+ * Pro-rata calculation type
44
+ * @type {string}
45
+ * @memberof TariffCoverageTermClass
46
+ */
47
+ 'proRata': TariffCoverageTermClassProRataEnum;
48
+ }
49
+
50
+ export const TariffCoverageTermClassTypeEnum = {
51
+ Fixed: 'fixed',
52
+ Percent: 'percent'
53
+ } as const;
54
+
55
+ export type TariffCoverageTermClassTypeEnum = typeof TariffCoverageTermClassTypeEnum[keyof typeof TariffCoverageTermClassTypeEnum];
56
+ export const TariffCoverageTermClassPeriodEnum = {
57
+ CalendarYear: 'CALENDAR_YEAR',
58
+ PolicyYear: 'POLICY_YEAR',
59
+ PerClaim: 'PER_CLAIM'
60
+ } as const;
61
+
62
+ export type TariffCoverageTermClassPeriodEnum = typeof TariffCoverageTermClassPeriodEnum[keyof typeof TariffCoverageTermClassPeriodEnum];
63
+ export const TariffCoverageTermClassProRataEnum = {
64
+ Disabled: 'DISABLED',
65
+ Enabled: 'ENABLED',
66
+ EnabledAfterWaitingPeriod: 'ENABLED_AFTER_WAITING_PERIOD'
67
+ } as const;
68
+
69
+ export type TariffCoverageTermClassProRataEnum = typeof TariffCoverageTermClassProRataEnum[keyof typeof TariffCoverageTermClassProRataEnum];
70
+
71
+
@@ -0,0 +1,56 @@
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 TariffInfoClass
21
+ */
22
+ export interface TariffInfoClass {
23
+ /**
24
+ * Display name shown to users
25
+ * @type {string}
26
+ * @memberof TariffInfoClass
27
+ */
28
+ 'label': string;
29
+ /**
30
+ * Tariff variation description
31
+ * @type {string}
32
+ * @memberof TariffInfoClass
33
+ */
34
+ 'description': string;
35
+ /**
36
+ * Starting premium amount for display
37
+ * @type {number}
38
+ * @memberof TariffInfoClass
39
+ */
40
+ 'startingPremium': number;
41
+ /**
42
+ * Premium billing period, used for display
43
+ * @type {string}
44
+ * @memberof TariffInfoClass
45
+ */
46
+ 'billingPeriod': TariffInfoClassBillingPeriodEnum;
47
+ }
48
+
49
+ export const TariffInfoClassBillingPeriodEnum = {
50
+ Monthly: 'MONTHLY',
51
+ Yearly: 'YEARLY'
52
+ } as const;
53
+
54
+ export type TariffInfoClassBillingPeriodEnum = typeof TariffInfoClassBillingPeriodEnum[keyof typeof TariffInfoClassBillingPeriodEnum];
55
+
56
+
@@ -0,0 +1,58 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Emil PublicAPI
5
+ * The Emil Public API description
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ * Contact: kontakt@emil.de
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import { DeductibleClass } from './deductible-class';
17
+ import { TariffCategorySummaryClass } from './tariff-category-summary-class';
18
+ import { TariffCoverageTermClass } from './tariff-coverage-term-class';
19
+ import { TariffInfoClass } from './tariff-info-class';
20
+
21
+ /**
22
+ *
23
+ * @export
24
+ * @interface TariffSummaryClass
25
+ */
26
+ export interface TariffSummaryClass {
27
+ /**
28
+ * Unique identifier key for tariff variation
29
+ * @type {string}
30
+ * @memberof TariffSummaryClass
31
+ */
32
+ 'key': string;
33
+ /**
34
+ * Tariff variation display information
35
+ * @type {TariffInfoClass}
36
+ * @memberof TariffSummaryClass
37
+ */
38
+ 'info': TariffInfoClass;
39
+ /**
40
+ * Tariff coverage term
41
+ * @type {TariffCoverageTermClass}
42
+ * @memberof TariffSummaryClass
43
+ */
44
+ 'coverageTerm': TariffCoverageTermClass;
45
+ /**
46
+ * List of tariff variation categories
47
+ * @type {Array<TariffCategorySummaryClass>}
48
+ * @memberof TariffSummaryClass
49
+ */
50
+ 'categories': Array<TariffCategorySummaryClass>;
51
+ /**
52
+ * List of tariff deductibles
53
+ * @type {Array<DeductibleClass>}
54
+ * @memberof TariffSummaryClass
55
+ */
56
+ 'deductibles': Array<DeductibleClass>;
57
+ }
58
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/public-api-sdk",
3
- "version": "1.33.1-beta.8",
3
+ "version": "1.34.1-beta.0",
4
4
  "description": "OpenAPI client for @emilgroup/public-api-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -21,6 +21,7 @@
21
21
  "axios": "^1.12.0"
22
22
  },
23
23
  "devDependencies": {
24
+
24
25
  "typescript": "^4.0"
25
26
  }
26
27
  }