@emilgroup/insurance-sdk-node 1.5.0 → 1.5.1
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 +0 -1
- package/README.md +2 -2
- package/dist/models/create-insured-object-response-class.d.ts +3 -3
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/models/create-insured-object-response-class.ts +3 -3
- package/models/index.ts +0 -1
- package/package.json +1 -1
- package/dist/models/omit-type-class.d.ts +0 -60
- package/dist/models/omit-type-class.js +0 -15
- package/models/omit-type-class.ts +0 -66
package/.openapi-generator/FILES
CHANGED
|
@@ -74,7 +74,6 @@ models/list-product-field-types-response-class.ts
|
|
|
74
74
|
models/list-product-fields-response-class.ts
|
|
75
75
|
models/list-products-response-class.ts
|
|
76
76
|
models/list-request-dto.ts
|
|
77
|
-
models/omit-type-class.ts
|
|
78
77
|
models/policy-class.ts
|
|
79
78
|
models/policy-object-class.ts
|
|
80
79
|
models/policy-object-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.5.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.5.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.5.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.5.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { InsuredObjectClass } from './insured-object-class';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -18,8 +18,8 @@ import { OmitTypeClass } from './omit-type-class';
|
|
|
18
18
|
export interface CreateInsuredObjectResponseClass {
|
|
19
19
|
/**
|
|
20
20
|
* Insured object.
|
|
21
|
-
* @type {
|
|
21
|
+
* @type {InsuredObjectClass}
|
|
22
22
|
* @memberof CreateInsuredObjectResponseClass
|
|
23
23
|
*/
|
|
24
|
-
'insuredObject':
|
|
24
|
+
'insuredObject': InsuredObjectClass;
|
|
25
25
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -54,7 +54,6 @@ export * from './list-product-field-types-response-class';
|
|
|
54
54
|
export * from './list-product-fields-response-class';
|
|
55
55
|
export * from './list-products-response-class';
|
|
56
56
|
export * from './list-request-dto';
|
|
57
|
-
export * from './omit-type-class';
|
|
58
57
|
export * from './policy-class';
|
|
59
58
|
export * from './policy-object-class';
|
|
60
59
|
export * from './policy-object-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -70,7 +70,6 @@ __exportStar(require("./list-product-field-types-response-class"), exports);
|
|
|
70
70
|
__exportStar(require("./list-product-fields-response-class"), exports);
|
|
71
71
|
__exportStar(require("./list-products-response-class"), exports);
|
|
72
72
|
__exportStar(require("./list-request-dto"), exports);
|
|
73
|
-
__exportStar(require("./omit-type-class"), exports);
|
|
74
73
|
__exportStar(require("./policy-class"), exports);
|
|
75
74
|
__exportStar(require("./policy-object-class"), exports);
|
|
76
75
|
__exportStar(require("./policy-object-dto"), exports);
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { InsuredObjectClass } from './insured-object-class';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
@@ -23,9 +23,9 @@ import { OmitTypeClass } from './omit-type-class';
|
|
|
23
23
|
export interface CreateInsuredObjectResponseClass {
|
|
24
24
|
/**
|
|
25
25
|
* Insured object.
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {InsuredObjectClass}
|
|
27
27
|
* @memberof CreateInsuredObjectResponseClass
|
|
28
28
|
*/
|
|
29
|
-
'insuredObject':
|
|
29
|
+
'insuredObject': InsuredObjectClass;
|
|
30
30
|
}
|
|
31
31
|
|
package/models/index.ts
CHANGED
|
@@ -54,7 +54,6 @@ export * from './list-product-field-types-response-class';
|
|
|
54
54
|
export * from './list-product-fields-response-class';
|
|
55
55
|
export * from './list-products-response-class';
|
|
56
56
|
export * from './list-request-dto';
|
|
57
|
-
export * from './omit-type-class';
|
|
58
57
|
export * from './policy-class';
|
|
59
58
|
export * from './policy-object-class';
|
|
60
59
|
export * from './policy-object-dto';
|
package/package.json
CHANGED
|
@@ -1,60 +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 OmitTypeClass
|
|
16
|
-
*/
|
|
17
|
-
export interface OmitTypeClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof OmitTypeClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Unique identifier referencing the Product version.
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof OmitTypeClass
|
|
28
|
-
*/
|
|
29
|
-
'productVersionId': number;
|
|
30
|
-
/**
|
|
31
|
-
* Insured object name.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof OmitTypeClass
|
|
34
|
-
*/
|
|
35
|
-
'name': string;
|
|
36
|
-
/**
|
|
37
|
-
* Insured object label.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof OmitTypeClass
|
|
40
|
-
*/
|
|
41
|
-
'label'?: string;
|
|
42
|
-
/**
|
|
43
|
-
* Unique identifier referencing the Insured object type.
|
|
44
|
-
* @type {number}
|
|
45
|
-
* @memberof OmitTypeClass
|
|
46
|
-
*/
|
|
47
|
-
'insuredObjectTypeId': number;
|
|
48
|
-
/**
|
|
49
|
-
* Time at which the object was created.
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof OmitTypeClass
|
|
52
|
-
*/
|
|
53
|
-
'createdAt': string;
|
|
54
|
-
/**
|
|
55
|
-
* Time at which the object was updated.
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof OmitTypeClass
|
|
58
|
-
*/
|
|
59
|
-
'updatedAt': string;
|
|
60
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
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 });
|
|
@@ -1,66 +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 OmitTypeClass
|
|
21
|
-
*/
|
|
22
|
-
export interface OmitTypeClass {
|
|
23
|
-
/**
|
|
24
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
-
* @type {number}
|
|
26
|
-
* @memberof OmitTypeClass
|
|
27
|
-
*/
|
|
28
|
-
'id': number;
|
|
29
|
-
/**
|
|
30
|
-
* Unique identifier referencing the Product version.
|
|
31
|
-
* @type {number}
|
|
32
|
-
* @memberof OmitTypeClass
|
|
33
|
-
*/
|
|
34
|
-
'productVersionId': number;
|
|
35
|
-
/**
|
|
36
|
-
* Insured object name.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof OmitTypeClass
|
|
39
|
-
*/
|
|
40
|
-
'name': string;
|
|
41
|
-
/**
|
|
42
|
-
* Insured object label.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof OmitTypeClass
|
|
45
|
-
*/
|
|
46
|
-
'label'?: string;
|
|
47
|
-
/**
|
|
48
|
-
* Unique identifier referencing the Insured object type.
|
|
49
|
-
* @type {number}
|
|
50
|
-
* @memberof OmitTypeClass
|
|
51
|
-
*/
|
|
52
|
-
'insuredObjectTypeId': number;
|
|
53
|
-
/**
|
|
54
|
-
* Time at which the object was created.
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof OmitTypeClass
|
|
57
|
-
*/
|
|
58
|
-
'createdAt': string;
|
|
59
|
-
/**
|
|
60
|
-
* Time at which the object was updated.
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof OmitTypeClass
|
|
63
|
-
*/
|
|
64
|
-
'updatedAt': string;
|
|
65
|
-
}
|
|
66
|
-
|