@emilgroup/payment-sdk 1.4.1-beta.8 → 1.4.1-beta.9

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 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@1.4.1-beta.8 --save
20
+ npm install @emilgroup/payment-sdk@1.4.1-beta.9 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk@1.4.1-beta.8
24
+ yarn add @emilgroup/payment-sdk@1.4.1-beta.9
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -191,15 +191,15 @@ export const BankTransactionApiAxiosParamCreator = function (configuration?: Con
191
191
  * @param {string} [authorization] Bearer Token
192
192
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
193
193
  * @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.
194
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
194
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [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>
195
195
  * @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.
196
196
  * @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.
197
- * @param {string} [expand] Expand the response with additional entities
197
+ * @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
198
198
  * @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.
199
199
  * @param {*} [options] Override http request option.
200
200
  * @throws {RequiredError}
201
201
  */
202
- listBankTransactions: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
202
+ listBankTransactions: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked', search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
203
203
  const localVarPath = `/paymentservice/v1/tenant/bank-transactions`;
204
204
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
205
205
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -366,15 +366,15 @@ export const BankTransactionApiFp = function(configuration?: Configuration) {
366
366
  * @param {string} [authorization] Bearer Token
367
367
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
368
368
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
369
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
369
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
370
370
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
371
371
  * @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.
372
- * @param {string} [expand] Expand the response with additional entities
372
+ * @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
373
373
  * @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.
374
374
  * @param {*} [options] Override http request option.
375
375
  * @throws {RequiredError}
376
376
  */
377
- async listBankTransactions(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>> {
377
+ async listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked', search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
378
378
  const localVarAxiosArgs = await localVarAxiosParamCreator.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
379
379
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
380
380
  },
@@ -442,15 +442,15 @@ export const BankTransactionApiFactory = function (configuration?: Configuration
442
442
  * @param {string} [authorization] Bearer Token
443
443
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
444
444
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
445
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
445
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
446
446
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
447
447
  * @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.
448
- * @param {string} [expand] Expand the response with additional entities
448
+ * @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
449
449
  * @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.
450
450
  * @param {*} [options] Override http request option.
451
451
  * @throws {RequiredError}
452
452
  */
453
- listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: any): AxiosPromise<void> {
453
+ listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked', search?: any, order?: any, expand?: 'bankAccount' | 'transaction', filters?: any, options?: any): AxiosPromise<void> {
454
454
  return localVarFp.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
455
455
  },
456
456
  /**
@@ -573,11 +573,11 @@ export interface BankTransactionApiListBankTransactionsRequest {
573
573
  readonly pageToken?: any
574
574
 
575
575
  /**
576
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
577
- * @type {any}
576
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
577
+ * @type {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'}
578
578
  * @memberof BankTransactionApiListBankTransactions
579
579
  */
580
- readonly filter?: any
580
+ readonly filter?: 'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'
581
581
 
582
582
  /**
583
583
  * Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
@@ -595,10 +595,10 @@ export interface BankTransactionApiListBankTransactionsRequest {
595
595
 
596
596
  /**
597
597
  * Expand the response with additional entities
598
- * @type {string}
598
+ * @type {'bankAccount' | 'transaction'}
599
599
  * @memberof BankTransactionApiListBankTransactions
600
600
  */
601
- readonly expand?: string
601
+ readonly expand?: 'bankAccount' | 'transaction'
602
602
 
603
603
  /**
604
604
  * 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.
@@ -33,7 +33,8 @@ import { UpdateTenantBankAccountRestRequestDto } from '../models';
33
33
  export const TenantBankAccountApiAxiosParamCreator = function (configuration?: Configuration) {
34
34
  return {
35
35
  /**
36
- *
36
+ * Create a new tenant bank account
37
+ * @summary Create the Create Tenant Bank Account
37
38
  * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
38
39
  * @param {string} [authorization] Bearer Token
39
40
  * @param {*} [options] Override http request option.
@@ -79,7 +80,8 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
79
80
  };
80
81
  },
81
82
  /**
82
- *
83
+ * Deletes a tenant bank account by code
84
+ * @summary Deletes a tenant bank account
83
85
  * @param {string} code Unique identifier for the object.
84
86
  * @param {string} [authorization] Bearer Token
85
87
  * @param {*} [options] Override http request option.
@@ -123,14 +125,15 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
123
125
  };
124
126
  },
125
127
  /**
126
- *
128
+ * 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.
129
+ * @summary Retrieve the Bank Transaction
127
130
  * @param {string} code Unique identifier for the object.
128
131
  * @param {string} [authorization] Bearer Token
129
- * @param {string} [expand] Expand the response with additional entities
132
+ * @param {'bankTransactions'} [expand] Expand the response with additional entities
130
133
  * @param {*} [options] Override http request option.
131
134
  * @throws {RequiredError}
132
135
  */
133
- getTenantBankAccount: async (code: string, authorization?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
136
+ getTenantBankAccount: async (code: string, authorization?: string, expand?: 'bankTransactions', options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
134
137
  // verify required parameter 'code' is not null or undefined
135
138
  assertParamExists('getTenantBankAccount', 'code', code)
136
139
  const localVarPath = `/paymentservice/v1/tenant/bank-accounts/{code}`
@@ -172,7 +175,8 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
172
175
  };
173
176
  },
174
177
  /**
175
- *
178
+ * 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.
179
+ * @summary List Tenant Bank Accounts
176
180
  * @param {string} [authorization] Bearer Token
177
181
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
178
182
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
@@ -247,7 +251,8 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
247
251
  };
248
252
  },
249
253
  /**
250
- *
254
+ * Update a tenant bank account by code
255
+ * @summary Update a tenant bank account
251
256
  * @param {string} code Unique identifier for the object.
252
257
  * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
253
258
  * @param {string} [authorization] Bearer Token
@@ -307,7 +312,8 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
307
312
  const localVarAxiosParamCreator = TenantBankAccountApiAxiosParamCreator(configuration)
308
313
  return {
309
314
  /**
310
- *
315
+ * Create a new tenant bank account
316
+ * @summary Create the Create Tenant Bank Account
311
317
  * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
312
318
  * @param {string} [authorization] Bearer Token
313
319
  * @param {*} [options] Override http request option.
@@ -318,7 +324,8 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
318
324
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
319
325
  },
320
326
  /**
321
- *
327
+ * Deletes a tenant bank account by code
328
+ * @summary Deletes a tenant bank account
322
329
  * @param {string} code Unique identifier for the object.
323
330
  * @param {string} [authorization] Bearer Token
324
331
  * @param {*} [options] Override http request option.
@@ -329,19 +336,21 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
329
336
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
330
337
  },
331
338
  /**
332
- *
339
+ * 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.
340
+ * @summary Retrieve the Bank Transaction
333
341
  * @param {string} code Unique identifier for the object.
334
342
  * @param {string} [authorization] Bearer Token
335
- * @param {string} [expand] Expand the response with additional entities
343
+ * @param {'bankTransactions'} [expand] Expand the response with additional entities
336
344
  * @param {*} [options] Override http request option.
337
345
  * @throws {RequiredError}
338
346
  */
339
- async getTenantBankAccount(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>> {
347
+ async getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>> {
340
348
  const localVarAxiosArgs = await localVarAxiosParamCreator.getTenantBankAccount(code, authorization, expand, options);
341
349
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
342
350
  },
343
351
  /**
344
- *
352
+ * 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.
353
+ * @summary List Tenant Bank Accounts
345
354
  * @param {string} [authorization] Bearer Token
346
355
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
347
356
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
@@ -358,7 +367,8 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
358
367
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
359
368
  },
360
369
  /**
361
- *
370
+ * Update a tenant bank account by code
371
+ * @summary Update a tenant bank account
362
372
  * @param {string} code Unique identifier for the object.
363
373
  * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
364
374
  * @param {string} [authorization] Bearer Token
@@ -380,7 +390,8 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
380
390
  const localVarFp = TenantBankAccountApiFp(configuration)
381
391
  return {
382
392
  /**
383
- *
393
+ * Create a new tenant bank account
394
+ * @summary Create the Create Tenant Bank Account
384
395
  * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
385
396
  * @param {string} [authorization] Bearer Token
386
397
  * @param {*} [options] Override http request option.
@@ -390,7 +401,8 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
390
401
  return localVarFp.createTenantBankAccount(createTenantBankAccountRequestDto, authorization, options).then((request) => request(axios, basePath));
391
402
  },
392
403
  /**
393
- *
404
+ * Deletes a tenant bank account by code
405
+ * @summary Deletes a tenant bank account
394
406
  * @param {string} code Unique identifier for the object.
395
407
  * @param {string} [authorization] Bearer Token
396
408
  * @param {*} [options] Override http request option.
@@ -400,18 +412,20 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
400
412
  return localVarFp.deleteTenantBankAccount(code, authorization, options).then((request) => request(axios, basePath));
401
413
  },
402
414
  /**
403
- *
415
+ * 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.
416
+ * @summary Retrieve the Bank Transaction
404
417
  * @param {string} code Unique identifier for the object.
405
418
  * @param {string} [authorization] Bearer Token
406
- * @param {string} [expand] Expand the response with additional entities
419
+ * @param {'bankTransactions'} [expand] Expand the response with additional entities
407
420
  * @param {*} [options] Override http request option.
408
421
  * @throws {RequiredError}
409
422
  */
410
- getTenantBankAccount(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetTenantBankAccountResponseClass> {
423
+ getTenantBankAccount(code: string, authorization?: string, expand?: 'bankTransactions', options?: any): AxiosPromise<GetTenantBankAccountResponseClass> {
411
424
  return localVarFp.getTenantBankAccount(code, authorization, expand, options).then((request) => request(axios, basePath));
412
425
  },
413
426
  /**
414
- *
427
+ * 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.
428
+ * @summary List Tenant Bank Accounts
415
429
  * @param {string} [authorization] Bearer Token
416
430
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
417
431
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
@@ -427,7 +441,8 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
427
441
  return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
428
442
  },
429
443
  /**
430
- *
444
+ * Update a tenant bank account by code
445
+ * @summary Update a tenant bank account
431
446
  * @param {string} code Unique identifier for the object.
432
447
  * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
433
448
  * @param {string} [authorization] Bearer Token
@@ -504,10 +519,10 @@ export interface TenantBankAccountApiGetTenantBankAccountRequest {
504
519
 
505
520
  /**
506
521
  * Expand the response with additional entities
507
- * @type {string}
522
+ * @type {'bankTransactions'}
508
523
  * @memberof TenantBankAccountApiGetTenantBankAccount
509
524
  */
510
- readonly expand?: string
525
+ readonly expand?: 'bankTransactions'
511
526
  }
512
527
 
513
528
  /**
@@ -609,7 +624,8 @@ export interface TenantBankAccountApiUpdateTenantBankAccountRequest {
609
624
  */
610
625
  export class TenantBankAccountApi extends BaseAPI {
611
626
  /**
612
- *
627
+ * Create a new tenant bank account
628
+ * @summary Create the Create Tenant Bank Account
613
629
  * @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
614
630
  * @param {*} [options] Override http request option.
615
631
  * @throws {RequiredError}
@@ -620,7 +636,8 @@ export class TenantBankAccountApi extends BaseAPI {
620
636
  }
621
637
 
622
638
  /**
623
- *
639
+ * Deletes a tenant bank account by code
640
+ * @summary Deletes a tenant bank account
624
641
  * @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
625
642
  * @param {*} [options] Override http request option.
626
643
  * @throws {RequiredError}
@@ -631,7 +648,8 @@ export class TenantBankAccountApi extends BaseAPI {
631
648
  }
632
649
 
633
650
  /**
634
- *
651
+ * 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.
652
+ * @summary Retrieve the Bank Transaction
635
653
  * @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
636
654
  * @param {*} [options] Override http request option.
637
655
  * @throws {RequiredError}
@@ -642,7 +660,8 @@ export class TenantBankAccountApi extends BaseAPI {
642
660
  }
643
661
 
644
662
  /**
645
- *
663
+ * 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.
664
+ * @summary List Tenant Bank Accounts
646
665
  * @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
647
666
  * @param {*} [options] Override http request option.
648
667
  * @throws {RequiredError}
@@ -653,7 +672,8 @@ export class TenantBankAccountApi extends BaseAPI {
653
672
  }
654
673
 
655
674
  /**
656
- *
675
+ * Update a tenant bank account by code
676
+ * @summary Update a tenant bank account
657
677
  * @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
658
678
  * @param {*} [options] Override http request option.
659
679
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
59
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
59
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
60
60
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;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 {string} [expand] Expand the response with additional entities
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?: string, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
67
+ listBankTransactions: (authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked', 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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
119
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
119
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
120
120
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;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 {string} [expand] Expand the response with additional entities
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?: string, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
127
+ listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked', 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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
179
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
179
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
180
180
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;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 {string} [expand] Expand the response with additional entities
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?: string, filters?: any, options?: any): AxiosPromise<void>;
187
+ listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: 'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked', 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,11 +290,11 @@ export interface BankTransactionApiListBankTransactionsRequest {
290
290
  */
291
291
  readonly pageToken?: any;
292
292
  /**
293
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
294
- * @type {any}
293
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
294
+ * @type {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'}
295
295
  * @memberof BankTransactionApiListBankTransactions
296
296
  */
297
- readonly filter?: any;
297
+ readonly filter?: 'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked';
298
298
  /**
299
299
  * Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
300
300
  * @type {any}
@@ -309,10 +309,10 @@ export interface BankTransactionApiListBankTransactionsRequest {
309
309
  readonly order?: any;
310
310
  /**
311
311
  * Expand the response with additional entities
312
- * @type {string}
312
+ * @type {'bankAccount' | 'transaction'}
313
313
  * @memberof BankTransactionApiListBankTransactions
314
314
  */
315
- readonly expand?: string;
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}
@@ -253,10 +253,10 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
253
253
  * @param {string} [authorization] Bearer Token
254
254
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
255
255
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
256
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
256
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
257
257
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
258
258
  * @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.
259
- * @param {string} [expand] Expand the response with additional entities
259
+ * @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
260
260
  * @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.
261
261
  * @param {*} [options] Override http request option.
262
262
  * @throws {RequiredError}
@@ -453,10 +453,10 @@ var BankTransactionApiFp = function (configuration) {
453
453
  * @param {string} [authorization] Bearer Token
454
454
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
455
455
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
456
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
456
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
457
457
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
458
458
  * @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.
459
- * @param {string} [expand] Expand the response with additional entities
459
+ * @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
460
460
  * @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.
461
461
  * @param {*} [options] Override http request option.
462
462
  * @throws {RequiredError}
@@ -547,10 +547,10 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
547
547
  * @param {string} [authorization] Bearer Token
548
548
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
549
549
  * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
550
- * @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
550
+ * @param {'id' | 'code' | 'bankAccountId' | 'bankAccountNumber' | 'swiftMessageReference' | 'amount' | 'currency' | 'transactionReference' | 'transactionDate' | 'entryDate' | 'isLinked'} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, bankAccountId, bankAccountNumber, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked&lt;/i&gt;
551
551
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
552
552
  * @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.
553
- * @param {string} [expand] Expand the response with additional entities
553
+ * @param {'bankAccount' | 'transaction'} [expand] Expand the response with additional entities
554
554
  * @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.
555
555
  * @param {*} [options] Override http request option.
556
556
  * @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 {string} [expand] Expand the response with additional entities
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?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
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&#x3D;1, your subsequent call can include pageToken&#x3D;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 {string} [expand] Expand the response with additional entities
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?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetTenantBankAccountResponseClass>>;
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&#x3D;1, your subsequent call can include pageToken&#x3D;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 {string} [expand] Expand the response with additional entities
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?: string, options?: any): AxiosPromise<GetTenantBankAccountResponseClass>;
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&#x3D;1, your subsequent call can include pageToken&#x3D;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 {string}
253
+ * @type {'bankTransactions'}
239
254
  * @memberof TenantBankAccountApiGetTenantBankAccount
240
255
  */
241
- readonly expand?: string;
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}
@@ -93,7 +93,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
93
93
  var _this = this;
94
94
  return {
95
95
  /**
96
- *
96
+ * Create a new tenant bank account
97
+ * @summary Create the Create Tenant Bank Account
97
98
  * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
98
99
  * @param {string} [authorization] Bearer Token
99
100
  * @param {*} [options] Override http request option.
@@ -141,7 +142,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
141
142
  });
142
143
  },
143
144
  /**
144
- *
145
+ * Deletes a tenant bank account by code
146
+ * @summary Deletes a tenant bank account
145
147
  * @param {string} code Unique identifier for the object.
146
148
  * @param {string} [authorization] Bearer Token
147
149
  * @param {*} [options] Override http request option.
@@ -188,10 +190,11 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
188
190
  });
189
191
  },
190
192
  /**
191
- *
193
+ * Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
194
+ * @summary Retrieve the Bank Transaction
192
195
  * @param {string} code Unique identifier for the object.
193
196
  * @param {string} [authorization] Bearer Token
194
- * @param {string} [expand] Expand the response with additional entities
197
+ * @param {'bankTransactions'} [expand] Expand the response with additional entities
195
198
  * @param {*} [options] Override http request option.
196
199
  * @throws {RequiredError}
197
200
  */
@@ -239,7 +242,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
239
242
  });
240
243
  },
241
244
  /**
242
- *
245
+ * Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
246
+ * @summary List Tenant Bank Accounts
243
247
  * @param {string} [authorization] Bearer Token
244
248
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
245
249
  * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
@@ -310,7 +314,8 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
310
314
  });
311
315
  },
312
316
  /**
313
- *
317
+ * Update a tenant bank account by code
318
+ * @summary Update a tenant bank account
314
319
  * @param {string} code Unique identifier for the object.
315
320
  * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
316
321
  * @param {string} [authorization] Bearer Token
@@ -372,7 +377,8 @@ var TenantBankAccountApiFp = function (configuration) {
372
377
  var localVarAxiosParamCreator = (0, exports.TenantBankAccountApiAxiosParamCreator)(configuration);
373
378
  return {
374
379
  /**
375
- *
380
+ * Create a new tenant bank account
381
+ * @summary Create the Create Tenant Bank Account
376
382
  * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
377
383
  * @param {string} [authorization] Bearer Token
378
384
  * @param {*} [options] Override http request option.
@@ -392,7 +398,8 @@ var TenantBankAccountApiFp = function (configuration) {
392
398
  });
393
399
  },
394
400
  /**
395
- *
401
+ * Deletes a tenant bank account by code
402
+ * @summary Deletes a tenant bank account
396
403
  * @param {string} code Unique identifier for the object.
397
404
  * @param {string} [authorization] Bearer Token
398
405
  * @param {*} [options] Override http request option.
@@ -412,10 +419,11 @@ var TenantBankAccountApiFp = function (configuration) {
412
419
  });
413
420
  },
414
421
  /**
415
- *
422
+ * Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
423
+ * @summary Retrieve the Bank Transaction
416
424
  * @param {string} code Unique identifier for the object.
417
425
  * @param {string} [authorization] Bearer Token
418
- * @param {string} [expand] Expand the response with additional entities
426
+ * @param {'bankTransactions'} [expand] Expand the response with additional entities
419
427
  * @param {*} [options] Override http request option.
420
428
  * @throws {RequiredError}
421
429
  */
@@ -433,7 +441,8 @@ var TenantBankAccountApiFp = function (configuration) {
433
441
  });
434
442
  },
435
443
  /**
436
- *
444
+ * Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
445
+ * @summary List Tenant Bank Accounts
437
446
  * @param {string} [authorization] Bearer Token
438
447
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
439
448
  * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
@@ -459,7 +468,8 @@ var TenantBankAccountApiFp = function (configuration) {
459
468
  });
460
469
  },
461
470
  /**
462
- *
471
+ * Update a tenant bank account by code
472
+ * @summary Update a tenant bank account
463
473
  * @param {string} code Unique identifier for the object.
464
474
  * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
465
475
  * @param {string} [authorization] Bearer Token
@@ -490,7 +500,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
490
500
  var localVarFp = (0, exports.TenantBankAccountApiFp)(configuration);
491
501
  return {
492
502
  /**
493
- *
503
+ * Create a new tenant bank account
504
+ * @summary Create the Create Tenant Bank Account
494
505
  * @param {CreateTenantBankAccountRequestDto} createTenantBankAccountRequestDto
495
506
  * @param {string} [authorization] Bearer Token
496
507
  * @param {*} [options] Override http request option.
@@ -500,7 +511,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
500
511
  return localVarFp.createTenantBankAccount(createTenantBankAccountRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
501
512
  },
502
513
  /**
503
- *
514
+ * Deletes a tenant bank account by code
515
+ * @summary Deletes a tenant bank account
504
516
  * @param {string} code Unique identifier for the object.
505
517
  * @param {string} [authorization] Bearer Token
506
518
  * @param {*} [options] Override http request option.
@@ -510,10 +522,11 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
510
522
  return localVarFp.deleteTenantBankAccount(code, authorization, options).then(function (request) { return request(axios, basePath); });
511
523
  },
512
524
  /**
513
- *
525
+ * Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
526
+ * @summary Retrieve the Bank Transaction
514
527
  * @param {string} code Unique identifier for the object.
515
528
  * @param {string} [authorization] Bearer Token
516
- * @param {string} [expand] Expand the response with additional entities
529
+ * @param {'bankTransactions'} [expand] Expand the response with additional entities
517
530
  * @param {*} [options] Override http request option.
518
531
  * @throws {RequiredError}
519
532
  */
@@ -521,7 +534,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
521
534
  return localVarFp.getTenantBankAccount(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
522
535
  },
523
536
  /**
524
- *
537
+ * Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
538
+ * @summary List Tenant Bank Accounts
525
539
  * @param {string} [authorization] Bearer Token
526
540
  * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
527
541
  * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
@@ -537,7 +551,8 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
537
551
  return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
538
552
  },
539
553
  /**
540
- *
554
+ * Update a tenant bank account by code
555
+ * @summary Update a tenant bank account
541
556
  * @param {string} code Unique identifier for the object.
542
557
  * @param {UpdateTenantBankAccountRestRequestDto} updateTenantBankAccountRestRequestDto
543
558
  * @param {string} [authorization] Bearer Token
@@ -562,7 +577,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
562
577
  return _super !== null && _super.apply(this, arguments) || this;
563
578
  }
564
579
  /**
565
- *
580
+ * Create a new tenant bank account
581
+ * @summary Create the Create Tenant Bank Account
566
582
  * @param {TenantBankAccountApiCreateTenantBankAccountRequest} requestParameters Request parameters.
567
583
  * @param {*} [options] Override http request option.
568
584
  * @throws {RequiredError}
@@ -573,7 +589,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
573
589
  return (0, exports.TenantBankAccountApiFp)(this.configuration).createTenantBankAccount(requestParameters.createTenantBankAccountRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
574
590
  };
575
591
  /**
576
- *
592
+ * Deletes a tenant bank account by code
593
+ * @summary Deletes a tenant bank account
577
594
  * @param {TenantBankAccountApiDeleteTenantBankAccountRequest} requestParameters Request parameters.
578
595
  * @param {*} [options] Override http request option.
579
596
  * @throws {RequiredError}
@@ -584,7 +601,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
584
601
  return (0, exports.TenantBankAccountApiFp)(this.configuration).deleteTenantBankAccount(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
585
602
  };
586
603
  /**
587
- *
604
+ * Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code that was returned when you created it and Emil Api will return the corresponding Bank Transaction information.
605
+ * @summary Retrieve the Bank Transaction
588
606
  * @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
589
607
  * @param {*} [options] Override http request option.
590
608
  * @throws {RequiredError}
@@ -595,7 +613,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
595
613
  return (0, exports.TenantBankAccountApiFp)(this.configuration).getTenantBankAccount(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
596
614
  };
597
615
  /**
598
- *
616
+ * Returns a list of Tenant Bank Accounts you have previously created. The Tenant Bank Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
617
+ * @summary List Tenant Bank Accounts
599
618
  * @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
600
619
  * @param {*} [options] Override http request option.
601
620
  * @throws {RequiredError}
@@ -607,7 +626,8 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
607
626
  return (0, exports.TenantBankAccountApiFp)(this.configuration).listTenantBankAccounts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
608
627
  };
609
628
  /**
610
- *
629
+ * Update a tenant bank account by code
630
+ * @summary Update a tenant bank account
611
631
  * @param {TenantBankAccountApiUpdateTenantBankAccountRequest} requestParameters Request parameters.
612
632
  * @param {*} [options] Override http request option.
613
633
  * @throws {RequiredError}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.4.1-beta.8",
3
+ "version": "1.4.1-beta.9",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [