@emilgroup/payment-sdk 1.15.0 → 1.15.1-beta.2
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 +14 -0
- package/README.md +2 -2
- package/api/billing-addresses-api.ts +677 -0
- package/api/payout-methods-api.ts +672 -0
- package/api/tenant-bank-account-api.ts +12 -12
- package/api.ts +4 -0
- package/dist/api/billing-addresses-api.d.ts +384 -0
- package/dist/api/billing-addresses-api.js +636 -0
- package/dist/api/payout-methods-api.d.ts +382 -0
- package/dist/api/payout-methods-api.js +635 -0
- package/dist/api/tenant-bank-account-api.d.ts +12 -12
- package/dist/api/tenant-bank-account-api.js +9 -9
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/bank-order-class.d.ts +3 -3
- package/dist/models/bank-order-entity.d.ts +3 -2
- package/dist/models/bank-order-entity.js +2 -1
- package/dist/models/billing-address-class.d.ts +108 -0
- package/dist/models/billing-address-class.js +15 -0
- package/dist/models/create-bank-order-request-dto.d.ts +4 -3
- package/dist/models/create-bank-order-request-dto.js +2 -1
- package/dist/models/create-billing-address-request-dto.d.ts +66 -0
- package/dist/models/create-billing-address-request-dto.js +15 -0
- package/dist/models/create-billing-address-response-class.d.ts +25 -0
- package/dist/models/create-billing-address-response-class.js +15 -0
- package/dist/models/create-payout-method-request-dto.d.ts +60 -0
- package/dist/models/create-payout-method-request-dto.js +15 -0
- package/dist/models/create-payout-method-response-class.d.ts +25 -0
- package/dist/models/create-payout-method-response-class.js +15 -0
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +17 -0
- package/dist/models/create-tenant-bank-account-request-dto.js +11 -1
- package/dist/models/get-billing-address-response-class.d.ts +25 -0
- package/dist/models/get-billing-address-response-class.js +15 -0
- package/dist/models/get-payout-method-response-class.d.ts +25 -0
- package/dist/models/get-payout-method-response-class.js +15 -0
- package/dist/models/index.d.ts +12 -0
- package/dist/models/index.js +12 -0
- package/dist/models/list-billing-addresses-response-class.d.ts +43 -0
- package/dist/models/list-billing-addresses-response-class.js +15 -0
- package/dist/models/list-payout-methods-response-class.d.ts +43 -0
- package/dist/models/list-payout-methods-response-class.js +15 -0
- package/dist/models/payout-method-class.d.ts +115 -0
- package/dist/models/payout-method-class.js +15 -0
- package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +17 -0
- package/dist/models/tenant-bank-account-class-without-expand-properties.js +11 -1
- package/dist/models/tenant-bank-account-class.d.ts +17 -0
- package/dist/models/tenant-bank-account-class.js +11 -1
- package/dist/models/tenant-bank-account-entity.d.ts +17 -0
- package/dist/models/tenant-bank-account-entity.js +11 -1
- package/dist/models/update-bank-order-request-dto.d.ts +3 -3
- package/dist/models/update-billing-address-request-dto.d.ts +66 -0
- package/dist/models/update-billing-address-request-dto.js +15 -0
- package/dist/models/update-billing-address-response-class.d.ts +25 -0
- package/dist/models/update-billing-address-response-class.js +15 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +17 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +11 -1
- package/models/bank-order-class.ts +3 -3
- package/models/bank-order-entity.ts +4 -3
- package/models/billing-address-class.ts +114 -0
- package/models/create-bank-order-request-dto.ts +5 -4
- package/models/create-billing-address-request-dto.ts +72 -0
- package/models/create-billing-address-response-class.ts +31 -0
- package/models/create-payout-method-request-dto.ts +66 -0
- package/models/create-payout-method-response-class.ts +31 -0
- package/models/create-tenant-bank-account-request-dto.ts +18 -0
- package/models/get-billing-address-response-class.ts +31 -0
- package/models/get-payout-method-response-class.ts +31 -0
- package/models/index.ts +12 -0
- package/models/list-billing-addresses-response-class.ts +49 -0
- package/models/list-payout-methods-response-class.ts +49 -0
- package/models/payout-method-class.ts +121 -0
- package/models/tenant-bank-account-class-without-expand-properties.ts +18 -0
- package/models/tenant-bank-account-class.ts +18 -0
- package/models/tenant-bank-account-entity.ts +18 -0
- package/models/update-bank-order-request-dto.ts +3 -3
- package/models/update-billing-address-request-dto.ts +72 -0
- package/models/update-billing-address-response-class.ts +31 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +18 -0
- package/package.json +2 -1
|
@@ -75,6 +75,12 @@ export interface CreateTenantBankAccountRequestDto {
|
|
|
75
75
|
* @memberof CreateTenantBankAccountRequestDto
|
|
76
76
|
*/
|
|
77
77
|
'sepaPainVersion': CreateTenantBankAccountRequestDtoSepaPainVersionEnum;
|
|
78
|
+
/**
|
|
79
|
+
* Payout Pain version
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateTenantBankAccountRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'payoutPainVersion': CreateTenantBankAccountRequestDtoPayoutPainVersionEnum;
|
|
78
84
|
}
|
|
79
85
|
export declare const CreateTenantBankAccountRequestDtoSepaPainVersionEnum: {
|
|
80
86
|
readonly _00302: "pain.008.003.02";
|
|
@@ -86,3 +92,14 @@ export declare const CreateTenantBankAccountRequestDtoSepaPainVersionEnum: {
|
|
|
86
92
|
readonly _00111: "pain.008.001.11";
|
|
87
93
|
};
|
|
88
94
|
export type CreateTenantBankAccountRequestDtoSepaPainVersionEnum = typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum];
|
|
95
|
+
export declare const CreateTenantBankAccountRequestDtoPayoutPainVersionEnum: {
|
|
96
|
+
readonly _00302: "pain.001.003.02";
|
|
97
|
+
readonly _00108: "pain.001.001.08";
|
|
98
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
99
|
+
readonly _00802: "pain.001.008.02";
|
|
100
|
+
readonly _00109: "pain.001.001.09";
|
|
101
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
102
|
+
readonly _00110: "pain.001.001.10";
|
|
103
|
+
readonly _00111: "pain.001.001.11";
|
|
104
|
+
};
|
|
105
|
+
export type CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = typeof CreateTenantBankAccountRequestDtoPayoutPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoPayoutPainVersionEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = void 0;
|
|
16
|
+
exports.CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = void 0;
|
|
17
17
|
exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
|
|
18
18
|
_00302: 'pain.008.003.02',
|
|
19
19
|
_00108: 'pain.008.001.08',
|
|
@@ -23,3 +23,13 @@ exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
|
|
|
23
23
|
_00110: 'pain.008.001.10',
|
|
24
24
|
_00111: 'pain.008.001.11'
|
|
25
25
|
};
|
|
26
|
+
exports.CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = {
|
|
27
|
+
_00302: 'pain.001.003.02',
|
|
28
|
+
_00108: 'pain.001.001.08',
|
|
29
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
30
|
+
_00802: 'pain.001.008.02',
|
|
31
|
+
_00109: 'pain.001.001.09',
|
|
32
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
33
|
+
_00110: 'pain.001.001.10',
|
|
34
|
+
_00111: 'pain.001.001.11'
|
|
35
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { BillingAddressClass } from './billing-address-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetBillingAddressResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetBillingAddressResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The billing address
|
|
21
|
+
* @type {BillingAddressClass}
|
|
22
|
+
* @memberof GetBillingAddressResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'billingAddress': BillingAddressClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { PayoutMethodClass } from './payout-method-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetPayoutMethodResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetPayoutMethodResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The payout method
|
|
21
|
+
* @type {PayoutMethodClass}
|
|
22
|
+
* @memberof GetPayoutMethodResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'payoutMethod': PayoutMethodClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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
|
@@ -11,6 +11,7 @@ export * from './bank-transaction-entity';
|
|
|
11
11
|
export * from './bank-transaction-invoice-class';
|
|
12
12
|
export * from './bank-transaction-invoice-entity';
|
|
13
13
|
export * from './bank-transfer-dto';
|
|
14
|
+
export * from './billing-address-class';
|
|
14
15
|
export * from './billing-address-dto';
|
|
15
16
|
export * from './billing-profile-dto';
|
|
16
17
|
export * from './billing-profile-limited-response-dto';
|
|
@@ -25,6 +26,8 @@ export * from './create-bank-account-request-dto';
|
|
|
25
26
|
export * from './create-bank-account-response-class';
|
|
26
27
|
export * from './create-bank-order-request-dto';
|
|
27
28
|
export * from './create-bank-order-response-class';
|
|
29
|
+
export * from './create-billing-address-request-dto';
|
|
30
|
+
export * from './create-billing-address-response-class';
|
|
28
31
|
export * from './create-credit-allocation-request-dto';
|
|
29
32
|
export * from './create-credit-allocation-response-class';
|
|
30
33
|
export * from './create-payment-method-response-class';
|
|
@@ -34,6 +37,8 @@ export * from './create-payment-reminder-request-dto';
|
|
|
34
37
|
export * from './create-payment-reminder-response-class';
|
|
35
38
|
export * from './create-payment-request-dto';
|
|
36
39
|
export * from './create-payment-response-class';
|
|
40
|
+
export * from './create-payout-method-request-dto';
|
|
41
|
+
export * from './create-payout-method-response-class';
|
|
37
42
|
export * from './create-policy-payment-method-request-dto';
|
|
38
43
|
export * from './create-policy-payment-method-response-class';
|
|
39
44
|
export * from './create-psp-payment-method-request-dto';
|
|
@@ -53,11 +58,13 @@ export * from './generate-invoice-match-suggestions-response-class';
|
|
|
53
58
|
export * from './get-bank-account-response-class';
|
|
54
59
|
export * from './get-bank-order-response-class';
|
|
55
60
|
export * from './get-bank-transactions-response-class';
|
|
61
|
+
export * from './get-billing-address-response-class';
|
|
56
62
|
export * from './get-credit-allocation-response-class';
|
|
57
63
|
export * from './get-exceeding-credit-response-class';
|
|
58
64
|
export * from './get-payment-method-response-class';
|
|
59
65
|
export * from './get-payment-reminder-response-class';
|
|
60
66
|
export * from './get-payment-response-class';
|
|
67
|
+
export * from './get-payout-method-response-class';
|
|
61
68
|
export * from './get-refund-response-class';
|
|
62
69
|
export * from './get-tenant-bank-account-response-class';
|
|
63
70
|
export * from './import-bank-transactions-response-class';
|
|
@@ -80,11 +87,13 @@ export * from './link-bank-transactions-response-class';
|
|
|
80
87
|
export * from './list-bank-accounts-response-class';
|
|
81
88
|
export * from './list-bank-orders-response-class';
|
|
82
89
|
export * from './list-bank-transactions-response-class';
|
|
90
|
+
export * from './list-billing-addresses-response-class';
|
|
83
91
|
export * from './list-credit-allocations-response-class';
|
|
84
92
|
export * from './list-exceeding-credits-response-class';
|
|
85
93
|
export * from './list-payment-methods-response-class';
|
|
86
94
|
export * from './list-payment-reminders-response-class';
|
|
87
95
|
export * from './list-payments-response-class';
|
|
96
|
+
export * from './list-payout-methods-response-class';
|
|
88
97
|
export * from './list-policy-payment-methods-response-class';
|
|
89
98
|
export * from './list-refunds-response-class';
|
|
90
99
|
export * from './list-tenant-bank-account-response-class';
|
|
@@ -96,6 +105,7 @@ export * from './payment-class-without-expand-properties';
|
|
|
96
105
|
export * from './payment-entity';
|
|
97
106
|
export * from './payment-method-class';
|
|
98
107
|
export * from './payment-reminder-class';
|
|
108
|
+
export * from './payout-method-class';
|
|
99
109
|
export * from './policy-payment-method-class';
|
|
100
110
|
export * from './primary-bank-account-response-class';
|
|
101
111
|
export * from './refund-class';
|
|
@@ -117,6 +127,8 @@ export * from './update-bank-account-request-dto-rest';
|
|
|
117
127
|
export * from './update-bank-account-response-class';
|
|
118
128
|
export * from './update-bank-order-request-dto';
|
|
119
129
|
export * from './update-bank-order-response-class';
|
|
130
|
+
export * from './update-billing-address-request-dto';
|
|
131
|
+
export * from './update-billing-address-response-class';
|
|
120
132
|
export * from './update-tenant-bank-account-response-class';
|
|
121
133
|
export * from './update-tenant-bank-account-rest-request-dto';
|
|
122
134
|
export * from './validate-pspconfig-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -27,6 +27,7 @@ __exportStar(require("./bank-transaction-entity"), exports);
|
|
|
27
27
|
__exportStar(require("./bank-transaction-invoice-class"), exports);
|
|
28
28
|
__exportStar(require("./bank-transaction-invoice-entity"), exports);
|
|
29
29
|
__exportStar(require("./bank-transfer-dto"), exports);
|
|
30
|
+
__exportStar(require("./billing-address-class"), exports);
|
|
30
31
|
__exportStar(require("./billing-address-dto"), exports);
|
|
31
32
|
__exportStar(require("./billing-profile-dto"), exports);
|
|
32
33
|
__exportStar(require("./billing-profile-limited-response-dto"), exports);
|
|
@@ -41,6 +42,8 @@ __exportStar(require("./create-bank-account-request-dto"), exports);
|
|
|
41
42
|
__exportStar(require("./create-bank-account-response-class"), exports);
|
|
42
43
|
__exportStar(require("./create-bank-order-request-dto"), exports);
|
|
43
44
|
__exportStar(require("./create-bank-order-response-class"), exports);
|
|
45
|
+
__exportStar(require("./create-billing-address-request-dto"), exports);
|
|
46
|
+
__exportStar(require("./create-billing-address-response-class"), exports);
|
|
44
47
|
__exportStar(require("./create-credit-allocation-request-dto"), exports);
|
|
45
48
|
__exportStar(require("./create-credit-allocation-response-class"), exports);
|
|
46
49
|
__exportStar(require("./create-payment-method-response-class"), exports);
|
|
@@ -50,6 +53,8 @@ __exportStar(require("./create-payment-reminder-request-dto"), exports);
|
|
|
50
53
|
__exportStar(require("./create-payment-reminder-response-class"), exports);
|
|
51
54
|
__exportStar(require("./create-payment-request-dto"), exports);
|
|
52
55
|
__exportStar(require("./create-payment-response-class"), exports);
|
|
56
|
+
__exportStar(require("./create-payout-method-request-dto"), exports);
|
|
57
|
+
__exportStar(require("./create-payout-method-response-class"), exports);
|
|
53
58
|
__exportStar(require("./create-policy-payment-method-request-dto"), exports);
|
|
54
59
|
__exportStar(require("./create-policy-payment-method-response-class"), exports);
|
|
55
60
|
__exportStar(require("./create-psp-payment-method-request-dto"), exports);
|
|
@@ -69,11 +74,13 @@ __exportStar(require("./generate-invoice-match-suggestions-response-class"), exp
|
|
|
69
74
|
__exportStar(require("./get-bank-account-response-class"), exports);
|
|
70
75
|
__exportStar(require("./get-bank-order-response-class"), exports);
|
|
71
76
|
__exportStar(require("./get-bank-transactions-response-class"), exports);
|
|
77
|
+
__exportStar(require("./get-billing-address-response-class"), exports);
|
|
72
78
|
__exportStar(require("./get-credit-allocation-response-class"), exports);
|
|
73
79
|
__exportStar(require("./get-exceeding-credit-response-class"), exports);
|
|
74
80
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
75
81
|
__exportStar(require("./get-payment-reminder-response-class"), exports);
|
|
76
82
|
__exportStar(require("./get-payment-response-class"), exports);
|
|
83
|
+
__exportStar(require("./get-payout-method-response-class"), exports);
|
|
77
84
|
__exportStar(require("./get-refund-response-class"), exports);
|
|
78
85
|
__exportStar(require("./get-tenant-bank-account-response-class"), exports);
|
|
79
86
|
__exportStar(require("./import-bank-transactions-response-class"), exports);
|
|
@@ -96,11 +103,13 @@ __exportStar(require("./link-bank-transactions-response-class"), exports);
|
|
|
96
103
|
__exportStar(require("./list-bank-accounts-response-class"), exports);
|
|
97
104
|
__exportStar(require("./list-bank-orders-response-class"), exports);
|
|
98
105
|
__exportStar(require("./list-bank-transactions-response-class"), exports);
|
|
106
|
+
__exportStar(require("./list-billing-addresses-response-class"), exports);
|
|
99
107
|
__exportStar(require("./list-credit-allocations-response-class"), exports);
|
|
100
108
|
__exportStar(require("./list-exceeding-credits-response-class"), exports);
|
|
101
109
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
102
110
|
__exportStar(require("./list-payment-reminders-response-class"), exports);
|
|
103
111
|
__exportStar(require("./list-payments-response-class"), exports);
|
|
112
|
+
__exportStar(require("./list-payout-methods-response-class"), exports);
|
|
104
113
|
__exportStar(require("./list-policy-payment-methods-response-class"), exports);
|
|
105
114
|
__exportStar(require("./list-refunds-response-class"), exports);
|
|
106
115
|
__exportStar(require("./list-tenant-bank-account-response-class"), exports);
|
|
@@ -112,6 +121,7 @@ __exportStar(require("./payment-class-without-expand-properties"), exports);
|
|
|
112
121
|
__exportStar(require("./payment-entity"), exports);
|
|
113
122
|
__exportStar(require("./payment-method-class"), exports);
|
|
114
123
|
__exportStar(require("./payment-reminder-class"), exports);
|
|
124
|
+
__exportStar(require("./payout-method-class"), exports);
|
|
115
125
|
__exportStar(require("./policy-payment-method-class"), exports);
|
|
116
126
|
__exportStar(require("./primary-bank-account-response-class"), exports);
|
|
117
127
|
__exportStar(require("./refund-class"), exports);
|
|
@@ -133,6 +143,8 @@ __exportStar(require("./update-bank-account-request-dto-rest"), exports);
|
|
|
133
143
|
__exportStar(require("./update-bank-account-response-class"), exports);
|
|
134
144
|
__exportStar(require("./update-bank-order-request-dto"), exports);
|
|
135
145
|
__exportStar(require("./update-bank-order-response-class"), exports);
|
|
146
|
+
__exportStar(require("./update-billing-address-request-dto"), exports);
|
|
147
|
+
__exportStar(require("./update-billing-address-response-class"), exports);
|
|
136
148
|
__exportStar(require("./update-tenant-bank-account-response-class"), exports);
|
|
137
149
|
__exportStar(require("./update-tenant-bank-account-rest-request-dto"), exports);
|
|
138
150
|
__exportStar(require("./validate-pspconfig-request-dto"), exports);
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { BillingAddressClass } from './billing-address-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListBillingAddressesResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListBillingAddressesResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The billing addresses
|
|
21
|
+
* @type {Array<BillingAddressClass>}
|
|
22
|
+
* @memberof ListBillingAddressesResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<BillingAddressClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListBillingAddressesResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListBillingAddressesResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total amount of items.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListBillingAddressesResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'totalItems': number;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { PayoutMethodClass } from './payout-method-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListPayoutMethodsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListPayoutMethodsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The payout methods
|
|
21
|
+
* @type {Array<PayoutMethodClass>}
|
|
22
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<PayoutMethodClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
/**
|
|
32
|
+
* Items per page.
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
35
|
+
*/
|
|
36
|
+
'itemsPerPage': number;
|
|
37
|
+
/**
|
|
38
|
+
* Total amount of items.
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
41
|
+
*/
|
|
42
|
+
'totalItems': number;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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,115 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 { BillingAddressClass } from './billing-address-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface PayoutMethodClass
|
|
17
|
+
*/
|
|
18
|
+
export interface PayoutMethodClass {
|
|
19
|
+
/**
|
|
20
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof PayoutMethodClass
|
|
23
|
+
*/
|
|
24
|
+
'id': number;
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier for the object.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof PayoutMethodClass
|
|
29
|
+
*/
|
|
30
|
+
'code': string;
|
|
31
|
+
/**
|
|
32
|
+
* First name
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof PayoutMethodClass
|
|
35
|
+
*/
|
|
36
|
+
'firstName': string;
|
|
37
|
+
/**
|
|
38
|
+
* Last name
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof PayoutMethodClass
|
|
41
|
+
*/
|
|
42
|
+
'lastName': string;
|
|
43
|
+
/**
|
|
44
|
+
* IBAN
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof PayoutMethodClass
|
|
47
|
+
*/
|
|
48
|
+
'iban': string;
|
|
49
|
+
/**
|
|
50
|
+
* BIC
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof PayoutMethodClass
|
|
53
|
+
*/
|
|
54
|
+
'bic': string;
|
|
55
|
+
/**
|
|
56
|
+
* Bank name
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof PayoutMethodClass
|
|
59
|
+
*/
|
|
60
|
+
'bankName': string;
|
|
61
|
+
/**
|
|
62
|
+
* Whether the payout method is active
|
|
63
|
+
* @type {boolean}
|
|
64
|
+
* @memberof PayoutMethodClass
|
|
65
|
+
*/
|
|
66
|
+
'isActive': boolean;
|
|
67
|
+
/**
|
|
68
|
+
* Billing address code
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof PayoutMethodClass
|
|
71
|
+
*/
|
|
72
|
+
'billingAddressCode': string;
|
|
73
|
+
/**
|
|
74
|
+
* Unique identifier of the account that this object belongs to.
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof PayoutMethodClass
|
|
77
|
+
*/
|
|
78
|
+
'accountCode': string;
|
|
79
|
+
/**
|
|
80
|
+
* Unique identifier of the partner that this object belongs to.
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof PayoutMethodClass
|
|
83
|
+
*/
|
|
84
|
+
'partnerCode': string;
|
|
85
|
+
/**
|
|
86
|
+
* Billing address
|
|
87
|
+
* @type {BillingAddressClass}
|
|
88
|
+
* @memberof PayoutMethodClass
|
|
89
|
+
*/
|
|
90
|
+
'billingAddress'?: BillingAddressClass;
|
|
91
|
+
/**
|
|
92
|
+
* Time at which the object was created.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof PayoutMethodClass
|
|
95
|
+
*/
|
|
96
|
+
'createdAt': string;
|
|
97
|
+
/**
|
|
98
|
+
* Time at which the object was updated.
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof PayoutMethodClass
|
|
101
|
+
*/
|
|
102
|
+
'updatedAt': string;
|
|
103
|
+
/**
|
|
104
|
+
* Identifier of the user who created the record.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof PayoutMethodClass
|
|
107
|
+
*/
|
|
108
|
+
'createdBy': string;
|
|
109
|
+
/**
|
|
110
|
+
* Identifier of the user who last updated the record.
|
|
111
|
+
* @type {string}
|
|
112
|
+
* @memberof PayoutMethodClass
|
|
113
|
+
*/
|
|
114
|
+
'updatedBy': string;
|
|
115
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Emil Payment Service
|
|
6
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
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 });
|
|
@@ -111,6 +111,12 @@ export interface TenantBankAccountClassWithoutExpandProperties {
|
|
|
111
111
|
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
112
112
|
*/
|
|
113
113
|
'sepaPainVersion': TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum;
|
|
114
|
+
/**
|
|
115
|
+
* Payout Pain version
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
118
|
+
*/
|
|
119
|
+
'payoutPainVersion': TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum;
|
|
114
120
|
}
|
|
115
121
|
export declare const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum: {
|
|
116
122
|
readonly _00302: "pain.008.003.02";
|
|
@@ -122,3 +128,14 @@ export declare const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersio
|
|
|
122
128
|
readonly _00111: "pain.008.001.11";
|
|
123
129
|
};
|
|
124
130
|
export type TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum];
|
|
131
|
+
export declare const TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum: {
|
|
132
|
+
readonly _00302: "pain.001.003.02";
|
|
133
|
+
readonly _00108: "pain.001.001.08";
|
|
134
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
135
|
+
readonly _00802: "pain.001.008.02";
|
|
136
|
+
readonly _00109: "pain.001.001.09";
|
|
137
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
138
|
+
readonly _00110: "pain.001.001.10";
|
|
139
|
+
readonly _00111: "pain.001.001.11";
|
|
140
|
+
};
|
|
141
|
+
export type TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = void 0;
|
|
16
|
+
exports.TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = void 0;
|
|
17
17
|
exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
|
|
18
18
|
_00302: 'pain.008.003.02',
|
|
19
19
|
_00108: 'pain.008.001.08',
|
|
@@ -23,3 +23,13 @@ exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
|
|
|
23
23
|
_00110: 'pain.008.001.10',
|
|
24
24
|
_00111: 'pain.008.001.11'
|
|
25
25
|
};
|
|
26
|
+
exports.TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = {
|
|
27
|
+
_00302: 'pain.001.003.02',
|
|
28
|
+
_00108: 'pain.001.001.08',
|
|
29
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
30
|
+
_00802: 'pain.001.008.02',
|
|
31
|
+
_00109: 'pain.001.001.09',
|
|
32
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
33
|
+
_00110: 'pain.001.001.10',
|
|
34
|
+
_00111: 'pain.001.001.11'
|
|
35
|
+
};
|
|
@@ -118,6 +118,12 @@ export interface TenantBankAccountClass {
|
|
|
118
118
|
* @memberof TenantBankAccountClass
|
|
119
119
|
*/
|
|
120
120
|
'sepaPainVersion': TenantBankAccountClassSepaPainVersionEnum;
|
|
121
|
+
/**
|
|
122
|
+
* Payout Pain version
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @memberof TenantBankAccountClass
|
|
125
|
+
*/
|
|
126
|
+
'payoutPainVersion': TenantBankAccountClassPayoutPainVersionEnum;
|
|
121
127
|
}
|
|
122
128
|
export declare const TenantBankAccountClassSepaPainVersionEnum: {
|
|
123
129
|
readonly _00302: "pain.008.003.02";
|
|
@@ -129,3 +135,14 @@ export declare const TenantBankAccountClassSepaPainVersionEnum: {
|
|
|
129
135
|
readonly _00111: "pain.008.001.11";
|
|
130
136
|
};
|
|
131
137
|
export type TenantBankAccountClassSepaPainVersionEnum = typeof TenantBankAccountClassSepaPainVersionEnum[keyof typeof TenantBankAccountClassSepaPainVersionEnum];
|
|
138
|
+
export declare const TenantBankAccountClassPayoutPainVersionEnum: {
|
|
139
|
+
readonly _00302: "pain.001.003.02";
|
|
140
|
+
readonly _00108: "pain.001.001.08";
|
|
141
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
142
|
+
readonly _00802: "pain.001.008.02";
|
|
143
|
+
readonly _00109: "pain.001.001.09";
|
|
144
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
145
|
+
readonly _00110: "pain.001.001.10";
|
|
146
|
+
readonly _00111: "pain.001.001.11";
|
|
147
|
+
};
|
|
148
|
+
export type TenantBankAccountClassPayoutPainVersionEnum = typeof TenantBankAccountClassPayoutPainVersionEnum[keyof typeof TenantBankAccountClassPayoutPainVersionEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.TenantBankAccountClassSepaPainVersionEnum = void 0;
|
|
16
|
+
exports.TenantBankAccountClassPayoutPainVersionEnum = exports.TenantBankAccountClassSepaPainVersionEnum = void 0;
|
|
17
17
|
exports.TenantBankAccountClassSepaPainVersionEnum = {
|
|
18
18
|
_00302: 'pain.008.003.02',
|
|
19
19
|
_00108: 'pain.008.001.08',
|
|
@@ -23,3 +23,13 @@ exports.TenantBankAccountClassSepaPainVersionEnum = {
|
|
|
23
23
|
_00110: 'pain.008.001.10',
|
|
24
24
|
_00111: 'pain.008.001.11'
|
|
25
25
|
};
|
|
26
|
+
exports.TenantBankAccountClassPayoutPainVersionEnum = {
|
|
27
|
+
_00302: 'pain.001.003.02',
|
|
28
|
+
_00108: 'pain.001.001.08',
|
|
29
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
30
|
+
_00802: 'pain.001.008.02',
|
|
31
|
+
_00109: 'pain.001.001.09',
|
|
32
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
33
|
+
_00110: 'pain.001.001.10',
|
|
34
|
+
_00111: 'pain.001.001.11'
|
|
35
|
+
};
|
|
@@ -100,6 +100,12 @@ export interface TenantBankAccountEntity {
|
|
|
100
100
|
* @memberof TenantBankAccountEntity
|
|
101
101
|
*/
|
|
102
102
|
'sepaPainVersion'?: TenantBankAccountEntitySepaPainVersionEnum;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof TenantBankAccountEntity
|
|
107
|
+
*/
|
|
108
|
+
'payoutPainVersion'?: TenantBankAccountEntityPayoutPainVersionEnum;
|
|
103
109
|
/**
|
|
104
110
|
*
|
|
105
111
|
* @type {string}
|
|
@@ -141,3 +147,14 @@ export declare const TenantBankAccountEntitySepaPainVersionEnum: {
|
|
|
141
147
|
readonly _00111: "pain.008.001.11";
|
|
142
148
|
};
|
|
143
149
|
export type TenantBankAccountEntitySepaPainVersionEnum = typeof TenantBankAccountEntitySepaPainVersionEnum[keyof typeof TenantBankAccountEntitySepaPainVersionEnum];
|
|
150
|
+
export declare const TenantBankAccountEntityPayoutPainVersionEnum: {
|
|
151
|
+
readonly _00302: "pain.001.003.02";
|
|
152
|
+
readonly _00108: "pain.001.001.08";
|
|
153
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
154
|
+
readonly _00802: "pain.001.008.02";
|
|
155
|
+
readonly _00109: "pain.001.001.09";
|
|
156
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
157
|
+
readonly _00110: "pain.001.001.10";
|
|
158
|
+
readonly _00111: "pain.001.001.11";
|
|
159
|
+
};
|
|
160
|
+
export type TenantBankAccountEntityPayoutPainVersionEnum = typeof TenantBankAccountEntityPayoutPainVersionEnum[keyof typeof TenantBankAccountEntityPayoutPainVersionEnum];
|