@emilgroup/insurance-sdk-node 1.95.1-beta.8 → 1.95.1-beta.9

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.
@@ -323,7 +323,6 @@ models/update-status-transition-rule-response-class.ts
323
323
  models/uploaded-document-dto.ts
324
324
  models/validate-product-factors-request-dto.ts
325
325
  models/waiting-period-class.ts
326
- models/warning-class.ts
327
326
  models/withdraw-policy-response-class.ts
328
327
  package.json
329
328
  tsconfig.json
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-node@1.95.1-beta.8 --save
20
+ npm install @emilgroup/insurance-sdk-node@1.95.1-beta.9 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/insurance-sdk-node@1.95.1-beta.8
24
+ yarn add @emilgroup/insurance-sdk-node@1.95.1-beta.9
25
25
  ```
26
26
 
27
27
  And then you can import `PoliciesApi`.
@@ -11,7 +11,6 @@
11
11
  */
12
12
  import { ClaimPositionFieldsClass } from './claim-position-fields-class';
13
13
  import { GeneralSettingClass } from './general-setting-class';
14
- import { WarningClass } from './warning-class';
15
14
  /**
16
15
  *
17
16
  * @export
@@ -24,12 +23,6 @@ export interface ClaimConfigClass {
24
23
  * @memberof ClaimConfigClass
25
24
  */
26
25
  'generalSetting': GeneralSettingClass;
27
- /**
28
- * List of claim warning messages
29
- * @type {Array<WarningClass>}
30
- * @memberof ClaimConfigClass
31
- */
32
- 'warnings': Array<WarningClass>;
33
26
  /**
34
27
  * Fields configuration displayed in claim position table
35
28
  * @type {ClaimPositionFieldsClass}
@@ -287,5 +287,4 @@ export * from './update-status-transition-rule-response-class';
287
287
  export * from './uploaded-document-dto';
288
288
  export * from './validate-product-factors-request-dto';
289
289
  export * from './waiting-period-class';
290
- export * from './warning-class';
291
290
  export * from './withdraw-policy-response-class';
@@ -303,5 +303,4 @@ __exportStar(require("./update-status-transition-rule-response-class"), exports)
303
303
  __exportStar(require("./uploaded-document-dto"), exports);
304
304
  __exportStar(require("./validate-product-factors-request-dto"), exports);
305
305
  __exportStar(require("./waiting-period-class"), exports);
306
- __exportStar(require("./warning-class"), exports);
307
306
  __exportStar(require("./withdraw-policy-response-class"), exports);
@@ -15,7 +15,6 @@
15
15
 
16
16
  import { ClaimPositionFieldsClass } from './claim-position-fields-class';
17
17
  import { GeneralSettingClass } from './general-setting-class';
18
- import { WarningClass } from './warning-class';
19
18
 
20
19
  /**
21
20
  *
@@ -29,12 +28,6 @@ export interface ClaimConfigClass {
29
28
  * @memberof ClaimConfigClass
30
29
  */
31
30
  'generalSetting': GeneralSettingClass;
32
- /**
33
- * List of claim warning messages
34
- * @type {Array<WarningClass>}
35
- * @memberof ClaimConfigClass
36
- */
37
- 'warnings': Array<WarningClass>;
38
31
  /**
39
32
  * Fields configuration displayed in claim position table
40
33
  * @type {ClaimPositionFieldsClass}
package/models/index.ts CHANGED
@@ -287,5 +287,4 @@ export * from './update-status-transition-rule-response-class';
287
287
  export * from './uploaded-document-dto';
288
288
  export * from './validate-product-factors-request-dto';
289
289
  export * from './waiting-period-class';
290
- export * from './warning-class';
291
290
  export * from './withdraw-policy-response-class';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/insurance-sdk-node",
3
- "version": "1.95.1-beta.8",
3
+ "version": "1.95.1-beta.9",
4
4
  "description": "OpenAPI client for @emilgroup/insurance-sdk-node",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -1,41 +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 WarningClass
16
- */
17
- export interface WarningClass {
18
- /**
19
- * Unique identifier key for warning
20
- * @type {string}
21
- * @memberof WarningClass
22
- */
23
- 'key': string;
24
- /**
25
- * Type of warning
26
- * @type {string}
27
- * @memberof WarningClass
28
- */
29
- 'type': WarningClassTypeEnum;
30
- /**
31
- * Text message to display as warning
32
- * @type {string}
33
- * @memberof WarningClass
34
- */
35
- 'message': string;
36
- }
37
- export declare const WarningClassTypeEnum: {
38
- readonly Warning: "WARNING";
39
- readonly Blocker: "BLOCKER";
40
- };
41
- export type WarningClassTypeEnum = typeof WarningClassTypeEnum[keyof typeof WarningClassTypeEnum];
@@ -1,20 +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.WarningClassTypeEnum = void 0;
17
- exports.WarningClassTypeEnum = {
18
- Warning: 'WARNING',
19
- Blocker: 'BLOCKER'
20
- };
@@ -1,50 +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 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
- * Text message to display as warning
37
- * @type {string}
38
- * @memberof WarningClass
39
- */
40
- 'message': string;
41
- }
42
-
43
- export const WarningClassTypeEnum = {
44
- Warning: 'WARNING',
45
- Blocker: 'BLOCKER'
46
- } as const;
47
-
48
- export type WarningClassTypeEnum = typeof WarningClassTypeEnum[keyof typeof WarningClassTypeEnum];
49
-
50
-