@emilgroup/payment-sdk 1.14.1-beta.57 → 1.14.1-beta.59
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 +6 -0
- package/README.md +2 -2
- package/api/payout-methods-api.ts +672 -0
- package/api.ts +2 -0
- package/dist/api/payout-methods-api.d.ts +382 -0
- package/dist/api/payout-methods-api.js +635 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/create-billing-address-request-dto.d.ts +1 -7
- 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/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 +5 -0
- package/dist/models/index.js +5 -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/update-billing-address-request-dto.d.ts +1 -7
- package/models/create-billing-address-request-dto.ts +1 -7
- package/models/create-payout-method-request-dto.ts +66 -0
- package/models/create-payout-method-response-class.ts +31 -0
- package/models/get-payout-method-response-class.ts +31 -0
- package/models/index.ts +5 -0
- package/models/list-payout-methods-response-class.ts +49 -0
- package/models/payout-method-class.ts +121 -0
- package/models/update-billing-address-request-dto.ts +1 -7
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -38,6 +38,7 @@ __exportStar(require("./api/payment-methods-api"), exports);
|
|
|
38
38
|
__exportStar(require("./api/payment-reminders-api"), exports);
|
|
39
39
|
__exportStar(require("./api/payment-setup-api"), exports);
|
|
40
40
|
__exportStar(require("./api/payments-api"), exports);
|
|
41
|
+
__exportStar(require("./api/payout-methods-api"), exports);
|
|
41
42
|
__exportStar(require("./api/policy-payment-methods-api"), exports);
|
|
42
43
|
__exportStar(require("./api/refunds-api"), exports);
|
|
43
44
|
__exportStar(require("./api/tenant-bank-account-api"), exports);
|
|
@@ -57,16 +57,10 @@ export interface CreateBillingAddressRequestDto {
|
|
|
57
57
|
* @memberof CreateBillingAddressRequestDto
|
|
58
58
|
*/
|
|
59
59
|
'countryCode'?: string;
|
|
60
|
-
/**
|
|
61
|
-
* Unique identifier of the account that this object belongs to.
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof CreateBillingAddressRequestDto
|
|
64
|
-
*/
|
|
65
|
-
'accountCode'?: string;
|
|
66
60
|
/**
|
|
67
61
|
* Unique identifier of the partner that this object belongs to.
|
|
68
62
|
* @type {string}
|
|
69
63
|
* @memberof CreateBillingAddressRequestDto
|
|
70
64
|
*/
|
|
71
|
-
'partnerCode'
|
|
65
|
+
'partnerCode': string;
|
|
72
66
|
}
|
|
@@ -0,0 +1,60 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreatePayoutMethodRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreatePayoutMethodRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier of the partner that this object belongs to.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'partnerCode': string;
|
|
24
|
+
/**
|
|
25
|
+
* First name
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'firstName': string;
|
|
30
|
+
/**
|
|
31
|
+
* Last name
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'lastName': string;
|
|
36
|
+
/**
|
|
37
|
+
* IBAN
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'iban': string;
|
|
42
|
+
/**
|
|
43
|
+
* BIC
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'bic': string;
|
|
48
|
+
/**
|
|
49
|
+
* Bank name
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'bankName': string;
|
|
54
|
+
/**
|
|
55
|
+
* Billing address code
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'billingAddressCode': string;
|
|
60
|
+
}
|
|
@@ -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 CreatePayoutMethodResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreatePayoutMethodResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The created payout method
|
|
21
|
+
* @type {PayoutMethodClass}
|
|
22
|
+
* @memberof CreatePayoutMethodResponseClass
|
|
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 });
|
|
@@ -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
|
@@ -33,6 +33,8 @@ export * from './create-payment-reminder-request-dto';
|
|
|
33
33
|
export * from './create-payment-reminder-response-class';
|
|
34
34
|
export * from './create-payment-request-dto';
|
|
35
35
|
export * from './create-payment-response-class';
|
|
36
|
+
export * from './create-payout-method-request-dto';
|
|
37
|
+
export * from './create-payout-method-response-class';
|
|
36
38
|
export * from './create-policy-payment-method-request-dto';
|
|
37
39
|
export * from './create-policy-payment-method-response-class';
|
|
38
40
|
export * from './create-psp-payment-method-request-dto';
|
|
@@ -57,6 +59,7 @@ export * from './get-exceeding-credit-response-class';
|
|
|
57
59
|
export * from './get-payment-method-response-class';
|
|
58
60
|
export * from './get-payment-reminder-response-class';
|
|
59
61
|
export * from './get-payment-response-class';
|
|
62
|
+
export * from './get-payout-method-response-class';
|
|
60
63
|
export * from './get-refund-response-class';
|
|
61
64
|
export * from './get-tenant-bank-account-response-class';
|
|
62
65
|
export * from './import-bank-transactions-response-class';
|
|
@@ -84,6 +87,7 @@ export * from './list-exceeding-credits-response-class';
|
|
|
84
87
|
export * from './list-payment-methods-response-class';
|
|
85
88
|
export * from './list-payment-reminders-response-class';
|
|
86
89
|
export * from './list-payments-response-class';
|
|
90
|
+
export * from './list-payout-methods-response-class';
|
|
87
91
|
export * from './list-policy-payment-methods-response-class';
|
|
88
92
|
export * from './list-refunds-response-class';
|
|
89
93
|
export * from './list-tenant-bank-account-response-class';
|
|
@@ -94,6 +98,7 @@ export * from './payment-class';
|
|
|
94
98
|
export * from './payment-class-without-expand-properties';
|
|
95
99
|
export * from './payment-method-class';
|
|
96
100
|
export * from './payment-reminder-class';
|
|
101
|
+
export * from './payout-method-class';
|
|
97
102
|
export * from './policy-payment-method-class';
|
|
98
103
|
export * from './primary-bank-account-response-class';
|
|
99
104
|
export * from './refund-class';
|
package/dist/models/index.js
CHANGED
|
@@ -49,6 +49,8 @@ __exportStar(require("./create-payment-reminder-request-dto"), exports);
|
|
|
49
49
|
__exportStar(require("./create-payment-reminder-response-class"), exports);
|
|
50
50
|
__exportStar(require("./create-payment-request-dto"), exports);
|
|
51
51
|
__exportStar(require("./create-payment-response-class"), exports);
|
|
52
|
+
__exportStar(require("./create-payout-method-request-dto"), exports);
|
|
53
|
+
__exportStar(require("./create-payout-method-response-class"), exports);
|
|
52
54
|
__exportStar(require("./create-policy-payment-method-request-dto"), exports);
|
|
53
55
|
__exportStar(require("./create-policy-payment-method-response-class"), exports);
|
|
54
56
|
__exportStar(require("./create-psp-payment-method-request-dto"), exports);
|
|
@@ -73,6 +75,7 @@ __exportStar(require("./get-exceeding-credit-response-class"), exports);
|
|
|
73
75
|
__exportStar(require("./get-payment-method-response-class"), exports);
|
|
74
76
|
__exportStar(require("./get-payment-reminder-response-class"), exports);
|
|
75
77
|
__exportStar(require("./get-payment-response-class"), exports);
|
|
78
|
+
__exportStar(require("./get-payout-method-response-class"), exports);
|
|
76
79
|
__exportStar(require("./get-refund-response-class"), exports);
|
|
77
80
|
__exportStar(require("./get-tenant-bank-account-response-class"), exports);
|
|
78
81
|
__exportStar(require("./import-bank-transactions-response-class"), exports);
|
|
@@ -100,6 +103,7 @@ __exportStar(require("./list-exceeding-credits-response-class"), exports);
|
|
|
100
103
|
__exportStar(require("./list-payment-methods-response-class"), exports);
|
|
101
104
|
__exportStar(require("./list-payment-reminders-response-class"), exports);
|
|
102
105
|
__exportStar(require("./list-payments-response-class"), exports);
|
|
106
|
+
__exportStar(require("./list-payout-methods-response-class"), exports);
|
|
103
107
|
__exportStar(require("./list-policy-payment-methods-response-class"), exports);
|
|
104
108
|
__exportStar(require("./list-refunds-response-class"), exports);
|
|
105
109
|
__exportStar(require("./list-tenant-bank-account-response-class"), exports);
|
|
@@ -110,6 +114,7 @@ __exportStar(require("./payment-class"), exports);
|
|
|
110
114
|
__exportStar(require("./payment-class-without-expand-properties"), exports);
|
|
111
115
|
__exportStar(require("./payment-method-class"), exports);
|
|
112
116
|
__exportStar(require("./payment-reminder-class"), exports);
|
|
117
|
+
__exportStar(require("./payout-method-class"), exports);
|
|
113
118
|
__exportStar(require("./policy-payment-method-class"), exports);
|
|
114
119
|
__exportStar(require("./primary-bank-account-response-class"), exports);
|
|
115
120
|
__exportStar(require("./refund-class"), 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 { 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 ID
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof PayoutMethodClass
|
|
71
|
+
*/
|
|
72
|
+
'billingAddressId': number;
|
|
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 });
|
|
@@ -57,16 +57,10 @@ export interface UpdateBillingAddressRequestDto {
|
|
|
57
57
|
* @memberof UpdateBillingAddressRequestDto
|
|
58
58
|
*/
|
|
59
59
|
'countryCode'?: string;
|
|
60
|
-
/**
|
|
61
|
-
* Unique identifier of the account that this object belongs to.
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof UpdateBillingAddressRequestDto
|
|
64
|
-
*/
|
|
65
|
-
'accountCode'?: string;
|
|
66
60
|
/**
|
|
67
61
|
* Unique identifier of the partner that this object belongs to.
|
|
68
62
|
* @type {string}
|
|
69
63
|
* @memberof UpdateBillingAddressRequestDto
|
|
70
64
|
*/
|
|
71
|
-
'partnerCode'
|
|
65
|
+
'partnerCode': string;
|
|
72
66
|
}
|
|
@@ -62,17 +62,11 @@ export interface CreateBillingAddressRequestDto {
|
|
|
62
62
|
* @memberof CreateBillingAddressRequestDto
|
|
63
63
|
*/
|
|
64
64
|
'countryCode'?: string;
|
|
65
|
-
/**
|
|
66
|
-
* Unique identifier of the account that this object belongs to.
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof CreateBillingAddressRequestDto
|
|
69
|
-
*/
|
|
70
|
-
'accountCode'?: string;
|
|
71
65
|
/**
|
|
72
66
|
* Unique identifier of the partner that this object belongs to.
|
|
73
67
|
* @type {string}
|
|
74
68
|
* @memberof CreateBillingAddressRequestDto
|
|
75
69
|
*/
|
|
76
|
-
'partnerCode'
|
|
70
|
+
'partnerCode': string;
|
|
77
71
|
}
|
|
78
72
|
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* 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.
|
|
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 CreatePayoutMethodRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreatePayoutMethodRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier of the partner that this object belongs to.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'partnerCode': string;
|
|
29
|
+
/**
|
|
30
|
+
* First name
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'firstName': string;
|
|
35
|
+
/**
|
|
36
|
+
* Last name
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'lastName': string;
|
|
41
|
+
/**
|
|
42
|
+
* IBAN
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'iban': string;
|
|
47
|
+
/**
|
|
48
|
+
* BIC
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'bic': string;
|
|
53
|
+
/**
|
|
54
|
+
* Bank name
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'bankName': string;
|
|
59
|
+
/**
|
|
60
|
+
* Billing address code
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreatePayoutMethodRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'billingAddressCode': string;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* 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.
|
|
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 { PayoutMethodClass } from './payout-method-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreatePayoutMethodResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreatePayoutMethodResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The created payout method
|
|
26
|
+
* @type {PayoutMethodClass}
|
|
27
|
+
* @memberof CreatePayoutMethodResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'payoutMethod': PayoutMethodClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil Payment Service
|
|
5
|
+
* 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.
|
|
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 { PayoutMethodClass } from './payout-method-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetPayoutMethodResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetPayoutMethodResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The payout method
|
|
26
|
+
* @type {PayoutMethodClass}
|
|
27
|
+
* @memberof GetPayoutMethodResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'payoutMethod': PayoutMethodClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -33,6 +33,8 @@ export * from './create-payment-reminder-request-dto';
|
|
|
33
33
|
export * from './create-payment-reminder-response-class';
|
|
34
34
|
export * from './create-payment-request-dto';
|
|
35
35
|
export * from './create-payment-response-class';
|
|
36
|
+
export * from './create-payout-method-request-dto';
|
|
37
|
+
export * from './create-payout-method-response-class';
|
|
36
38
|
export * from './create-policy-payment-method-request-dto';
|
|
37
39
|
export * from './create-policy-payment-method-response-class';
|
|
38
40
|
export * from './create-psp-payment-method-request-dto';
|
|
@@ -57,6 +59,7 @@ export * from './get-exceeding-credit-response-class';
|
|
|
57
59
|
export * from './get-payment-method-response-class';
|
|
58
60
|
export * from './get-payment-reminder-response-class';
|
|
59
61
|
export * from './get-payment-response-class';
|
|
62
|
+
export * from './get-payout-method-response-class';
|
|
60
63
|
export * from './get-refund-response-class';
|
|
61
64
|
export * from './get-tenant-bank-account-response-class';
|
|
62
65
|
export * from './import-bank-transactions-response-class';
|
|
@@ -84,6 +87,7 @@ export * from './list-exceeding-credits-response-class';
|
|
|
84
87
|
export * from './list-payment-methods-response-class';
|
|
85
88
|
export * from './list-payment-reminders-response-class';
|
|
86
89
|
export * from './list-payments-response-class';
|
|
90
|
+
export * from './list-payout-methods-response-class';
|
|
87
91
|
export * from './list-policy-payment-methods-response-class';
|
|
88
92
|
export * from './list-refunds-response-class';
|
|
89
93
|
export * from './list-tenant-bank-account-response-class';
|
|
@@ -94,6 +98,7 @@ export * from './payment-class';
|
|
|
94
98
|
export * from './payment-class-without-expand-properties';
|
|
95
99
|
export * from './payment-method-class';
|
|
96
100
|
export * from './payment-reminder-class';
|
|
101
|
+
export * from './payout-method-class';
|
|
97
102
|
export * from './policy-payment-method-class';
|
|
98
103
|
export * from './primary-bank-account-response-class';
|
|
99
104
|
export * from './refund-class';
|