@emilgroup/payment-sdk-node 1.13.1-beta.6 → 1.13.1-beta.8
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/bank-transaction-api.ts +12 -12
- package/api/tenant-bank-account-api.ts +48 -28
- package/dist/api/bank-transaction-api.d.ts +12 -12
- package/dist/api/bank-transaction-api.js +6 -6
- package/dist/api/tenant-bank-account-api.d.ts +48 -28
- package/dist/api/tenant-bank-account-api.js +43 -23
- 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.13.1-beta.
|
|
20
|
+
npm install @emilgroup/payment-sdk-node@1.13.1-beta.8 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk-node@1.13.1-beta.
|
|
24
|
+
yarn add @emilgroup/payment-sdk-node@1.13.1-beta.8
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -196,15 +196,15 @@ export const BankTransactionApiAxiosParamCreator = function (configuration?: Con
|
|
|
196
196
|
* @param {string} [authorization] Bearer Token
|
|
197
197
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
198
198
|
* @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.
|
|
199
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
199
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
200
200
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
201
201
|
* @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.
|
|
202
|
-
* @param {
|
|
202
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
203
203
|
* @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.
|
|
204
204
|
* @param {*} [options] Override http request option.
|
|
205
205
|
* @throws {RequiredError}
|
|
206
206
|
*/
|
|
207
|
-
listBankTransactions: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
207
|
+
listBankTransactions: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
208
208
|
const localVarPath = `/paymentservice/v1/tenant/bank-transactions`;
|
|
209
209
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
210
210
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -371,15 +371,15 @@ export const BankTransactionApiFp = function(configuration?: Configuration) {
|
|
|
371
371
|
* @param {string} [authorization] Bearer Token
|
|
372
372
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
373
373
|
* @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.
|
|
374
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
374
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
375
375
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
376
376
|
* @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.
|
|
377
|
-
* @param {
|
|
377
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
378
378
|
* @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.
|
|
379
379
|
* @param {*} [options] Override http request option.
|
|
380
380
|
* @throws {RequiredError}
|
|
381
381
|
*/
|
|
382
|
-
async listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
382
|
+
async listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
383
383
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
384
384
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
385
385
|
},
|
|
@@ -447,15 +447,15 @@ export const BankTransactionApiFactory = function (configuration?: Configuration
|
|
|
447
447
|
* @param {string} [authorization] Bearer Token
|
|
448
448
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
449
449
|
* @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.
|
|
450
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
450
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
451
451
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
452
452
|
* @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.
|
|
453
|
-
* @param {
|
|
453
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
454
454
|
* @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.
|
|
455
455
|
* @param {*} [options] Override http request option.
|
|
456
456
|
* @throws {RequiredError}
|
|
457
457
|
*/
|
|
458
|
-
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
458
|
+
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options?: any): AxiosPromise<void> {
|
|
459
459
|
return localVarFp.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
460
460
|
},
|
|
461
461
|
/**
|
|
@@ -578,7 +578,7 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
578
578
|
readonly pageToken?: any
|
|
579
579
|
|
|
580
580
|
/**
|
|
581
|
-
* Filter the response by one or multiple fields.
|
|
581
|
+
* 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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
582
582
|
* @type {any}
|
|
583
583
|
* @memberof BankTransactionApiListBankTransactions
|
|
584
584
|
*/
|
|
@@ -600,10 +600,10 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
600
600
|
|
|
601
601
|
/**
|
|
602
602
|
* Expand the response with additional entities
|
|
603
|
-
* @type {
|
|
603
|
+
* @type {'bankAccount' | 'transaction'}
|
|
604
604
|
* @memberof BankTransactionApiListBankTransactions
|
|
605
605
|
*/
|
|
606
|
-
readonly expand?:
|
|
606
|
+
readonly expand?: 'bankAccount' | 'transaction'
|
|
607
607
|
|
|
608
608
|
/**
|
|
609
609
|
* 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.
|
|
@@ -37,7 +37,8 @@ const FormData = require('form-data');
|
|
|
37
37
|
export const TenantBankAccountApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
38
38
|
return {
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* Create a new tenant bank account
|
|
41
|
+
* @summary Create the Create Tenant Bank Account
|
|
41
42
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
42
43
|
* @param {string} [authorization] Bearer Token
|
|
43
44
|
* @param {*} [options] Override http request option.
|
|
@@ -83,7 +84,8 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
83
84
|
};
|
|
84
85
|
},
|
|
85
86
|
/**
|
|
86
|
-
*
|
|
87
|
+
* Deletes a tenant bank account by code
|
|
88
|
+
* @summary Deletes a tenant bank account
|
|
87
89
|
* @param {string} code Unique identifier for the object.
|
|
88
90
|
* @param {string} [authorization] Bearer Token
|
|
89
91
|
* @param {*} [options] Override http request option.
|
|
@@ -127,14 +129,15 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
127
129
|
};
|
|
128
130
|
},
|
|
129
131
|
/**
|
|
130
|
-
*
|
|
132
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
133
|
+
* @summary Retrieve the Bank Transaction
|
|
131
134
|
* @param {string} code Unique identifier for the object.
|
|
132
135
|
* @param {string} [authorization] Bearer Token
|
|
133
|
-
* @param {
|
|
136
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
134
137
|
* @param {*} [options] Override http request option.
|
|
135
138
|
* @throws {RequiredError}
|
|
136
139
|
*/
|
|
137
|
-
getTenantBankAccount: async (code: string, authorization?: string, expand?:
|
|
140
|
+
getTenantBankAccount: async (code: string, authorization?: string, expand?: 'bankTransactions', options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
138
141
|
// verify required parameter 'code' is not null or undefined
|
|
139
142
|
assertParamExists('getTenantBankAccount', 'code', code)
|
|
140
143
|
const localVarPath = `/paymentservice/v1/tenant/bank-accounts/{code}`
|
|
@@ -176,7 +179,8 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
176
179
|
};
|
|
177
180
|
},
|
|
178
181
|
/**
|
|
179
|
-
*
|
|
182
|
+
* 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.
|
|
183
|
+
* @summary List Tenant Bank Accounts
|
|
180
184
|
* @param {string} [authorization] Bearer Token
|
|
181
185
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
182
186
|
* @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.
|
|
@@ -251,7 +255,8 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
251
255
|
};
|
|
252
256
|
},
|
|
253
257
|
/**
|
|
254
|
-
*
|
|
258
|
+
* Update a tenant bank account by code
|
|
259
|
+
* @summary Update a tenant bank account
|
|
255
260
|
* @param {string} code Unique identifier for the object.
|
|
256
261
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
257
262
|
* @param {string} [authorization] Bearer Token
|
|
@@ -311,7 +316,8 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
311
316
|
const localVarAxiosParamCreator = TenantBankAccountApiAxiosParamCreator(configuration)
|
|
312
317
|
return {
|
|
313
318
|
/**
|
|
314
|
-
*
|
|
319
|
+
* Create a new tenant bank account
|
|
320
|
+
* @summary Create the Create Tenant Bank Account
|
|
315
321
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
316
322
|
* @param {string} [authorization] Bearer Token
|
|
317
323
|
* @param {*} [options] Override http request option.
|
|
@@ -322,7 +328,8 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
322
328
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
323
329
|
},
|
|
324
330
|
/**
|
|
325
|
-
*
|
|
331
|
+
* Deletes a tenant bank account by code
|
|
332
|
+
* @summary Deletes a tenant bank account
|
|
326
333
|
* @param {string} code Unique identifier for the object.
|
|
327
334
|
* @param {string} [authorization] Bearer Token
|
|
328
335
|
* @param {*} [options] Override http request option.
|
|
@@ -333,19 +340,21 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
333
340
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
334
341
|
},
|
|
335
342
|
/**
|
|
336
|
-
*
|
|
343
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
344
|
+
* @summary Retrieve the Bank Transaction
|
|
337
345
|
* @param {string} code Unique identifier for the object.
|
|
338
346
|
* @param {string} [authorization] Bearer Token
|
|
339
|
-
* @param {
|
|
347
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
340
348
|
* @param {*} [options] Override http request option.
|
|
341
349
|
* @throws {RequiredError}
|
|
342
350
|
*/
|
|
343
|
-
async getTenantBankAccount(code: string, authorization?: string, expand?:
|
|
351
|
+
async getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>> {
|
|
344
352
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTenantBankAccount(code, authorization, expand, options);
|
|
345
353
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
346
354
|
},
|
|
347
355
|
/**
|
|
348
|
-
*
|
|
356
|
+
* 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.
|
|
357
|
+
* @summary List Tenant Bank Accounts
|
|
349
358
|
* @param {string} [authorization] Bearer Token
|
|
350
359
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
351
360
|
* @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.
|
|
@@ -362,7 +371,8 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
362
371
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
363
372
|
},
|
|
364
373
|
/**
|
|
365
|
-
*
|
|
374
|
+
* Update a tenant bank account by code
|
|
375
|
+
* @summary Update a tenant bank account
|
|
366
376
|
* @param {string} code Unique identifier for the object.
|
|
367
377
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
368
378
|
* @param {string} [authorization] Bearer Token
|
|
@@ -384,7 +394,8 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
384
394
|
const localVarFp = TenantBankAccountApiFp(configuration)
|
|
385
395
|
return {
|
|
386
396
|
/**
|
|
387
|
-
*
|
|
397
|
+
* Create a new tenant bank account
|
|
398
|
+
* @summary Create the Create Tenant Bank Account
|
|
388
399
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
389
400
|
* @param {string} [authorization] Bearer Token
|
|
390
401
|
* @param {*} [options] Override http request option.
|
|
@@ -394,7 +405,8 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
394
405
|
return localVarFp.createTenantBankAccount(createTenantBankAccountRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
395
406
|
},
|
|
396
407
|
/**
|
|
397
|
-
*
|
|
408
|
+
* Deletes a tenant bank account by code
|
|
409
|
+
* @summary Deletes a tenant bank account
|
|
398
410
|
* @param {string} code Unique identifier for the object.
|
|
399
411
|
* @param {string} [authorization] Bearer Token
|
|
400
412
|
* @param {*} [options] Override http request option.
|
|
@@ -404,18 +416,20 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
404
416
|
return localVarFp.deleteTenantBankAccount(code, authorization, options).then((request) => request(axios, basePath));
|
|
405
417
|
},
|
|
406
418
|
/**
|
|
407
|
-
*
|
|
419
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
420
|
+
* @summary Retrieve the Bank Transaction
|
|
408
421
|
* @param {string} code Unique identifier for the object.
|
|
409
422
|
* @param {string} [authorization] Bearer Token
|
|
410
|
-
* @param {
|
|
423
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
411
424
|
* @param {*} [options] Override http request option.
|
|
412
425
|
* @throws {RequiredError}
|
|
413
426
|
*/
|
|
414
|
-
getTenantBankAccount(code: string, authorization?: string, expand?:
|
|
427
|
+
getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: any): AxiosPromise<GetTenantBankAccountResponseClass> {
|
|
415
428
|
return localVarFp.getTenantBankAccount(code, authorization, expand, options).then((request) => request(axios, basePath));
|
|
416
429
|
},
|
|
417
430
|
/**
|
|
418
|
-
*
|
|
431
|
+
* 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.
|
|
432
|
+
* @summary List Tenant Bank Accounts
|
|
419
433
|
* @param {string} [authorization] Bearer Token
|
|
420
434
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
421
435
|
* @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.
|
|
@@ -431,7 +445,8 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
431
445
|
return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
432
446
|
},
|
|
433
447
|
/**
|
|
434
|
-
*
|
|
448
|
+
* Update a tenant bank account by code
|
|
449
|
+
* @summary Update a tenant bank account
|
|
435
450
|
* @param {string} code Unique identifier for the object.
|
|
436
451
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
437
452
|
* @param {string} [authorization] Bearer Token
|
|
@@ -508,10 +523,10 @@ export interface TenantBankAccountApiGetTenantBankAccountRequest {
|
|
|
508
523
|
|
|
509
524
|
/**
|
|
510
525
|
* Expand the response with additional entities
|
|
511
|
-
* @type {
|
|
526
|
+
* @type {'bankTransactions'}
|
|
512
527
|
* @memberof TenantBankAccountApiGetTenantBankAccount
|
|
513
528
|
*/
|
|
514
|
-
readonly expand?:
|
|
529
|
+
readonly expand?: 'bankTransactions'
|
|
515
530
|
}
|
|
516
531
|
|
|
517
532
|
/**
|
|
@@ -613,7 +628,8 @@ export interface TenantBankAccountApiUpdateTenantBankAccountRequest {
|
|
|
613
628
|
*/
|
|
614
629
|
export class TenantBankAccountApi extends BaseAPI {
|
|
615
630
|
/**
|
|
616
|
-
*
|
|
631
|
+
* Create a new tenant bank account
|
|
632
|
+
* @summary Create the Create Tenant Bank Account
|
|
617
633
|
* @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
|
|
618
634
|
* @param {*} [options] Override http request option.
|
|
619
635
|
* @throws {RequiredError}
|
|
@@ -624,7 +640,8 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
624
640
|
}
|
|
625
641
|
|
|
626
642
|
/**
|
|
627
|
-
*
|
|
643
|
+
* Deletes a tenant bank account by code
|
|
644
|
+
* @summary Deletes a tenant bank account
|
|
628
645
|
* @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
|
|
629
646
|
* @param {*} [options] Override http request option.
|
|
630
647
|
* @throws {RequiredError}
|
|
@@ -635,7 +652,8 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
635
652
|
}
|
|
636
653
|
|
|
637
654
|
/**
|
|
638
|
-
*
|
|
655
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
656
|
+
* @summary Retrieve the Bank Transaction
|
|
639
657
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
640
658
|
* @param {*} [options] Override http request option.
|
|
641
659
|
* @throws {RequiredError}
|
|
@@ -646,7 +664,8 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
646
664
|
}
|
|
647
665
|
|
|
648
666
|
/**
|
|
649
|
-
*
|
|
667
|
+
* 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.
|
|
668
|
+
* @summary List Tenant Bank Accounts
|
|
650
669
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
651
670
|
* @param {*} [options] Override http request option.
|
|
652
671
|
* @throws {RequiredError}
|
|
@@ -657,7 +676,8 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
657
676
|
}
|
|
658
677
|
|
|
659
678
|
/**
|
|
660
|
-
*
|
|
679
|
+
* Update a tenant bank account by code
|
|
680
|
+
* @summary Update a tenant bank account
|
|
661
681
|
* @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
|
|
662
682
|
* @param {*} [options] Override http request option.
|
|
663
683
|
* @throws {RequiredError}
|
|
@@ -56,15 +56,15 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
56
56
|
* @param {string} [authorization] Bearer Token
|
|
57
57
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
58
58
|
* @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.
|
|
59
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
59
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
60
60
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
61
61
|
* @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.
|
|
62
|
-
* @param {
|
|
62
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
63
63
|
* @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.
|
|
64
64
|
* @param {*} [options] Override http request option.
|
|
65
65
|
* @throws {RequiredError}
|
|
66
66
|
*/
|
|
67
|
-
listBankTransactions: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
67
|
+
listBankTransactions: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
68
|
/**
|
|
69
69
|
* Unlinks an already linked bank transaction
|
|
70
70
|
* @summary Unlink Bank Transaction
|
|
@@ -116,15 +116,15 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
116
116
|
* @param {string} [authorization] Bearer Token
|
|
117
117
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
118
118
|
* @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.
|
|
119
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
119
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
120
120
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
121
121
|
* @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.
|
|
122
|
-
* @param {
|
|
122
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
123
123
|
* @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.
|
|
124
124
|
* @param {*} [options] Override http request option.
|
|
125
125
|
* @throws {RequiredError}
|
|
126
126
|
*/
|
|
127
|
-
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
127
|
+
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
128
128
|
/**
|
|
129
129
|
* Unlinks an already linked bank transaction
|
|
130
130
|
* @summary Unlink Bank Transaction
|
|
@@ -176,15 +176,15 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
176
176
|
* @param {string} [authorization] Bearer Token
|
|
177
177
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
178
178
|
* @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.
|
|
179
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
179
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
180
180
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
181
181
|
* @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.
|
|
182
|
-
* @param {
|
|
182
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
183
183
|
* @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.
|
|
184
184
|
* @param {*} [options] Override http request option.
|
|
185
185
|
* @throws {RequiredError}
|
|
186
186
|
*/
|
|
187
|
-
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
187
|
+
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options?: any): AxiosPromise<void>;
|
|
188
188
|
/**
|
|
189
189
|
* Unlinks an already linked bank transaction
|
|
190
190
|
* @summary Unlink Bank Transaction
|
|
@@ -290,7 +290,7 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
290
290
|
*/
|
|
291
291
|
readonly pageToken?: any;
|
|
292
292
|
/**
|
|
293
|
-
* Filter the response by one or multiple fields.
|
|
293
|
+
* 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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
294
294
|
* @type {any}
|
|
295
295
|
* @memberof BankTransactionApiListBankTransactions
|
|
296
296
|
*/
|
|
@@ -309,10 +309,10 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
309
309
|
readonly order?: any;
|
|
310
310
|
/**
|
|
311
311
|
* Expand the response with additional entities
|
|
312
|
-
* @type {
|
|
312
|
+
* @type {'bankAccount' | 'transaction'}
|
|
313
313
|
* @memberof BankTransactionApiListBankTransactions
|
|
314
314
|
*/
|
|
315
|
-
readonly expand?:
|
|
315
|
+
readonly expand?: 'bankAccount' | 'transaction';
|
|
316
316
|
/**
|
|
317
317
|
* 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.
|
|
318
318
|
* @type {any}
|
|
@@ -258,10 +258,10 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
258
258
|
* @param {string} [authorization] Bearer Token
|
|
259
259
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
260
260
|
* @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.
|
|
261
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
261
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
262
262
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
263
263
|
* @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.
|
|
264
|
-
* @param {
|
|
264
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
265
265
|
* @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.
|
|
266
266
|
* @param {*} [options] Override http request option.
|
|
267
267
|
* @throws {RequiredError}
|
|
@@ -458,10 +458,10 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
458
458
|
* @param {string} [authorization] Bearer Token
|
|
459
459
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
460
460
|
* @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.
|
|
461
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
461
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
462
462
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
463
463
|
* @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.
|
|
464
|
-
* @param {
|
|
464
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
465
465
|
* @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.
|
|
466
466
|
* @param {*} [options] Override http request option.
|
|
467
467
|
* @throws {RequiredError}
|
|
@@ -552,10 +552,10 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
552
552
|
* @param {string} [authorization] Bearer Token
|
|
553
553
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
554
554
|
* @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.
|
|
555
|
-
* @param {any} [filter] Filter the response by one or multiple fields.
|
|
555
|
+
* @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, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
556
556
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
557
557
|
* @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.
|
|
558
|
-
* @param {
|
|
558
|
+
* @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
|
|
559
559
|
* @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.
|
|
560
560
|
* @param {*} [options] Override http request option.
|
|
561
561
|
* @throws {RequiredError}
|
|
@@ -21,7 +21,8 @@ import { UpdateTenantBankAccountRestRequestDto } from '../models';
|
|
|
21
21
|
*/
|
|
22
22
|
export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Create a new tenant bank account
|
|
25
|
+
* @summary Create the Create Tenant Bank Account
|
|
25
26
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
26
27
|
* @param {string} [authorization] Bearer Token
|
|
27
28
|
* @param {*} [options] Override http request option.
|
|
@@ -29,7 +30,8 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
29
30
|
*/
|
|
30
31
|
createTenantBankAccount: (createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
+
* Deletes a tenant bank account by code
|
|
34
|
+
* @summary Deletes a tenant bank account
|
|
33
35
|
* @param {string} code Unique identifier for the object.
|
|
34
36
|
* @param {string} [authorization] Bearer Token
|
|
35
37
|
* @param {*} [options] Override http request option.
|
|
@@ -37,16 +39,18 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
37
39
|
*/
|
|
38
40
|
deleteTenantBankAccount: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39
41
|
/**
|
|
40
|
-
*
|
|
42
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
43
|
+
* @summary Retrieve the Bank Transaction
|
|
41
44
|
* @param {string} code Unique identifier for the object.
|
|
42
45
|
* @param {string} [authorization] Bearer Token
|
|
43
|
-
* @param {
|
|
46
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
44
47
|
* @param {*} [options] Override http request option.
|
|
45
48
|
* @throws {RequiredError}
|
|
46
49
|
*/
|
|
47
|
-
getTenantBankAccount: (code: string, authorization?: string, expand?:
|
|
50
|
+
getTenantBankAccount: (code: string, authorization?: string, expand?: 'bankTransactions', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
51
|
/**
|
|
49
|
-
*
|
|
52
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
53
|
+
* @summary List Tenant Bank Accounts
|
|
50
54
|
* @param {string} [authorization] Bearer Token
|
|
51
55
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
52
56
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -60,7 +64,8 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
60
64
|
*/
|
|
61
65
|
listTenantBankAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
66
|
/**
|
|
63
|
-
*
|
|
67
|
+
* Update a tenant bank account by code
|
|
68
|
+
* @summary Update a tenant bank account
|
|
64
69
|
* @param {string} code Unique identifier for the object.
|
|
65
70
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
66
71
|
* @param {string} [authorization] Bearer Token
|
|
@@ -75,7 +80,8 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
75
80
|
*/
|
|
76
81
|
export declare const TenantBankAccountApiFp: (configuration?: Configuration) => {
|
|
77
82
|
/**
|
|
78
|
-
*
|
|
83
|
+
* Create a new tenant bank account
|
|
84
|
+
* @summary Create the Create Tenant Bank Account
|
|
79
85
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
80
86
|
* @param {string} [authorization] Bearer Token
|
|
81
87
|
* @param {*} [options] Override http request option.
|
|
@@ -83,7 +89,8 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
83
89
|
*/
|
|
84
90
|
createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
85
91
|
/**
|
|
86
|
-
*
|
|
92
|
+
* Deletes a tenant bank account by code
|
|
93
|
+
* @summary Deletes a tenant bank account
|
|
87
94
|
* @param {string} code Unique identifier for the object.
|
|
88
95
|
* @param {string} [authorization] Bearer Token
|
|
89
96
|
* @param {*} [options] Override http request option.
|
|
@@ -91,16 +98,18 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
91
98
|
*/
|
|
92
99
|
deleteTenantBankAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
93
100
|
/**
|
|
94
|
-
*
|
|
101
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
102
|
+
* @summary Retrieve the Bank Transaction
|
|
95
103
|
* @param {string} code Unique identifier for the object.
|
|
96
104
|
* @param {string} [authorization] Bearer Token
|
|
97
|
-
* @param {
|
|
105
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
98
106
|
* @param {*} [options] Override http request option.
|
|
99
107
|
* @throws {RequiredError}
|
|
100
108
|
*/
|
|
101
|
-
getTenantBankAccount(code: string, authorization?: string, expand?:
|
|
109
|
+
getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>>;
|
|
102
110
|
/**
|
|
103
|
-
*
|
|
111
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
112
|
+
* @summary List Tenant Bank Accounts
|
|
104
113
|
* @param {string} [authorization] Bearer Token
|
|
105
114
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
106
115
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -114,7 +123,8 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
114
123
|
*/
|
|
115
124
|
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
116
125
|
/**
|
|
117
|
-
*
|
|
126
|
+
* Update a tenant bank account by code
|
|
127
|
+
* @summary Update a tenant bank account
|
|
118
128
|
* @param {string} code Unique identifier for the object.
|
|
119
129
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
120
130
|
* @param {string} [authorization] Bearer Token
|
|
@@ -129,7 +139,8 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
129
139
|
*/
|
|
130
140
|
export declare const TenantBankAccountApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
131
141
|
/**
|
|
132
|
-
*
|
|
142
|
+
* Create a new tenant bank account
|
|
143
|
+
* @summary Create the Create Tenant Bank Account
|
|
133
144
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
134
145
|
* @param {string} [authorization] Bearer Token
|
|
135
146
|
* @param {*} [options] Override http request option.
|
|
@@ -137,7 +148,8 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
137
148
|
*/
|
|
138
149
|
createTenantBankAccount(createTenantBankAccountRequestDto: CreateTenantBankAccountRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
|
|
139
150
|
/**
|
|
140
|
-
*
|
|
151
|
+
* Deletes a tenant bank account by code
|
|
152
|
+
* @summary Deletes a tenant bank account
|
|
141
153
|
* @param {string} code Unique identifier for the object.
|
|
142
154
|
* @param {string} [authorization] Bearer Token
|
|
143
155
|
* @param {*} [options] Override http request option.
|
|
@@ -145,16 +157,18 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
145
157
|
*/
|
|
146
158
|
deleteTenantBankAccount(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
147
159
|
/**
|
|
148
|
-
*
|
|
160
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
161
|
+
* @summary Retrieve the Bank Transaction
|
|
149
162
|
* @param {string} code Unique identifier for the object.
|
|
150
163
|
* @param {string} [authorization] Bearer Token
|
|
151
|
-
* @param {
|
|
164
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
152
165
|
* @param {*} [options] Override http request option.
|
|
153
166
|
* @throws {RequiredError}
|
|
154
167
|
*/
|
|
155
|
-
getTenantBankAccount(code: string, authorization?: string, expand?:
|
|
168
|
+
getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: any): AxiosPromise<GetTenantBankAccountResponseClass>;
|
|
156
169
|
/**
|
|
157
|
-
*
|
|
170
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
171
|
+
* @summary List Tenant Bank Accounts
|
|
158
172
|
* @param {string} [authorization] Bearer Token
|
|
159
173
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
160
174
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
@@ -168,7 +182,8 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
168
182
|
*/
|
|
169
183
|
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: any): AxiosPromise<void>;
|
|
170
184
|
/**
|
|
171
|
-
*
|
|
185
|
+
* Update a tenant bank account by code
|
|
186
|
+
* @summary Update a tenant bank account
|
|
172
187
|
* @param {string} code Unique identifier for the object.
|
|
173
188
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
174
189
|
* @param {string} [authorization] Bearer Token
|
|
@@ -235,10 +250,10 @@ export interface TenantBankAccountApiGetTenantBankAccountRequest {
|
|
|
235
250
|
readonly authorization?: string;
|
|
236
251
|
/**
|
|
237
252
|
* Expand the response with additional entities
|
|
238
|
-
* @type {
|
|
253
|
+
* @type {'bankTransactions'}
|
|
239
254
|
* @memberof TenantBankAccountApiGetTenantBankAccount
|
|
240
255
|
*/
|
|
241
|
-
readonly expand?:
|
|
256
|
+
readonly expand?: 'bankTransactions';
|
|
242
257
|
}
|
|
243
258
|
/**
|
|
244
259
|
* Request parameters for listTenantBankAccounts operation in TenantBankAccountApi.
|
|
@@ -328,7 +343,8 @@ export interface TenantBankAccountApiUpdateTenantBankAccountRequest {
|
|
|
328
343
|
*/
|
|
329
344
|
export declare class TenantBankAccountApi extends BaseAPI {
|
|
330
345
|
/**
|
|
331
|
-
*
|
|
346
|
+
* Create a new tenant bank account
|
|
347
|
+
* @summary Create the Create Tenant Bank Account
|
|
332
348
|
* @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
|
|
333
349
|
* @param {*} [options] Override http request option.
|
|
334
350
|
* @throws {RequiredError}
|
|
@@ -336,7 +352,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
336
352
|
*/
|
|
337
353
|
createTenantBankAccount(requestParameters: TenantBankAccountApiCreateTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
338
354
|
/**
|
|
339
|
-
*
|
|
355
|
+
* Deletes a tenant bank account by code
|
|
356
|
+
* @summary Deletes a tenant bank account
|
|
340
357
|
* @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
|
|
341
358
|
* @param {*} [options] Override http request option.
|
|
342
359
|
* @throws {RequiredError}
|
|
@@ -344,7 +361,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
344
361
|
*/
|
|
345
362
|
deleteTenantBankAccount(requestParameters: TenantBankAccountApiDeleteTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
346
363
|
/**
|
|
347
|
-
*
|
|
364
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
365
|
+
* @summary Retrieve the Bank Transaction
|
|
348
366
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
349
367
|
* @param {*} [options] Override http request option.
|
|
350
368
|
* @throws {RequiredError}
|
|
@@ -352,7 +370,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
352
370
|
*/
|
|
353
371
|
getTenantBankAccount(requestParameters: TenantBankAccountApiGetTenantBankAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetTenantBankAccountResponseClass, any>>;
|
|
354
372
|
/**
|
|
355
|
-
*
|
|
373
|
+
* Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
374
|
+
* @summary List Tenant Bank Accounts
|
|
356
375
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
357
376
|
* @param {*} [options] Override http request option.
|
|
358
377
|
* @throws {RequiredError}
|
|
@@ -360,7 +379,8 @@ export declare class TenantBankAccountApi extends BaseAPI {
|
|
|
360
379
|
*/
|
|
361
380
|
listTenantBankAccounts(requestParameters?: TenantBankAccountApiListTenantBankAccountsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
362
381
|
/**
|
|
363
|
-
*
|
|
382
|
+
* Update a tenant bank account by code
|
|
383
|
+
* @summary Update a tenant bank account
|
|
364
384
|
* @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
|
|
365
385
|
* @param {*} [options] Override http request option.
|
|
366
386
|
* @throws {RequiredError}
|
|
@@ -97,7 +97,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* Create a new tenant bank account
|
|
101
|
+
* @summary Create the Create Tenant Bank Account
|
|
101
102
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
102
103
|
* @param {string} [authorization] Bearer Token
|
|
103
104
|
* @param {*} [options] Override http request option.
|
|
@@ -145,7 +146,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
145
146
|
});
|
|
146
147
|
},
|
|
147
148
|
/**
|
|
148
|
-
*
|
|
149
|
+
* Deletes a tenant bank account by code
|
|
150
|
+
* @summary Deletes a tenant bank account
|
|
149
151
|
* @param {string} code Unique identifier for the object.
|
|
150
152
|
* @param {string} [authorization] Bearer Token
|
|
151
153
|
* @param {*} [options] Override http request option.
|
|
@@ -192,10 +194,11 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
192
194
|
});
|
|
193
195
|
},
|
|
194
196
|
/**
|
|
195
|
-
*
|
|
197
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
198
|
+
* @summary Retrieve the Bank Transaction
|
|
196
199
|
* @param {string} code Unique identifier for the object.
|
|
197
200
|
* @param {string} [authorization] Bearer Token
|
|
198
|
-
* @param {
|
|
201
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
199
202
|
* @param {*} [options] Override http request option.
|
|
200
203
|
* @throws {RequiredError}
|
|
201
204
|
*/
|
|
@@ -243,7 +246,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
243
246
|
});
|
|
244
247
|
},
|
|
245
248
|
/**
|
|
246
|
-
*
|
|
249
|
+
* 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.
|
|
250
|
+
* @summary List Tenant Bank Accounts
|
|
247
251
|
* @param {string} [authorization] Bearer Token
|
|
248
252
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
249
253
|
* @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.
|
|
@@ -314,7 +318,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
314
318
|
});
|
|
315
319
|
},
|
|
316
320
|
/**
|
|
317
|
-
*
|
|
321
|
+
* Update a tenant bank account by code
|
|
322
|
+
* @summary Update a tenant bank account
|
|
318
323
|
* @param {string} code Unique identifier for the object.
|
|
319
324
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
320
325
|
* @param {string} [authorization] Bearer Token
|
|
@@ -376,7 +381,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
376
381
|
var localVarAxiosParamCreator = (0, exports.TenantBankAccountApiAxiosParamCreator)(configuration);
|
|
377
382
|
return {
|
|
378
383
|
/**
|
|
379
|
-
*
|
|
384
|
+
* Create a new tenant bank account
|
|
385
|
+
* @summary Create the Create Tenant Bank Account
|
|
380
386
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
381
387
|
* @param {string} [authorization] Bearer Token
|
|
382
388
|
* @param {*} [options] Override http request option.
|
|
@@ -396,7 +402,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
396
402
|
});
|
|
397
403
|
},
|
|
398
404
|
/**
|
|
399
|
-
*
|
|
405
|
+
* Deletes a tenant bank account by code
|
|
406
|
+
* @summary Deletes a tenant bank account
|
|
400
407
|
* @param {string} code Unique identifier for the object.
|
|
401
408
|
* @param {string} [authorization] Bearer Token
|
|
402
409
|
* @param {*} [options] Override http request option.
|
|
@@ -416,10 +423,11 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
416
423
|
});
|
|
417
424
|
},
|
|
418
425
|
/**
|
|
419
|
-
*
|
|
426
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
427
|
+
* @summary Retrieve the Bank Transaction
|
|
420
428
|
* @param {string} code Unique identifier for the object.
|
|
421
429
|
* @param {string} [authorization] Bearer Token
|
|
422
|
-
* @param {
|
|
430
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
423
431
|
* @param {*} [options] Override http request option.
|
|
424
432
|
* @throws {RequiredError}
|
|
425
433
|
*/
|
|
@@ -437,7 +445,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
437
445
|
});
|
|
438
446
|
},
|
|
439
447
|
/**
|
|
440
|
-
*
|
|
448
|
+
* 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.
|
|
449
|
+
* @summary List Tenant Bank Accounts
|
|
441
450
|
* @param {string} [authorization] Bearer Token
|
|
442
451
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
443
452
|
* @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.
|
|
@@ -463,7 +472,8 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
463
472
|
});
|
|
464
473
|
},
|
|
465
474
|
/**
|
|
466
|
-
*
|
|
475
|
+
* Update a tenant bank account by code
|
|
476
|
+
* @summary Update a tenant bank account
|
|
467
477
|
* @param {string} code Unique identifier for the object.
|
|
468
478
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
469
479
|
* @param {string} [authorization] Bearer Token
|
|
@@ -494,7 +504,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
494
504
|
var localVarFp = (0, exports.TenantBankAccountApiFp)(configuration);
|
|
495
505
|
return {
|
|
496
506
|
/**
|
|
497
|
-
*
|
|
507
|
+
* Create a new tenant bank account
|
|
508
|
+
* @summary Create the Create Tenant Bank Account
|
|
498
509
|
* @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
|
|
499
510
|
* @param {string} [authorization] Bearer Token
|
|
500
511
|
* @param {*} [options] Override http request option.
|
|
@@ -504,7 +515,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
504
515
|
return localVarFp.createTenantBankAccount(createTenantBankAccountRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
505
516
|
},
|
|
506
517
|
/**
|
|
507
|
-
*
|
|
518
|
+
* Deletes a tenant bank account by code
|
|
519
|
+
* @summary Deletes a tenant bank account
|
|
508
520
|
* @param {string} code Unique identifier for the object.
|
|
509
521
|
* @param {string} [authorization] Bearer Token
|
|
510
522
|
* @param {*} [options] Override http request option.
|
|
@@ -514,10 +526,11 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
514
526
|
return localVarFp.deleteTenantBankAccount(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
515
527
|
},
|
|
516
528
|
/**
|
|
517
|
-
*
|
|
529
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
530
|
+
* @summary Retrieve the Bank Transaction
|
|
518
531
|
* @param {string} code Unique identifier for the object.
|
|
519
532
|
* @param {string} [authorization] Bearer Token
|
|
520
|
-
* @param {
|
|
533
|
+
* @param {'bankTransactions'} [expand] Expand the response with additional entities
|
|
521
534
|
* @param {*} [options] Override http request option.
|
|
522
535
|
* @throws {RequiredError}
|
|
523
536
|
*/
|
|
@@ -525,7 +538,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
525
538
|
return localVarFp.getTenantBankAccount(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
526
539
|
},
|
|
527
540
|
/**
|
|
528
|
-
*
|
|
541
|
+
* 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.
|
|
542
|
+
* @summary List Tenant Bank Accounts
|
|
529
543
|
* @param {string} [authorization] Bearer Token
|
|
530
544
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
531
545
|
* @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.
|
|
@@ -541,7 +555,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
541
555
|
return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
542
556
|
},
|
|
543
557
|
/**
|
|
544
|
-
*
|
|
558
|
+
* Update a tenant bank account by code
|
|
559
|
+
* @summary Update a tenant bank account
|
|
545
560
|
* @param {string} code Unique identifier for the object.
|
|
546
561
|
* @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
|
|
547
562
|
* @param {string} [authorization] Bearer Token
|
|
@@ -566,7 +581,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
566
581
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
567
582
|
}
|
|
568
583
|
/**
|
|
569
|
-
*
|
|
584
|
+
* Create a new tenant bank account
|
|
585
|
+
* @summary Create the Create Tenant Bank Account
|
|
570
586
|
* @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
|
|
571
587
|
* @param {*} [options] Override http request option.
|
|
572
588
|
* @throws {RequiredError}
|
|
@@ -577,7 +593,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
577
593
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).createTenantBankAccount(requestParameters.createTenantBankAccountRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
578
594
|
};
|
|
579
595
|
/**
|
|
580
|
-
*
|
|
596
|
+
* Deletes a tenant bank account by code
|
|
597
|
+
* @summary Deletes a tenant bank account
|
|
581
598
|
* @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
|
|
582
599
|
* @param {*} [options] Override http request option.
|
|
583
600
|
* @throws {RequiredError}
|
|
@@ -588,7 +605,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
588
605
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).deleteTenantBankAccount(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
589
606
|
};
|
|
590
607
|
/**
|
|
591
|
-
*
|
|
608
|
+
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
|
|
609
|
+
* @summary Retrieve the Bank Transaction
|
|
592
610
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
593
611
|
* @param {*} [options] Override http request option.
|
|
594
612
|
* @throws {RequiredError}
|
|
@@ -599,7 +617,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
599
617
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).getTenantBankAccount(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
600
618
|
};
|
|
601
619
|
/**
|
|
602
|
-
*
|
|
620
|
+
* 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.
|
|
621
|
+
* @summary List Tenant Bank Accounts
|
|
603
622
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
604
623
|
* @param {*} [options] Override http request option.
|
|
605
624
|
* @throws {RequiredError}
|
|
@@ -611,7 +630,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
611
630
|
return (0, exports.TenantBankAccountApiFp)(this.configuration).listTenantBankAccounts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
612
631
|
};
|
|
613
632
|
/**
|
|
614
|
-
*
|
|
633
|
+
* Update a tenant bank account by code
|
|
634
|
+
* @summary Update a tenant bank account
|
|
615
635
|
* @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
|
|
616
636
|
* @param {*} [options] Override http request option.
|
|
617
637
|
* @throws {RequiredError}
|