@emilgroup/insurance-sdk 1.95.1-beta.25 → 1.95.1-beta.26
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/README.md +2 -2
- package/dist/models/amount-with-limit-class.d.ts +1 -1
- package/dist/models/coverage-term-class.d.ts +1 -1
- package/dist/models/deductible-class.d.ts +6 -6
- package/dist/models/tariff-coverage-term-class.d.ts +1 -1
- package/models/amount-with-limit-class.ts +1 -1
- package/models/coverage-term-class.ts +1 -1
- package/models/deductible-class.ts +6 -6
- package/models/tariff-coverage-term-class.ts +1 -1
- package/package.json +1 -1
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@1.95.1-beta.
|
|
20
|
+
npm install @emilgroup/insurance-sdk@1.95.1-beta.26 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk@1.95.1-beta.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk@1.95.1-beta.26
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface AmountWithLimitClass {
|
|
18
18
|
/**
|
|
19
|
-
* Amount value (required for percent and fixed types)
|
|
19
|
+
* Amount value (required for percent and fixed types). For percent type use 0..100.
|
|
20
20
|
* @type {number}
|
|
21
21
|
* @memberof AmountWithLimitClass
|
|
22
22
|
*/
|
|
@@ -35,7 +35,7 @@ export interface CoverageTermClass {
|
|
|
35
35
|
*/
|
|
36
36
|
'period': CoverageTermClassPeriodEnum;
|
|
37
37
|
/**
|
|
38
|
-
* Coverage term value - fixed amount or percentage with maximum limit
|
|
38
|
+
* Coverage term value - fixed amount or percentage (0..100) with maximum limit
|
|
39
39
|
* @type {AmountWithLimitClass}
|
|
40
40
|
* @memberof CoverageTermClass
|
|
41
41
|
*/
|
|
@@ -34,18 +34,18 @@ export interface DeductibleClass {
|
|
|
34
34
|
* @memberof DeductibleClass
|
|
35
35
|
*/
|
|
36
36
|
'type': DeductibleClassTypeEnum;
|
|
37
|
-
/**
|
|
38
|
-
* Deductible value - fixed amount or percentage with maximum limit
|
|
39
|
-
* @type {AmountWithLimitClass}
|
|
40
|
-
* @memberof DeductibleClass
|
|
41
|
-
*/
|
|
42
|
-
'value': AmountWithLimitClass;
|
|
43
37
|
/**
|
|
44
38
|
* Time period over which the deductible applies
|
|
45
39
|
* @type {string}
|
|
46
40
|
* @memberof DeductibleClass
|
|
47
41
|
*/
|
|
48
42
|
'period': DeductibleClassPeriodEnum;
|
|
43
|
+
/**
|
|
44
|
+
* Selectable deductible amounts
|
|
45
|
+
* @type {Array<AmountWithLimitClass>}
|
|
46
|
+
* @memberof DeductibleClass
|
|
47
|
+
*/
|
|
48
|
+
'options': Array<AmountWithLimitClass>;
|
|
49
49
|
}
|
|
50
50
|
export declare const DeductibleClassTypeEnum: {
|
|
51
51
|
readonly Fixed: "fixed";
|
|
@@ -29,7 +29,7 @@ export interface TariffCoverageTermClass {
|
|
|
29
29
|
*/
|
|
30
30
|
'period': TariffCoverageTermClassPeriodEnum;
|
|
31
31
|
/**
|
|
32
|
-
* Coverage term value - fixed amount or percentage with maximum limit
|
|
32
|
+
* Coverage term value - fixed amount or percentage (0..100) with maximum limit
|
|
33
33
|
* @type {AmountWithLimitClass}
|
|
34
34
|
* @memberof TariffCoverageTermClass
|
|
35
35
|
*/
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface AmountWithLimitClass {
|
|
23
23
|
/**
|
|
24
|
-
* Amount value (required for percent and fixed types)
|
|
24
|
+
* Amount value (required for percent and fixed types). For percent type use 0..100.
|
|
25
25
|
* @type {number}
|
|
26
26
|
* @memberof AmountWithLimitClass
|
|
27
27
|
*/
|
|
@@ -40,7 +40,7 @@ export interface CoverageTermClass {
|
|
|
40
40
|
*/
|
|
41
41
|
'period': CoverageTermClassPeriodEnum;
|
|
42
42
|
/**
|
|
43
|
-
* Coverage term value - fixed amount or percentage with maximum limit
|
|
43
|
+
* Coverage term value - fixed amount or percentage (0..100) with maximum limit
|
|
44
44
|
* @type {AmountWithLimitClass}
|
|
45
45
|
* @memberof CoverageTermClass
|
|
46
46
|
*/
|
|
@@ -39,18 +39,18 @@ export interface DeductibleClass {
|
|
|
39
39
|
* @memberof DeductibleClass
|
|
40
40
|
*/
|
|
41
41
|
'type': DeductibleClassTypeEnum;
|
|
42
|
-
/**
|
|
43
|
-
* Deductible value - fixed amount or percentage with maximum limit
|
|
44
|
-
* @type {AmountWithLimitClass}
|
|
45
|
-
* @memberof DeductibleClass
|
|
46
|
-
*/
|
|
47
|
-
'value': AmountWithLimitClass;
|
|
48
42
|
/**
|
|
49
43
|
* Time period over which the deductible applies
|
|
50
44
|
* @type {string}
|
|
51
45
|
* @memberof DeductibleClass
|
|
52
46
|
*/
|
|
53
47
|
'period': DeductibleClassPeriodEnum;
|
|
48
|
+
/**
|
|
49
|
+
* Selectable deductible amounts
|
|
50
|
+
* @type {Array<AmountWithLimitClass>}
|
|
51
|
+
* @memberof DeductibleClass
|
|
52
|
+
*/
|
|
53
|
+
'options': Array<AmountWithLimitClass>;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
export const DeductibleClassTypeEnum = {
|
|
@@ -34,7 +34,7 @@ export interface TariffCoverageTermClass {
|
|
|
34
34
|
*/
|
|
35
35
|
'period': TariffCoverageTermClassPeriodEnum;
|
|
36
36
|
/**
|
|
37
|
-
* Coverage term value - fixed amount or percentage with maximum limit
|
|
37
|
+
* Coverage term value - fixed amount or percentage (0..100) with maximum limit
|
|
38
38
|
* @type {AmountWithLimitClass}
|
|
39
39
|
* @memberof TariffCoverageTermClass
|
|
40
40
|
*/
|