@emilgroup/public-api-sdk-node 1.34.1 → 1.34.2-beta.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 +8 -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/complete-bank-transfer-payment-setup-request-dto.d.ts +25 -0
- package/dist/models/complete-bank-transfer-payment-setup-request-dto.js +15 -0
- package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
- package/dist/models/create-payment-method-request-dto.d.ts +14 -0
- package/dist/models/eis-sepa-debit-config-response-class.d.ts +42 -0
- package/dist/models/eis-sepa-debit-config-response-class.js +15 -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 +8 -0
- package/dist/models/index.js +8 -0
- package/dist/models/initiate-lead-response-class.d.ts +13 -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/dist/models/psp-configuration-response-class.d.ts +37 -0
- package/dist/models/psp-configuration-response-class.js +15 -0
- package/models/bank-transfer-dto.ts +31 -0
- package/models/billing-address-dto.ts +60 -0
- package/models/complete-bank-transfer-payment-setup-request-dto.ts +31 -0
- package/models/complete-payment-setup-request-dto.ts +7 -0
- package/models/create-payment-method-request-dto.ts +14 -0
- package/models/eis-sepa-debit-config-response-class.ts +48 -0
- package/models/eis-sepa-debit-dto.ts +61 -0
- package/models/index.ts +8 -0
- package/models/initiate-lead-response-class.ts +13 -0
- package/models/mandate-dto.ts +49 -0
- package/models/mandate-hash-data-dto.ts +48 -0
- package/models/psp-configuration-response-class.ts +43 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -21,11 +21,14 @@ index.ts
|
|
|
21
21
|
models/address-completion-item-class.ts
|
|
22
22
|
models/address-completion-response-class.ts
|
|
23
23
|
models/address-field-score-class.ts
|
|
24
|
+
models/bank-transfer-dto.ts
|
|
25
|
+
models/billing-address-dto.ts
|
|
24
26
|
models/booking-funnel-class.ts
|
|
25
27
|
models/calculate-product-fields-request-dto.ts
|
|
26
28
|
models/calculate-product-fields-response-class.ts
|
|
27
29
|
models/card-details-dto.ts
|
|
28
30
|
models/complete-adyen-payment-setup-request-dto.ts
|
|
31
|
+
models/complete-bank-transfer-payment-setup-request-dto.ts
|
|
29
32
|
models/complete-braintree-payment-setup-request-dto.ts
|
|
30
33
|
models/complete-eis-payment-setup-request-dto.ts
|
|
31
34
|
models/complete-email-verification-dto.ts
|
|
@@ -47,6 +50,8 @@ models/create-payment-method-request-dto.ts
|
|
|
47
50
|
models/create-presigned-post-request-dto.ts
|
|
48
51
|
models/create-presigned-post-response-class.ts
|
|
49
52
|
models/document-class.ts
|
|
53
|
+
models/eis-sepa-debit-config-response-class.ts
|
|
54
|
+
models/eis-sepa-debit-dto.ts
|
|
50
55
|
models/filter-named-range-response-class.ts
|
|
51
56
|
models/get-booking-funnel-response-class.ts
|
|
52
57
|
models/get-custom-css-response-class.ts
|
|
@@ -82,6 +87,8 @@ models/link-lead-partner-request-dto.ts
|
|
|
82
87
|
models/list-documents-response-class.ts
|
|
83
88
|
models/list-product-documents-response-class.ts
|
|
84
89
|
models/list-products-response-class.ts
|
|
90
|
+
models/mandate-dto.ts
|
|
91
|
+
models/mandate-hash-data-dto.ts
|
|
85
92
|
models/partner-class.ts
|
|
86
93
|
models/partner-link-class.ts
|
|
87
94
|
models/partner-role-class.ts
|
|
@@ -96,6 +103,7 @@ models/product-factor-for-version-class.ts
|
|
|
96
103
|
models/product-factor-value-for-version-class.ts
|
|
97
104
|
models/product-field-class.ts
|
|
98
105
|
models/product-version-class.ts
|
|
106
|
+
models/psp-configuration-response-class.ts
|
|
99
107
|
models/send-notification-request-dto.ts
|
|
100
108
|
models/send-notification-response-class.ts
|
|
101
109
|
models/sepa-direct-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/public-api-sdk-node@1.34.1 --save
|
|
20
|
+
npm install @emilgroup/public-api-sdk-node@1.34.2-beta.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/public-api-sdk-node@1.34.1
|
|
24
|
+
yarn add @emilgroup/public-api-sdk-node@1.34.2-beta.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PublicApi`.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public 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 PublicAPI
|
|
6
|
+
* The Emil Public 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 PublicAPI
|
|
3
|
+
* The Emil Public 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 PublicAPI
|
|
6
|
+
* The Emil Public 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,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public 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 CompleteBankTransferPaymentSetupRequestDto
|
|
17
|
+
*/
|
|
18
|
+
export interface CompleteBankTransferPaymentSetupRequestDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {BillingAddressDto}
|
|
22
|
+
* @memberof CompleteBankTransferPaymentSetupRequestDto
|
|
23
|
+
*/
|
|
24
|
+
'billingAddress'?: BillingAddressDto;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public 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 });
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
|
|
13
|
+
import { CompleteBankTransferPaymentSetupRequestDto } from './complete-bank-transfer-payment-setup-request-dto';
|
|
13
14
|
import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
|
|
14
15
|
import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
|
|
15
16
|
import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
|
|
@@ -49,4 +50,10 @@ export interface CompletePaymentSetupRequestDto {
|
|
|
49
50
|
* @memberof CompletePaymentSetupRequestDto
|
|
50
51
|
*/
|
|
51
52
|
'eis'?: CompleteEisPaymentSetupRequestDto;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {CompleteBankTransferPaymentSetupRequestDto}
|
|
56
|
+
* @memberof CompletePaymentSetupRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'bankTransfer'?: CompleteBankTransferPaymentSetupRequestDto;
|
|
52
59
|
}
|
|
@@ -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,6 +30,18 @@ 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
|
}
|
|
32
46
|
export declare const CreatePaymentMethodRequestDtoTypeEnum: {
|
|
33
47
|
readonly Sepa: "sepa";
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public 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 EisSepaDebitConfigResponseClass
|
|
16
|
+
*/
|
|
17
|
+
export interface EisSepaDebitConfigResponseClass {
|
|
18
|
+
/**
|
|
19
|
+
* Name of the tenant.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof EisSepaDebitConfigResponseClass
|
|
22
|
+
*/
|
|
23
|
+
'tenantName': string;
|
|
24
|
+
/**
|
|
25
|
+
* Creditor ID.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof EisSepaDebitConfigResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'creditorId': string;
|
|
30
|
+
/**
|
|
31
|
+
* Number of days for collection.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof EisSepaDebitConfigResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'collectionDate': number;
|
|
36
|
+
/**
|
|
37
|
+
* Unique mandate reference.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof EisSepaDebitConfigResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'mandateReference': string;
|
|
42
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public 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,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public 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 PublicAPI
|
|
6
|
+
* The Emil Public 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,11 +1,14 @@
|
|
|
1
1
|
export * from './address-completion-item-class';
|
|
2
2
|
export * from './address-completion-response-class';
|
|
3
3
|
export * from './address-field-score-class';
|
|
4
|
+
export * from './bank-transfer-dto';
|
|
5
|
+
export * from './billing-address-dto';
|
|
4
6
|
export * from './booking-funnel-class';
|
|
5
7
|
export * from './calculate-product-fields-request-dto';
|
|
6
8
|
export * from './calculate-product-fields-response-class';
|
|
7
9
|
export * from './card-details-dto';
|
|
8
10
|
export * from './complete-adyen-payment-setup-request-dto';
|
|
11
|
+
export * from './complete-bank-transfer-payment-setup-request-dto';
|
|
9
12
|
export * from './complete-braintree-payment-setup-request-dto';
|
|
10
13
|
export * from './complete-eis-payment-setup-request-dto';
|
|
11
14
|
export * from './complete-email-verification-dto';
|
|
@@ -27,6 +30,8 @@ export * from './create-payment-method-request-dto';
|
|
|
27
30
|
export * from './create-presigned-post-request-dto';
|
|
28
31
|
export * from './create-presigned-post-response-class';
|
|
29
32
|
export * from './document-class';
|
|
33
|
+
export * from './eis-sepa-debit-config-response-class';
|
|
34
|
+
export * from './eis-sepa-debit-dto';
|
|
30
35
|
export * from './filter-named-range-response-class';
|
|
31
36
|
export * from './get-booking-funnel-response-class';
|
|
32
37
|
export * from './get-custom-css-response-class';
|
|
@@ -61,6 +66,8 @@ export * from './link-lead-partner-request-dto';
|
|
|
61
66
|
export * from './list-documents-response-class';
|
|
62
67
|
export * from './list-product-documents-response-class';
|
|
63
68
|
export * from './list-products-response-class';
|
|
69
|
+
export * from './mandate-dto';
|
|
70
|
+
export * from './mandate-hash-data-dto';
|
|
64
71
|
export * from './partner-class';
|
|
65
72
|
export * from './partner-link-class';
|
|
66
73
|
export * from './partner-role-class';
|
|
@@ -75,6 +82,7 @@ export * from './product-factor-for-version-class';
|
|
|
75
82
|
export * from './product-factor-value-for-version-class';
|
|
76
83
|
export * from './product-field-class';
|
|
77
84
|
export * from './product-version-class';
|
|
85
|
+
export * from './psp-configuration-response-class';
|
|
78
86
|
export * from './send-notification-request-dto';
|
|
79
87
|
export * from './send-notification-response-class';
|
|
80
88
|
export * from './sepa-direct-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -17,11 +17,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./address-completion-item-class"), exports);
|
|
18
18
|
__exportStar(require("./address-completion-response-class"), exports);
|
|
19
19
|
__exportStar(require("./address-field-score-class"), exports);
|
|
20
|
+
__exportStar(require("./bank-transfer-dto"), exports);
|
|
21
|
+
__exportStar(require("./billing-address-dto"), exports);
|
|
20
22
|
__exportStar(require("./booking-funnel-class"), exports);
|
|
21
23
|
__exportStar(require("./calculate-product-fields-request-dto"), exports);
|
|
22
24
|
__exportStar(require("./calculate-product-fields-response-class"), exports);
|
|
23
25
|
__exportStar(require("./card-details-dto"), exports);
|
|
24
26
|
__exportStar(require("./complete-adyen-payment-setup-request-dto"), exports);
|
|
27
|
+
__exportStar(require("./complete-bank-transfer-payment-setup-request-dto"), exports);
|
|
25
28
|
__exportStar(require("./complete-braintree-payment-setup-request-dto"), exports);
|
|
26
29
|
__exportStar(require("./complete-eis-payment-setup-request-dto"), exports);
|
|
27
30
|
__exportStar(require("./complete-email-verification-dto"), exports);
|
|
@@ -43,6 +46,8 @@ __exportStar(require("./create-payment-method-request-dto"), exports);
|
|
|
43
46
|
__exportStar(require("./create-presigned-post-request-dto"), exports);
|
|
44
47
|
__exportStar(require("./create-presigned-post-response-class"), exports);
|
|
45
48
|
__exportStar(require("./document-class"), exports);
|
|
49
|
+
__exportStar(require("./eis-sepa-debit-config-response-class"), exports);
|
|
50
|
+
__exportStar(require("./eis-sepa-debit-dto"), exports);
|
|
46
51
|
__exportStar(require("./filter-named-range-response-class"), exports);
|
|
47
52
|
__exportStar(require("./get-booking-funnel-response-class"), exports);
|
|
48
53
|
__exportStar(require("./get-custom-css-response-class"), exports);
|
|
@@ -77,6 +82,8 @@ __exportStar(require("./link-lead-partner-request-dto"), exports);
|
|
|
77
82
|
__exportStar(require("./list-documents-response-class"), exports);
|
|
78
83
|
__exportStar(require("./list-product-documents-response-class"), exports);
|
|
79
84
|
__exportStar(require("./list-products-response-class"), exports);
|
|
85
|
+
__exportStar(require("./mandate-dto"), exports);
|
|
86
|
+
__exportStar(require("./mandate-hash-data-dto"), exports);
|
|
80
87
|
__exportStar(require("./partner-class"), exports);
|
|
81
88
|
__exportStar(require("./partner-link-class"), exports);
|
|
82
89
|
__exportStar(require("./partner-role-class"), exports);
|
|
@@ -91,6 +98,7 @@ __exportStar(require("./product-factor-for-version-class"), exports);
|
|
|
91
98
|
__exportStar(require("./product-factor-value-for-version-class"), exports);
|
|
92
99
|
__exportStar(require("./product-field-class"), exports);
|
|
93
100
|
__exportStar(require("./product-version-class"), exports);
|
|
101
|
+
__exportStar(require("./psp-configuration-response-class"), exports);
|
|
94
102
|
__exportStar(require("./send-notification-request-dto"), exports);
|
|
95
103
|
__exportStar(require("./send-notification-response-class"), exports);
|
|
96
104
|
__exportStar(require("./sepa-direct-dto"), exports);
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { PspConfigurationResponseClass } from './psp-configuration-response-class';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -21,4 +22,16 @@ export interface InitiateLeadResponseClass {
|
|
|
21
22
|
* @memberof InitiateLeadResponseClass
|
|
22
23
|
*/
|
|
23
24
|
'leadCode': string;
|
|
25
|
+
/**
|
|
26
|
+
* Name of payment system provider.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof InitiateLeadResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'psp': string;
|
|
31
|
+
/**
|
|
32
|
+
* Payment system provider configuration data required for frontend payment form initialization.
|
|
33
|
+
* @type {PspConfigurationResponseClass}
|
|
34
|
+
* @memberof InitiateLeadResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'data': PspConfigurationResponseClass;
|
|
24
37
|
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public 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 PublicAPI
|
|
6
|
+
* The Emil Public 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 PublicAPI
|
|
3
|
+
* The Emil Public 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 PublicAPI
|
|
6
|
+
* The Emil Public 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,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil PublicAPI
|
|
3
|
+
* The Emil Public 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 { EisSepaDebitConfigResponseClass } from './eis-sepa-debit-config-response-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PspConfigurationResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface PspConfigurationResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Public key. Used on frontend to load the payment form component.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof PspConfigurationResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'publicKey': string;
|
|
25
|
+
/**
|
|
26
|
+
* Mapping of payment method to payment system provider.
|
|
27
|
+
* @type {object}
|
|
28
|
+
* @memberof PspConfigurationResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'paymentMethodMapping': object;
|
|
31
|
+
/**
|
|
32
|
+
* Configuration specific to EIS SEPA Debit payment method. Includes creditor details and collection settings.
|
|
33
|
+
* @type {EisSepaDebitConfigResponseClass}
|
|
34
|
+
* @memberof PspConfigurationResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'eisSepaDebitConfig': EisSepaDebitConfigResponseClass;
|
|
37
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil PublicAPI
|
|
6
|
+
* The Emil Public 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 PublicAPI
|
|
5
|
+
* The Emil Public 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 PublicAPI
|
|
5
|
+
* The Emil Public 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
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 CompleteBankTransferPaymentSetupRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface CompleteBankTransferPaymentSetupRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {BillingAddressDto}
|
|
27
|
+
* @memberof CompleteBankTransferPaymentSetupRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'billingAddress'?: BillingAddressDto;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import { CompleteAdyenPaymentSetupRequestDto } from './complete-adyen-payment-setup-request-dto';
|
|
17
|
+
import { CompleteBankTransferPaymentSetupRequestDto } from './complete-bank-transfer-payment-setup-request-dto';
|
|
17
18
|
import { CompleteBraintreePaymentSetupRequestDto } from './complete-braintree-payment-setup-request-dto';
|
|
18
19
|
import { CompleteEisPaymentSetupRequestDto } from './complete-eis-payment-setup-request-dto';
|
|
19
20
|
import { CompleteStripePaymentSetupRequestDto } from './complete-stripe-payment-setup-request-dto';
|
|
@@ -54,5 +55,11 @@ export interface CompletePaymentSetupRequestDto {
|
|
|
54
55
|
* @memberof CompletePaymentSetupRequestDto
|
|
55
56
|
*/
|
|
56
57
|
'eis'?: CompleteEisPaymentSetupRequestDto;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {CompleteBankTransferPaymentSetupRequestDto}
|
|
61
|
+
* @memberof CompletePaymentSetupRequestDto
|
|
62
|
+
*/
|
|
63
|
+
'bankTransfer'?: CompleteBankTransferPaymentSetupRequestDto;
|
|
57
64
|
}
|
|
58
65
|
|
|
@@ -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,6 +35,18 @@ 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
|
|
|
38
52
|
export const CreatePaymentMethodRequestDtoTypeEnum = {
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 EisSepaDebitConfigResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface EisSepaDebitConfigResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* Name of the tenant.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof EisSepaDebitConfigResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'tenantName': string;
|
|
29
|
+
/**
|
|
30
|
+
* Creditor ID.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof EisSepaDebitConfigResponseClass
|
|
33
|
+
*/
|
|
34
|
+
'creditorId': string;
|
|
35
|
+
/**
|
|
36
|
+
* Number of days for collection.
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof EisSepaDebitConfigResponseClass
|
|
39
|
+
*/
|
|
40
|
+
'collectionDate': number;
|
|
41
|
+
/**
|
|
42
|
+
* Unique mandate reference.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof EisSepaDebitConfigResponseClass
|
|
45
|
+
*/
|
|
46
|
+
'mandateReference': string;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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,11 +1,14 @@
|
|
|
1
1
|
export * from './address-completion-item-class';
|
|
2
2
|
export * from './address-completion-response-class';
|
|
3
3
|
export * from './address-field-score-class';
|
|
4
|
+
export * from './bank-transfer-dto';
|
|
5
|
+
export * from './billing-address-dto';
|
|
4
6
|
export * from './booking-funnel-class';
|
|
5
7
|
export * from './calculate-product-fields-request-dto';
|
|
6
8
|
export * from './calculate-product-fields-response-class';
|
|
7
9
|
export * from './card-details-dto';
|
|
8
10
|
export * from './complete-adyen-payment-setup-request-dto';
|
|
11
|
+
export * from './complete-bank-transfer-payment-setup-request-dto';
|
|
9
12
|
export * from './complete-braintree-payment-setup-request-dto';
|
|
10
13
|
export * from './complete-eis-payment-setup-request-dto';
|
|
11
14
|
export * from './complete-email-verification-dto';
|
|
@@ -27,6 +30,8 @@ export * from './create-payment-method-request-dto';
|
|
|
27
30
|
export * from './create-presigned-post-request-dto';
|
|
28
31
|
export * from './create-presigned-post-response-class';
|
|
29
32
|
export * from './document-class';
|
|
33
|
+
export * from './eis-sepa-debit-config-response-class';
|
|
34
|
+
export * from './eis-sepa-debit-dto';
|
|
30
35
|
export * from './filter-named-range-response-class';
|
|
31
36
|
export * from './get-booking-funnel-response-class';
|
|
32
37
|
export * from './get-custom-css-response-class';
|
|
@@ -61,6 +66,8 @@ export * from './link-lead-partner-request-dto';
|
|
|
61
66
|
export * from './list-documents-response-class';
|
|
62
67
|
export * from './list-product-documents-response-class';
|
|
63
68
|
export * from './list-products-response-class';
|
|
69
|
+
export * from './mandate-dto';
|
|
70
|
+
export * from './mandate-hash-data-dto';
|
|
64
71
|
export * from './partner-class';
|
|
65
72
|
export * from './partner-link-class';
|
|
66
73
|
export * from './partner-role-class';
|
|
@@ -75,6 +82,7 @@ export * from './product-factor-for-version-class';
|
|
|
75
82
|
export * from './product-factor-value-for-version-class';
|
|
76
83
|
export * from './product-field-class';
|
|
77
84
|
export * from './product-version-class';
|
|
85
|
+
export * from './psp-configuration-response-class';
|
|
78
86
|
export * from './send-notification-request-dto';
|
|
79
87
|
export * from './send-notification-response-class';
|
|
80
88
|
export * from './sepa-direct-dto';
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { PspConfigurationResponseClass } from './psp-configuration-response-class';
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
*
|
|
@@ -26,5 +27,17 @@ export interface InitiateLeadResponseClass {
|
|
|
26
27
|
* @memberof InitiateLeadResponseClass
|
|
27
28
|
*/
|
|
28
29
|
'leadCode': string;
|
|
30
|
+
/**
|
|
31
|
+
* Name of payment system provider.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof InitiateLeadResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'psp': string;
|
|
36
|
+
/**
|
|
37
|
+
* Payment system provider configuration data required for frontend payment form initialization.
|
|
38
|
+
* @type {PspConfigurationResponseClass}
|
|
39
|
+
* @memberof InitiateLeadResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'data': PspConfigurationResponseClass;
|
|
29
42
|
}
|
|
30
43
|
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 PublicAPI
|
|
5
|
+
* The Emil Public 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
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public 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 { EisSepaDebitConfigResponseClass } from './eis-sepa-debit-config-response-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PspConfigurationResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface PspConfigurationResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Public key. Used on frontend to load the payment form component.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PspConfigurationResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'publicKey': string;
|
|
30
|
+
/**
|
|
31
|
+
* Mapping of payment method to payment system provider.
|
|
32
|
+
* @type {object}
|
|
33
|
+
* @memberof PspConfigurationResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'paymentMethodMapping': object;
|
|
36
|
+
/**
|
|
37
|
+
* Configuration specific to EIS SEPA Debit payment method. Includes creditor details and collection settings.
|
|
38
|
+
* @type {EisSepaDebitConfigResponseClass}
|
|
39
|
+
* @memberof PspConfigurationResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'eisSepaDebitConfig': EisSepaDebitConfigResponseClass;
|
|
42
|
+
}
|
|
43
|
+
|