@emilgroup/payment-sdk-node 1.13.1-beta.2 → 1.13.1-beta.20
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 +4 -0
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +5 -5
- package/api/bank-transaction-api.ts +82 -45
- package/api/default-api.ts +1 -1
- package/api/payment-methods-api.ts +5 -5
- package/api/payment-reminders-api.ts +5 -5
- package/api/payment-setup-api.ts +1 -1
- package/api/payments-api.ts +5 -5
- package/api/refunds-api.ts +5 -5
- package/api/tenant-bank-account-api.ts +74 -64
- 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 +5 -5
- package/dist/api/bank-accounts-api.js +4 -4
- package/dist/api/bank-transaction-api.d.ts +56 -36
- package/dist/api/bank-transaction-api.js +47 -32
- 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 +5 -5
- package/dist/api/payment-methods-api.js +4 -4
- package/dist/api/payment-reminders-api.d.ts +5 -5
- package/dist/api/payment-reminders-api.js +4 -4
- 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 +5 -5
- package/dist/api/payments-api.js +4 -4
- package/dist/api/refunds-api.d.ts +5 -5
- package/dist/api/refunds-api.js +4 -4
- package/dist/api/tenant-bank-account-api.d.ts +73 -60
- package/dist/api/tenant-bank-account-api.js +56 -42
- 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/create-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/create-tenant-bank-account-response-class.js +15 -0
- 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 +4 -0
- package/dist/models/index.js +4 -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/list-tenant-bank-account-response-class.d.ts +31 -0
- package/dist/models/list-tenant-bank-account-response-class.js +15 -0
- package/dist/models/refund-class.d.ts +2 -1
- package/dist/models/refund-class.js +3 -2
- 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/create-tenant-bank-account-response-class.ts +31 -0
- 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 +4 -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/list-tenant-bank-account-response-class.ts +37 -0
- package/models/refund-class.ts +3 -2
- 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
package/api/payments-api.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
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
|
-
* Contact:
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -155,7 +155,7 @@ export const PaymentsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
155
155
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
156
156
|
* @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.
|
|
157
157
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
158
|
-
* @param {any} [search]
|
|
158
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
159
159
|
* @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.
|
|
160
160
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
161
161
|
* @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.
|
|
@@ -268,7 +268,7 @@ export const PaymentsApiFp = function(configuration?: Configuration) {
|
|
|
268
268
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
269
269
|
* @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.
|
|
270
270
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
271
|
-
* @param {any} [search]
|
|
271
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
272
272
|
* @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.
|
|
273
273
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
274
274
|
* @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.
|
|
@@ -321,7 +321,7 @@ export const PaymentsApiFactory = function (configuration?: Configuration, baseP
|
|
|
321
321
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
322
322
|
* @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.
|
|
323
323
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
324
|
-
* @param {any} [search]
|
|
324
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
325
325
|
* @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.
|
|
326
326
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
327
327
|
* @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.
|
|
@@ -432,7 +432,7 @@ export interface PaymentsApiListPaymentsRequest {
|
|
|
432
432
|
readonly filter?: any
|
|
433
433
|
|
|
434
434
|
/**
|
|
435
|
-
*
|
|
435
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
436
436
|
* @type {any}
|
|
437
437
|
* @memberof PaymentsApiListPayments
|
|
438
438
|
*/
|
package/api/refunds-api.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
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
|
-
* Contact:
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -148,7 +148,7 @@ export const RefundsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
148
148
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
149
149
|
* @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.
|
|
150
150
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
151
|
-
* @param {any} [search]
|
|
151
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
152
152
|
* @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.
|
|
153
153
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
154
154
|
* @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.
|
|
@@ -257,7 +257,7 @@ export const RefundsApiFp = function(configuration?: Configuration) {
|
|
|
257
257
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
258
258
|
* @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.
|
|
259
259
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
260
|
-
* @param {any} [search]
|
|
260
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
261
261
|
* @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.
|
|
262
262
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
263
263
|
* @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.
|
|
@@ -306,7 +306,7 @@ export const RefundsApiFactory = function (configuration?: Configuration, basePa
|
|
|
306
306
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
307
307
|
* @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.
|
|
308
308
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
309
|
-
* @param {any} [search]
|
|
309
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
310
310
|
* @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.
|
|
311
311
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
312
312
|
* @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.
|
|
@@ -410,7 +410,7 @@ export interface RefundsApiListRefundsRequest {
|
|
|
410
410
|
readonly filter?: any
|
|
411
411
|
|
|
412
412
|
/**
|
|
413
|
-
*
|
|
413
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
414
414
|
* @type {any}
|
|
415
415
|
* @memberof RefundsApiListRefunds
|
|
416
416
|
*/
|
|
@@ -5,7 +5,7 @@
|
|
|
5
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
|
-
* Contact:
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -23,8 +23,12 @@ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } fr
|
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { CreateTenantBankAccountRequestDto } from '../models';
|
|
25
25
|
// @ts-ignore
|
|
26
|
+
import { CreateTenantBankAccountResponseClass } from '../models';
|
|
27
|
+
// @ts-ignore
|
|
26
28
|
import { GetTenantBankAccountResponseClass } from '../models';
|
|
27
29
|
// @ts-ignore
|
|
30
|
+
import { ListTenantBankAccountResponseClass } from '../models';
|
|
31
|
+
// @ts-ignore
|
|
28
32
|
import { UpdateTenantBankAccountRestRequestDto } from '../models';
|
|
29
33
|
// URLSearchParams not necessarily used
|
|
30
34
|
// @ts-ignore
|
|
@@ -37,7 +41,8 @@ const FormData = require('form-data');
|
|
|
37
41
|
export const TenantBankAccountApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
38
42
|
return {
|
|
39
43
|
/**
|
|
40
|
-
*
|
|
44
|
+
* Create a new tenant bank account
|
|
45
|
+
* @summary Create the Tenant Bank Account
|
|
41
46
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
42
47
|
* @param {string} [authorization] Bearer Token
|
|
43
48
|
* @param {*} [options] Override http request option.
|
|
@@ -83,7 +88,8 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
83
88
|
};
|
|
84
89
|
},
|
|
85
90
|
/**
|
|
86
|
-
*
|
|
91
|
+
* Deletes a tenant bank account by code
|
|
92
|
+
* @summary Delete the tenant bank account
|
|
87
93
|
* @param {string} code Unique identifier for the object.
|
|
88
94
|
* @param {string} [authorization] Bearer Token
|
|
89
95
|
* @param {*} [options] Override http request option.
|
|
@@ -127,14 +133,14 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
127
133
|
};
|
|
128
134
|
},
|
|
129
135
|
/**
|
|
130
|
-
*
|
|
136
|
+
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code that was returned when you created it and Emil Api will return the corresponding Tenant Bank Account information.
|
|
137
|
+
* @summary Retrieve the Tenant Bank Account
|
|
131
138
|
* @param {string} code Unique identifier for the object.
|
|
132
139
|
* @param {string} [authorization] Bearer Token
|
|
133
|
-
* @param {string} [expand] Expand the response with additional entities
|
|
134
140
|
* @param {*} [options] Override http request option.
|
|
135
141
|
* @throws {RequiredError}
|
|
136
142
|
*/
|
|
137
|
-
getTenantBankAccount: async (code: string, authorization?: string,
|
|
143
|
+
getTenantBankAccount: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
138
144
|
// verify required parameter 'code' is not null or undefined
|
|
139
145
|
assertParamExists('getTenantBankAccount', 'code', code)
|
|
140
146
|
const localVarPath = `/paymentservice/v1/tenant/bank-accounts/{code}`
|
|
@@ -156,10 +162,6 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
156
162
|
// http bearer authentication required
|
|
157
163
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
158
164
|
|
|
159
|
-
if (expand !== undefined) {
|
|
160
|
-
localVarQueryParameter['expand'] = expand;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
165
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
164
166
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
165
167
|
}
|
|
@@ -176,19 +178,20 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
176
178
|
};
|
|
177
179
|
},
|
|
178
180
|
/**
|
|
179
|
-
*
|
|
181
|
+
* 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.
|
|
182
|
+
* @summary List Tenant Bank Accounts
|
|
180
183
|
* @param {string} [authorization] Bearer Token
|
|
181
184
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
182
185
|
* @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.
|
|
183
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
184
|
-
* @param {any} [search]
|
|
186
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
187
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
185
188
|
* @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.
|
|
186
|
-
* @param {
|
|
189
|
+
* @param {number} [expand] No expand is available for this tenant bank accounts
|
|
187
190
|
* @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.
|
|
188
191
|
* @param {*} [options] Override http request option.
|
|
189
192
|
* @throws {RequiredError}
|
|
190
193
|
*/
|
|
191
|
-
listTenantBankAccounts: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
194
|
+
listTenantBankAccounts: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: number, filters?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
192
195
|
const localVarPath = `/paymentservice/v1/tenant/bank-accounts`;
|
|
193
196
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
194
197
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -251,7 +254,8 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
251
254
|
};
|
|
252
255
|
},
|
|
253
256
|
/**
|
|
254
|
-
*
|
|
257
|
+
* Update a tenant bank account by code
|
|
258
|
+
* @summary Update the tenant bank account
|
|
255
259
|
* @param {string} code Unique identifier for the object.
|
|
256
260
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
257
261
|
* @param {string} [authorization] Bearer Token
|
|
@@ -311,65 +315,69 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
311
315
|
const localVarAxiosParamCreator = TenantBankAccountApiAxiosParamCreator(configuration)
|
|
312
316
|
return {
|
|
313
317
|
/**
|
|
314
|
-
*
|
|
318
|
+
* Create a new tenant bank account
|
|
319
|
+
* @summary Create the Tenant Bank Account
|
|
315
320
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
316
321
|
* @param {string} [authorization] Bearer Token
|
|
317
322
|
* @param {*} [options] Override http request option.
|
|
318
323
|
* @throws {RequiredError}
|
|
319
324
|
*/
|
|
320
|
-
async createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
325
|
+
async createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTenantBankAccountResponseClass>> {
|
|
321
326
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createTenantBankAccount(createTenantBankAccountRequestDto, authorization, options);
|
|
322
327
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
323
328
|
},
|
|
324
329
|
/**
|
|
325
|
-
*
|
|
330
|
+
* Deletes a tenant bank account by code
|
|
331
|
+
* @summary Delete the tenant bank account
|
|
326
332
|
* @param {string} code Unique identifier for the object.
|
|
327
333
|
* @param {string} [authorization] Bearer Token
|
|
328
334
|
* @param {*} [options] Override http request option.
|
|
329
335
|
* @throws {RequiredError}
|
|
330
336
|
*/
|
|
331
|
-
async deleteTenantBankAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
337
|
+
async deleteTenantBankAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
332
338
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTenantBankAccount(code, authorization, options);
|
|
333
339
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
334
340
|
},
|
|
335
341
|
/**
|
|
336
|
-
*
|
|
342
|
+
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code that was returned when you created it and Emil Api will return the corresponding Tenant Bank Account information.
|
|
343
|
+
* @summary Retrieve the Tenant Bank Account
|
|
337
344
|
* @param {string} code Unique identifier for the object.
|
|
338
345
|
* @param {string} [authorization] Bearer Token
|
|
339
|
-
* @param {string} [expand] Expand the response with additional entities
|
|
340
346
|
* @param {*} [options] Override http request option.
|
|
341
347
|
* @throws {RequiredError}
|
|
342
348
|
*/
|
|
343
|
-
async getTenantBankAccount(code: string, authorization?: string,
|
|
344
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getTenantBankAccount(code, authorization,
|
|
349
|
+
async getTenantBankAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>> {
|
|
350
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getTenantBankAccount(code, authorization, options);
|
|
345
351
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
346
352
|
},
|
|
347
353
|
/**
|
|
348
|
-
*
|
|
354
|
+
* 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.
|
|
355
|
+
* @summary List Tenant Bank Accounts
|
|
349
356
|
* @param {string} [authorization] Bearer Token
|
|
350
357
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
351
358
|
* @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.
|
|
352
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
353
|
-
* @param {any} [search]
|
|
359
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
360
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
354
361
|
* @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.
|
|
355
|
-
* @param {
|
|
362
|
+
* @param {number} [expand] No expand is available for this tenant bank accounts
|
|
356
363
|
* @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.
|
|
357
364
|
* @param {*} [options] Override http request option.
|
|
358
365
|
* @throws {RequiredError}
|
|
359
366
|
*/
|
|
360
|
-
async listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
367
|
+
async listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: number, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTenantBankAccountResponseClass>> {
|
|
361
368
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
362
369
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
363
370
|
},
|
|
364
371
|
/**
|
|
365
|
-
*
|
|
372
|
+
* Update a tenant bank account by code
|
|
373
|
+
* @summary Update the tenant bank account
|
|
366
374
|
* @param {string} code Unique identifier for the object.
|
|
367
375
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
368
376
|
* @param {string} [authorization] Bearer Token
|
|
369
377
|
* @param {*} [options] Override http request option.
|
|
370
378
|
* @throws {RequiredError}
|
|
371
379
|
*/
|
|
372
|
-
async updateTenantBankAccount(code: string, updateTenantBankAccountRestRequestDto: UpdateTenantBankAccountRestRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
380
|
+
async updateTenantBankAccount(code: string, updateTenantBankAccountRestRequestDto: UpdateTenantBankAccountRestRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTenantBankAccountResponseClass>> {
|
|
373
381
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateTenantBankAccount(code, updateTenantBankAccountRestRequestDto, authorization, options);
|
|
374
382
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
375
383
|
},
|
|
@@ -384,61 +392,65 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
384
392
|
const localVarFp = TenantBankAccountApiFp(configuration)
|
|
385
393
|
return {
|
|
386
394
|
/**
|
|
387
|
-
*
|
|
395
|
+
* Create a new tenant bank account
|
|
396
|
+
* @summary Create the Tenant Bank Account
|
|
388
397
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
389
398
|
* @param {string} [authorization] Bearer Token
|
|
390
399
|
* @param {*} [options] Override http request option.
|
|
391
400
|
* @throws {RequiredError}
|
|
392
401
|
*/
|
|
393
|
-
createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: any): AxiosPromise<
|
|
402
|
+
createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: any): AxiosPromise<CreateTenantBankAccountResponseClass> {
|
|
394
403
|
return localVarFp.createTenantBankAccount(createTenantBankAccountRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
395
404
|
},
|
|
396
405
|
/**
|
|
397
|
-
*
|
|
406
|
+
* Deletes a tenant bank account by code
|
|
407
|
+
* @summary Delete the tenant bank account
|
|
398
408
|
* @param {string} code Unique identifier for the object.
|
|
399
409
|
* @param {string} [authorization] Bearer Token
|
|
400
410
|
* @param {*} [options] Override http request option.
|
|
401
411
|
* @throws {RequiredError}
|
|
402
412
|
*/
|
|
403
|
-
deleteTenantBankAccount(code: string, authorization?: string, options?: any): AxiosPromise<
|
|
413
|
+
deleteTenantBankAccount(code: string, authorization?: string, options?: any): AxiosPromise<object> {
|
|
404
414
|
return localVarFp.deleteTenantBankAccount(code, authorization, options).then((request) => request(axios, basePath));
|
|
405
415
|
},
|
|
406
416
|
/**
|
|
407
|
-
*
|
|
417
|
+
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code that was returned when you created it and Emil Api will return the corresponding Tenant Bank Account information.
|
|
418
|
+
* @summary Retrieve the Tenant Bank Account
|
|
408
419
|
* @param {string} code Unique identifier for the object.
|
|
409
420
|
* @param {string} [authorization] Bearer Token
|
|
410
|
-
* @param {string} [expand] Expand the response with additional entities
|
|
411
421
|
* @param {*} [options] Override http request option.
|
|
412
422
|
* @throws {RequiredError}
|
|
413
423
|
*/
|
|
414
|
-
getTenantBankAccount(code: string, authorization?: string,
|
|
415
|
-
return localVarFp.getTenantBankAccount(code, authorization,
|
|
424
|
+
getTenantBankAccount(code: string, authorization?: string, options?: any): AxiosPromise<GetTenantBankAccountResponseClass> {
|
|
425
|
+
return localVarFp.getTenantBankAccount(code, authorization, options).then((request) => request(axios, basePath));
|
|
416
426
|
},
|
|
417
427
|
/**
|
|
418
|
-
*
|
|
428
|
+
* 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.
|
|
429
|
+
* @summary List Tenant Bank Accounts
|
|
419
430
|
* @param {string} [authorization] Bearer Token
|
|
420
431
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
421
432
|
* @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.
|
|
422
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
423
|
-
* @param {any} [search]
|
|
433
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
434
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
424
435
|
* @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.
|
|
425
|
-
* @param {
|
|
436
|
+
* @param {number} [expand] No expand is available for this tenant bank accounts
|
|
426
437
|
* @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.
|
|
427
438
|
* @param {*} [options] Override http request option.
|
|
428
439
|
* @throws {RequiredError}
|
|
429
440
|
*/
|
|
430
|
-
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
441
|
+
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: number, filters?: any, options?: any): AxiosPromise<ListTenantBankAccountResponseClass> {
|
|
431
442
|
return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
432
443
|
},
|
|
433
444
|
/**
|
|
434
|
-
*
|
|
445
|
+
* Update a tenant bank account by code
|
|
446
|
+
* @summary Update the tenant bank account
|
|
435
447
|
* @param {string} code Unique identifier for the object.
|
|
436
448
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
437
449
|
* @param {string} [authorization] Bearer Token
|
|
438
450
|
* @param {*} [options] Override http request option.
|
|
439
451
|
* @throws {RequiredError}
|
|
440
452
|
*/
|
|
441
|
-
updateTenantBankAccount(code: string, updateTenantBankAccountRestRequestDto: UpdateTenantBankAccountRestRequestDto, authorization?: string, options?: any): AxiosPromise<
|
|
453
|
+
updateTenantBankAccount(code: string, updateTenantBankAccountRestRequestDto: UpdateTenantBankAccountRestRequestDto, authorization?: string, options?: any): AxiosPromise<CreateTenantBankAccountResponseClass> {
|
|
442
454
|
return localVarFp.updateTenantBankAccount(code, updateTenantBankAccountRestRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
443
455
|
},
|
|
444
456
|
};
|
|
@@ -505,13 +517,6 @@ export interface TenantBankAccountApiGetTenantBankAccountRequest {
|
|
|
505
517
|
* @memberof TenantBankAccountApiGetTenantBankAccount
|
|
506
518
|
*/
|
|
507
519
|
readonly authorization?: string
|
|
508
|
-
|
|
509
|
-
/**
|
|
510
|
-
* Expand the response with additional entities
|
|
511
|
-
* @type {string}
|
|
512
|
-
* @memberof TenantBankAccountApiGetTenantBankAccount
|
|
513
|
-
*/
|
|
514
|
-
readonly expand?: string
|
|
515
520
|
}
|
|
516
521
|
|
|
517
522
|
/**
|
|
@@ -542,14 +547,14 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
542
547
|
readonly pageToken?: any
|
|
543
548
|
|
|
544
549
|
/**
|
|
545
|
-
* Filter the response by one or multiple fields.
|
|
550
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
546
551
|
* @type {any}
|
|
547
552
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
548
553
|
*/
|
|
549
554
|
readonly filter?: any
|
|
550
555
|
|
|
551
556
|
/**
|
|
552
|
-
*
|
|
557
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
553
558
|
* @type {any}
|
|
554
559
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
555
560
|
*/
|
|
@@ -563,11 +568,11 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
563
568
|
readonly order?: any
|
|
564
569
|
|
|
565
570
|
/**
|
|
566
|
-
*
|
|
567
|
-
* @type {
|
|
571
|
+
* No expand is available for this tenant bank accounts
|
|
572
|
+
* @type {number}
|
|
568
573
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
569
574
|
*/
|
|
570
|
-
readonly expand?:
|
|
575
|
+
readonly expand?: number
|
|
571
576
|
|
|
572
577
|
/**
|
|
573
578
|
* 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.
|
|
@@ -613,7 +618,8 @@ export interface TenantBankAccountApiUpdateTenantBankAccountRequest {
|
|
|
613
618
|
*/
|
|
614
619
|
export class TenantBankAccountApi extends BaseAPI {
|
|
615
620
|
/**
|
|
616
|
-
*
|
|
621
|
+
* Create a new tenant bank account
|
|
622
|
+
* @summary Create the Tenant Bank Account
|
|
617
623
|
* @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
|
|
618
624
|
* @param {*} [options] Override http request option.
|
|
619
625
|
* @throws {RequiredError}
|
|
@@ -624,7 +630,8 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
624
630
|
}
|
|
625
631
|
|
|
626
632
|
/**
|
|
627
|
-
*
|
|
633
|
+
* Deletes a tenant bank account by code
|
|
634
|
+
* @summary Delete the tenant bank account
|
|
628
635
|
* @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
|
|
629
636
|
* @param {*} [options] Override http request option.
|
|
630
637
|
* @throws {RequiredError}
|
|
@@ -635,18 +642,20 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
635
642
|
}
|
|
636
643
|
|
|
637
644
|
/**
|
|
638
|
-
*
|
|
645
|
+
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code that was returned when you created it and Emil Api will return the corresponding Tenant Bank Account information.
|
|
646
|
+
* @summary Retrieve the Tenant Bank Account
|
|
639
647
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
640
648
|
* @param {*} [options] Override http request option.
|
|
641
649
|
* @throws {RequiredError}
|
|
642
650
|
* @memberof TenantBankAccountApi
|
|
643
651
|
*/
|
|
644
652
|
public getTenantBankAccount(requestParameters: TenantBankAccountApiGetTenantBankAccountRequest, options?: AxiosRequestConfig) {
|
|
645
|
-
return TenantBankAccountApiFp(this.configuration).getTenantBankAccount(requestParameters.code, requestParameters.authorization,
|
|
653
|
+
return TenantBankAccountApiFp(this.configuration).getTenantBankAccount(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
646
654
|
}
|
|
647
655
|
|
|
648
656
|
/**
|
|
649
|
-
*
|
|
657
|
+
* 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.
|
|
658
|
+
* @summary List Tenant Bank Accounts
|
|
650
659
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
651
660
|
* @param {*} [options] Override http request option.
|
|
652
661
|
* @throws {RequiredError}
|
|
@@ -657,7 +666,8 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
657
666
|
}
|
|
658
667
|
|
|
659
668
|
/**
|
|
660
|
-
*
|
|
669
|
+
* Update a tenant bank account by code
|
|
670
|
+
* @summary Update the tenant bank account
|
|
661
671
|
* @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
|
|
662
672
|
* @param {*} [options] Override http request option.
|
|
663
673
|
* @throws {RequiredError}
|
package/api/webhooks-api.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
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
|
-
* Contact:
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/api.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
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
|
-
* Contact:
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/base.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
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
|
-
* Contact:
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/common.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
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
|
-
* Contact:
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -144,7 +144,7 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
|
|
|
144
144
|
* 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.
|
|
145
145
|
*
|
|
146
146
|
* The version of the OpenAPI document: 1.0
|
|
147
|
-
* Contact:
|
|
147
|
+
* Contact: kontakt@emil.de
|
|
148
148
|
*
|
|
149
149
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
150
150
|
* https://openapi-generator.tech
|
package/configuration.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
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
|
-
* Contact:
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -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
|
|
@@ -33,7 +33,7 @@ export declare const BankAccountsApiAxiosParamCreator: (configuration?: Configur
|
|
|
33
33
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
34
34
|
* @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.
|
|
35
35
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
36
|
-
* @param {any} [search]
|
|
36
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
37
37
|
* @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.
|
|
38
38
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
39
39
|
* @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.
|
|
@@ -63,7 +63,7 @@ export declare const BankAccountsApiFp: (configuration?: Configuration) => {
|
|
|
63
63
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
64
64
|
* @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.
|
|
65
65
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
66
|
-
* @param {any} [search]
|
|
66
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
67
67
|
* @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.
|
|
68
68
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
69
69
|
* @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.
|
|
@@ -93,7 +93,7 @@ export declare const BankAccountsApiFactory: (configuration?: Configuration, bas
|
|
|
93
93
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
94
94
|
* @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.
|
|
95
95
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
96
|
-
* @param {any} [search]
|
|
96
|
+
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
97
97
|
* @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.
|
|
98
98
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
99
99
|
* @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.
|
|
@@ -152,7 +152,7 @@ export interface BankAccountsApiListBankAccountsRequest {
|
|
|
152
152
|
*/
|
|
153
153
|
readonly filter?: any;
|
|
154
154
|
/**
|
|
155
|
-
*
|
|
155
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
156
156
|
* @type {any}
|
|
157
157
|
* @memberof BankAccountsApiListBankAccounts
|
|
158
158
|
*/
|