@emilgroup/insurance-sdk-node 1.95.1-beta.7 → 1.95.1-beta.8
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 -0
- package/README.md +2 -2
- package/dist/models/approval-limit-class.d.ts +30 -0
- package/dist/models/approval-limit-class.js +15 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/shared-tariff-variation-class.d.ts +7 -0
- package/models/approval-limit-class.ts +36 -0
- package/models/index.ts +1 -0
- package/models/shared-tariff-variation-class.ts +7 -0
- package/package.json +1 -1
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
|
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.8 --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.8
|
|
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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
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';
|
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);
|
|
@@ -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
|
+
|
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';
|
|
@@ -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
|
|