@emilgroup/payment-sdk 1.4.1-beta.3 → 1.4.1-beta.31
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 +12 -39
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +497 -47
- package/api/bank-transaction-api.ts +128 -96
- package/api/{default-api.ts → health-check-api.ts} +22 -18
- package/api/payment-methods-api.ts +74 -203
- package/api/payment-reminders-api.ts +76 -66
- package/api/payment-setup-api.ts +29 -37
- package/api/payments-api.ts +66 -89
- package/api/refunds-api.ts +74 -84
- package/api/tenant-bank-account-api.ts +88 -62
- package/api/webhooks-api.ts +17 -13
- package/api.ts +3 -3
- package/base.ts +6 -2
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/bank-accounts-api.d.ts +297 -49
- package/dist/api/bank-accounts-api.js +416 -28
- package/dist/api/bank-transaction-api.d.ts +109 -91
- package/dist/api/bank-transaction-api.js +83 -68
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +31 -27
- package/dist/api/payment-methods-api.d.ts +66 -134
- package/dist/api/payment-methods-api.js +55 -157
- package/dist/api/payment-reminders-api.d.ts +72 -65
- package/dist/api/payment-reminders-api.js +48 -42
- package/dist/api/payment-setup-api.d.ts +19 -23
- package/dist/api/payment-setup-api.js +25 -25
- package/dist/api/payments-api.d.ts +64 -76
- package/dist/api/payments-api.js +47 -55
- package/dist/api/refunds-api.d.ts +74 -74
- package/dist/api/refunds-api.js +52 -48
- package/dist/api/tenant-bank-account-api.d.ts +89 -66
- package/dist/api/tenant-bank-account-api.js +59 -39
- package/dist/api/webhooks-api.d.ts +17 -13
- package/dist/api/webhooks-api.js +15 -11
- package/dist/api.d.ts +2 -2
- package/dist/api.js +2 -2
- package/dist/base.d.ts +2 -1
- package/dist/base.js +5 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/{bank-transaction-response-class.d.ts → bank-transaction-class-without-expand-properties.d.ts} +26 -34
- package/dist/models/{bank-account-class.js → bank-transaction-class-without-expand-properties.js} +1 -1
- package/dist/models/create-bank-account-request-dto.d.ts +15 -3
- package/dist/models/create-bank-account-request-dto.js +1 -1
- package/dist/models/create-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/create-payment-reminder-request-dto.js +1 -1
- package/dist/models/create-payment-request-dto.d.ts +4 -4
- package/dist/models/create-payment-request-dto.js +1 -1
- package/dist/models/create-refund-request-dto.d.ts +1 -1
- package/dist/models/create-refund-request-dto.js +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.js +1 -1
- package/dist/models/create-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/{bank-transaction-response-class.js → create-tenant-bank-account-response-class.js} +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.js +1 -1
- package/dist/models/get-tenant-bank-account-response-class.d.ts +5 -5
- package/dist/models/get-tenant-bank-account-response-class.js +1 -1
- package/dist/models/index.d.ts +11 -38
- package/dist/models/index.js +11 -38
- package/dist/models/inline-response200.d.ts +1 -1
- package/dist/models/inline-response200.js +1 -1
- package/dist/models/inline-response503.d.ts +1 -1
- package/dist/models/inline-response503.js +1 -1
- package/dist/models/link-bank-transaction-request-dto-rest.d.ts +24 -0
- package/dist/models/{billing-profile-limited-response-dto.js → link-bank-transaction-request-dto-rest.js} +1 -1
- package/dist/models/list-tenant-bank-account-response-class.d.ts +31 -0
- package/dist/models/{billing-profile-dto.js → list-tenant-bank-account-response-class.js} +1 -1
- package/dist/models/set-primary-bank-account-request-dto-rest.d.ts +24 -0
- package/dist/models/set-primary-bank-account-request-dto-rest.js +15 -0
- package/dist/models/{tenant-bank-account-response-class.d.ts → tenant-bank-account-class-without-expand-properties.d.ts} +11 -11
- package/dist/models/tenant-bank-account-class-without-expand-properties.js +15 -0
- package/dist/models/tenant-bank-account-class.d.ts +73 -0
- package/dist/models/tenant-bank-account-class.js +15 -0
- package/dist/models/unlink-bank-transaction-request-dto-rest.d.ts +24 -0
- package/dist/models/unlink-bank-transaction-request-dto-rest.js +15 -0
- package/dist/models/update-bank-account-request-dto-rest.d.ts +30 -0
- package/dist/models/update-bank-account-request-dto-rest.js +15 -0
- package/dist/models/update-bank-account-request-dto.d.ts +36 -0
- package/dist/models/update-bank-account-request-dto.js +15 -0
- package/dist/models/update-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/update-tenant-bank-account-response-class.js +15 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +1 -1
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +1 -1
- package/dist/models/validate-pspconfig-request-dto.d.ts +2 -9
- package/dist/models/validate-pspconfig-request-dto.js +1 -8
- package/index.ts +1 -1
- package/models/{bank-transaction-response-class.ts → bank-transaction-class-without-expand-properties.ts} +26 -34
- package/models/create-bank-account-request-dto.ts +15 -3
- package/models/create-payment-reminder-request-dto.ts +1 -1
- package/models/create-payment-request-dto.ts +4 -4
- package/models/create-refund-request-dto.ts +1 -1
- package/models/create-tenant-bank-account-request-dto.ts +1 -1
- package/models/create-tenant-bank-account-response-class.ts +31 -0
- package/models/deactivate-payment-reminder-request-dto.ts +1 -1
- package/models/get-tenant-bank-account-response-class.ts +5 -5
- package/models/index.ts +11 -38
- package/models/inline-response200.ts +1 -1
- package/models/inline-response503.ts +1 -1
- package/models/link-bank-transaction-request-dto-rest.ts +30 -0
- package/models/list-tenant-bank-account-response-class.ts +37 -0
- package/models/set-primary-bank-account-request-dto-rest.ts +30 -0
- package/models/{tenant-bank-account-response-class.ts → tenant-bank-account-class-without-expand-properties.ts} +11 -11
- package/models/tenant-bank-account-class.ts +79 -0
- package/models/unlink-bank-transaction-request-dto-rest.ts +30 -0
- package/models/update-bank-account-request-dto-rest.ts +36 -0
- package/models/update-bank-account-request-dto.ts +42 -0
- package/models/update-tenant-bank-account-response-class.ts +31 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +1 -1
- package/models/validate-pspconfig-request-dto.ts +2 -12
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
- package/dist/models/bank-account-class.d.ts +0 -54
- package/dist/models/billing-profile-dto.d.ts +0 -38
- package/dist/models/billing-profile-limited-response-dto.d.ts +0 -54
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +0 -48
- package/dist/models/complete-braintree-payment-setup-request-dto.js +0 -15
- package/dist/models/complete-payment-setup-request-dto.d.ts +0 -32
- package/dist/models/complete-payment-setup-request-dto.js +0 -15
- package/dist/models/complete-payment-setup-response-class.d.ts +0 -25
- package/dist/models/complete-payment-setup-response-class.js +0 -15
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +0 -60
- package/dist/models/complete-stripe-payment-setup-request-dto.js +0 -15
- package/dist/models/create-payment-method-response-class.d.ts +0 -25
- package/dist/models/create-payment-method-response-class.js +0 -15
- package/dist/models/create-payment-response-class.d.ts +0 -25
- package/dist/models/create-payment-response-class.js +0 -15
- package/dist/models/create-psp-payment-method-request-dto.d.ts +0 -61
- package/dist/models/create-psp-payment-method-request-dto.js +0 -32
- package/dist/models/create-refund-response-class.d.ts +0 -25
- package/dist/models/create-refund-response-class.js +0 -15
- package/dist/models/deactivate-payment-reminder-response-class.d.ts +0 -25
- package/dist/models/deactivate-payment-reminder-response-class.js +0 -15
- package/dist/models/get-bank-transactions-response-class.d.ts +0 -25
- package/dist/models/get-bank-transactions-response-class.js +0 -15
- package/dist/models/get-payment-method-response-class.d.ts +0 -25
- package/dist/models/get-payment-method-response-class.js +0 -15
- package/dist/models/get-payment-response-class.d.ts +0 -25
- package/dist/models/get-payment-response-class.js +0 -15
- package/dist/models/get-refund-response-class.d.ts +0 -25
- package/dist/models/get-refund-response-class.js +0 -15
- package/dist/models/get-request-dto.d.ts +0 -30
- package/dist/models/get-request-dto.js +0 -15
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +0 -30
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-braintree-payment-setup-response-class.d.ts +0 -24
- package/dist/models/initiate-braintree-payment-setup-response-class.js +0 -15
- package/dist/models/initiate-payment-setup-request-dto.d.ts +0 -44
- package/dist/models/initiate-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-payment-setup-response-class.d.ts +0 -32
- package/dist/models/initiate-payment-setup-response-class.js +0 -15
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +0 -30
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-stripe-payment-setup-response-class.d.ts +0 -30
- package/dist/models/initiate-stripe-payment-setup-response-class.js +0 -15
- package/dist/models/list-bank-accounts-response-class.d.ts +0 -31
- package/dist/models/list-bank-accounts-response-class.js +0 -15
- package/dist/models/list-bank-transactions-response-class.d.ts +0 -31
- package/dist/models/list-bank-transactions-response-class.js +0 -15
- package/dist/models/list-payment-methods-response-class.d.ts +0 -31
- package/dist/models/list-payment-methods-response-class.js +0 -15
- package/dist/models/list-payment-reminders-response-class.d.ts +0 -31
- package/dist/models/list-payment-reminders-response-class.js +0 -15
- package/dist/models/list-payments-response-class.d.ts +0 -31
- package/dist/models/list-payments-response-class.js +0 -15
- package/dist/models/list-refunds-response-class.d.ts +0 -31
- package/dist/models/list-refunds-response-class.js +0 -15
- package/dist/models/payment-class.d.ts +0 -103
- package/dist/models/payment-class.js +0 -15
- package/dist/models/payment-method-class.d.ts +0 -66
- package/dist/models/payment-method-class.js +0 -15
- package/dist/models/payment-reminder-class.d.ts +0 -112
- package/dist/models/payment-reminder-class.js +0 -36
- package/dist/models/refund-class.d.ts +0 -104
- package/dist/models/refund-class.js +0 -28
- package/dist/models/sepa-direct-dto.d.ts +0 -24
- package/dist/models/sepa-direct-dto.js +0 -15
- package/dist/models/symphony-profile-limited-response-dto.d.ts +0 -42
- package/dist/models/symphony-profile-limited-response-dto.js +0 -15
- package/dist/models/tenant-bank-account-response-class.js +0 -15
- package/dist/models/transaction-class.d.ts +0 -54
- package/dist/models/transaction-class.js +0 -15
- package/models/bank-account-class.ts +0 -60
- package/models/billing-profile-dto.ts +0 -44
- package/models/billing-profile-limited-response-dto.ts +0 -60
- package/models/complete-braintree-payment-setup-request-dto.ts +0 -54
- package/models/complete-payment-setup-request-dto.ts +0 -38
- package/models/complete-payment-setup-response-class.ts +0 -31
- package/models/complete-stripe-payment-setup-request-dto.ts +0 -66
- package/models/create-payment-method-response-class.ts +0 -31
- package/models/create-payment-response-class.ts +0 -31
- package/models/create-psp-payment-method-request-dto.ts +0 -70
- package/models/create-refund-response-class.ts +0 -31
- package/models/deactivate-payment-reminder-response-class.ts +0 -31
- package/models/get-bank-transactions-response-class.ts +0 -31
- package/models/get-payment-method-response-class.ts +0 -31
- package/models/get-payment-response-class.ts +0 -31
- package/models/get-refund-response-class.ts +0 -31
- package/models/get-request-dto.ts +0 -36
- package/models/initiate-braintree-payment-setup-request-dto.ts +0 -36
- package/models/initiate-braintree-payment-setup-response-class.ts +0 -30
- package/models/initiate-payment-setup-request-dto.ts +0 -50
- package/models/initiate-payment-setup-response-class.ts +0 -38
- package/models/initiate-stripe-payment-setup-request-dto.ts +0 -36
- package/models/initiate-stripe-payment-setup-response-class.ts +0 -36
- package/models/list-bank-accounts-response-class.ts +0 -37
- package/models/list-bank-transactions-response-class.ts +0 -37
- package/models/list-payment-methods-response-class.ts +0 -37
- package/models/list-payment-reminders-response-class.ts +0 -37
- package/models/list-payments-response-class.ts +0 -37
- package/models/list-refunds-response-class.ts +0 -37
- package/models/payment-class.ts +0 -109
- package/models/payment-method-class.ts +0 -72
- package/models/payment-reminder-class.ts +0 -122
- package/models/refund-class.ts +0 -114
- package/models/sepa-direct-dto.ts +0 -30
- package/models/symphony-profile-limited-response-dto.ts +0 -48
- package/models/transaction-class.ts +0 -60
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -13,115 +13,107 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import { TenantBankAccountResponseClass } from './tenant-bank-account-response-class';
|
|
17
|
-
import { TransactionClass } from './transaction-class';
|
|
18
16
|
|
|
19
17
|
/**
|
|
20
18
|
*
|
|
21
19
|
* @export
|
|
22
|
-
* @interface
|
|
20
|
+
* @interface BankTransactionClassWithoutExpandProperties
|
|
23
21
|
*/
|
|
24
|
-
export interface
|
|
22
|
+
export interface BankTransactionClassWithoutExpandProperties {
|
|
25
23
|
/**
|
|
26
24
|
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
27
25
|
* @type {number}
|
|
28
|
-
* @memberof
|
|
26
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
29
27
|
*/
|
|
30
28
|
'id': number;
|
|
31
29
|
/**
|
|
32
30
|
* Unique identifier for the object.
|
|
33
31
|
* @type {string}
|
|
34
|
-
* @memberof
|
|
32
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
35
33
|
*/
|
|
36
34
|
'code': string;
|
|
37
35
|
/**
|
|
38
|
-
*
|
|
36
|
+
* bank account
|
|
39
37
|
* @type {number}
|
|
40
|
-
* @memberof
|
|
38
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
41
39
|
*/
|
|
42
40
|
'bankAccountId': number;
|
|
43
41
|
/**
|
|
44
42
|
* Account number of the bank account
|
|
45
43
|
* @type {string}
|
|
46
|
-
* @memberof
|
|
44
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
47
45
|
*/
|
|
48
46
|
'bankAccountNumber': string;
|
|
49
47
|
/**
|
|
50
48
|
* Reference number derived from the MT940 swift Insturctions
|
|
51
49
|
* @type {string}
|
|
52
|
-
* @memberof
|
|
50
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
53
51
|
*/
|
|
54
52
|
'swiftMessageReference'?: string;
|
|
55
53
|
/**
|
|
56
54
|
* Currency of the transaction.
|
|
57
55
|
* @type {string}
|
|
58
|
-
* @memberof
|
|
56
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
59
57
|
*/
|
|
60
58
|
'currency': string;
|
|
61
59
|
/**
|
|
62
60
|
* Amount of the transaction - can be negative or positive
|
|
63
61
|
* @type {string}
|
|
64
|
-
* @memberof
|
|
62
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
65
63
|
*/
|
|
66
64
|
'amount': string;
|
|
67
65
|
/**
|
|
68
66
|
* Date on which the transaction was executed. Also known as Value Date
|
|
69
67
|
* @type {string}
|
|
70
|
-
* @memberof
|
|
68
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
71
69
|
*/
|
|
72
70
|
'transactionDate': string;
|
|
73
71
|
/**
|
|
74
72
|
* Date on which the transaction entry was made in the system. Also known as Booking Date
|
|
75
73
|
* @type {string}
|
|
76
|
-
* @memberof
|
|
74
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
77
75
|
*/
|
|
78
76
|
'entryDate': string;
|
|
79
77
|
/**
|
|
80
78
|
* Optional reference number that can be given by the customer or bank to uniquely identify a transaction. If no transaction reference is provided the value is set to \'NONREF\'
|
|
81
79
|
* @type {string}
|
|
82
|
-
* @memberof
|
|
80
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
83
81
|
*/
|
|
84
82
|
'transactionReference': string;
|
|
85
83
|
/**
|
|
86
84
|
* Optional metadata that can be provided by the customer or bank to give more context to the transaction
|
|
87
85
|
* @type {object}
|
|
88
|
-
* @memberof
|
|
86
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
89
87
|
*/
|
|
90
88
|
'metadata'?: object;
|
|
91
89
|
/**
|
|
92
90
|
* The id of the PSP transaction that this bank transaction is linked to
|
|
93
91
|
* @type {number}
|
|
94
|
-
* @memberof
|
|
92
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
95
93
|
*/
|
|
96
|
-
'linkedTransactionId'
|
|
94
|
+
'linkedTransactionId'?: number;
|
|
97
95
|
/**
|
|
98
96
|
* The code of the invoice that this bank transaction is linked to
|
|
99
97
|
* @type {string}
|
|
100
|
-
* @memberof
|
|
98
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
101
99
|
*/
|
|
102
100
|
'linkedInvoiceCode'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* The identifying invoice number that this bank transaction is linked to
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
105
|
+
*/
|
|
106
|
+
'linkedInvoiceNumber'?: string;
|
|
103
107
|
/**
|
|
104
108
|
* Boolean flag to indicate if the bank transaction is linked to an invoice - defaults to false
|
|
105
109
|
* @type {boolean}
|
|
106
|
-
* @memberof
|
|
110
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
107
111
|
*/
|
|
108
112
|
'isLinked': boolean;
|
|
109
|
-
/**
|
|
110
|
-
* The bank account object that this transaction is belongs to
|
|
111
|
-
* @type {TenantBankAccountResponseClass}
|
|
112
|
-
* @memberof BankTransactionResponseClass
|
|
113
|
-
*/
|
|
114
|
-
'bankAccount': TenantBankAccountResponseClass;
|
|
115
|
-
/**
|
|
116
|
-
* The linked transaction object
|
|
117
|
-
* @type {TransactionClass}
|
|
118
|
-
* @memberof BankTransactionResponseClass
|
|
119
|
-
*/
|
|
120
|
-
'linkedTransaction': TransactionClass;
|
|
121
113
|
/**
|
|
122
114
|
* Time at which the object was created.
|
|
123
115
|
* @type {string}
|
|
124
|
-
* @memberof
|
|
116
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
125
117
|
*/
|
|
126
118
|
'createdAt': string;
|
|
127
119
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -21,16 +21,28 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CreateBankAccountRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* User account code associated with bank account.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CreateBankAccountRequestDto
|
|
27
27
|
*/
|
|
28
28
|
'accountCode': string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Partner code associated with bank account.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateBankAccountRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'partnerCode': string;
|
|
35
|
+
/**
|
|
36
|
+
* IBAN number for the bank account
|
|
31
37
|
* @type {string}
|
|
32
38
|
* @memberof CreateBankAccountRequestDto
|
|
33
39
|
*/
|
|
34
40
|
'iban': string;
|
|
41
|
+
/**
|
|
42
|
+
* Bank account holder
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateBankAccountRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'accountHolder': string;
|
|
35
47
|
}
|
|
36
48
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -40,10 +40,10 @@ export interface CreatePaymentRequestDto {
|
|
|
40
40
|
'currency'?: string;
|
|
41
41
|
/**
|
|
42
42
|
* Invoices referenced in this payment. Usually, one payment has one invoice id but it is possible to pay multiple invoices at once with a single payment.
|
|
43
|
-
* @type {Array<
|
|
43
|
+
* @type {Array<string>}
|
|
44
44
|
* @memberof CreatePaymentRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'invoiceIds': Array<
|
|
46
|
+
'invoiceIds': Array<string>;
|
|
47
47
|
/**
|
|
48
48
|
* Optional field contain extra information.
|
|
49
49
|
* @type {object}
|
|
@@ -55,7 +55,7 @@ export interface CreatePaymentRequestDto {
|
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CreatePaymentRequestDto
|
|
57
57
|
*/
|
|
58
|
-
'productSlug'
|
|
58
|
+
'productSlug': string;
|
|
59
59
|
/**
|
|
60
60
|
* Optional payment date.
|
|
61
61
|
* @type {string}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -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 { TenantBankAccountClassWithoutExpandProperties } from './tenant-bank-account-class-without-expand-properties';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateTenantBankAccountResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateTenantBankAccountResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Tenant bank account
|
|
26
|
+
* @type {TenantBankAccountClassWithoutExpandProperties}
|
|
27
|
+
* @memberof CreateTenantBankAccountResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'bankAccount': TenantBankAccountClassWithoutExpandProperties;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { TenantBankAccountClass } from './tenant-bank-account-class';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
@@ -22,10 +22,10 @@ import { TenantBankAccountResponseClass } from './tenant-bank-account-response-c
|
|
|
22
22
|
*/
|
|
23
23
|
export interface GetTenantBankAccountResponseClass {
|
|
24
24
|
/**
|
|
25
|
-
* Tenant
|
|
26
|
-
* @type {
|
|
25
|
+
* Tenant bank account
|
|
26
|
+
* @type {TenantBankAccountClass}
|
|
27
27
|
* @memberof GetTenantBankAccountResponseClass
|
|
28
28
|
*/
|
|
29
|
-
'bankAccount':
|
|
29
|
+
'bankAccount': TenantBankAccountClass;
|
|
30
30
|
}
|
|
31
31
|
|
package/models/index.ts
CHANGED
|
@@ -1,49 +1,22 @@
|
|
|
1
|
-
export * from './bank-
|
|
2
|
-
export * from './bank-transaction-response-class';
|
|
3
|
-
export * from './billing-profile-dto';
|
|
4
|
-
export * from './billing-profile-limited-response-dto';
|
|
5
|
-
export * from './complete-braintree-payment-setup-request-dto';
|
|
6
|
-
export * from './complete-payment-setup-request-dto';
|
|
7
|
-
export * from './complete-payment-setup-response-class';
|
|
8
|
-
export * from './complete-stripe-payment-setup-request-dto';
|
|
1
|
+
export * from './bank-transaction-class-without-expand-properties';
|
|
9
2
|
export * from './create-bank-account-request-dto';
|
|
10
|
-
export * from './create-payment-method-response-class';
|
|
11
3
|
export * from './create-payment-reminder-request-dto';
|
|
12
4
|
export * from './create-payment-request-dto';
|
|
13
|
-
export * from './create-payment-response-class';
|
|
14
|
-
export * from './create-psp-payment-method-request-dto';
|
|
15
5
|
export * from './create-refund-request-dto';
|
|
16
|
-
export * from './create-refund-response-class';
|
|
17
6
|
export * from './create-tenant-bank-account-request-dto';
|
|
7
|
+
export * from './create-tenant-bank-account-response-class';
|
|
18
8
|
export * from './deactivate-payment-reminder-request-dto';
|
|
19
|
-
export * from './deactivate-payment-reminder-response-class';
|
|
20
|
-
export * from './get-bank-transactions-response-class';
|
|
21
|
-
export * from './get-payment-method-response-class';
|
|
22
|
-
export * from './get-payment-response-class';
|
|
23
|
-
export * from './get-refund-response-class';
|
|
24
|
-
export * from './get-request-dto';
|
|
25
9
|
export * from './get-tenant-bank-account-response-class';
|
|
26
|
-
export * from './initiate-braintree-payment-setup-request-dto';
|
|
27
|
-
export * from './initiate-braintree-payment-setup-response-class';
|
|
28
|
-
export * from './initiate-payment-setup-request-dto';
|
|
29
|
-
export * from './initiate-payment-setup-response-class';
|
|
30
|
-
export * from './initiate-stripe-payment-setup-request-dto';
|
|
31
|
-
export * from './initiate-stripe-payment-setup-response-class';
|
|
32
10
|
export * from './inline-response200';
|
|
33
11
|
export * from './inline-response503';
|
|
34
|
-
export * from './
|
|
35
|
-
export * from './list-bank-
|
|
36
|
-
export * from './
|
|
37
|
-
export * from './
|
|
38
|
-
export * from './
|
|
39
|
-
export * from './
|
|
40
|
-
export * from './
|
|
41
|
-
export * from './
|
|
42
|
-
export * from './
|
|
43
|
-
export * from './refund-class';
|
|
44
|
-
export * from './sepa-direct-dto';
|
|
45
|
-
export * from './symphony-profile-limited-response-dto';
|
|
46
|
-
export * from './tenant-bank-account-response-class';
|
|
47
|
-
export * from './transaction-class';
|
|
12
|
+
export * from './link-bank-transaction-request-dto-rest';
|
|
13
|
+
export * from './list-tenant-bank-account-response-class';
|
|
14
|
+
export * from './set-primary-bank-account-request-dto-rest';
|
|
15
|
+
export * from './tenant-bank-account-class';
|
|
16
|
+
export * from './tenant-bank-account-class-without-expand-properties';
|
|
17
|
+
export * from './unlink-bank-transaction-request-dto-rest';
|
|
18
|
+
export * from './update-bank-account-request-dto';
|
|
19
|
+
export * from './update-bank-account-request-dto-rest';
|
|
20
|
+
export * from './update-tenant-bank-account-response-class';
|
|
48
21
|
export * from './update-tenant-bank-account-rest-request-dto';
|
|
49
22
|
export * from './validate-pspconfig-request-dto';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -0,0 +1,30 @@
|
|
|
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 LinkBankTransactionRequestDtoRest
|
|
21
|
+
*/
|
|
22
|
+
export interface LinkBankTransactionRequestDtoRest {
|
|
23
|
+
/**
|
|
24
|
+
* The code of the invoice that the transaction will be linked to.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof LinkBankTransactionRequestDtoRest
|
|
27
|
+
*/
|
|
28
|
+
'invoiceCode': string;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { TenantBankAccountClass } from './tenant-bank-account-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListTenantBankAccountResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListTenantBankAccountResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of bank accounts.
|
|
26
|
+
* @type {Array<TenantBankAccountClass>}
|
|
27
|
+
* @memberof ListTenantBankAccountResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<TenantBankAccountClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListTenantBankAccountResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
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 SetPrimaryBankAccountRequestDtoRest
|
|
21
|
+
*/
|
|
22
|
+
export interface SetPrimaryBankAccountRequestDtoRest {
|
|
23
|
+
/**
|
|
24
|
+
* The code of the partner/user account that the primary bank account will be set to.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SetPrimaryBankAccountRequestDtoRest
|
|
27
|
+
*/
|
|
28
|
+
'entityCode': string;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Emil Payment Service
|
|
5
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 1.0
|
|
8
8
|
* Contact: kontakt@emil.de
|
|
@@ -17,55 +17,55 @@
|
|
|
17
17
|
/**
|
|
18
18
|
*
|
|
19
19
|
* @export
|
|
20
|
-
* @interface
|
|
20
|
+
* @interface TenantBankAccountClassWithoutExpandProperties
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
22
|
+
export interface TenantBankAccountClassWithoutExpandProperties {
|
|
23
23
|
/**
|
|
24
24
|
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
25
|
* @type {number}
|
|
26
|
-
* @memberof
|
|
26
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
27
27
|
*/
|
|
28
28
|
'id': number;
|
|
29
29
|
/**
|
|
30
30
|
* Unique identifier for the object.
|
|
31
31
|
* @type {string}
|
|
32
|
-
* @memberof
|
|
32
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
33
33
|
*/
|
|
34
34
|
'code': string;
|
|
35
35
|
/**
|
|
36
36
|
* IBAN number for the bank account
|
|
37
37
|
* @type {string}
|
|
38
|
-
* @memberof
|
|
38
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
39
39
|
*/
|
|
40
40
|
'iban': string;
|
|
41
41
|
/**
|
|
42
42
|
* Name of the account given by the user - to quickly identify the account
|
|
43
43
|
* @type {string}
|
|
44
|
-
* @memberof
|
|
44
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
45
45
|
*/
|
|
46
46
|
'accountName': string;
|
|
47
47
|
/**
|
|
48
48
|
* Name of the bank the account belongs to
|
|
49
49
|
* @type {string}
|
|
50
|
-
* @memberof
|
|
50
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
51
51
|
*/
|
|
52
52
|
'bankName': string;
|
|
53
53
|
/**
|
|
54
54
|
* Number of the booking account this bank account belongs to
|
|
55
55
|
* @type {string}
|
|
56
|
-
* @memberof
|
|
56
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
57
57
|
*/
|
|
58
58
|
'bookingAccount': string;
|
|
59
59
|
/**
|
|
60
60
|
* Time at which the object was created.
|
|
61
61
|
* @type {string}
|
|
62
|
-
* @memberof
|
|
62
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
63
63
|
*/
|
|
64
64
|
'createdAt': string;
|
|
65
65
|
/**
|
|
66
66
|
* Time at which the object was updated.
|
|
67
67
|
* @type {string}
|
|
68
|
-
* @memberof
|
|
68
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
69
69
|
*/
|
|
70
70
|
'updatedAt': string;
|
|
71
71
|
}
|