@emilgroup/payment-sdk-node 1.22.1-beta.81 → 1.22.1-beta.83
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/README.md +2 -2
- package/api/tenant-bank-account-api.ts +8 -8
- package/dist/api/tenant-bank-account-api.d.ts +8 -8
- package/dist/api/tenant-bank-account-api.js +6 -6
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +17 -0
- package/dist/models/create-tenant-bank-account-request-dto.js +11 -1
- package/dist/models/tenant-bank-account-class-without-expand-properties.d.ts +17 -0
- package/dist/models/tenant-bank-account-class-without-expand-properties.js +11 -1
- package/dist/models/tenant-bank-account-class.d.ts +17 -0
- package/dist/models/tenant-bank-account-class.js +11 -1
- package/dist/models/tenant-bank-account-entity.d.ts +17 -0
- package/dist/models/tenant-bank-account-entity.js +11 -1
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +17 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +11 -1
- package/models/create-tenant-bank-account-request-dto.ts +18 -0
- package/models/tenant-bank-account-class-without-expand-properties.ts +18 -0
- package/models/tenant-bank-account-class.ts +18 -0
- package/models/tenant-bank-account-entity.ts +18 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +18 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/payment-sdk-node@1.22.1-beta.
|
|
20
|
+
npm install @emilgroup/payment-sdk-node@1.22.1-beta.83 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk-node@1.22.1-beta.
|
|
24
|
+
yarn add @emilgroup/payment-sdk-node@1.22.1-beta.83
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -190,11 +190,11 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
190
190
|
* @param {string} [authorization] Bearer Token
|
|
191
191
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
192
192
|
* @param {string} [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.
|
|
193
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
193
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
194
194
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
195
195
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
196
196
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
197
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
197
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
198
198
|
* @param {*} [options] Override http request option.
|
|
199
199
|
* @throws {RequiredError}
|
|
200
200
|
*/
|
|
@@ -364,11 +364,11 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
364
364
|
* @param {string} [authorization] Bearer Token
|
|
365
365
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
366
366
|
* @param {string} [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.
|
|
367
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
367
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
368
368
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
369
369
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
370
370
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
371
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
371
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
372
372
|
* @param {*} [options] Override http request option.
|
|
373
373
|
* @throws {RequiredError}
|
|
374
374
|
*/
|
|
@@ -439,11 +439,11 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
439
439
|
* @param {string} [authorization] Bearer Token
|
|
440
440
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
441
441
|
* @param {string} [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.
|
|
442
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
442
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
443
443
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
444
444
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
445
445
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
446
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
446
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
447
447
|
* @param {*} [options] Override http request option.
|
|
448
448
|
* @throws {RequiredError}
|
|
449
449
|
*/
|
|
@@ -563,7 +563,7 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
563
563
|
readonly pageToken?: string
|
|
564
564
|
|
|
565
565
|
/**
|
|
566
|
-
* 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, sepaPainVersion</i>
|
|
566
|
+
* 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, sepaPainVersion, payoutPainVersion</i>
|
|
567
567
|
* @type {string}
|
|
568
568
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
569
569
|
*/
|
|
@@ -591,7 +591,7 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
591
591
|
readonly expand?: string
|
|
592
592
|
|
|
593
593
|
/**
|
|
594
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
594
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
595
595
|
* @type {string}
|
|
596
596
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
597
597
|
*/
|
|
@@ -57,11 +57,11 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
57
57
|
* @param {string} [authorization] Bearer Token
|
|
58
58
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
59
59
|
* @param {string} [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.
|
|
60
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
60
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
61
61
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
62
62
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
63
63
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
64
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
64
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
65
65
|
* @param {*} [options] Override http request option.
|
|
66
66
|
* @throws {RequiredError}
|
|
67
67
|
*/
|
|
@@ -116,11 +116,11 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
116
116
|
* @param {string} [authorization] Bearer Token
|
|
117
117
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
118
118
|
* @param {string} [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.
|
|
119
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
119
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
120
120
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
121
121
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
122
122
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
123
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
123
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
124
124
|
* @param {*} [options] Override http request option.
|
|
125
125
|
* @throws {RequiredError}
|
|
126
126
|
*/
|
|
@@ -175,11 +175,11 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
175
175
|
* @param {string} [authorization] Bearer Token
|
|
176
176
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
177
177
|
* @param {string} [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.
|
|
178
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
178
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
179
179
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
180
180
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
181
181
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
182
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
182
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
183
183
|
* @param {*} [options] Override http request option.
|
|
184
184
|
* @throws {RequiredError}
|
|
185
185
|
*/
|
|
@@ -283,7 +283,7 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
283
283
|
*/
|
|
284
284
|
readonly pageToken?: string;
|
|
285
285
|
/**
|
|
286
|
-
* 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, sepaPainVersion</i>
|
|
286
|
+
* 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, sepaPainVersion, payoutPainVersion</i>
|
|
287
287
|
* @type {string}
|
|
288
288
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
289
289
|
*/
|
|
@@ -307,7 +307,7 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
307
307
|
*/
|
|
308
308
|
readonly expand?: string;
|
|
309
309
|
/**
|
|
310
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
310
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
311
311
|
* @type {string}
|
|
312
312
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
313
313
|
*/
|
|
@@ -251,11 +251,11 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
251
251
|
* @param {string} [authorization] Bearer Token
|
|
252
252
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
253
253
|
* @param {string} [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.
|
|
254
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
254
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
255
255
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
256
256
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
257
257
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
258
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
258
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
259
259
|
* @param {*} [options] Override http request option.
|
|
260
260
|
* @throws {RequiredError}
|
|
261
261
|
*/
|
|
@@ -450,11 +450,11 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
450
450
|
* @param {string} [authorization] Bearer Token
|
|
451
451
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
452
452
|
* @param {string} [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.
|
|
453
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
453
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
454
454
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
455
455
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
456
456
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
457
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
457
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
458
458
|
* @param {*} [options] Override http request option.
|
|
459
459
|
* @throws {RequiredError}
|
|
460
460
|
*/
|
|
@@ -543,11 +543,11 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
543
543
|
* @param {string} [authorization] Bearer Token
|
|
544
544
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
545
545
|
* @param {string} [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.
|
|
546
|
-
* @param {string} [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, sepaPainVersion</i>
|
|
546
|
+
* @param {string} [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, sepaPainVersion, payoutPainVersion</i>
|
|
547
547
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
548
548
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, bankName, accountName</i>
|
|
549
549
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
550
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion</i>
|
|
550
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName, sepaPainVersion, payoutPainVersion</i>
|
|
551
551
|
* @param {*} [options] Override http request option.
|
|
552
552
|
* @throws {RequiredError}
|
|
553
553
|
*/
|
|
@@ -75,6 +75,12 @@ export interface CreateTenantBankAccountRequestDto {
|
|
|
75
75
|
* @memberof CreateTenantBankAccountRequestDto
|
|
76
76
|
*/
|
|
77
77
|
'sepaPainVersion': CreateTenantBankAccountRequestDtoSepaPainVersionEnum;
|
|
78
|
+
/**
|
|
79
|
+
* Payout Pain version
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateTenantBankAccountRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'payoutPainVersion': CreateTenantBankAccountRequestDtoPayoutPainVersionEnum;
|
|
78
84
|
}
|
|
79
85
|
export declare const CreateTenantBankAccountRequestDtoSepaPainVersionEnum: {
|
|
80
86
|
readonly _00302: "pain.008.003.02";
|
|
@@ -86,3 +92,14 @@ export declare const CreateTenantBankAccountRequestDtoSepaPainVersionEnum: {
|
|
|
86
92
|
readonly _00111: "pain.008.001.11";
|
|
87
93
|
};
|
|
88
94
|
export type CreateTenantBankAccountRequestDtoSepaPainVersionEnum = typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum];
|
|
95
|
+
export declare const CreateTenantBankAccountRequestDtoPayoutPainVersionEnum: {
|
|
96
|
+
readonly _00302: "pain.001.003.02";
|
|
97
|
+
readonly _00108: "pain.001.001.08";
|
|
98
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
99
|
+
readonly _00802: "pain.001.008.02";
|
|
100
|
+
readonly _00109: "pain.001.001.09";
|
|
101
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
102
|
+
readonly _00110: "pain.001.001.10";
|
|
103
|
+
readonly _00111: "pain.001.001.11";
|
|
104
|
+
};
|
|
105
|
+
export type CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = typeof CreateTenantBankAccountRequestDtoPayoutPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoPayoutPainVersionEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = void 0;
|
|
16
|
+
exports.CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = void 0;
|
|
17
17
|
exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
|
|
18
18
|
_00302: 'pain.008.003.02',
|
|
19
19
|
_00108: 'pain.008.001.08',
|
|
@@ -23,3 +23,13 @@ exports.CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
|
|
|
23
23
|
_00110: 'pain.008.001.10',
|
|
24
24
|
_00111: 'pain.008.001.11'
|
|
25
25
|
};
|
|
26
|
+
exports.CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = {
|
|
27
|
+
_00302: 'pain.001.003.02',
|
|
28
|
+
_00108: 'pain.001.001.08',
|
|
29
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
30
|
+
_00802: 'pain.001.008.02',
|
|
31
|
+
_00109: 'pain.001.001.09',
|
|
32
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
33
|
+
_00110: 'pain.001.001.10',
|
|
34
|
+
_00111: 'pain.001.001.11'
|
|
35
|
+
};
|
|
@@ -111,6 +111,12 @@ export interface TenantBankAccountClassWithoutExpandProperties {
|
|
|
111
111
|
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
112
112
|
*/
|
|
113
113
|
'sepaPainVersion': TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum;
|
|
114
|
+
/**
|
|
115
|
+
* Payout Pain version
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
118
|
+
*/
|
|
119
|
+
'payoutPainVersion': TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum;
|
|
114
120
|
}
|
|
115
121
|
export declare const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum: {
|
|
116
122
|
readonly _00302: "pain.008.003.02";
|
|
@@ -122,3 +128,14 @@ export declare const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersio
|
|
|
122
128
|
readonly _00111: "pain.008.001.11";
|
|
123
129
|
};
|
|
124
130
|
export type TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum];
|
|
131
|
+
export declare const TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum: {
|
|
132
|
+
readonly _00302: "pain.001.003.02";
|
|
133
|
+
readonly _00108: "pain.001.001.08";
|
|
134
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
135
|
+
readonly _00802: "pain.001.008.02";
|
|
136
|
+
readonly _00109: "pain.001.001.09";
|
|
137
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
138
|
+
readonly _00110: "pain.001.001.10";
|
|
139
|
+
readonly _00111: "pain.001.001.11";
|
|
140
|
+
};
|
|
141
|
+
export type TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = void 0;
|
|
16
|
+
exports.TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = void 0;
|
|
17
17
|
exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
|
|
18
18
|
_00302: 'pain.008.003.02',
|
|
19
19
|
_00108: 'pain.008.001.08',
|
|
@@ -23,3 +23,13 @@ exports.TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
|
|
|
23
23
|
_00110: 'pain.008.001.10',
|
|
24
24
|
_00111: 'pain.008.001.11'
|
|
25
25
|
};
|
|
26
|
+
exports.TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = {
|
|
27
|
+
_00302: 'pain.001.003.02',
|
|
28
|
+
_00108: 'pain.001.001.08',
|
|
29
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
30
|
+
_00802: 'pain.001.008.02',
|
|
31
|
+
_00109: 'pain.001.001.09',
|
|
32
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
33
|
+
_00110: 'pain.001.001.10',
|
|
34
|
+
_00111: 'pain.001.001.11'
|
|
35
|
+
};
|
|
@@ -118,6 +118,12 @@ export interface TenantBankAccountClass {
|
|
|
118
118
|
* @memberof TenantBankAccountClass
|
|
119
119
|
*/
|
|
120
120
|
'sepaPainVersion': TenantBankAccountClassSepaPainVersionEnum;
|
|
121
|
+
/**
|
|
122
|
+
* Payout Pain version
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @memberof TenantBankAccountClass
|
|
125
|
+
*/
|
|
126
|
+
'payoutPainVersion': TenantBankAccountClassPayoutPainVersionEnum;
|
|
121
127
|
}
|
|
122
128
|
export declare const TenantBankAccountClassSepaPainVersionEnum: {
|
|
123
129
|
readonly _00302: "pain.008.003.02";
|
|
@@ -129,3 +135,14 @@ export declare const TenantBankAccountClassSepaPainVersionEnum: {
|
|
|
129
135
|
readonly _00111: "pain.008.001.11";
|
|
130
136
|
};
|
|
131
137
|
export type TenantBankAccountClassSepaPainVersionEnum = typeof TenantBankAccountClassSepaPainVersionEnum[keyof typeof TenantBankAccountClassSepaPainVersionEnum];
|
|
138
|
+
export declare const TenantBankAccountClassPayoutPainVersionEnum: {
|
|
139
|
+
readonly _00302: "pain.001.003.02";
|
|
140
|
+
readonly _00108: "pain.001.001.08";
|
|
141
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
142
|
+
readonly _00802: "pain.001.008.02";
|
|
143
|
+
readonly _00109: "pain.001.001.09";
|
|
144
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
145
|
+
readonly _00110: "pain.001.001.10";
|
|
146
|
+
readonly _00111: "pain.001.001.11";
|
|
147
|
+
};
|
|
148
|
+
export type TenantBankAccountClassPayoutPainVersionEnum = typeof TenantBankAccountClassPayoutPainVersionEnum[keyof typeof TenantBankAccountClassPayoutPainVersionEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.TenantBankAccountClassSepaPainVersionEnum = void 0;
|
|
16
|
+
exports.TenantBankAccountClassPayoutPainVersionEnum = exports.TenantBankAccountClassSepaPainVersionEnum = void 0;
|
|
17
17
|
exports.TenantBankAccountClassSepaPainVersionEnum = {
|
|
18
18
|
_00302: 'pain.008.003.02',
|
|
19
19
|
_00108: 'pain.008.001.08',
|
|
@@ -23,3 +23,13 @@ exports.TenantBankAccountClassSepaPainVersionEnum = {
|
|
|
23
23
|
_00110: 'pain.008.001.10',
|
|
24
24
|
_00111: 'pain.008.001.11'
|
|
25
25
|
};
|
|
26
|
+
exports.TenantBankAccountClassPayoutPainVersionEnum = {
|
|
27
|
+
_00302: 'pain.001.003.02',
|
|
28
|
+
_00108: 'pain.001.001.08',
|
|
29
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
30
|
+
_00802: 'pain.001.008.02',
|
|
31
|
+
_00109: 'pain.001.001.09',
|
|
32
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
33
|
+
_00110: 'pain.001.001.10',
|
|
34
|
+
_00111: 'pain.001.001.11'
|
|
35
|
+
};
|
|
@@ -100,6 +100,12 @@ export interface TenantBankAccountEntity {
|
|
|
100
100
|
* @memberof TenantBankAccountEntity
|
|
101
101
|
*/
|
|
102
102
|
'sepaPainVersion'?: TenantBankAccountEntitySepaPainVersionEnum;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof TenantBankAccountEntity
|
|
107
|
+
*/
|
|
108
|
+
'payoutPainVersion'?: TenantBankAccountEntityPayoutPainVersionEnum;
|
|
103
109
|
/**
|
|
104
110
|
*
|
|
105
111
|
* @type {string}
|
|
@@ -141,3 +147,14 @@ export declare const TenantBankAccountEntitySepaPainVersionEnum: {
|
|
|
141
147
|
readonly _00111: "pain.008.001.11";
|
|
142
148
|
};
|
|
143
149
|
export type TenantBankAccountEntitySepaPainVersionEnum = typeof TenantBankAccountEntitySepaPainVersionEnum[keyof typeof TenantBankAccountEntitySepaPainVersionEnum];
|
|
150
|
+
export declare const TenantBankAccountEntityPayoutPainVersionEnum: {
|
|
151
|
+
readonly _00302: "pain.001.003.02";
|
|
152
|
+
readonly _00108: "pain.001.001.08";
|
|
153
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
154
|
+
readonly _00802: "pain.001.008.02";
|
|
155
|
+
readonly _00109: "pain.001.001.09";
|
|
156
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
157
|
+
readonly _00110: "pain.001.001.10";
|
|
158
|
+
readonly _00111: "pain.001.001.11";
|
|
159
|
+
};
|
|
160
|
+
export type TenantBankAccountEntityPayoutPainVersionEnum = typeof TenantBankAccountEntityPayoutPainVersionEnum[keyof typeof TenantBankAccountEntityPayoutPainVersionEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.TenantBankAccountEntitySepaPainVersionEnum = void 0;
|
|
16
|
+
exports.TenantBankAccountEntityPayoutPainVersionEnum = exports.TenantBankAccountEntitySepaPainVersionEnum = void 0;
|
|
17
17
|
exports.TenantBankAccountEntitySepaPainVersionEnum = {
|
|
18
18
|
_00302: 'pain.008.003.02',
|
|
19
19
|
_00108: 'pain.008.001.08',
|
|
@@ -23,3 +23,13 @@ exports.TenantBankAccountEntitySepaPainVersionEnum = {
|
|
|
23
23
|
_00110: 'pain.008.001.10',
|
|
24
24
|
_00111: 'pain.008.001.11'
|
|
25
25
|
};
|
|
26
|
+
exports.TenantBankAccountEntityPayoutPainVersionEnum = {
|
|
27
|
+
_00302: 'pain.001.003.02',
|
|
28
|
+
_00108: 'pain.001.001.08',
|
|
29
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
30
|
+
_00802: 'pain.001.008.02',
|
|
31
|
+
_00109: 'pain.001.001.09',
|
|
32
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
33
|
+
_00110: 'pain.001.001.10',
|
|
34
|
+
_00111: 'pain.001.001.11'
|
|
35
|
+
};
|
|
@@ -69,6 +69,12 @@ export interface UpdateTenantBankAccountRestRequestDto {
|
|
|
69
69
|
* @memberof UpdateTenantBankAccountRestRequestDto
|
|
70
70
|
*/
|
|
71
71
|
'sepaPainVersion': UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum;
|
|
72
|
+
/**
|
|
73
|
+
* Payout Pain version
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof UpdateTenantBankAccountRestRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'payoutPainVersion': UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum;
|
|
72
78
|
}
|
|
73
79
|
export declare const UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum: {
|
|
74
80
|
readonly _00302: "pain.008.003.02";
|
|
@@ -80,3 +86,14 @@ export declare const UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum: {
|
|
|
80
86
|
readonly _00111: "pain.008.001.11";
|
|
81
87
|
};
|
|
82
88
|
export type UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = typeof UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum[keyof typeof UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum];
|
|
89
|
+
export declare const UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum: {
|
|
90
|
+
readonly _00302: "pain.001.003.02";
|
|
91
|
+
readonly _00108: "pain.001.001.08";
|
|
92
|
+
readonly _00108Gbic5: "pain.001.001.08_GBIC_5";
|
|
93
|
+
readonly _00802: "pain.001.008.02";
|
|
94
|
+
readonly _00109: "pain.001.001.09";
|
|
95
|
+
readonly _00109Gbic5: "pain.001.001.09_GBIC_5";
|
|
96
|
+
readonly _00110: "pain.001.001.10";
|
|
97
|
+
readonly _00111: "pain.001.001.11";
|
|
98
|
+
};
|
|
99
|
+
export type UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum = typeof UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum[keyof typeof UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum];
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = void 0;
|
|
16
|
+
exports.UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum = exports.UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = void 0;
|
|
17
17
|
exports.UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = {
|
|
18
18
|
_00302: 'pain.008.003.02',
|
|
19
19
|
_00108: 'pain.008.001.08',
|
|
@@ -23,3 +23,13 @@ exports.UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = {
|
|
|
23
23
|
_00110: 'pain.008.001.10',
|
|
24
24
|
_00111: 'pain.008.001.11'
|
|
25
25
|
};
|
|
26
|
+
exports.UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum = {
|
|
27
|
+
_00302: 'pain.001.003.02',
|
|
28
|
+
_00108: 'pain.001.001.08',
|
|
29
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
30
|
+
_00802: 'pain.001.008.02',
|
|
31
|
+
_00109: 'pain.001.001.09',
|
|
32
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
33
|
+
_00110: 'pain.001.001.10',
|
|
34
|
+
_00111: 'pain.001.001.11'
|
|
35
|
+
};
|
|
@@ -80,6 +80,12 @@ export interface CreateTenantBankAccountRequestDto {
|
|
|
80
80
|
* @memberof CreateTenantBankAccountRequestDto
|
|
81
81
|
*/
|
|
82
82
|
'sepaPainVersion': CreateTenantBankAccountRequestDtoSepaPainVersionEnum;
|
|
83
|
+
/**
|
|
84
|
+
* Payout Pain version
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CreateTenantBankAccountRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'payoutPainVersion': CreateTenantBankAccountRequestDtoPayoutPainVersionEnum;
|
|
83
89
|
}
|
|
84
90
|
|
|
85
91
|
export const CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
|
|
@@ -93,5 +99,17 @@ export const CreateTenantBankAccountRequestDtoSepaPainVersionEnum = {
|
|
|
93
99
|
} as const;
|
|
94
100
|
|
|
95
101
|
export type CreateTenantBankAccountRequestDtoSepaPainVersionEnum = typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoSepaPainVersionEnum];
|
|
102
|
+
export const CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = {
|
|
103
|
+
_00302: 'pain.001.003.02',
|
|
104
|
+
_00108: 'pain.001.001.08',
|
|
105
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
106
|
+
_00802: 'pain.001.008.02',
|
|
107
|
+
_00109: 'pain.001.001.09',
|
|
108
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
109
|
+
_00110: 'pain.001.001.10',
|
|
110
|
+
_00111: 'pain.001.001.11'
|
|
111
|
+
} as const;
|
|
112
|
+
|
|
113
|
+
export type CreateTenantBankAccountRequestDtoPayoutPainVersionEnum = typeof CreateTenantBankAccountRequestDtoPayoutPainVersionEnum[keyof typeof CreateTenantBankAccountRequestDtoPayoutPainVersionEnum];
|
|
96
114
|
|
|
97
115
|
|
|
@@ -116,6 +116,12 @@ export interface TenantBankAccountClassWithoutExpandProperties {
|
|
|
116
116
|
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
117
117
|
*/
|
|
118
118
|
'sepaPainVersion': TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum;
|
|
119
|
+
/**
|
|
120
|
+
* Payout Pain version
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof TenantBankAccountClassWithoutExpandProperties
|
|
123
|
+
*/
|
|
124
|
+
'payoutPainVersion': TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum;
|
|
119
125
|
}
|
|
120
126
|
|
|
121
127
|
export const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = {
|
|
@@ -129,5 +135,17 @@ export const TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum =
|
|
|
129
135
|
} as const;
|
|
130
136
|
|
|
131
137
|
export type TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesSepaPainVersionEnum];
|
|
138
|
+
export const TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = {
|
|
139
|
+
_00302: 'pain.001.003.02',
|
|
140
|
+
_00108: 'pain.001.001.08',
|
|
141
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
142
|
+
_00802: 'pain.001.008.02',
|
|
143
|
+
_00109: 'pain.001.001.09',
|
|
144
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
145
|
+
_00110: 'pain.001.001.10',
|
|
146
|
+
_00111: 'pain.001.001.11'
|
|
147
|
+
} as const;
|
|
148
|
+
|
|
149
|
+
export type TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum = typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum[keyof typeof TenantBankAccountClassWithoutExpandPropertiesPayoutPainVersionEnum];
|
|
132
150
|
|
|
133
151
|
|
|
@@ -123,6 +123,12 @@ export interface TenantBankAccountClass {
|
|
|
123
123
|
* @memberof TenantBankAccountClass
|
|
124
124
|
*/
|
|
125
125
|
'sepaPainVersion': TenantBankAccountClassSepaPainVersionEnum;
|
|
126
|
+
/**
|
|
127
|
+
* Payout Pain version
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof TenantBankAccountClass
|
|
130
|
+
*/
|
|
131
|
+
'payoutPainVersion': TenantBankAccountClassPayoutPainVersionEnum;
|
|
126
132
|
}
|
|
127
133
|
|
|
128
134
|
export const TenantBankAccountClassSepaPainVersionEnum = {
|
|
@@ -136,5 +142,17 @@ export const TenantBankAccountClassSepaPainVersionEnum = {
|
|
|
136
142
|
} as const;
|
|
137
143
|
|
|
138
144
|
export type TenantBankAccountClassSepaPainVersionEnum = typeof TenantBankAccountClassSepaPainVersionEnum[keyof typeof TenantBankAccountClassSepaPainVersionEnum];
|
|
145
|
+
export const TenantBankAccountClassPayoutPainVersionEnum = {
|
|
146
|
+
_00302: 'pain.001.003.02',
|
|
147
|
+
_00108: 'pain.001.001.08',
|
|
148
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
149
|
+
_00802: 'pain.001.008.02',
|
|
150
|
+
_00109: 'pain.001.001.09',
|
|
151
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
152
|
+
_00110: 'pain.001.001.10',
|
|
153
|
+
_00111: 'pain.001.001.11'
|
|
154
|
+
} as const;
|
|
155
|
+
|
|
156
|
+
export type TenantBankAccountClassPayoutPainVersionEnum = typeof TenantBankAccountClassPayoutPainVersionEnum[keyof typeof TenantBankAccountClassPayoutPainVersionEnum];
|
|
139
157
|
|
|
140
158
|
|
|
@@ -105,6 +105,12 @@ export interface TenantBankAccountEntity {
|
|
|
105
105
|
* @memberof TenantBankAccountEntity
|
|
106
106
|
*/
|
|
107
107
|
'sepaPainVersion'?: TenantBankAccountEntitySepaPainVersionEnum;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof TenantBankAccountEntity
|
|
112
|
+
*/
|
|
113
|
+
'payoutPainVersion'?: TenantBankAccountEntityPayoutPainVersionEnum;
|
|
108
114
|
/**
|
|
109
115
|
*
|
|
110
116
|
* @type {string}
|
|
@@ -148,5 +154,17 @@ export const TenantBankAccountEntitySepaPainVersionEnum = {
|
|
|
148
154
|
} as const;
|
|
149
155
|
|
|
150
156
|
export type TenantBankAccountEntitySepaPainVersionEnum = typeof TenantBankAccountEntitySepaPainVersionEnum[keyof typeof TenantBankAccountEntitySepaPainVersionEnum];
|
|
157
|
+
export const TenantBankAccountEntityPayoutPainVersionEnum = {
|
|
158
|
+
_00302: 'pain.001.003.02',
|
|
159
|
+
_00108: 'pain.001.001.08',
|
|
160
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
161
|
+
_00802: 'pain.001.008.02',
|
|
162
|
+
_00109: 'pain.001.001.09',
|
|
163
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
164
|
+
_00110: 'pain.001.001.10',
|
|
165
|
+
_00111: 'pain.001.001.11'
|
|
166
|
+
} as const;
|
|
167
|
+
|
|
168
|
+
export type TenantBankAccountEntityPayoutPainVersionEnum = typeof TenantBankAccountEntityPayoutPainVersionEnum[keyof typeof TenantBankAccountEntityPayoutPainVersionEnum];
|
|
151
169
|
|
|
152
170
|
|
|
@@ -74,6 +74,12 @@ export interface UpdateTenantBankAccountRestRequestDto {
|
|
|
74
74
|
* @memberof UpdateTenantBankAccountRestRequestDto
|
|
75
75
|
*/
|
|
76
76
|
'sepaPainVersion': UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum;
|
|
77
|
+
/**
|
|
78
|
+
* Payout Pain version
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof UpdateTenantBankAccountRestRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'payoutPainVersion': UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum;
|
|
77
83
|
}
|
|
78
84
|
|
|
79
85
|
export const UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = {
|
|
@@ -87,5 +93,17 @@ export const UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = {
|
|
|
87
93
|
} as const;
|
|
88
94
|
|
|
89
95
|
export type UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum = typeof UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum[keyof typeof UpdateTenantBankAccountRestRequestDtoSepaPainVersionEnum];
|
|
96
|
+
export const UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum = {
|
|
97
|
+
_00302: 'pain.001.003.02',
|
|
98
|
+
_00108: 'pain.001.001.08',
|
|
99
|
+
_00108Gbic5: 'pain.001.001.08_GBIC_5',
|
|
100
|
+
_00802: 'pain.001.008.02',
|
|
101
|
+
_00109: 'pain.001.001.09',
|
|
102
|
+
_00109Gbic5: 'pain.001.001.09_GBIC_5',
|
|
103
|
+
_00110: 'pain.001.001.10',
|
|
104
|
+
_00111: 'pain.001.001.11'
|
|
105
|
+
} as const;
|
|
106
|
+
|
|
107
|
+
export type UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum = typeof UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum[keyof typeof UpdateTenantBankAccountRestRequestDtoPayoutPainVersionEnum];
|
|
90
108
|
|
|
91
109
|
|