@emilgroup/insurance-sdk-node 1.87.1-beta.4 → 1.87.1-beta.5
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 +5 -0
- package/README.md +2 -2
- package/dist/models/bank-transfer-dto.d.ts +25 -0
- package/dist/models/bank-transfer-dto.js +15 -0
- package/dist/models/billing-address-dto.d.ts +54 -0
- package/dist/models/billing-address-dto.js +15 -0
- package/dist/models/create-payment-method-request-dto.d.ts +14 -0
- package/dist/models/eis-sepa-debit-dto.d.ts +55 -0
- package/dist/models/eis-sepa-debit-dto.js +15 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/mandate-dto.d.ts +43 -0
- package/dist/models/mandate-dto.js +15 -0
- package/dist/models/mandate-hash-data-dto.d.ts +42 -0
- package/dist/models/mandate-hash-data-dto.js +15 -0
- package/models/bank-transfer-dto.ts +31 -0
- package/models/billing-address-dto.ts +60 -0
- package/models/create-payment-method-request-dto.ts +14 -0
- package/models/eis-sepa-debit-dto.ts +61 -0
- package/models/index.ts +5 -0
- package/models/mandate-dto.ts +49 -0
- package/models/mandate-hash-data-dto.ts +48 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -34,6 +34,8 @@ git_push.sh
|
|
|
34
34
|
index.ts
|
|
35
35
|
models/activate-policy-request-dto.ts
|
|
36
36
|
models/activate-policy-response-class.ts
|
|
37
|
+
models/bank-transfer-dto.ts
|
|
38
|
+
models/billing-address-dto.ts
|
|
37
39
|
models/booking-funnel-class.ts
|
|
38
40
|
models/calculate-custom-premium-request-dto.ts
|
|
39
41
|
models/calculate-premium-request-dto.ts
|
|
@@ -93,6 +95,7 @@ models/create-status-transition-rule-response-class.ts
|
|
|
93
95
|
models/csv-product-factor-dto.ts
|
|
94
96
|
models/delete-draft-policy-request-dto.ts
|
|
95
97
|
models/delete-response-class.ts
|
|
98
|
+
models/eis-sepa-debit-dto.ts
|
|
96
99
|
models/emil-function-class.ts
|
|
97
100
|
models/emil-function-secret-class.ts
|
|
98
101
|
models/empty-response-class.ts
|
|
@@ -176,6 +179,8 @@ models/list-product-fields-response-class.ts
|
|
|
176
179
|
models/list-products-response-class.ts
|
|
177
180
|
models/list-request-dto.ts
|
|
178
181
|
models/list-status-transition-rules-response-class.ts
|
|
182
|
+
models/mandate-dto.ts
|
|
183
|
+
models/mandate-hash-data-dto.ts
|
|
179
184
|
models/named-range-class.ts
|
|
180
185
|
models/omit-type-class.ts
|
|
181
186
|
models/partner-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.87.1-beta.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.87.1-beta.5 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.87.1-beta.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.87.1-beta.5
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { BillingAddressDto } from './billing-address-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface BankTransferDto
|
|
17
|
+
*/
|
|
18
|
+
export interface BankTransferDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {BillingAddressDto}
|
|
22
|
+
* @memberof BankTransferDto
|
|
23
|
+
*/
|
|
24
|
+
'billingAddress'?: BillingAddressDto;
|
|
25
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,54 @@
|
|
|
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 BillingAddressDto
|
|
16
|
+
*/
|
|
17
|
+
export interface BillingAddressDto {
|
|
18
|
+
/**
|
|
19
|
+
* First name for billing address
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof BillingAddressDto
|
|
22
|
+
*/
|
|
23
|
+
'firstName': string;
|
|
24
|
+
/**
|
|
25
|
+
* Last name for billing address
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof BillingAddressDto
|
|
28
|
+
*/
|
|
29
|
+
'lastName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Street name for billing address
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof BillingAddressDto
|
|
34
|
+
*/
|
|
35
|
+
'street': string;
|
|
36
|
+
/**
|
|
37
|
+
* House number for billing address
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof BillingAddressDto
|
|
40
|
+
*/
|
|
41
|
+
'houseNumber': string;
|
|
42
|
+
/**
|
|
43
|
+
* ZIP/Postal code for billing address
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof BillingAddressDto
|
|
46
|
+
*/
|
|
47
|
+
'zipCode': string;
|
|
48
|
+
/**
|
|
49
|
+
* City name for billing address
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof BillingAddressDto
|
|
52
|
+
*/
|
|
53
|
+
'city': string;
|
|
54
|
+
}
|
|
@@ -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 });
|
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { BankTransferDto } from './bank-transfer-dto';
|
|
13
|
+
import { EisSepaDebitDto } from './eis-sepa-debit-dto';
|
|
12
14
|
import { SepaDto } from './sepa-dto';
|
|
13
15
|
/**
|
|
14
16
|
*
|
|
@@ -28,4 +30,16 @@ export interface CreatePaymentMethodRequestDto {
|
|
|
28
30
|
* @memberof CreatePaymentMethodRequestDto
|
|
29
31
|
*/
|
|
30
32
|
'sepa'?: SepaDto;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {BankTransferDto}
|
|
36
|
+
* @memberof CreatePaymentMethodRequestDto
|
|
37
|
+
*/
|
|
38
|
+
'bankTransfer'?: BankTransferDto;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {EisSepaDebitDto}
|
|
42
|
+
* @memberof CreatePaymentMethodRequestDto
|
|
43
|
+
*/
|
|
44
|
+
'eisSepaDebit'?: EisSepaDebitDto;
|
|
31
45
|
}
|
|
@@ -0,0 +1,55 @@
|
|
|
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 { MandateDto } from './mandate-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EisSepaDebitDto
|
|
17
|
+
*/
|
|
18
|
+
export interface EisSepaDebitDto {
|
|
19
|
+
/**
|
|
20
|
+
* First name of account holder
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof EisSepaDebitDto
|
|
23
|
+
*/
|
|
24
|
+
'firstName': string;
|
|
25
|
+
/**
|
|
26
|
+
* Last name of account holder
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof EisSepaDebitDto
|
|
29
|
+
*/
|
|
30
|
+
'lastName': string;
|
|
31
|
+
/**
|
|
32
|
+
* International Bank Account Number
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof EisSepaDebitDto
|
|
35
|
+
*/
|
|
36
|
+
'iban': string;
|
|
37
|
+
/**
|
|
38
|
+
* Bank Identifier Code
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof EisSepaDebitDto
|
|
41
|
+
*/
|
|
42
|
+
'bic': string;
|
|
43
|
+
/**
|
|
44
|
+
* Bank name
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof EisSepaDebitDto
|
|
47
|
+
*/
|
|
48
|
+
'bankName': string;
|
|
49
|
+
/**
|
|
50
|
+
* SEPA mandate details
|
|
51
|
+
* @type {MandateDto}
|
|
52
|
+
* @memberof EisSepaDebitDto
|
|
53
|
+
*/
|
|
54
|
+
'mandate'?: MandateDto;
|
|
55
|
+
}
|
|
@@ -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
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from './activate-policy-request-dto';
|
|
2
2
|
export * from './activate-policy-response-class';
|
|
3
|
+
export * from './bank-transfer-dto';
|
|
4
|
+
export * from './billing-address-dto';
|
|
3
5
|
export * from './booking-funnel-class';
|
|
4
6
|
export * from './calculate-custom-premium-request-dto';
|
|
5
7
|
export * from './calculate-premium-request-dto';
|
|
@@ -59,6 +61,7 @@ export * from './create-status-transition-rule-response-class';
|
|
|
59
61
|
export * from './csv-product-factor-dto';
|
|
60
62
|
export * from './delete-draft-policy-request-dto';
|
|
61
63
|
export * from './delete-response-class';
|
|
64
|
+
export * from './eis-sepa-debit-dto';
|
|
62
65
|
export * from './emil-function-class';
|
|
63
66
|
export * from './emil-function-secret-class';
|
|
64
67
|
export * from './empty-response-class';
|
|
@@ -141,6 +144,8 @@ export * from './list-product-fields-response-class';
|
|
|
141
144
|
export * from './list-products-response-class';
|
|
142
145
|
export * from './list-request-dto';
|
|
143
146
|
export * from './list-status-transition-rules-response-class';
|
|
147
|
+
export * from './mandate-dto';
|
|
148
|
+
export * from './mandate-hash-data-dto';
|
|
144
149
|
export * from './named-range-class';
|
|
145
150
|
export * from './omit-type-class';
|
|
146
151
|
export * from './partner-class';
|
package/dist/models/index.js
CHANGED
|
@@ -16,6 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./activate-policy-request-dto"), exports);
|
|
18
18
|
__exportStar(require("./activate-policy-response-class"), exports);
|
|
19
|
+
__exportStar(require("./bank-transfer-dto"), exports);
|
|
20
|
+
__exportStar(require("./billing-address-dto"), exports);
|
|
19
21
|
__exportStar(require("./booking-funnel-class"), exports);
|
|
20
22
|
__exportStar(require("./calculate-custom-premium-request-dto"), exports);
|
|
21
23
|
__exportStar(require("./calculate-premium-request-dto"), exports);
|
|
@@ -75,6 +77,7 @@ __exportStar(require("./create-status-transition-rule-response-class"), exports)
|
|
|
75
77
|
__exportStar(require("./csv-product-factor-dto"), exports);
|
|
76
78
|
__exportStar(require("./delete-draft-policy-request-dto"), exports);
|
|
77
79
|
__exportStar(require("./delete-response-class"), exports);
|
|
80
|
+
__exportStar(require("./eis-sepa-debit-dto"), exports);
|
|
78
81
|
__exportStar(require("./emil-function-class"), exports);
|
|
79
82
|
__exportStar(require("./emil-function-secret-class"), exports);
|
|
80
83
|
__exportStar(require("./empty-response-class"), exports);
|
|
@@ -157,6 +160,8 @@ __exportStar(require("./list-product-fields-response-class"), exports);
|
|
|
157
160
|
__exportStar(require("./list-products-response-class"), exports);
|
|
158
161
|
__exportStar(require("./list-request-dto"), exports);
|
|
159
162
|
__exportStar(require("./list-status-transition-rules-response-class"), exports);
|
|
163
|
+
__exportStar(require("./mandate-dto"), exports);
|
|
164
|
+
__exportStar(require("./mandate-hash-data-dto"), exports);
|
|
160
165
|
__exportStar(require("./named-range-class"), exports);
|
|
161
166
|
__exportStar(require("./omit-type-class"), exports);
|
|
162
167
|
__exportStar(require("./partner-class"), exports);
|
|
@@ -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 { MandateHashDataDto } from './mandate-hash-data-dto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface MandateDto
|
|
17
|
+
*/
|
|
18
|
+
export interface MandateDto {
|
|
19
|
+
/**
|
|
20
|
+
* Creditor identifier for SEPA debit
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof MandateDto
|
|
23
|
+
*/
|
|
24
|
+
'creditorId': string;
|
|
25
|
+
/**
|
|
26
|
+
* Unique mandate reference
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof MandateDto
|
|
29
|
+
*/
|
|
30
|
+
'mandateReference': string;
|
|
31
|
+
/**
|
|
32
|
+
* Date when mandate was created
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof MandateDto
|
|
35
|
+
*/
|
|
36
|
+
'mandateCreatedAt'?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Optional mandate hash data containing signature details
|
|
39
|
+
* @type {MandateHashDataDto}
|
|
40
|
+
* @memberof MandateDto
|
|
41
|
+
*/
|
|
42
|
+
'mandateHashData'?: MandateHashDataDto;
|
|
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 });
|
|
@@ -0,0 +1,42 @@
|
|
|
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 MandateHashDataDto
|
|
16
|
+
*/
|
|
17
|
+
export interface MandateHashDataDto {
|
|
18
|
+
/**
|
|
19
|
+
* Date when mandate was signed
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof MandateHashDataDto
|
|
22
|
+
*/
|
|
23
|
+
'date'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Location where mandate was signed
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof MandateHashDataDto
|
|
28
|
+
*/
|
|
29
|
+
'location': string;
|
|
30
|
+
/**
|
|
31
|
+
* First name of mandate signer
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof MandateHashDataDto
|
|
34
|
+
*/
|
|
35
|
+
'firstName': string;
|
|
36
|
+
/**
|
|
37
|
+
* Last name of mandate signer
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof MandateHashDataDto
|
|
40
|
+
*/
|
|
41
|
+
'lastName': string;
|
|
42
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { BillingAddressDto } from './billing-address-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface BankTransferDto
|
|
22
|
+
*/
|
|
23
|
+
export interface BankTransferDto {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {BillingAddressDto}
|
|
27
|
+
* @memberof BankTransferDto
|
|
28
|
+
*/
|
|
29
|
+
'billingAddress'?: BillingAddressDto;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
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 BillingAddressDto
|
|
21
|
+
*/
|
|
22
|
+
export interface BillingAddressDto {
|
|
23
|
+
/**
|
|
24
|
+
* First name for billing address
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof BillingAddressDto
|
|
27
|
+
*/
|
|
28
|
+
'firstName': string;
|
|
29
|
+
/**
|
|
30
|
+
* Last name for billing address
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BillingAddressDto
|
|
33
|
+
*/
|
|
34
|
+
'lastName': string;
|
|
35
|
+
/**
|
|
36
|
+
* Street name for billing address
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof BillingAddressDto
|
|
39
|
+
*/
|
|
40
|
+
'street': string;
|
|
41
|
+
/**
|
|
42
|
+
* House number for billing address
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BillingAddressDto
|
|
45
|
+
*/
|
|
46
|
+
'houseNumber': string;
|
|
47
|
+
/**
|
|
48
|
+
* ZIP/Postal code for billing address
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof BillingAddressDto
|
|
51
|
+
*/
|
|
52
|
+
'zipCode': string;
|
|
53
|
+
/**
|
|
54
|
+
* City name for billing address
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BillingAddressDto
|
|
57
|
+
*/
|
|
58
|
+
'city': string;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { BankTransferDto } from './bank-transfer-dto';
|
|
17
|
+
import { EisSepaDebitDto } from './eis-sepa-debit-dto';
|
|
16
18
|
import { SepaDto } from './sepa-dto';
|
|
17
19
|
|
|
18
20
|
/**
|
|
@@ -33,5 +35,17 @@ export interface CreatePaymentMethodRequestDto {
|
|
|
33
35
|
* @memberof CreatePaymentMethodRequestDto
|
|
34
36
|
*/
|
|
35
37
|
'sepa'?: SepaDto;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {BankTransferDto}
|
|
41
|
+
* @memberof CreatePaymentMethodRequestDto
|
|
42
|
+
*/
|
|
43
|
+
'bankTransfer'?: BankTransferDto;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {EisSepaDebitDto}
|
|
47
|
+
* @memberof CreatePaymentMethodRequestDto
|
|
48
|
+
*/
|
|
49
|
+
'eisSepaDebit'?: EisSepaDebitDto;
|
|
36
50
|
}
|
|
37
51
|
|
|
@@ -0,0 +1,61 @@
|
|
|
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 { MandateDto } from './mandate-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface EisSepaDebitDto
|
|
22
|
+
*/
|
|
23
|
+
export interface EisSepaDebitDto {
|
|
24
|
+
/**
|
|
25
|
+
* First name of account holder
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EisSepaDebitDto
|
|
28
|
+
*/
|
|
29
|
+
'firstName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Last name of account holder
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof EisSepaDebitDto
|
|
34
|
+
*/
|
|
35
|
+
'lastName': string;
|
|
36
|
+
/**
|
|
37
|
+
* International Bank Account Number
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof EisSepaDebitDto
|
|
40
|
+
*/
|
|
41
|
+
'iban': string;
|
|
42
|
+
/**
|
|
43
|
+
* Bank Identifier Code
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof EisSepaDebitDto
|
|
46
|
+
*/
|
|
47
|
+
'bic': string;
|
|
48
|
+
/**
|
|
49
|
+
* Bank name
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof EisSepaDebitDto
|
|
52
|
+
*/
|
|
53
|
+
'bankName': string;
|
|
54
|
+
/**
|
|
55
|
+
* SEPA mandate details
|
|
56
|
+
* @type {MandateDto}
|
|
57
|
+
* @memberof EisSepaDebitDto
|
|
58
|
+
*/
|
|
59
|
+
'mandate'?: MandateDto;
|
|
60
|
+
}
|
|
61
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from './activate-policy-request-dto';
|
|
2
2
|
export * from './activate-policy-response-class';
|
|
3
|
+
export * from './bank-transfer-dto';
|
|
4
|
+
export * from './billing-address-dto';
|
|
3
5
|
export * from './booking-funnel-class';
|
|
4
6
|
export * from './calculate-custom-premium-request-dto';
|
|
5
7
|
export * from './calculate-premium-request-dto';
|
|
@@ -59,6 +61,7 @@ export * from './create-status-transition-rule-response-class';
|
|
|
59
61
|
export * from './csv-product-factor-dto';
|
|
60
62
|
export * from './delete-draft-policy-request-dto';
|
|
61
63
|
export * from './delete-response-class';
|
|
64
|
+
export * from './eis-sepa-debit-dto';
|
|
62
65
|
export * from './emil-function-class';
|
|
63
66
|
export * from './emil-function-secret-class';
|
|
64
67
|
export * from './empty-response-class';
|
|
@@ -141,6 +144,8 @@ export * from './list-product-fields-response-class';
|
|
|
141
144
|
export * from './list-products-response-class';
|
|
142
145
|
export * from './list-request-dto';
|
|
143
146
|
export * from './list-status-transition-rules-response-class';
|
|
147
|
+
export * from './mandate-dto';
|
|
148
|
+
export * from './mandate-hash-data-dto';
|
|
144
149
|
export * from './named-range-class';
|
|
145
150
|
export * from './omit-type-class';
|
|
146
151
|
export * from './partner-class';
|
|
@@ -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 { MandateHashDataDto } from './mandate-hash-data-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface MandateDto
|
|
22
|
+
*/
|
|
23
|
+
export interface MandateDto {
|
|
24
|
+
/**
|
|
25
|
+
* Creditor identifier for SEPA debit
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof MandateDto
|
|
28
|
+
*/
|
|
29
|
+
'creditorId': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique mandate reference
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof MandateDto
|
|
34
|
+
*/
|
|
35
|
+
'mandateReference': string;
|
|
36
|
+
/**
|
|
37
|
+
* Date when mandate was created
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof MandateDto
|
|
40
|
+
*/
|
|
41
|
+
'mandateCreatedAt'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Optional mandate hash data containing signature details
|
|
44
|
+
* @type {MandateHashDataDto}
|
|
45
|
+
* @memberof MandateDto
|
|
46
|
+
*/
|
|
47
|
+
'mandateHashData'?: MandateHashDataDto;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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 MandateHashDataDto
|
|
21
|
+
*/
|
|
22
|
+
export interface MandateHashDataDto {
|
|
23
|
+
/**
|
|
24
|
+
* Date when mandate was signed
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof MandateHashDataDto
|
|
27
|
+
*/
|
|
28
|
+
'date'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Location where mandate was signed
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof MandateHashDataDto
|
|
33
|
+
*/
|
|
34
|
+
'location': string;
|
|
35
|
+
/**
|
|
36
|
+
* First name of mandate signer
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof MandateHashDataDto
|
|
39
|
+
*/
|
|
40
|
+
'firstName': string;
|
|
41
|
+
/**
|
|
42
|
+
* Last name of mandate signer
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof MandateHashDataDto
|
|
45
|
+
*/
|
|
46
|
+
'lastName': string;
|
|
47
|
+
}
|
|
48
|
+
|