@emilgroup/payment-sdk 1.14.1-beta.58 → 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
|
@@ -0,0 +1,49 @@
|
|
|
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 ListPayoutMethodsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListPayoutMethodsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The payout methods
|
|
26
|
+
* @type {Array<PayoutMethodClass>}
|
|
27
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<PayoutMethodClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
/**
|
|
37
|
+
* Items per page.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
40
|
+
*/
|
|
41
|
+
'itemsPerPage': number;
|
|
42
|
+
/**
|
|
43
|
+
* Total amount of items.
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof ListPayoutMethodsResponseClass
|
|
46
|
+
*/
|
|
47
|
+
'totalItems': number;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,121 @@
|
|
|
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 { BillingAddressClass } from './billing-address-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface PayoutMethodClass
|
|
22
|
+
*/
|
|
23
|
+
export interface PayoutMethodClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof PayoutMethodClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier for the object.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PayoutMethodClass
|
|
34
|
+
*/
|
|
35
|
+
'code': string;
|
|
36
|
+
/**
|
|
37
|
+
* First name
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof PayoutMethodClass
|
|
40
|
+
*/
|
|
41
|
+
'firstName': string;
|
|
42
|
+
/**
|
|
43
|
+
* Last name
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PayoutMethodClass
|
|
46
|
+
*/
|
|
47
|
+
'lastName': string;
|
|
48
|
+
/**
|
|
49
|
+
* IBAN
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PayoutMethodClass
|
|
52
|
+
*/
|
|
53
|
+
'iban': string;
|
|
54
|
+
/**
|
|
55
|
+
* BIC
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PayoutMethodClass
|
|
58
|
+
*/
|
|
59
|
+
'bic': string;
|
|
60
|
+
/**
|
|
61
|
+
* Bank name
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PayoutMethodClass
|
|
64
|
+
*/
|
|
65
|
+
'bankName': string;
|
|
66
|
+
/**
|
|
67
|
+
* Whether the payout method is active
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof PayoutMethodClass
|
|
70
|
+
*/
|
|
71
|
+
'isActive': boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Billing address ID
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof PayoutMethodClass
|
|
76
|
+
*/
|
|
77
|
+
'billingAddressId': number;
|
|
78
|
+
/**
|
|
79
|
+
* Unique identifier of the account that this object belongs to.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof PayoutMethodClass
|
|
82
|
+
*/
|
|
83
|
+
'accountCode': string;
|
|
84
|
+
/**
|
|
85
|
+
* Unique identifier of the partner that this object belongs to.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof PayoutMethodClass
|
|
88
|
+
*/
|
|
89
|
+
'partnerCode': string;
|
|
90
|
+
/**
|
|
91
|
+
* Billing address
|
|
92
|
+
* @type {BillingAddressClass}
|
|
93
|
+
* @memberof PayoutMethodClass
|
|
94
|
+
*/
|
|
95
|
+
'billingAddress'?: BillingAddressClass;
|
|
96
|
+
/**
|
|
97
|
+
* Time at which the object was created.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof PayoutMethodClass
|
|
100
|
+
*/
|
|
101
|
+
'createdAt': string;
|
|
102
|
+
/**
|
|
103
|
+
* Time at which the object was updated.
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof PayoutMethodClass
|
|
106
|
+
*/
|
|
107
|
+
'updatedAt': string;
|
|
108
|
+
/**
|
|
109
|
+
* Identifier of the user who created the record.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof PayoutMethodClass
|
|
112
|
+
*/
|
|
113
|
+
'createdBy': string;
|
|
114
|
+
/**
|
|
115
|
+
* Identifier of the user who last updated the record.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof PayoutMethodClass
|
|
118
|
+
*/
|
|
119
|
+
'updatedBy': string;
|
|
120
|
+
}
|
|
121
|
+
|
|
@@ -62,17 +62,11 @@ export interface UpdateBillingAddressRequestDto {
|
|
|
62
62
|
* @memberof UpdateBillingAddressRequestDto
|
|
63
63
|
*/
|
|
64
64
|
'countryCode'?: string;
|
|
65
|
-
/**
|
|
66
|
-
* Unique identifier of the account that this object belongs to.
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof UpdateBillingAddressRequestDto
|
|
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 UpdateBillingAddressRequestDto
|
|
75
69
|
*/
|
|
76
|
-
'partnerCode'
|
|
70
|
+
'partnerCode': string;
|
|
77
71
|
}
|
|
78
72
|
|