@emilgroup/insurance-sdk-node 1.95.1-beta.7 → 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.
- package/.openapi-generator/FILES +1 -1
- package/README.md +2 -2
- package/dist/models/approval-limit-class.d.ts +30 -0
- package/dist/models/{warning-class.js → approval-limit-class.js} +0 -5
- package/dist/models/claim-config-class.d.ts +0 -7
- package/dist/models/index.d.ts +1 -1
- package/dist/models/index.js +1 -1
- package/dist/models/shared-tariff-variation-class.d.ts +7 -0
- package/models/approval-limit-class.ts +36 -0
- package/models/claim-config-class.ts +0 -7
- package/models/index.ts +1 -1
- package/models/shared-tariff-variation-class.ts +7 -0
- package/package.json +1 -1
- package/dist/models/warning-class.d.ts +0 -41
- package/models/warning-class.ts +0 -50
package/.openapi-generator/FILES
CHANGED
|
@@ -36,6 +36,7 @@ index.ts
|
|
|
36
36
|
models/activate-policy-request-dto.ts
|
|
37
37
|
models/activate-policy-response-class.ts
|
|
38
38
|
models/amount-with-limit-class.ts
|
|
39
|
+
models/approval-limit-class.ts
|
|
39
40
|
models/bank-transfer-dto.ts
|
|
40
41
|
models/billing-address-dto.ts
|
|
41
42
|
models/booking-funnel-class.ts
|
|
@@ -322,7 +323,6 @@ models/update-status-transition-rule-response-class.ts
|
|
|
322
323
|
models/uploaded-document-dto.ts
|
|
323
324
|
models/validate-product-factors-request-dto.ts
|
|
324
325
|
models/waiting-period-class.ts
|
|
325
|
-
models/warning-class.ts
|
|
326
326
|
models/withdraw-policy-response-class.ts
|
|
327
327
|
package.json
|
|
328
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.
|
|
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.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.95.1-beta.9
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -0,0 +1,30 @@
|
|
|
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 ApprovalLimitClass
|
|
16
|
+
*/
|
|
17
|
+
export interface ApprovalLimitClass {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier code of the approver role
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ApprovalLimitClass
|
|
22
|
+
*/
|
|
23
|
+
'roleCode': string;
|
|
24
|
+
/**
|
|
25
|
+
* Maximum approval amount for the role within the tariff
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof ApprovalLimitClass
|
|
28
|
+
*/
|
|
29
|
+
'amount': number;
|
|
30
|
+
}
|
|
@@ -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}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './activate-policy-request-dto';
|
|
2
2
|
export * from './activate-policy-response-class';
|
|
3
3
|
export * from './amount-with-limit-class';
|
|
4
|
+
export * from './approval-limit-class';
|
|
4
5
|
export * from './bank-transfer-dto';
|
|
5
6
|
export * from './billing-address-dto';
|
|
6
7
|
export * from './booking-funnel-class';
|
|
@@ -286,5 +287,4 @@ export * from './update-status-transition-rule-response-class';
|
|
|
286
287
|
export * from './uploaded-document-dto';
|
|
287
288
|
export * from './validate-product-factors-request-dto';
|
|
288
289
|
export * from './waiting-period-class';
|
|
289
|
-
export * from './warning-class';
|
|
290
290
|
export * from './withdraw-policy-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./activate-policy-request-dto"), exports);
|
|
18
18
|
__exportStar(require("./activate-policy-response-class"), exports);
|
|
19
19
|
__exportStar(require("./amount-with-limit-class"), exports);
|
|
20
|
+
__exportStar(require("./approval-limit-class"), exports);
|
|
20
21
|
__exportStar(require("./bank-transfer-dto"), exports);
|
|
21
22
|
__exportStar(require("./billing-address-dto"), exports);
|
|
22
23
|
__exportStar(require("./booking-funnel-class"), exports);
|
|
@@ -302,5 +303,4 @@ __exportStar(require("./update-status-transition-rule-response-class"), exports)
|
|
|
302
303
|
__exportStar(require("./uploaded-document-dto"), exports);
|
|
303
304
|
__exportStar(require("./validate-product-factors-request-dto"), exports);
|
|
304
305
|
__exportStar(require("./waiting-period-class"), exports);
|
|
305
|
-
__exportStar(require("./warning-class"), exports);
|
|
306
306
|
__exportStar(require("./withdraw-policy-response-class"), exports);
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { ApprovalLimitClass } from './approval-limit-class';
|
|
12
13
|
import { CategoryClass } from './category-class';
|
|
13
14
|
import { DeductibleClass } from './deductible-class';
|
|
14
15
|
import { SharedProductFieldOverrideClass } from './shared-product-field-override-class';
|
|
@@ -70,4 +71,10 @@ export interface SharedTariffVariationClass {
|
|
|
70
71
|
* @memberof SharedTariffVariationClass
|
|
71
72
|
*/
|
|
72
73
|
'waitingPeriod': WaitingPeriodClass;
|
|
74
|
+
/**
|
|
75
|
+
* Approval limits by role within the tariff variation
|
|
76
|
+
* @type {Array<ApprovalLimitClass>}
|
|
77
|
+
* @memberof SharedTariffVariationClass
|
|
78
|
+
*/
|
|
79
|
+
'approvalLimits': Array<ApprovalLimitClass>;
|
|
73
80
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 ApprovalLimitClass
|
|
21
|
+
*/
|
|
22
|
+
export interface ApprovalLimitClass {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier code of the approver role
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ApprovalLimitClass
|
|
27
|
+
*/
|
|
28
|
+
'roleCode': string;
|
|
29
|
+
/**
|
|
30
|
+
* Maximum approval amount for the role within the tariff
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof ApprovalLimitClass
|
|
33
|
+
*/
|
|
34
|
+
'amount': number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -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
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './activate-policy-request-dto';
|
|
2
2
|
export * from './activate-policy-response-class';
|
|
3
3
|
export * from './amount-with-limit-class';
|
|
4
|
+
export * from './approval-limit-class';
|
|
4
5
|
export * from './bank-transfer-dto';
|
|
5
6
|
export * from './billing-address-dto';
|
|
6
7
|
export * from './booking-funnel-class';
|
|
@@ -286,5 +287,4 @@ export * from './update-status-transition-rule-response-class';
|
|
|
286
287
|
export * from './uploaded-document-dto';
|
|
287
288
|
export * from './validate-product-factors-request-dto';
|
|
288
289
|
export * from './waiting-period-class';
|
|
289
|
-
export * from './warning-class';
|
|
290
290
|
export * from './withdraw-policy-response-class';
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { ApprovalLimitClass } from './approval-limit-class';
|
|
16
17
|
import { CategoryClass } from './category-class';
|
|
17
18
|
import { DeductibleClass } from './deductible-class';
|
|
18
19
|
import { SharedProductFieldOverrideClass } from './shared-product-field-override-class';
|
|
@@ -75,5 +76,11 @@ export interface SharedTariffVariationClass {
|
|
|
75
76
|
* @memberof SharedTariffVariationClass
|
|
76
77
|
*/
|
|
77
78
|
'waitingPeriod': WaitingPeriodClass;
|
|
79
|
+
/**
|
|
80
|
+
* Approval limits by role within the tariff variation
|
|
81
|
+
* @type {Array<ApprovalLimitClass>}
|
|
82
|
+
* @memberof SharedTariffVariationClass
|
|
83
|
+
*/
|
|
84
|
+
'approvalLimits': Array<ApprovalLimitClass>;
|
|
78
85
|
}
|
|
79
86
|
|
package/package.json
CHANGED
|
@@ -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];
|
package/models/warning-class.ts
DELETED
|
@@ -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
|
-
|