@emilgroup/public-api-sdk 1.33.1-beta.18 → 1.33.1-beta.19
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
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/public-api-sdk@1.33.1-beta.
|
|
20
|
+
npm install @emilgroup/public-api-sdk@1.33.1-beta.19 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/public-api-sdk@1.33.1-beta.
|
|
24
|
+
yarn add @emilgroup/public-api-sdk@1.33.1-beta.19
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PublicApi`.
|
|
@@ -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";
|
|
@@ -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 = {
|