@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
@@ -0,0 +1,50 @@
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 WaitingPeriodClass
21
+ */
22
+ export interface WaitingPeriodClass {
23
+ /**
24
+ * Number of days in the waiting period before coverage applies
25
+ * @type {number}
26
+ * @memberof WaitingPeriodClass
27
+ */
28
+ 'days': number;
29
+ /**
30
+ * Starting point for waiting period calculation (policy start date or claim event date)
31
+ * @type {string}
32
+ * @memberof WaitingPeriodClass
33
+ */
34
+ 'startFrom': WaitingPeriodClassStartFromEnum;
35
+ /**
36
+ * Whether to include the start date in the waiting period calculation
37
+ * @type {boolean}
38
+ * @memberof WaitingPeriodClass
39
+ */
40
+ 'includeStartDate': boolean;
41
+ }
42
+
43
+ export const WaitingPeriodClassStartFromEnum = {
44
+ ClaimDate: 'CLAIM_DATE',
45
+ PolicyStartDate: 'POLICY_START_DATE'
46
+ } as const;
47
+
48
+ export type WaitingPeriodClassStartFromEnum = typeof WaitingPeriodClassStartFromEnum[keyof typeof WaitingPeriodClassStartFromEnum];
49
+
50
+
@@ -0,0 +1,56 @@
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 WarningClass
21
+ */
22
+ export interface WarningClass {
23
+ /**
24
+ * Unique identifier key for warning
25
+ * @type {string}
26
+ * @memberof WarningClass
27
+ */
28
+ 'key': string;
29
+ /**
30
+ * Type of warning
31
+ * @type {string}
32
+ * @memberof WarningClass
33
+ */
34
+ 'type': WarningClassTypeEnum;
35
+ /**
36
+ * Whether this warning is active
37
+ * @type {boolean}
38
+ * @memberof WarningClass
39
+ */
40
+ 'enabled': boolean;
41
+ /**
42
+ * Text message to display as warning
43
+ * @type {string}
44
+ * @memberof WarningClass
45
+ */
46
+ 'message': string;
47
+ }
48
+
49
+ export const WarningClassTypeEnum = {
50
+ Warning: 'WARNING',
51
+ Blocker: 'BLOCKER'
52
+ } as const;
53
+
54
+ export type WarningClassTypeEnum = typeof WarningClassTypeEnum[keyof typeof WarningClassTypeEnum];
55
+
56
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/insurance-sdk-node",
3
- "version": "1.93.0",
3
+ "version": "1.93.1-beta.11",
4
4
  "description": "OpenAPI client for @emilgroup/insurance-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -23,7 +23,7 @@
23
23
  "url": "^0.11.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@types/node": "^12.11.5",
26
+ "@types/node": "^12.11.5",
27
27
  "typescript": "^4.0"
28
28
  }
29
29
  }