@emilgroup/payment-sdk 1.4.1-beta.37 → 1.4.1-beta.39
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-accounts-api.ts +14 -56
- package/api/bank-transaction-api.ts +18 -46
- package/api/payment-methods-api.ts +14 -56
- package/api/payment-reminders-api.ts +14 -56
- package/api/payments-api.ts +14 -56
- package/api/refunds-api.ts +18 -46
- package/api/tenant-bank-account-api.ts +18 -46
- package/dist/api/bank-accounts-api.d.ts +9 -36
- package/dist/api/bank-accounts-api.js +11 -29
- package/dist/api/bank-transaction-api.d.ts +11 -29
- package/dist/api/bank-transaction-api.js +12 -24
- package/dist/api/payment-methods-api.d.ts +9 -36
- package/dist/api/payment-methods-api.js +11 -29
- package/dist/api/payment-reminders-api.d.ts +9 -36
- package/dist/api/payment-reminders-api.js +11 -29
- package/dist/api/payments-api.d.ts +9 -36
- package/dist/api/payments-api.js +11 -29
- package/dist/api/refunds-api.d.ts +11 -29
- package/dist/api/refunds-api.js +12 -24
- package/dist/api/tenant-bank-account-api.d.ts +11 -29
- package/dist/api/tenant-bank-account-api.js +12 -24
- package/package.json +1 -1
|
@@ -245,17 +245,15 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
245
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
246
|
* @summary List tenant bank accounts
|
|
247
247
|
* @param {string} [authorization] Bearer Token
|
|
248
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
250
248
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
249
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
251
250
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
252
251
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
253
252
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
254
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
255
253
|
* @param {*} [options] Override http request option.
|
|
256
254
|
* @throws {RequiredError}
|
|
257
255
|
*/
|
|
258
|
-
listTenantBankAccounts: function (authorization,
|
|
256
|
+
listTenantBankAccounts: function (authorization, filter, filters, search, order, expand, options) {
|
|
259
257
|
if (options === void 0) { options = {}; }
|
|
260
258
|
return __awaiter(_this, void 0, void 0, function () {
|
|
261
259
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -278,15 +276,12 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
278
276
|
// authentication bearer required
|
|
279
277
|
// http bearer authentication required
|
|
280
278
|
_a.sent();
|
|
281
|
-
if (pageSize !== undefined) {
|
|
282
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
283
|
-
}
|
|
284
|
-
if (pageToken !== undefined) {
|
|
285
|
-
localVarQueryParameter['pageToken'] = pageToken;
|
|
286
|
-
}
|
|
287
279
|
if (filter !== undefined) {
|
|
288
280
|
localVarQueryParameter['filter'] = filter;
|
|
289
281
|
}
|
|
282
|
+
if (filters !== undefined) {
|
|
283
|
+
localVarQueryParameter['filters'] = filters;
|
|
284
|
+
}
|
|
290
285
|
if (search !== undefined) {
|
|
291
286
|
localVarQueryParameter['search'] = search;
|
|
292
287
|
}
|
|
@@ -296,9 +291,6 @@ var TenantBankAccountApiAxiosParamCreator = function (configuration) {
|
|
|
296
291
|
if (expand !== undefined) {
|
|
297
292
|
localVarQueryParameter['expand'] = expand;
|
|
298
293
|
}
|
|
299
|
-
if (filters !== undefined) {
|
|
300
|
-
localVarQueryParameter['filters'] = filters;
|
|
301
|
-
}
|
|
302
294
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
303
295
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
304
296
|
}
|
|
@@ -444,22 +436,20 @@ var TenantBankAccountApiFp = function (configuration) {
|
|
|
444
436
|
* 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
437
|
* @summary List tenant bank accounts
|
|
446
438
|
* @param {string} [authorization] Bearer Token
|
|
447
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
449
439
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
440
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
450
441
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
451
442
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
452
443
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
453
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
454
444
|
* @param {*} [options] Override http request option.
|
|
455
445
|
* @throws {RequiredError}
|
|
456
446
|
*/
|
|
457
|
-
listTenantBankAccounts: function (authorization,
|
|
447
|
+
listTenantBankAccounts: function (authorization, filter, filters, search, order, expand, options) {
|
|
458
448
|
return __awaiter(this, void 0, void 0, function () {
|
|
459
449
|
var localVarAxiosArgs;
|
|
460
450
|
return __generator(this, function (_a) {
|
|
461
451
|
switch (_a.label) {
|
|
462
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listTenantBankAccounts(authorization,
|
|
452
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listTenantBankAccounts(authorization, filter, filters, search, order, expand, options)];
|
|
463
453
|
case 1:
|
|
464
454
|
localVarAxiosArgs = _a.sent();
|
|
465
455
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -537,18 +527,16 @@ var TenantBankAccountApiFactory = function (configuration, basePath, axios) {
|
|
|
537
527
|
* 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
528
|
* @summary List tenant bank accounts
|
|
539
529
|
* @param {string} [authorization] Bearer Token
|
|
540
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
542
530
|
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
531
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
543
532
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
544
533
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt</i>
|
|
545
534
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
546
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
547
535
|
* @param {*} [options] Override http request option.
|
|
548
536
|
* @throws {RequiredError}
|
|
549
537
|
*/
|
|
550
|
-
listTenantBankAccounts: function (authorization,
|
|
551
|
-
return localVarFp.listTenantBankAccounts(authorization,
|
|
538
|
+
listTenantBankAccounts: function (authorization, filter, filters, search, order, expand, options) {
|
|
539
|
+
return localVarFp.listTenantBankAccounts(authorization, filter, filters, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
552
540
|
},
|
|
553
541
|
/**
|
|
554
542
|
* Update a tenant bank account by code
|
|
@@ -623,7 +611,7 @@ var TenantBankAccountApi = /** @class */ (function (_super) {
|
|
|
623
611
|
TenantBankAccountApi.prototype.listTenantBankAccounts = function (requestParameters, options) {
|
|
624
612
|
var _this = this;
|
|
625
613
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
626
|
-
return (0, exports.TenantBankAccountApiFp)(this.configuration).listTenantBankAccounts(requestParameters.authorization, requestParameters.
|
|
614
|
+
return (0, exports.TenantBankAccountApiFp)(this.configuration).listTenantBankAccounts(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
627
615
|
};
|
|
628
616
|
/**
|
|
629
617
|
* Update a tenant bank account by code
|