@emilgroup/payment-sdk 1.4.1-beta.14 → 1.4.1-beta.16
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 +8 -8
- package/api/payment-methods-api.ts +34 -141
- package/api/payment-reminders-api.ts +8 -8
- package/api/payments-api.ts +38 -41
- package/api/tenant-bank-account-api.ts +16 -16
- package/dist/api/bank-transaction-api.d.ts +8 -8
- package/dist/api/bank-transaction-api.js +8 -8
- package/dist/api/payment-methods-api.d.ts +25 -80
- package/dist/api/payment-methods-api.js +30 -126
- package/dist/api/payment-reminders-api.d.ts +8 -8
- package/dist/api/payment-reminders-api.js +8 -8
- package/dist/api/payments-api.d.ts +29 -29
- package/dist/api/payments-api.js +34 -36
- package/dist/api/tenant-bank-account-api.d.ts +16 -16
- package/dist/api/tenant-bank-account-api.js +11 -11
- package/package.json +1 -1
package/api/payments-api.ts
CHANGED
|
@@ -30,7 +30,7 @@ export const PaymentsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
30
30
|
return {
|
|
31
31
|
/**
|
|
32
32
|
* Creates a payment for a specified account. This function is idempotent.
|
|
33
|
-
* @summary Create
|
|
33
|
+
* @summary Create the payment
|
|
34
34
|
* @param {string} idempotencyKey Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
35
35
|
* @param {CreatePaymentRequestDto} createPaymentRequestDto
|
|
36
36
|
* @param {string} [authorization] Bearer Token
|
|
@@ -83,23 +83,24 @@ export const PaymentsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
83
83
|
};
|
|
84
84
|
},
|
|
85
85
|
/**
|
|
86
|
-
* Retrieves the details of
|
|
87
|
-
* @summary Retrieve
|
|
88
|
-
* @param {string} code
|
|
86
|
+
* Retrieves the details of the payment that was previously created. Supply the unique payment code that was returned when you created it and Emil Api will return the corresponding payment information.
|
|
87
|
+
* @summary Retrieve the payment
|
|
88
|
+
* @param {string} code
|
|
89
|
+
* @param {string} code2 Unique identifier for the object.
|
|
89
90
|
* @param {string} expand Fields to expand response by
|
|
90
|
-
* @param {string} expand2 Fields to expand response by
|
|
91
91
|
* @param {string} [authorization] Bearer Token
|
|
92
92
|
* @param {*} [options] Override http request option.
|
|
93
93
|
* @throws {RequiredError}
|
|
94
94
|
*/
|
|
95
|
-
getPayment: async (code: string,
|
|
95
|
+
getPayment: async (code: string, code2: string, expand: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
96
96
|
// verify required parameter 'code' is not null or undefined
|
|
97
97
|
assertParamExists('getPayment', 'code', code)
|
|
98
|
+
// verify required parameter 'code2' is not null or undefined
|
|
99
|
+
assertParamExists('getPayment', 'code2', code2)
|
|
98
100
|
// verify required parameter 'expand' is not null or undefined
|
|
99
101
|
assertParamExists('getPayment', 'expand', expand)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
const localVarPath = `/paymentservice/v1/payments/{code}`;
|
|
102
|
+
const localVarPath = `/paymentservice/v1/payments/{code}`
|
|
103
|
+
.replace(`{${"code"}}`, encodeURIComponent(String(code)));
|
|
103
104
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
104
105
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
105
106
|
let baseOptions;
|
|
@@ -117,18 +118,14 @@ export const PaymentsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
117
118
|
// http bearer authentication required
|
|
118
119
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
119
120
|
|
|
120
|
-
if (
|
|
121
|
-
localVarQueryParameter['code'] =
|
|
121
|
+
if (code2 !== undefined) {
|
|
122
|
+
localVarQueryParameter['code'] = code2;
|
|
122
123
|
}
|
|
123
124
|
|
|
124
125
|
if (expand !== undefined) {
|
|
125
126
|
localVarQueryParameter['expand'] = expand;
|
|
126
127
|
}
|
|
127
128
|
|
|
128
|
-
if (expand2 !== undefined) {
|
|
129
|
-
localVarQueryParameter['expand'] = expand2;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
129
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
133
130
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
134
131
|
}
|
|
@@ -145,7 +142,7 @@ export const PaymentsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
145
142
|
};
|
|
146
143
|
},
|
|
147
144
|
/**
|
|
148
|
-
* Returns a list of payments you
|
|
145
|
+
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
149
146
|
* @summary List payments
|
|
150
147
|
* @param {string} [authorization] Bearer Token
|
|
151
148
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -232,7 +229,7 @@ export const PaymentsApiFp = function(configuration?: Configuration) {
|
|
|
232
229
|
return {
|
|
233
230
|
/**
|
|
234
231
|
* Creates a payment for a specified account. This function is idempotent.
|
|
235
|
-
* @summary Create
|
|
232
|
+
* @summary Create the payment
|
|
236
233
|
* @param {string} idempotencyKey Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
237
234
|
* @param {CreatePaymentRequestDto} createPaymentRequestDto
|
|
238
235
|
* @param {string} [authorization] Bearer Token
|
|
@@ -244,21 +241,21 @@ export const PaymentsApiFp = function(configuration?: Configuration) {
|
|
|
244
241
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
245
242
|
},
|
|
246
243
|
/**
|
|
247
|
-
* Retrieves the details of
|
|
248
|
-
* @summary Retrieve
|
|
249
|
-
* @param {string} code
|
|
244
|
+
* Retrieves the details of the payment that was previously created. Supply the unique payment code that was returned when you created it and Emil Api will return the corresponding payment information.
|
|
245
|
+
* @summary Retrieve the payment
|
|
246
|
+
* @param {string} code
|
|
247
|
+
* @param {string} code2 Unique identifier for the object.
|
|
250
248
|
* @param {string} expand Fields to expand response by
|
|
251
|
-
* @param {string} expand2 Fields to expand response by
|
|
252
249
|
* @param {string} [authorization] Bearer Token
|
|
253
250
|
* @param {*} [options] Override http request option.
|
|
254
251
|
* @throws {RequiredError}
|
|
255
252
|
*/
|
|
256
|
-
async getPayment(code: string,
|
|
257
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getPayment(code,
|
|
253
|
+
async getPayment(code: string, code2: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
254
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPayment(code, code2, expand, authorization, options);
|
|
258
255
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
259
256
|
},
|
|
260
257
|
/**
|
|
261
|
-
* Returns a list of payments you
|
|
258
|
+
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
262
259
|
* @summary List payments
|
|
263
260
|
* @param {string} [authorization] Bearer Token
|
|
264
261
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -287,7 +284,7 @@ export const PaymentsApiFactory = function (configuration?: Configuration, baseP
|
|
|
287
284
|
return {
|
|
288
285
|
/**
|
|
289
286
|
* Creates a payment for a specified account. This function is idempotent.
|
|
290
|
-
* @summary Create
|
|
287
|
+
* @summary Create the payment
|
|
291
288
|
* @param {string} idempotencyKey Idempotency Key used to make the request idempotent. The key should be unique. Usually, a generated v4 UUID is enough.
|
|
292
289
|
* @param {CreatePaymentRequestDto} createPaymentRequestDto
|
|
293
290
|
* @param {string} [authorization] Bearer Token
|
|
@@ -298,20 +295,20 @@ export const PaymentsApiFactory = function (configuration?: Configuration, baseP
|
|
|
298
295
|
return localVarFp.createPayment(idempotencyKey, createPaymentRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
299
296
|
},
|
|
300
297
|
/**
|
|
301
|
-
* Retrieves the details of
|
|
302
|
-
* @summary Retrieve
|
|
303
|
-
* @param {string} code
|
|
298
|
+
* Retrieves the details of the payment that was previously created. Supply the unique payment code that was returned when you created it and Emil Api will return the corresponding payment information.
|
|
299
|
+
* @summary Retrieve the payment
|
|
300
|
+
* @param {string} code
|
|
301
|
+
* @param {string} code2 Unique identifier for the object.
|
|
304
302
|
* @param {string} expand Fields to expand response by
|
|
305
|
-
* @param {string} expand2 Fields to expand response by
|
|
306
303
|
* @param {string} [authorization] Bearer Token
|
|
307
304
|
* @param {*} [options] Override http request option.
|
|
308
305
|
* @throws {RequiredError}
|
|
309
306
|
*/
|
|
310
|
-
getPayment(code: string,
|
|
311
|
-
return localVarFp.getPayment(code,
|
|
307
|
+
getPayment(code: string, code2: string, expand: string, authorization?: string, options?: any): AxiosPromise<void> {
|
|
308
|
+
return localVarFp.getPayment(code, code2, expand, authorization, options).then((request) => request(axios, basePath));
|
|
312
309
|
},
|
|
313
310
|
/**
|
|
314
|
-
* Returns a list of payments you
|
|
311
|
+
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
315
312
|
* @summary List payments
|
|
316
313
|
* @param {string} [authorization] Bearer Token
|
|
317
314
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -365,25 +362,25 @@ export interface PaymentsApiCreatePaymentRequest {
|
|
|
365
362
|
*/
|
|
366
363
|
export interface PaymentsApiGetPaymentRequest {
|
|
367
364
|
/**
|
|
368
|
-
*
|
|
365
|
+
*
|
|
369
366
|
* @type {string}
|
|
370
367
|
* @memberof PaymentsApiGetPayment
|
|
371
368
|
*/
|
|
372
369
|
readonly code: string
|
|
373
370
|
|
|
374
371
|
/**
|
|
375
|
-
*
|
|
372
|
+
* Unique identifier for the object.
|
|
376
373
|
* @type {string}
|
|
377
374
|
* @memberof PaymentsApiGetPayment
|
|
378
375
|
*/
|
|
379
|
-
readonly
|
|
376
|
+
readonly code2: string
|
|
380
377
|
|
|
381
378
|
/**
|
|
382
379
|
* Fields to expand response by
|
|
383
380
|
* @type {string}
|
|
384
381
|
* @memberof PaymentsApiGetPayment
|
|
385
382
|
*/
|
|
386
|
-
readonly
|
|
383
|
+
readonly expand: string
|
|
387
384
|
|
|
388
385
|
/**
|
|
389
386
|
* Bearer Token
|
|
@@ -465,7 +462,7 @@ export interface PaymentsApiListPaymentsRequest {
|
|
|
465
462
|
export class PaymentsApi extends BaseAPI {
|
|
466
463
|
/**
|
|
467
464
|
* Creates a payment for a specified account. This function is idempotent.
|
|
468
|
-
* @summary Create
|
|
465
|
+
* @summary Create the payment
|
|
469
466
|
* @param {PaymentsApiCreatePaymentRequest} requestParameters Request parameters.
|
|
470
467
|
* @param {*} [options] Override http request option.
|
|
471
468
|
* @throws {RequiredError}
|
|
@@ -476,19 +473,19 @@ export class PaymentsApi extends BaseAPI {
|
|
|
476
473
|
}
|
|
477
474
|
|
|
478
475
|
/**
|
|
479
|
-
* Retrieves the details of
|
|
480
|
-
* @summary Retrieve
|
|
476
|
+
* Retrieves the details of the payment that was previously created. Supply the unique payment code that was returned when you created it and Emil Api will return the corresponding payment information.
|
|
477
|
+
* @summary Retrieve the payment
|
|
481
478
|
* @param {PaymentsApiGetPaymentRequest} requestParameters Request parameters.
|
|
482
479
|
* @param {*} [options] Override http request option.
|
|
483
480
|
* @throws {RequiredError}
|
|
484
481
|
* @memberof PaymentsApi
|
|
485
482
|
*/
|
|
486
483
|
public getPayment(requestParameters: PaymentsApiGetPaymentRequest, options?: AxiosRequestConfig) {
|
|
487
|
-
return PaymentsApiFp(this.configuration).getPayment(requestParameters.code, requestParameters.
|
|
484
|
+
return PaymentsApiFp(this.configuration).getPayment(requestParameters.code, requestParameters.code2, requestParameters.expand, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
488
485
|
}
|
|
489
486
|
|
|
490
487
|
/**
|
|
491
|
-
* Returns a list of payments you
|
|
488
|
+
* Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
492
489
|
* @summary List payments
|
|
493
490
|
* @param {PaymentsApiListPaymentsRequest} requestParameters Request parameters.
|
|
494
491
|
* @param {*} [options] Override http request option.
|
|
@@ -129,7 +129,7 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
129
129
|
};
|
|
130
130
|
},
|
|
131
131
|
/**
|
|
132
|
-
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code
|
|
132
|
+
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code that was returned when you created it and Emil Api will return the corresponding Tenant Bank Account information.
|
|
133
133
|
* @summary Retrieve the Tenant Bank Account
|
|
134
134
|
* @param {string} code Unique identifier for the object.
|
|
135
135
|
* @param {string} [authorization] Bearer Token
|
|
@@ -174,7 +174,7 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
174
174
|
};
|
|
175
175
|
},
|
|
176
176
|
/**
|
|
177
|
-
* Returns a list of Tenant Bank Accounts you have previously created.
|
|
177
|
+
* 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.
|
|
178
178
|
* @summary List Tenant Bank Accounts
|
|
179
179
|
* @param {string} [authorization] Bearer Token
|
|
180
180
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -182,12 +182,12 @@ export const TenantBankAccountApiAxiosParamCreator = function (configuration?: C
|
|
|
182
182
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
183
183
|
* @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.
|
|
184
184
|
* @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.
|
|
185
|
-
* @param {
|
|
185
|
+
* @param {string} [expand] No expand is available for this tenant bank accounts
|
|
186
186
|
* @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.
|
|
187
187
|
* @param {*} [options] Override http request option.
|
|
188
188
|
* @throws {RequiredError}
|
|
189
189
|
*/
|
|
190
|
-
listTenantBankAccounts: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
190
|
+
listTenantBankAccounts: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
191
191
|
const localVarPath = `/paymentservice/v1/tenant/bank-accounts`;
|
|
192
192
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
193
193
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -335,7 +335,7 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
335
335
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
336
336
|
},
|
|
337
337
|
/**
|
|
338
|
-
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code
|
|
338
|
+
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code that was returned when you created it and Emil Api will return the corresponding Tenant Bank Account information.
|
|
339
339
|
* @summary Retrieve the Tenant Bank Account
|
|
340
340
|
* @param {string} code Unique identifier for the object.
|
|
341
341
|
* @param {string} [authorization] Bearer Token
|
|
@@ -347,7 +347,7 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
347
347
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
348
348
|
},
|
|
349
349
|
/**
|
|
350
|
-
* Returns a list of Tenant Bank Accounts you have previously created.
|
|
350
|
+
* 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.
|
|
351
351
|
* @summary List Tenant Bank Accounts
|
|
352
352
|
* @param {string} [authorization] Bearer Token
|
|
353
353
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -355,12 +355,12 @@ export const TenantBankAccountApiFp = function(configuration?: Configuration) {
|
|
|
355
355
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
356
356
|
* @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.
|
|
357
357
|
* @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.
|
|
358
|
-
* @param {
|
|
358
|
+
* @param {string} [expand] No expand is available for this tenant bank accounts
|
|
359
359
|
* @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.
|
|
360
360
|
* @param {*} [options] Override http request option.
|
|
361
361
|
* @throws {RequiredError}
|
|
362
362
|
*/
|
|
363
|
-
async listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
363
|
+
async 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<ListTenantBankAccountResponseClass>> {
|
|
364
364
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
365
365
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
366
366
|
},
|
|
@@ -410,7 +410,7 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
410
410
|
return localVarFp.deleteTenantBankAccount(code, authorization, options).then((request) => request(axios, basePath));
|
|
411
411
|
},
|
|
412
412
|
/**
|
|
413
|
-
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code
|
|
413
|
+
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code that was returned when you created it and Emil Api will return the corresponding Tenant Bank Account information.
|
|
414
414
|
* @summary Retrieve the Tenant Bank Account
|
|
415
415
|
* @param {string} code Unique identifier for the object.
|
|
416
416
|
* @param {string} [authorization] Bearer Token
|
|
@@ -421,7 +421,7 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
421
421
|
return localVarFp.getTenantBankAccount(code, authorization, options).then((request) => request(axios, basePath));
|
|
422
422
|
},
|
|
423
423
|
/**
|
|
424
|
-
* Returns a list of Tenant Bank Accounts you have previously created.
|
|
424
|
+
* 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.
|
|
425
425
|
* @summary List Tenant Bank Accounts
|
|
426
426
|
* @param {string} [authorization] Bearer Token
|
|
427
427
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -429,12 +429,12 @@ export const TenantBankAccountApiFactory = function (configuration?: Configurati
|
|
|
429
429
|
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
430
430
|
* @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.
|
|
431
431
|
* @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.
|
|
432
|
-
* @param {
|
|
432
|
+
* @param {string} [expand] No expand is available for this tenant bank accounts
|
|
433
433
|
* @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.
|
|
434
434
|
* @param {*} [options] Override http request option.
|
|
435
435
|
* @throws {RequiredError}
|
|
436
436
|
*/
|
|
437
|
-
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?:
|
|
437
|
+
listTenantBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: any): AxiosPromise<ListTenantBankAccountResponseClass> {
|
|
438
438
|
return localVarFp.listTenantBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
439
439
|
},
|
|
440
440
|
/**
|
|
@@ -565,10 +565,10 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
565
565
|
|
|
566
566
|
/**
|
|
567
567
|
* No expand is available for this tenant bank accounts
|
|
568
|
-
* @type {
|
|
568
|
+
* @type {string}
|
|
569
569
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
570
570
|
*/
|
|
571
|
-
readonly expand?:
|
|
571
|
+
readonly expand?: string
|
|
572
572
|
|
|
573
573
|
/**
|
|
574
574
|
* 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.
|
|
@@ -638,7 +638,7 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
/**
|
|
641
|
-
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code
|
|
641
|
+
* Retrieves the details of the Tenant Bank Account that was previously created. Supply the unique Tenant Bank Account code that was returned when you created it and Emil Api will return the corresponding Tenant Bank Account information.
|
|
642
642
|
* @summary Retrieve the Tenant Bank Account
|
|
643
643
|
* @param {TenantBankAccountApiGetTenantBankAccountRequest} requestParameters Request parameters.
|
|
644
644
|
* @param {*} [options] Override http request option.
|
|
@@ -650,7 +650,7 @@ export class TenantBankAccountApi extends BaseAPI {
|
|
|
650
650
|
}
|
|
651
651
|
|
|
652
652
|
/**
|
|
653
|
-
* Returns a list of Tenant Bank Accounts you have previously created.
|
|
653
|
+
* 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.
|
|
654
654
|
* @summary List Tenant Bank Accounts
|
|
655
655
|
* @param {TenantBankAccountApiListTenantBankAccountsRequest} requestParameters Request parameters.
|
|
656
656
|
* @param {*} [options] Override http request option.
|
|
@@ -22,7 +22,7 @@ import { UnlinkBankTransactionRequestDtoRest } from '../models';
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const BankTransactionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
|
-
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code
|
|
25
|
+
* 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.
|
|
26
26
|
* @summary Retrieve the Bank Transaction
|
|
27
27
|
* @param {string} code
|
|
28
28
|
* @param {string} [authorization] Bearer Token
|
|
@@ -51,7 +51,7 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
51
51
|
*/
|
|
52
52
|
linkBankTransaction: (code: string, linkBankTransactionRequestDtoRest: LinkBankTransactionRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
53
|
/**
|
|
54
|
-
* Returns a list of bank transactions you have previously created.
|
|
54
|
+
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
55
55
|
* @summary List bank transactions
|
|
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.
|
|
@@ -82,7 +82,7 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
82
82
|
*/
|
|
83
83
|
export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
84
84
|
/**
|
|
85
|
-
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code
|
|
85
|
+
* 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.
|
|
86
86
|
* @summary Retrieve the Bank Transaction
|
|
87
87
|
* @param {string} code
|
|
88
88
|
* @param {string} [authorization] Bearer Token
|
|
@@ -111,7 +111,7 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
111
111
|
*/
|
|
112
112
|
linkBankTransaction(code: string, linkBankTransactionRequestDtoRest: LinkBankTransactionRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBankTransactionsResponseClass>>;
|
|
113
113
|
/**
|
|
114
|
-
* Returns a list of bank transactions you have previously created.
|
|
114
|
+
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
115
115
|
* @summary List bank transactions
|
|
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.
|
|
@@ -142,7 +142,7 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
142
142
|
*/
|
|
143
143
|
export declare const BankTransactionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
144
144
|
/**
|
|
145
|
-
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code
|
|
145
|
+
* 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.
|
|
146
146
|
* @summary Retrieve the Bank Transaction
|
|
147
147
|
* @param {string} code
|
|
148
148
|
* @param {string} [authorization] Bearer Token
|
|
@@ -171,7 +171,7 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
171
171
|
*/
|
|
172
172
|
linkBankTransaction(code: string, linkBankTransactionRequestDtoRest: LinkBankTransactionRequestDtoRest, authorization?: string, options?: any): AxiosPromise<GetBankTransactionsResponseClass>;
|
|
173
173
|
/**
|
|
174
|
-
* Returns a list of bank transactions you have previously created.
|
|
174
|
+
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
175
175
|
* @summary List bank transactions
|
|
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.
|
|
@@ -353,7 +353,7 @@ export interface BankTransactionApiUnlinkBankTransactionRequest {
|
|
|
353
353
|
*/
|
|
354
354
|
export declare class BankTransactionApi extends BaseAPI {
|
|
355
355
|
/**
|
|
356
|
-
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code
|
|
356
|
+
* 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.
|
|
357
357
|
* @summary Retrieve the Bank Transaction
|
|
358
358
|
* @param {BankTransactionApiGetBankTransactionRequest} requestParameters Request parameters.
|
|
359
359
|
* @param {*} [options] Override http request option.
|
|
@@ -380,7 +380,7 @@ export declare class BankTransactionApi extends BaseAPI {
|
|
|
380
380
|
*/
|
|
381
381
|
linkBankTransaction(requestParameters: BankTransactionApiLinkBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBankTransactionsResponseClass, any>>;
|
|
382
382
|
/**
|
|
383
|
-
* Returns a list of bank transactions you have previously created.
|
|
383
|
+
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
384
384
|
* @summary List bank transactions
|
|
385
385
|
* @param {BankTransactionApiListBankTransactionsRequest} requestParameters Request parameters.
|
|
386
386
|
* @param {*} [options] Override http request option.
|
|
@@ -93,7 +93,7 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code
|
|
96
|
+
* 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.
|
|
97
97
|
* @summary Retrieve the Bank Transaction
|
|
98
98
|
* @param {string} code
|
|
99
99
|
* @param {string} [authorization] Bearer Token
|
|
@@ -250,7 +250,7 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
250
250
|
});
|
|
251
251
|
},
|
|
252
252
|
/**
|
|
253
|
-
* Returns a list of bank transactions you have previously created.
|
|
253
|
+
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
254
254
|
* @summary List bank transactions
|
|
255
255
|
* @param {string} [authorization] Bearer Token
|
|
256
256
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -385,7 +385,7 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
385
385
|
var localVarAxiosParamCreator = (0, exports.BankTransactionApiAxiosParamCreator)(configuration);
|
|
386
386
|
return {
|
|
387
387
|
/**
|
|
388
|
-
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code
|
|
388
|
+
* 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.
|
|
389
389
|
* @summary Retrieve the Bank Transaction
|
|
390
390
|
* @param {string} code
|
|
391
391
|
* @param {string} [authorization] Bearer Token
|
|
@@ -450,7 +450,7 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
450
450
|
});
|
|
451
451
|
},
|
|
452
452
|
/**
|
|
453
|
-
* Returns a list of bank transactions you have previously created.
|
|
453
|
+
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
454
454
|
* @summary List bank transactions
|
|
455
455
|
* @param {string} [authorization] Bearer Token
|
|
456
456
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -509,7 +509,7 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
509
509
|
var localVarFp = (0, exports.BankTransactionApiFp)(configuration);
|
|
510
510
|
return {
|
|
511
511
|
/**
|
|
512
|
-
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code
|
|
512
|
+
* 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.
|
|
513
513
|
* @summary Retrieve the Bank Transaction
|
|
514
514
|
* @param {string} code
|
|
515
515
|
* @param {string} [authorization] Bearer Token
|
|
@@ -544,7 +544,7 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
544
544
|
return localVarFp.linkBankTransaction(code, linkBankTransactionRequestDtoRest, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
545
545
|
},
|
|
546
546
|
/**
|
|
547
|
-
* Returns a list of bank transactions you have previously created.
|
|
547
|
+
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
548
548
|
* @summary List bank transactions
|
|
549
549
|
* @param {string} [authorization] Bearer Token
|
|
550
550
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -587,7 +587,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
587
587
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
588
588
|
}
|
|
589
589
|
/**
|
|
590
|
-
* Retrieves the details of the Bank Transaction that was previously created. Supply the unique Bank Transaction code
|
|
590
|
+
* 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.
|
|
591
591
|
* @summary Retrieve the Bank Transaction
|
|
592
592
|
* @param {BankTransactionApiGetBankTransactionRequest} requestParameters Request parameters.
|
|
593
593
|
* @param {*} [options] Override http request option.
|
|
@@ -623,7 +623,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
623
623
|
return (0, exports.BankTransactionApiFp)(this.configuration).linkBankTransaction(requestParameters.code, requestParameters.linkBankTransactionRequestDtoRest, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
624
624
|
};
|
|
625
625
|
/**
|
|
626
|
-
* Returns a list of bank transactions you have previously created.
|
|
626
|
+
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
627
627
|
* @summary List bank transactions
|
|
628
628
|
* @param {BankTransactionApiListBankTransactionsRequest} requestParameters Request parameters.
|
|
629
629
|
* @param {*} [options] Override http request option.
|