@emilgroup/insurance-sdk-node 1.93.1-beta.21 → 1.93.1-beta.22
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 +2 -0
- package/README.md +2 -2
- package/dist/models/category-class.d.ts +0 -12
- package/dist/models/category-definition-class.d.ts +43 -0
- package/dist/models/category-definition-class.js +15 -0
- package/dist/models/coverage-class.d.ts +0 -12
- package/dist/models/coverage-definition-class.d.ts +36 -0
- package/dist/models/coverage-definition-class.js +15 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/shared-product-version-config-class.d.ts +7 -0
- package/dist/models/tariff-summary-class.d.ts +7 -0
- package/models/category-class.ts +0 -12
- package/models/category-definition-class.ts +49 -0
- package/models/coverage-class.ts +0 -12
- package/models/coverage-definition-class.ts +42 -0
- package/models/index.ts +2 -0
- package/models/shared-product-version-config-class.ts +7 -0
- package/models/tariff-summary-class.ts +7 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -47,6 +47,7 @@ models/calculation-errors-class.ts
|
|
|
47
47
|
models/calculation-item-errors-class.ts
|
|
48
48
|
models/calculation-message-class.ts
|
|
49
49
|
models/category-class.ts
|
|
50
|
+
models/category-definition-class.ts
|
|
50
51
|
models/claim-config-class.ts
|
|
51
52
|
models/claim-position-fields-class.ts
|
|
52
53
|
models/clone-lead-request-dto.ts
|
|
@@ -57,6 +58,7 @@ models/commission-agreement-product-class.ts
|
|
|
57
58
|
models/commission-agreement-version-class.ts
|
|
58
59
|
models/commission-recipient-class.ts
|
|
59
60
|
models/coverage-class.ts
|
|
61
|
+
models/coverage-definition-class.ts
|
|
60
62
|
models/coverage-term-class.ts
|
|
61
63
|
models/create-account-request-dto.ts
|
|
62
64
|
models/create-bank-account-request-dto.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.93.1-beta.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.93.1-beta.22 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.93.1-beta.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.93.1-beta.22
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -24,24 +24,12 @@ export interface CategoryClass {
|
|
|
24
24
|
* @memberof CategoryClass
|
|
25
25
|
*/
|
|
26
26
|
'key': string;
|
|
27
|
-
/**
|
|
28
|
-
* Display name shown to users
|
|
29
|
-
* @type {string}
|
|
30
|
-
* @memberof CategoryClass
|
|
31
|
-
*/
|
|
32
|
-
'label': string;
|
|
33
27
|
/**
|
|
34
28
|
* Category coverage term
|
|
35
29
|
* @type {CoverageTermClass}
|
|
36
30
|
* @memberof CategoryClass
|
|
37
31
|
*/
|
|
38
32
|
'coverageTerm': CoverageTermClass;
|
|
39
|
-
/**
|
|
40
|
-
* Category description
|
|
41
|
-
* @type {string}
|
|
42
|
-
* @memberof CategoryClass
|
|
43
|
-
*/
|
|
44
|
-
'description': string;
|
|
45
33
|
/**
|
|
46
34
|
* List of category coverages
|
|
47
35
|
* @type {Array<CoverageClass>}
|
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
import { CoverageDefinitionClass } from './coverage-definition-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CategoryDefinitionClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CategoryDefinitionClass {
|
|
19
|
+
/**
|
|
20
|
+
* Unique identifier key for category definition
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CategoryDefinitionClass
|
|
23
|
+
*/
|
|
24
|
+
'key': string;
|
|
25
|
+
/**
|
|
26
|
+
* Display name shown to users
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof CategoryDefinitionClass
|
|
29
|
+
*/
|
|
30
|
+
'label': string;
|
|
31
|
+
/**
|
|
32
|
+
* Category definition description
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CategoryDefinitionClass
|
|
35
|
+
*/
|
|
36
|
+
'description'?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Coverage definitions available for this category
|
|
39
|
+
* @type {Array<CoverageDefinitionClass>}
|
|
40
|
+
* @memberof CategoryDefinitionClass
|
|
41
|
+
*/
|
|
42
|
+
'coverageDefinitions': Array<CoverageDefinitionClass>;
|
|
43
|
+
}
|
|
@@ -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 });
|
|
@@ -22,18 +22,6 @@ export interface CoverageClass {
|
|
|
22
22
|
* @memberof CoverageClass
|
|
23
23
|
*/
|
|
24
24
|
'key': string;
|
|
25
|
-
/**
|
|
26
|
-
* Display name shown to users
|
|
27
|
-
* @type {string}
|
|
28
|
-
* @memberof CoverageClass
|
|
29
|
-
*/
|
|
30
|
-
'label': string;
|
|
31
|
-
/**
|
|
32
|
-
* Category coverage description
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @memberof CoverageClass
|
|
35
|
-
*/
|
|
36
|
-
'description': string;
|
|
37
25
|
/**
|
|
38
26
|
* Coverage term
|
|
39
27
|
* @type {CoverageTermClass}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 CoverageDefinitionClass
|
|
16
|
+
*/
|
|
17
|
+
export interface CoverageDefinitionClass {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier key for coverage definition
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CoverageDefinitionClass
|
|
22
|
+
*/
|
|
23
|
+
'key': string;
|
|
24
|
+
/**
|
|
25
|
+
* Display name shown to users
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CoverageDefinitionClass
|
|
28
|
+
*/
|
|
29
|
+
'label': string;
|
|
30
|
+
/**
|
|
31
|
+
* Coverage definition description
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CoverageDefinitionClass
|
|
34
|
+
*/
|
|
35
|
+
'description'?: string;
|
|
36
|
+
}
|
|
@@ -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
|
@@ -12,6 +12,7 @@ export * from './calculation-errors-class';
|
|
|
12
12
|
export * from './calculation-item-errors-class';
|
|
13
13
|
export * from './calculation-message-class';
|
|
14
14
|
export * from './category-class';
|
|
15
|
+
export * from './category-definition-class';
|
|
15
16
|
export * from './claim-config-class';
|
|
16
17
|
export * from './claim-position-fields-class';
|
|
17
18
|
export * from './clone-lead-request-dto';
|
|
@@ -22,6 +23,7 @@ export * from './commission-agreement-product-class';
|
|
|
22
23
|
export * from './commission-agreement-version-class';
|
|
23
24
|
export * from './commission-recipient-class';
|
|
24
25
|
export * from './coverage-class';
|
|
26
|
+
export * from './coverage-definition-class';
|
|
25
27
|
export * from './coverage-term-class';
|
|
26
28
|
export * from './create-account-request-dto';
|
|
27
29
|
export * from './create-bank-account-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -28,6 +28,7 @@ __exportStar(require("./calculation-errors-class"), exports);
|
|
|
28
28
|
__exportStar(require("./calculation-item-errors-class"), exports);
|
|
29
29
|
__exportStar(require("./calculation-message-class"), exports);
|
|
30
30
|
__exportStar(require("./category-class"), exports);
|
|
31
|
+
__exportStar(require("./category-definition-class"), exports);
|
|
31
32
|
__exportStar(require("./claim-config-class"), exports);
|
|
32
33
|
__exportStar(require("./claim-position-fields-class"), exports);
|
|
33
34
|
__exportStar(require("./clone-lead-request-dto"), exports);
|
|
@@ -38,6 +39,7 @@ __exportStar(require("./commission-agreement-product-class"), exports);
|
|
|
38
39
|
__exportStar(require("./commission-agreement-version-class"), exports);
|
|
39
40
|
__exportStar(require("./commission-recipient-class"), exports);
|
|
40
41
|
__exportStar(require("./coverage-class"), exports);
|
|
42
|
+
__exportStar(require("./coverage-definition-class"), exports);
|
|
41
43
|
__exportStar(require("./coverage-term-class"), exports);
|
|
42
44
|
__exportStar(require("./create-account-request-dto"), exports);
|
|
43
45
|
__exportStar(require("./create-bank-account-request-dto"), exports);
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { CategoryDefinitionClass } from './category-definition-class';
|
|
12
13
|
import { ClaimConfigClass } from './claim-config-class';
|
|
13
14
|
import { SharedTariffVariationClass } from './shared-tariff-variation-class';
|
|
14
15
|
/**
|
|
@@ -29,4 +30,10 @@ export interface SharedProductVersionConfigClass {
|
|
|
29
30
|
* @memberof SharedProductVersionConfigClass
|
|
30
31
|
*/
|
|
31
32
|
'tariffVariations': Array<SharedTariffVariationClass>;
|
|
33
|
+
/**
|
|
34
|
+
* List of category definitions used across tariff variations
|
|
35
|
+
* @type {Array<CategoryDefinitionClass>}
|
|
36
|
+
* @memberof SharedProductVersionConfigClass
|
|
37
|
+
*/
|
|
38
|
+
'categoryDefinitions': Array<CategoryDefinitionClass>;
|
|
32
39
|
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { CategoryDefinitionClass } from './category-definition-class';
|
|
12
13
|
import { TariffCategorySummaryClass } from './tariff-category-summary-class';
|
|
13
14
|
import { TariffCoverageTermClass } from './tariff-coverage-term-class';
|
|
14
15
|
/**
|
|
@@ -47,4 +48,10 @@ export interface TariffSummaryClass {
|
|
|
47
48
|
* @memberof TariffSummaryClass
|
|
48
49
|
*/
|
|
49
50
|
'categories': Array<TariffCategorySummaryClass>;
|
|
51
|
+
/**
|
|
52
|
+
* Category definitions referenced by tariff categories
|
|
53
|
+
* @type {Array<CategoryDefinitionClass>}
|
|
54
|
+
* @memberof TariffSummaryClass
|
|
55
|
+
*/
|
|
56
|
+
'categoryDefinitions': Array<CategoryDefinitionClass>;
|
|
50
57
|
}
|
package/models/category-class.ts
CHANGED
|
@@ -29,24 +29,12 @@ export interface CategoryClass {
|
|
|
29
29
|
* @memberof CategoryClass
|
|
30
30
|
*/
|
|
31
31
|
'key': string;
|
|
32
|
-
/**
|
|
33
|
-
* Display name shown to users
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @memberof CategoryClass
|
|
36
|
-
*/
|
|
37
|
-
'label': string;
|
|
38
32
|
/**
|
|
39
33
|
* Category coverage term
|
|
40
34
|
* @type {CoverageTermClass}
|
|
41
35
|
* @memberof CategoryClass
|
|
42
36
|
*/
|
|
43
37
|
'coverageTerm': CoverageTermClass;
|
|
44
|
-
/**
|
|
45
|
-
* Category description
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @memberof CategoryClass
|
|
48
|
-
*/
|
|
49
|
-
'description': string;
|
|
50
38
|
/**
|
|
51
39
|
* List of category coverages
|
|
52
40
|
* @type {Array<CoverageClass>}
|
|
@@ -0,0 +1,49 @@
|
|
|
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
|
+
import { CoverageDefinitionClass } from './coverage-definition-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CategoryDefinitionClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CategoryDefinitionClass {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier key for category definition
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CategoryDefinitionClass
|
|
28
|
+
*/
|
|
29
|
+
'key': string;
|
|
30
|
+
/**
|
|
31
|
+
* Display name shown to users
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CategoryDefinitionClass
|
|
34
|
+
*/
|
|
35
|
+
'label': string;
|
|
36
|
+
/**
|
|
37
|
+
* Category definition description
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CategoryDefinitionClass
|
|
40
|
+
*/
|
|
41
|
+
'description'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Coverage definitions available for this category
|
|
44
|
+
* @type {Array<CoverageDefinitionClass>}
|
|
45
|
+
* @memberof CategoryDefinitionClass
|
|
46
|
+
*/
|
|
47
|
+
'coverageDefinitions': Array<CoverageDefinitionClass>;
|
|
48
|
+
}
|
|
49
|
+
|
package/models/coverage-class.ts
CHANGED
|
@@ -27,18 +27,6 @@ export interface CoverageClass {
|
|
|
27
27
|
* @memberof CoverageClass
|
|
28
28
|
*/
|
|
29
29
|
'key': string;
|
|
30
|
-
/**
|
|
31
|
-
* Display name shown to users
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof CoverageClass
|
|
34
|
-
*/
|
|
35
|
-
'label': string;
|
|
36
|
-
/**
|
|
37
|
-
* Category coverage description
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof CoverageClass
|
|
40
|
-
*/
|
|
41
|
-
'description': string;
|
|
42
30
|
/**
|
|
43
31
|
* Coverage term
|
|
44
32
|
* @type {CoverageTermClass}
|
|
@@ -0,0 +1,42 @@
|
|
|
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 CoverageDefinitionClass
|
|
21
|
+
*/
|
|
22
|
+
export interface CoverageDefinitionClass {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier key for coverage definition
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CoverageDefinitionClass
|
|
27
|
+
*/
|
|
28
|
+
'key': string;
|
|
29
|
+
/**
|
|
30
|
+
* Display name shown to users
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CoverageDefinitionClass
|
|
33
|
+
*/
|
|
34
|
+
'label': string;
|
|
35
|
+
/**
|
|
36
|
+
* Coverage definition description
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CoverageDefinitionClass
|
|
39
|
+
*/
|
|
40
|
+
'description'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
package/models/index.ts
CHANGED
|
@@ -12,6 +12,7 @@ export * from './calculation-errors-class';
|
|
|
12
12
|
export * from './calculation-item-errors-class';
|
|
13
13
|
export * from './calculation-message-class';
|
|
14
14
|
export * from './category-class';
|
|
15
|
+
export * from './category-definition-class';
|
|
15
16
|
export * from './claim-config-class';
|
|
16
17
|
export * from './claim-position-fields-class';
|
|
17
18
|
export * from './clone-lead-request-dto';
|
|
@@ -22,6 +23,7 @@ export * from './commission-agreement-product-class';
|
|
|
22
23
|
export * from './commission-agreement-version-class';
|
|
23
24
|
export * from './commission-recipient-class';
|
|
24
25
|
export * from './coverage-class';
|
|
26
|
+
export * from './coverage-definition-class';
|
|
25
27
|
export * from './coverage-term-class';
|
|
26
28
|
export * from './create-account-request-dto';
|
|
27
29
|
export * from './create-bank-account-request-dto';
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { CategoryDefinitionClass } from './category-definition-class';
|
|
16
17
|
import { ClaimConfigClass } from './claim-config-class';
|
|
17
18
|
import { SharedTariffVariationClass } from './shared-tariff-variation-class';
|
|
18
19
|
|
|
@@ -34,5 +35,11 @@ export interface SharedProductVersionConfigClass {
|
|
|
34
35
|
* @memberof SharedProductVersionConfigClass
|
|
35
36
|
*/
|
|
36
37
|
'tariffVariations': Array<SharedTariffVariationClass>;
|
|
38
|
+
/**
|
|
39
|
+
* List of category definitions used across tariff variations
|
|
40
|
+
* @type {Array<CategoryDefinitionClass>}
|
|
41
|
+
* @memberof SharedProductVersionConfigClass
|
|
42
|
+
*/
|
|
43
|
+
'categoryDefinitions': Array<CategoryDefinitionClass>;
|
|
37
44
|
}
|
|
38
45
|
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { CategoryDefinitionClass } from './category-definition-class';
|
|
16
17
|
import { TariffCategorySummaryClass } from './tariff-category-summary-class';
|
|
17
18
|
import { TariffCoverageTermClass } from './tariff-coverage-term-class';
|
|
18
19
|
|
|
@@ -52,5 +53,11 @@ export interface TariffSummaryClass {
|
|
|
52
53
|
* @memberof TariffSummaryClass
|
|
53
54
|
*/
|
|
54
55
|
'categories': Array<TariffCategorySummaryClass>;
|
|
56
|
+
/**
|
|
57
|
+
* Category definitions referenced by tariff categories
|
|
58
|
+
* @type {Array<CategoryDefinitionClass>}
|
|
59
|
+
* @memberof TariffSummaryClass
|
|
60
|
+
*/
|
|
61
|
+
'categoryDefinitions': Array<CategoryDefinitionClass>;
|
|
55
62
|
}
|
|
56
63
|
|