@emilgroup/insurance-sdk-node 1.15.0 → 1.16.0
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/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/policy-premium-class.d.ts +6 -0
- package/dist/models/shared-invoice-class.d.ts +2 -3
- package/models/index.ts +0 -1
- package/models/policy-premium-class.ts +6 -0
- package/models/shared-invoice-class.ts +2 -3
- package/package.json +1 -1
- package/dist/models/currency-class.d.ts +0 -48
- package/dist/models/currency-class.js +0 -15
- package/models/currency-class.ts +0 -54
package/.openapi-generator/FILES
CHANGED
|
@@ -40,7 +40,6 @@ models/create-product-field-response-class.ts
|
|
|
40
40
|
models/create-product-request-dto.ts
|
|
41
41
|
models/create-product-response-class.ts
|
|
42
42
|
models/csv-product-factor-dto.ts
|
|
43
|
-
models/currency-class.ts
|
|
44
43
|
models/delete-request-dto.ts
|
|
45
44
|
models/delete-response-class.ts
|
|
46
45
|
models/get-insured-object-response-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.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.16.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.16.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
package/dist/models/index.d.ts
CHANGED
|
@@ -20,7 +20,6 @@ export * from './create-product-field-response-class';
|
|
|
20
20
|
export * from './create-product-request-dto';
|
|
21
21
|
export * from './create-product-response-class';
|
|
22
22
|
export * from './csv-product-factor-dto';
|
|
23
|
-
export * from './currency-class';
|
|
24
23
|
export * from './delete-request-dto';
|
|
25
24
|
export * from './delete-response-class';
|
|
26
25
|
export * from './get-insured-object-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -36,7 +36,6 @@ __exportStar(require("./create-product-field-response-class"), exports);
|
|
|
36
36
|
__exportStar(require("./create-product-request-dto"), exports);
|
|
37
37
|
__exportStar(require("./create-product-response-class"), exports);
|
|
38
38
|
__exportStar(require("./csv-product-factor-dto"), exports);
|
|
39
|
-
__exportStar(require("./currency-class"), exports);
|
|
40
39
|
__exportStar(require("./delete-request-dto"), exports);
|
|
41
40
|
__exportStar(require("./delete-response-class"), exports);
|
|
42
41
|
__exportStar(require("./get-insured-object-response-class"), exports);
|
|
@@ -28,6 +28,12 @@ export interface PolicyPremiumClass {
|
|
|
28
28
|
* @memberof PolicyPremiumClass
|
|
29
29
|
*/
|
|
30
30
|
'grandTotal': number;
|
|
31
|
+
/**
|
|
32
|
+
* Premium policy currency. EUR is used by default.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof PolicyPremiumClass
|
|
35
|
+
*/
|
|
36
|
+
'currency': string;
|
|
31
37
|
/**
|
|
32
38
|
* Time at which the object was created.
|
|
33
39
|
* @type {string}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { CurrencyClass } from './currency-class';
|
|
13
12
|
import { InvoiceItemClass } from './invoice-item-class';
|
|
14
13
|
import { InvoiceStatusClass } from './invoice-status-class';
|
|
15
14
|
/**
|
|
@@ -128,10 +127,10 @@ export interface SharedInvoiceClass {
|
|
|
128
127
|
'statuses': Array<InvoiceStatusClass>;
|
|
129
128
|
/**
|
|
130
129
|
* Invoice currency. EUR is used by default.
|
|
131
|
-
* @type {
|
|
130
|
+
* @type {string}
|
|
132
131
|
* @memberof SharedInvoiceClass
|
|
133
132
|
*/
|
|
134
|
-
'currency':
|
|
133
|
+
'currency': string;
|
|
135
134
|
}
|
|
136
135
|
export declare const SharedInvoiceClassTypeEnum: {
|
|
137
136
|
readonly Initial: "initial";
|
package/models/index.ts
CHANGED
|
@@ -20,7 +20,6 @@ export * from './create-product-field-response-class';
|
|
|
20
20
|
export * from './create-product-request-dto';
|
|
21
21
|
export * from './create-product-response-class';
|
|
22
22
|
export * from './csv-product-factor-dto';
|
|
23
|
-
export * from './currency-class';
|
|
24
23
|
export * from './delete-request-dto';
|
|
25
24
|
export * from './delete-response-class';
|
|
26
25
|
export * from './get-insured-object-response-class';
|
|
@@ -33,6 +33,12 @@ export interface PolicyPremiumClass {
|
|
|
33
33
|
* @memberof PolicyPremiumClass
|
|
34
34
|
*/
|
|
35
35
|
'grandTotal': number;
|
|
36
|
+
/**
|
|
37
|
+
* Premium policy currency. EUR is used by default.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PolicyPremiumClass
|
|
40
|
+
*/
|
|
41
|
+
'currency': string;
|
|
36
42
|
/**
|
|
37
43
|
* Time at which the object was created.
|
|
38
44
|
* @type {string}
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import { CurrencyClass } from './currency-class';
|
|
17
16
|
import { InvoiceItemClass } from './invoice-item-class';
|
|
18
17
|
import { InvoiceStatusClass } from './invoice-status-class';
|
|
19
18
|
|
|
@@ -133,10 +132,10 @@ export interface SharedInvoiceClass {
|
|
|
133
132
|
'statuses': Array<InvoiceStatusClass>;
|
|
134
133
|
/**
|
|
135
134
|
* Invoice currency. EUR is used by default.
|
|
136
|
-
* @type {
|
|
135
|
+
* @type {string}
|
|
137
136
|
* @memberof SharedInvoiceClass
|
|
138
137
|
*/
|
|
139
|
-
'currency':
|
|
138
|
+
'currency': string;
|
|
140
139
|
}
|
|
141
140
|
|
|
142
141
|
export const SharedInvoiceClassTypeEnum = {
|
package/package.json
CHANGED
|
@@ -1,48 +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 CurrencyClass
|
|
16
|
-
*/
|
|
17
|
-
export interface CurrencyClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof CurrencyClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Name of currency in English.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CurrencyClass
|
|
28
|
-
*/
|
|
29
|
-
'name': string;
|
|
30
|
-
/**
|
|
31
|
-
* Name of currency in native language.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof CurrencyClass
|
|
34
|
-
*/
|
|
35
|
-
'nativeName': string;
|
|
36
|
-
/**
|
|
37
|
-
* Code defined by ISO 4217 standard.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof CurrencyClass
|
|
40
|
-
*/
|
|
41
|
-
'code': string;
|
|
42
|
-
/**
|
|
43
|
-
* Currency symbols are graphical representations used to denote a particular currency in written or printed form.
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof CurrencyClass
|
|
46
|
-
*/
|
|
47
|
-
'symbol': string;
|
|
48
|
-
}
|
|
@@ -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 });
|
package/models/currency-class.ts
DELETED
|
@@ -1,54 +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 CurrencyClass
|
|
21
|
-
*/
|
|
22
|
-
export interface CurrencyClass {
|
|
23
|
-
/**
|
|
24
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
-
* @type {number}
|
|
26
|
-
* @memberof CurrencyClass
|
|
27
|
-
*/
|
|
28
|
-
'id': number;
|
|
29
|
-
/**
|
|
30
|
-
* Name of currency in English.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CurrencyClass
|
|
33
|
-
*/
|
|
34
|
-
'name': string;
|
|
35
|
-
/**
|
|
36
|
-
* Name of currency in native language.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof CurrencyClass
|
|
39
|
-
*/
|
|
40
|
-
'nativeName': string;
|
|
41
|
-
/**
|
|
42
|
-
* Code defined by ISO 4217 standard.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof CurrencyClass
|
|
45
|
-
*/
|
|
46
|
-
'code': string;
|
|
47
|
-
/**
|
|
48
|
-
* Currency symbols are graphical representations used to denote a particular currency in written or printed form.
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof CurrencyClass
|
|
51
|
-
*/
|
|
52
|
-
'symbol': string;
|
|
53
|
-
}
|
|
54
|
-
|