@emilgroup/payment-sdk 1.4.1-beta.0 → 1.4.1-beta.10
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 +2 -0
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +21 -7
- package/api/bank-transaction-api.ts +77 -29
- package/api/default-api.ts +1 -1
- package/api/payment-methods-api.ts +21 -7
- package/api/payment-reminders-api.ts +21 -7
- package/api/payment-setup-api.ts +1 -1
- package/api/payments-api.ts +21 -7
- package/api/refunds-api.ts +21 -7
- package/api/tenant-bank-account-api.ts +69 -35
- package/api/webhooks-api.ts +1 -1
- package/api.ts +1 -1
- package/base.ts +1 -1
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/bank-accounts-api.d.ts +13 -4
- package/dist/api/bank-accounts-api.js +13 -7
- package/dist/api/bank-transaction-api.d.ts +48 -19
- package/dist/api/bank-transaction-api.js +45 -26
- package/dist/api/default-api.d.ts +1 -1
- package/dist/api/default-api.js +1 -1
- package/dist/api/payment-methods-api.d.ts +13 -4
- package/dist/api/payment-methods-api.js +13 -7
- package/dist/api/payment-reminders-api.d.ts +13 -4
- package/dist/api/payment-reminders-api.js +13 -7
- package/dist/api/payment-setup-api.d.ts +1 -1
- package/dist/api/payment-setup-api.js +1 -1
- package/dist/api/payments-api.d.ts +13 -4
- package/dist/api/payments-api.js +13 -7
- package/dist/api/refunds-api.d.ts +13 -4
- package/dist/api/refunds-api.js +13 -7
- package/dist/api/tenant-bank-account-api.d.ts +61 -32
- package/dist/api/tenant-bank-account-api.js +56 -30
- package/dist/api/webhooks-api.d.ts +1 -1
- package/dist/api/webhooks-api.js +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- 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 +7 -1
- package/dist/models/bank-transaction-response-class.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 +1 -1
- 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-refund-response-class.d.ts +1 -1
- package/dist/models/create-refund-response-class.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/deactivate-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.js +1 -1
- package/dist/models/get-bank-transactions-response-class.d.ts +1 -1
- package/dist/models/get-bank-transactions-response-class.js +1 -1
- package/dist/models/get-refund-response-class.d.ts +1 -1
- package/dist/models/get-refund-response-class.js +1 -1
- package/dist/models/get-request-dto.d.ts +1 -1
- package/dist/models/get-request-dto.js +1 -1
- package/dist/models/get-tenant-bank-account-response-class.d.ts +1 -1
- package/dist/models/get-tenant-bank-account-response-class.js +1 -1
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- 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/link-bank-transaction-request-dto-rest.js +15 -0
- package/dist/models/list-bank-transactions-response-class.d.ts +1 -1
- package/dist/models/list-bank-transactions-response-class.js +1 -1
- package/dist/models/list-refunds-response-class.d.ts +1 -1
- package/dist/models/list-refunds-response-class.js +1 -1
- package/dist/models/refund-class.d.ts +1 -1
- package/dist/models/refund-class.js +1 -1
- package/dist/models/tenant-bank-account-response-class.d.ts +1 -1
- package/dist/models/tenant-bank-account-response-class.js +1 -1
- package/dist/models/transaction-class.d.ts +1 -1
- package/dist/models/transaction-class.js +1 -1
- 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-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 +1 -1
- package/dist/models/validate-pspconfig-request-dto.js +1 -1
- package/index.ts +1 -1
- package/models/bank-transaction-response-class.ts +7 -1
- package/models/create-payment-reminder-request-dto.ts +1 -1
- package/models/create-payment-request-dto.ts +1 -1
- package/models/create-refund-request-dto.ts +1 -1
- package/models/create-refund-response-class.ts +1 -1
- package/models/create-tenant-bank-account-request-dto.ts +1 -1
- package/models/deactivate-payment-reminder-request-dto.ts +1 -1
- package/models/get-bank-transactions-response-class.ts +1 -1
- package/models/get-refund-response-class.ts +1 -1
- package/models/get-request-dto.ts +1 -1
- package/models/get-tenant-bank-account-response-class.ts +1 -1
- package/models/index.ts +2 -0
- 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-bank-transactions-response-class.ts +1 -1
- package/models/list-refunds-response-class.ts +1 -1
- package/models/refund-class.ts +1 -1
- package/models/tenant-bank-account-response-class.ts +1 -1
- package/models/transaction-class.ts +1 -1
- package/models/unlink-bank-transaction-request-dto-rest.ts +30 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +1 -1
- package/models/validate-pspconfig-request-dto.ts +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -21,7 +21,8 @@ import { UpdateTenantBankAccountRestRequestDto } from '../models';
|
|
|
21
21
|
*/
|
|
22
22
|
export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Create a new tenant bank account
|
|
25
|
+
* @summary Create the Create Tenant Bank Account
|
|
25
26
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
26
27
|
* @param {string} [authorization] Bearer Token
|
|
27
28
|
* @param {*} [options] Override http request option.
|
|
@@ -29,7 +30,8 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
29
30
|
*/
|
|
30
31
|
createTenantBankAccount: (createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
+
* Deletes a tenant bank account by code
|
|
34
|
+
* @summary Deletes a tenant bank account
|
|
33
35
|
* @param {string} code Unique identifier for the object.
|
|
34
36
|
* @param {string} [authorization] Bearer Token
|
|
35
37
|
* @param {*} [options] Override http request option.
|
|
@@ -37,16 +39,18 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
37
39
|
*/
|
|
38
40
|
deleteTenantBankAccount: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
41
|
/**
|
|
40
|
-
*
|
|
42
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
43
|
+
* @summary Retrieve the Bank Transaction
|
|
41
44
|
* @param {string} code Unique identifier for the object.
|
|
42
45
|
* @param {string} [authorization] Bearer Token
|
|
43
|
-
* @param {
|
|
46
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
44
47
|
* @param {*} [options] Override http request option.
|
|
45
48
|
* @throws {RequiredError}
|
|
46
49
|
*/
|
|
47
|
-
getTenantBankAccount: (code: string, authorization?: string, expand?:
|
|
50
|
+
getTenantBankAccount: (code: string, authorization?: string, expand?: 'bankTransactions', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
51
|
/**
|
|
49
|
-
*
|
|
52
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
53
|
+
* @summary List Tenant Bank Accounts
|
|
50
54
|
* @param {string} [authorization] Bearer Token
|
|
51
55
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
52
56
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -54,12 +58,14 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
54
58
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
55
59
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
56
60
|
* @param {string} [expand] Expand the response with additional entities
|
|
61
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
57
62
|
* @param {*} [options] Override http request option.
|
|
58
63
|
* @throws {RequiredError}
|
|
59
64
|
*/
|
|
60
|
-
listTenantBankAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
65
|
+
listTenantBankAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
61
66
|
/**
|
|
62
|
-
*
|
|
67
|
+
* Update a tenant bank account by code
|
|
68
|
+
* @summary Update a tenant bank account
|
|
63
69
|
* @param {string} code Unique identifier for the object.
|
|
64
70
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
65
71
|
* @param {string} [authorization] Bearer Token
|
|
@@ -74,7 +80,8 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
74
80
|
*/
|
|
75
81
|
export declare const TenantBankAccountApiFp: (configuration?: Configuration) => {
|
|
76
82
|
/**
|
|
77
|
-
*
|
|
83
|
+
* Create a new tenant bank account
|
|
84
|
+
* @summary Create the Create Tenant Bank Account
|
|
78
85
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
79
86
|
* @param {string} [authorization] Bearer Token
|
|
80
87
|
* @param {*} [options] Override http request option.
|
|
@@ -82,7 +89,8 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
82
89
|
*/
|
|
83
90
|
createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
84
91
|
/**
|
|
85
|
-
*
|
|
92
|
+
* Deletes a tenant bank account by code
|
|
93
|
+
* @summary Deletes a tenant bank account
|
|
86
94
|
* @param {string} code Unique identifier for the object.
|
|
87
95
|
* @param {string} [authorization] Bearer Token
|
|
88
96
|
* @param {*} [options] Override http request option.
|
|
@@ -90,16 +98,18 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
90
98
|
*/
|
|
91
99
|
deleteTenantBankAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
92
100
|
/**
|
|
93
|
-
*
|
|
101
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
102
|
+
* @summary Retrieve the Bank Transaction
|
|
94
103
|
* @param {string} code Unique identifier for the object.
|
|
95
104
|
* @param {string} [authorization] Bearer Token
|
|
96
|
-
* @param {
|
|
105
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
97
106
|
* @param {*} [options] Override http request option.
|
|
98
107
|
* @throws {RequiredError}
|
|
99
108
|
*/
|
|
100
|
-
getTenantBankAccount(code: string, authorization?: string, expand?:
|
|
109
|
+
getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>>;
|
|
101
110
|
/**
|
|
102
|
-
*
|
|
111
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
112
|
+
* @summary List Tenant Bank Accounts
|
|
103
113
|
* @param {string} [authorization] Bearer Token
|
|
104
114
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
105
115
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -107,12 +117,14 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
107
117
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
108
118
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
109
119
|
* @param {string} [expand] Expand the response with additional entities
|
|
120
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
110
121
|
* @param {*} [options] Override http request option.
|
|
111
122
|
* @throws {RequiredError}
|
|
112
123
|
*/
|
|
113
|
-
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
124
|
+
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
114
125
|
/**
|
|
115
|
-
*
|
|
126
|
+
* Update a tenant bank account by code
|
|
127
|
+
* @summary Update a tenant bank account
|
|
116
128
|
* @param {string} code Unique identifier for the object.
|
|
117
129
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
118
130
|
* @param {string} [authorization] Bearer Token
|
|
@@ -127,7 +139,8 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
127
139
|
*/
|
|
128
140
|
export declare const TenantBankAccountApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
129
141
|
/**
|
|
130
|
-
*
|
|
142
|
+
* Create a new tenant bank account
|
|
143
|
+
* @summary Create the Create Tenant Bank Account
|
|
131
144
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
132
145
|
* @param {string} [authorization] Bearer Token
|
|
133
146
|
* @param {*} [options] Override http request option.
|
|
@@ -135,7 +148,8 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
135
148
|
*/
|
|
136
149
|
createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
137
150
|
/**
|
|
138
|
-
*
|
|
151
|
+
* Deletes a tenant bank account by code
|
|
152
|
+
* @summary Deletes a tenant bank account
|
|
139
153
|
* @param {string} code Unique identifier for the object.
|
|
140
154
|
* @param {string} [authorization] Bearer Token
|
|
141
155
|
* @param {*} [options] Override http request option.
|
|
@@ -143,16 +157,18 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
143
157
|
*/
|
|
144
158
|
deleteTenantBankAccount(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
145
159
|
/**
|
|
146
|
-
*
|
|
160
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
161
|
+
* @summary Retrieve the Bank Transaction
|
|
147
162
|
* @param {string} code Unique identifier for the object.
|
|
148
163
|
* @param {string} [authorization] Bearer Token
|
|
149
|
-
* @param {
|
|
164
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
150
165
|
* @param {*} [options] Override http request option.
|
|
151
166
|
* @throws {RequiredError}
|
|
152
167
|
*/
|
|
153
|
-
getTenantBankAccount(code: string, authorization?: string, expand?:
|
|
168
|
+
getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: any): AxiosPromise<GetTenantBankAccountResponseClass>;
|
|
154
169
|
/**
|
|
155
|
-
*
|
|
170
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
171
|
+
* @summary List Tenant Bank Accounts
|
|
156
172
|
* @param {string} [authorization] Bearer Token
|
|
157
173
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
158
174
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -160,12 +176,14 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
160
176
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
161
177
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
162
178
|
* @param {string} [expand] Expand the response with additional entities
|
|
179
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
163
180
|
* @param {*} [options] Override http request option.
|
|
164
181
|
* @throws {RequiredError}
|
|
165
182
|
*/
|
|
166
|
-
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: any): AxiosPromise<void>;
|
|
183
|
+
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: any): AxiosPromise<void>;
|
|
167
184
|
/**
|
|
168
|
-
*
|
|
185
|
+
* Update a tenant bank account by code
|
|
186
|
+
* @summary Update a tenant bank account
|
|
169
187
|
* @param {string} code Unique identifier for the object.
|
|
170
188
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
171
189
|
* @param {string} [authorization] Bearer Token
|
|
@@ -232,10 +250,10 @@ export interface TenantBankAccountApiGetTenantBankAccountRequest {
|
|
|
232
250
|
readonly authorization?: string;
|
|
233
251
|
/**
|
|
234
252
|
* Expand the response with additional entities
|
|
235
|
-
* @type {
|
|
253
|
+
* @type {'bankTransactions'}
|
|
236
254
|
* @memberof TenantBankAccountApiGetTenantBankAccount
|
|
237
255
|
*/
|
|
238
|
-
readonly expand?:
|
|
256
|
+
readonly expand?: 'bankTransactions';
|
|
239
257
|
}
|
|
240
258
|
/**
|
|
241
259
|
* Request parameters for listTenantBankAccounts operation in TenantBankAccountApi.
|
|
@@ -285,6 +303,12 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
285
303
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
286
304
|
*/
|
|
287
305
|
readonly expand?: string;
|
|
306
|
+
/**
|
|
307
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
308
|
+
* @type {any}
|
|
309
|
+
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
310
|
+
*/
|
|
311
|
+
readonly filters?: any;
|
|
288
312
|
}
|
|
289
313
|
/**
|
|
290
314
|
* Request parameters for updateTenantBankAccount operation in TenantBankAccountApi.
|
|
@@ -319,7 +343,8 @@ export interface TenantBankAccountApiUpdateTenantBankAccountRequest {
|
|
|
319
343
|
*/
|
|
320
344
|
export declare class TenantBankAccountApi extends BaseAPI {
|
|
321
345
|
/**
|
|
322
|
-
*
|
|
346
|
+
* Create a new tenant bank account
|
|
347
|
+
* @summary Create the Create Tenant Bank Account
|
|
323
348
|
* @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
|
|
324
349
|
* @param {*} [options] Override http request option.
|
|
325
350
|
* @throws {RequiredError}
|
|
@@ -327,7 +352,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
327
352
|
*/
|
|
328
353
|
createTenantBankAccount(requestParameters: TenantBankAccountApiCreateTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
329
354
|
/**
|
|
330
|
-
*
|
|
355
|
+
* Deletes a tenant bank account by code
|
|
356
|
+
* @summary Deletes a tenant bank account
|
|
331
357
|
* @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
|
|
332
358
|
* @param {*} [options] Override http request option.
|
|
333
359
|
* @throws {RequiredError}
|
|
@@ -335,7 +361,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
335
361
|
*/
|
|
336
362
|
deleteTenantBankAccount(requestParameters: TenantBankAccountApiDeleteTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
337
363
|
/**
|
|
338
|
-
*
|
|
364
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
365
|
+
* @summary Retrieve the Bank Transaction
|
|
339
366
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
340
367
|
* @param {*} [options] Override http request option.
|
|
341
368
|
* @throws {RequiredError}
|
|
@@ -343,7 +370,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
343
370
|
*/
|
|
344
371
|
getTenantBankAccount(requestParameters: TenantBankAccountApiGetTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantBankAccountResponseClass, any>>;
|
|
345
372
|
/**
|
|
346
|
-
*
|
|
373
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
374
|
+
* @summary List Tenant Bank Accounts
|
|
347
375
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
348
376
|
* @param {*} [options] Override http request option.
|
|
349
377
|
* @throws {RequiredError}
|
|
@@ -351,7 +379,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
351
379
|
*/
|
|
352
380
|
listTenantBankAccounts(requestParameters?: TenantBankAccountApiListTenantBankAccountsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
353
381
|
/**
|
|
354
|
-
*
|
|
382
|
+
* Update a tenant bank account by code
|
|
383
|
+
* @summary Update a tenant bank account
|
|
355
384
|
* @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
|
|
356
385
|
* @param {*} [options] Override http request option.
|
|
357
386
|
* @throws {RequiredError}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -93,7 +93,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Create a new tenant bank account
|
|
97
|
+
* @summary Create the Create Tenant Bank Account
|
|
97
98
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
98
99
|
* @param {string} [authorization] Bearer Token
|
|
99
100
|
* @param {*} [options] Override http request option.
|
|
@@ -141,7 +142,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
141
142
|
});
|
|
142
143
|
},
|
|
143
144
|
/**
|
|
144
|
-
*
|
|
145
|
+
* Deletes a tenant bank account by code
|
|
146
|
+
* @summary Deletes a tenant bank account
|
|
145
147
|
* @param {string} code Unique identifier for the object.
|
|
146
148
|
* @param {string} [authorization] Bearer Token
|
|
147
149
|
* @param {*} [options] Override http request option.
|
|
@@ -188,10 +190,11 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
188
190
|
});
|
|
189
191
|
},
|
|
190
192
|
/**
|
|
191
|
-
*
|
|
193
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
194
|
+
* @summary Retrieve the Bank Transaction
|
|
192
195
|
* @param {string} code Unique identifier for the object.
|
|
193
196
|
* @param {string} [authorization] Bearer Token
|
|
194
|
-
* @param {
|
|
197
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
195
198
|
* @param {*} [options] Override http request option.
|
|
196
199
|
* @throws {RequiredError}
|
|
197
200
|
*/
|
|
@@ -239,7 +242,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
239
242
|
});
|
|
240
243
|
},
|
|
241
244
|
/**
|
|
242
|
-
*
|
|
245
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
246
|
+
* @summary List Tenant Bank Accounts
|
|
243
247
|
* @param {string} [authorization] Bearer Token
|
|
244
248
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
245
249
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -247,10 +251,11 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
247
251
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
248
252
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
249
253
|
* @param {string} [expand] Expand the response with additional entities
|
|
254
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
250
255
|
* @param {*} [options] Override http request option.
|
|
251
256
|
* @throws {RequiredError}
|
|
252
257
|
*/
|
|
253
|
-
listTenantBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
258
|
+
listTenantBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
254
259
|
if (options === void 0) { options = {}; }
|
|
255
260
|
return __awaiter(_this, void 0, void 0, function () {
|
|
256
261
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -291,6 +296,9 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
291
296
|
if (expand !== undefined) {
|
|
292
297
|
localVarQueryParameter['expand'] = expand;
|
|
293
298
|
}
|
|
299
|
+
if (filters !== undefined) {
|
|
300
|
+
localVarQueryParameter['filters'] = filters;
|
|
301
|
+
}
|
|
294
302
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
295
303
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
296
304
|
}
|
|
@@ -306,7 +314,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
306
314
|
});
|
|
307
315
|
},
|
|
308
316
|
/**
|
|
309
|
-
*
|
|
317
|
+
* Update a tenant bank account by code
|
|
318
|
+
* @summary Update a tenant bank account
|
|
310
319
|
* @param {string} code Unique identifier for the object.
|
|
311
320
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
312
321
|
* @param {string} [authorization] Bearer Token
|
|
@@ -368,7 +377,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
368
377
|
var localVarAxiosParamCreator = (0, exports.TenantBankAccountApiAxiosParamCreator)(configuration);
|
|
369
378
|
return {
|
|
370
379
|
/**
|
|
371
|
-
*
|
|
380
|
+
* Create a new tenant bank account
|
|
381
|
+
* @summary Create the Create Tenant Bank Account
|
|
372
382
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
373
383
|
* @param {string} [authorization] Bearer Token
|
|
374
384
|
* @param {*} [options] Override http request option.
|
|
@@ -388,7 +398,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
388
398
|
});
|
|
389
399
|
},
|
|
390
400
|
/**
|
|
391
|
-
*
|
|
401
|
+
* Deletes a tenant bank account by code
|
|
402
|
+
* @summary Deletes a tenant bank account
|
|
392
403
|
* @param {string} code Unique identifier for the object.
|
|
393
404
|
* @param {string} [authorization] Bearer Token
|
|
394
405
|
* @param {*} [options] Override http request option.
|
|
@@ -408,10 +419,11 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
408
419
|
});
|
|
409
420
|
},
|
|
410
421
|
/**
|
|
411
|
-
*
|
|
422
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
423
|
+
* @summary Retrieve the Bank Transaction
|
|
412
424
|
* @param {string} code Unique identifier for the object.
|
|
413
425
|
* @param {string} [authorization] Bearer Token
|
|
414
|
-
* @param {
|
|
426
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
415
427
|
* @param {*} [options] Override http request option.
|
|
416
428
|
* @throws {RequiredError}
|
|
417
429
|
*/
|
|
@@ -429,7 +441,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
429
441
|
});
|
|
430
442
|
},
|
|
431
443
|
/**
|
|
432
|
-
*
|
|
444
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
445
|
+
* @summary List Tenant Bank Accounts
|
|
433
446
|
* @param {string} [authorization] Bearer Token
|
|
434
447
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
435
448
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -437,15 +450,16 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
437
450
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
438
451
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
439
452
|
* @param {string} [expand] Expand the response with additional entities
|
|
453
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
440
454
|
* @param {*} [options] Override http request option.
|
|
441
455
|
* @throws {RequiredError}
|
|
442
456
|
*/
|
|
443
|
-
listTenantBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
457
|
+
listTenantBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
444
458
|
return __awaiter(this, void 0, void 0, function () {
|
|
445
459
|
var localVarAxiosArgs;
|
|
446
460
|
return __generator(this, function (_a) {
|
|
447
461
|
switch (_a.label) {
|
|
448
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
462
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
449
463
|
case 1:
|
|
450
464
|
localVarAxiosArgs = _a.sent();
|
|
451
465
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -454,7 +468,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
454
468
|
});
|
|
455
469
|
},
|
|
456
470
|
/**
|
|
457
|
-
*
|
|
471
|
+
* Update a tenant bank account by code
|
|
472
|
+
* @summary Update a tenant bank account
|
|
458
473
|
* @param {string} code Unique identifier for the object.
|
|
459
474
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
460
475
|
* @param {string} [authorization] Bearer Token
|
|
@@ -485,7 +500,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
485
500
|
var localVarFp = (0, exports.TenantBankAccountApiFp)(configuration);
|
|
486
501
|
return {
|
|
487
502
|
/**
|
|
488
|
-
*
|
|
503
|
+
* Create a new tenant bank account
|
|
504
|
+
* @summary Create the Create Tenant Bank Account
|
|
489
505
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
490
506
|
* @param {string} [authorization] Bearer Token
|
|
491
507
|
* @param {*} [options] Override http request option.
|
|
@@ -495,7 +511,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
495
511
|
return localVarFp.createTenantBankAccount(createTenantBankAccountRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
496
512
|
},
|
|
497
513
|
/**
|
|
498
|
-
*
|
|
514
|
+
* Deletes a tenant bank account by code
|
|
515
|
+
* @summary Deletes a tenant bank account
|
|
499
516
|
* @param {string} code Unique identifier for the object.
|
|
500
517
|
* @param {string} [authorization] Bearer Token
|
|
501
518
|
* @param {*} [options] Override http request option.
|
|
@@ -505,10 +522,11 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
505
522
|
return localVarFp.deleteTenantBankAccount(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
506
523
|
},
|
|
507
524
|
/**
|
|
508
|
-
*
|
|
525
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
526
|
+
* @summary Retrieve the Bank Transaction
|
|
509
527
|
* @param {string} code Unique identifier for the object.
|
|
510
528
|
* @param {string} [authorization] Bearer Token
|
|
511
|
-
* @param {
|
|
529
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
512
530
|
* @param {*} [options] Override http request option.
|
|
513
531
|
* @throws {RequiredError}
|
|
514
532
|
*/
|
|
@@ -516,7 +534,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
516
534
|
return localVarFp.getTenantBankAccount(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
517
535
|
},
|
|
518
536
|
/**
|
|
519
|
-
*
|
|
537
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
538
|
+
* @summary List Tenant Bank Accounts
|
|
520
539
|
* @param {string} [authorization] Bearer Token
|
|
521
540
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
522
541
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -524,14 +543,16 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
524
543
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
525
544
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
526
545
|
* @param {string} [expand] Expand the response with additional entities
|
|
546
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
527
547
|
* @param {*} [options] Override http request option.
|
|
528
548
|
* @throws {RequiredError}
|
|
529
549
|
*/
|
|
530
|
-
listTenantBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
531
|
-
return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
550
|
+
listTenantBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
551
|
+
return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
532
552
|
},
|
|
533
553
|
/**
|
|
534
|
-
*
|
|
554
|
+
* Update a tenant bank account by code
|
|
555
|
+
* @summary Update a tenant bank account
|
|
535
556
|
* @param {string} code Unique identifier for the object.
|
|
536
557
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
537
558
|
* @param {string} [authorization] Bearer Token
|
|
@@ -556,7 +577,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
556
577
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
557
578
|
}
|
|
558
579
|
/**
|
|
559
|
-
*
|
|
580
|
+
* Create a new tenant bank account
|
|
581
|
+
* @summary Create the Create Tenant Bank Account
|
|
560
582
|
* @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
|
|
561
583
|
* @param {*} [options] Override http request option.
|
|
562
584
|
* @throws {RequiredError}
|
|
@@ -567,7 +589,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
567
589
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).createTenantBankAccount(requestParameters.createTenantBankAccountRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
568
590
|
};
|
|
569
591
|
/**
|
|
570
|
-
*
|
|
592
|
+
* Deletes a tenant bank account by code
|
|
593
|
+
* @summary Deletes a tenant bank account
|
|
571
594
|
* @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
|
|
572
595
|
* @param {*} [options] Override http request option.
|
|
573
596
|
* @throws {RequiredError}
|
|
@@ -578,7 +601,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
578
601
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).deleteTenantBankAccount(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
579
602
|
};
|
|
580
603
|
/**
|
|
581
|
-
*
|
|
604
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
605
|
+
* @summary Retrieve the Bank Transaction
|
|
582
606
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
583
607
|
* @param {*} [options] Override http request option.
|
|
584
608
|
* @throws {RequiredError}
|
|
@@ -589,7 +613,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
589
613
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).getTenantBankAccount(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
590
614
|
};
|
|
591
615
|
/**
|
|
592
|
-
*
|
|
616
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
617
|
+
* @summary List Tenant Bank Accounts
|
|
593
618
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
594
619
|
* @param {*} [options] Override http request option.
|
|
595
620
|
* @throws {RequiredError}
|
|
@@ -598,10 +623,11 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
598
623
|
TenantBankAccountApi.prototype.listTenantBankAccounts = function (requestParameters, options) {
|
|
599
624
|
var _this = this;
|
|
600
625
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
601
|
-
return (0, exports.TenantBankAccountApiFp)(this.configuration).listTenantBankAccounts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
626
|
+
return (0, exports.TenantBankAccountApiFp)(this.configuration).listTenantBankAccounts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
602
627
|
};
|
|
603
628
|
/**
|
|
604
|
-
*
|
|
629
|
+
* Update a tenant bank account by code
|
|
630
|
+
* @summary Update a tenant bank account
|
|
605
631
|
* @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
|
|
606
632
|
* @param {*} [options] Override http request option.
|
|
607
633
|
* @throws {RequiredError}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/api/webhooks-api.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/api.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/api.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/base.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/base.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/common.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -68,7 +68,7 @@ export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios
|
|
|
68
68
|
* 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.
|
|
69
69
|
*
|
|
70
70
|
* The version of the OpenAPI document: 1.0
|
|
71
|
-
* Contact:
|
|
71
|
+
* Contact: kontakt@emil.de
|
|
72
72
|
*
|
|
73
73
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
74
74
|
* https://openapi-generator.tech
|
package/dist/common.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
7
|
*
|
|
8
8
|
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact:
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/configuration.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact:
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|