@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
|
@@ -42,17 +42,14 @@ export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
42
42
|
* 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.
|
|
43
43
|
* @summary List payments
|
|
44
44
|
* @param {string} [authorization] Bearer Token
|
|
45
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
46
|
-
* @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.
|
|
47
45
|
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
48
|
-
* @param {
|
|
46
|
+
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
49
47
|
* @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, code, amount</i>
|
|
50
48
|
* @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: transactions<i>
|
|
51
|
-
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
52
49
|
* @param {*} [options] Override http request option.
|
|
53
50
|
* @throws {RequiredError}
|
|
54
51
|
*/
|
|
55
|
-
listPayments: (authorization?: string,
|
|
52
|
+
listPayments: (authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
53
|
};
|
|
57
54
|
/**
|
|
58
55
|
* PaymentsApi - functional programming interface
|
|
@@ -83,17 +80,14 @@ export declare const PaymentsApiFp: (configuration?: Configuration) => {
|
|
|
83
80
|
* 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.
|
|
84
81
|
* @summary List payments
|
|
85
82
|
* @param {string} [authorization] Bearer Token
|
|
86
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
87
|
-
* @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.
|
|
88
83
|
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
89
|
-
* @param {
|
|
84
|
+
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
90
85
|
* @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, code, amount</i>
|
|
91
86
|
* @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: transactions<i>
|
|
92
|
-
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
93
87
|
* @param {*} [options] Override http request option.
|
|
94
88
|
* @throws {RequiredError}
|
|
95
89
|
*/
|
|
96
|
-
listPayments(authorization?: string,
|
|
90
|
+
listPayments(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
97
91
|
};
|
|
98
92
|
/**
|
|
99
93
|
* PaymentsApi - factory interface
|
|
@@ -124,17 +118,14 @@ export declare const PaymentsApiFactory: (configuration?: Configuration, basePat
|
|
|
124
118
|
* 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.
|
|
125
119
|
* @summary List payments
|
|
126
120
|
* @param {string} [authorization] Bearer Token
|
|
127
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
128
|
-
* @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.
|
|
129
121
|
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
130
|
-
* @param {
|
|
122
|
+
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
131
123
|
* @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, code, amount</i>
|
|
132
124
|
* @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: transactions<i>
|
|
133
|
-
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
134
125
|
* @param {*} [options] Override http request option.
|
|
135
126
|
* @throws {RequiredError}
|
|
136
127
|
*/
|
|
137
|
-
listPayments(authorization?: string,
|
|
128
|
+
listPayments(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: any): AxiosPromise<void>;
|
|
138
129
|
};
|
|
139
130
|
/**
|
|
140
131
|
* Request parameters for createPayment operation in PaymentsApi.
|
|
@@ -198,18 +189,6 @@ export interface PaymentsApiListPaymentsRequest {
|
|
|
198
189
|
* @memberof PaymentsApiListPayments
|
|
199
190
|
*/
|
|
200
191
|
readonly authorization?: string;
|
|
201
|
-
/**
|
|
202
|
-
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
203
|
-
* @type {any}
|
|
204
|
-
* @memberof PaymentsApiListPayments
|
|
205
|
-
*/
|
|
206
|
-
readonly pageSize?: any;
|
|
207
|
-
/**
|
|
208
|
-
* 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.
|
|
209
|
-
* @type {any}
|
|
210
|
-
* @memberof PaymentsApiListPayments
|
|
211
|
-
*/
|
|
212
|
-
readonly pageToken?: any;
|
|
213
192
|
/**
|
|
214
193
|
* 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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
215
194
|
* @type {string}
|
|
@@ -217,11 +196,11 @@ export interface PaymentsApiListPaymentsRequest {
|
|
|
217
196
|
*/
|
|
218
197
|
readonly filter?: string;
|
|
219
198
|
/**
|
|
220
|
-
*
|
|
221
|
-
* @type {
|
|
199
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
200
|
+
* @type {string}
|
|
222
201
|
* @memberof PaymentsApiListPayments
|
|
223
202
|
*/
|
|
224
|
-
readonly
|
|
203
|
+
readonly filters?: string;
|
|
225
204
|
/**
|
|
226
205
|
* 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, code, amount</i>
|
|
227
206
|
* @type {string}
|
|
@@ -234,12 +213,6 @@ export interface PaymentsApiListPaymentsRequest {
|
|
|
234
213
|
* @memberof PaymentsApiListPayments
|
|
235
214
|
*/
|
|
236
215
|
readonly expand?: string;
|
|
237
|
-
/**
|
|
238
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
239
|
-
* @type {string}
|
|
240
|
-
* @memberof PaymentsApiListPayments
|
|
241
|
-
*/
|
|
242
|
-
readonly filters?: string;
|
|
243
216
|
}
|
|
244
217
|
/**
|
|
245
218
|
* PaymentsApi - object-oriented interface
|
package/dist/api/payments-api.js
CHANGED
|
@@ -203,17 +203,14 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
|
|
|
203
203
|
* 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.
|
|
204
204
|
* @summary List payments
|
|
205
205
|
* @param {string} [authorization] Bearer Token
|
|
206
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
207
|
-
* @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.
|
|
208
206
|
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
209
|
-
* @param {
|
|
207
|
+
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
210
208
|
* @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, code, amount</i>
|
|
211
209
|
* @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: transactions<i>
|
|
212
|
-
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
213
210
|
* @param {*} [options] Override http request option.
|
|
214
211
|
* @throws {RequiredError}
|
|
215
212
|
*/
|
|
216
|
-
listPayments: function (authorization,
|
|
213
|
+
listPayments: function (authorization, filter, filters, order, expand, options) {
|
|
217
214
|
if (options === void 0) { options = {}; }
|
|
218
215
|
return __awaiter(_this, void 0, void 0, function () {
|
|
219
216
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -236,17 +233,11 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
|
|
|
236
233
|
// authentication bearer required
|
|
237
234
|
// http bearer authentication required
|
|
238
235
|
_a.sent();
|
|
239
|
-
if (pageSize !== undefined) {
|
|
240
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
241
|
-
}
|
|
242
|
-
if (pageToken !== undefined) {
|
|
243
|
-
localVarQueryParameter['pageToken'] = pageToken;
|
|
244
|
-
}
|
|
245
236
|
if (filter !== undefined) {
|
|
246
237
|
localVarQueryParameter['filter'] = filter;
|
|
247
238
|
}
|
|
248
|
-
if (
|
|
249
|
-
localVarQueryParameter['
|
|
239
|
+
if (filters !== undefined) {
|
|
240
|
+
localVarQueryParameter['filters'] = filters;
|
|
250
241
|
}
|
|
251
242
|
if (order !== undefined) {
|
|
252
243
|
localVarQueryParameter['order'] = order;
|
|
@@ -254,9 +245,6 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
|
|
|
254
245
|
if (expand !== undefined) {
|
|
255
246
|
localVarQueryParameter['expand'] = expand;
|
|
256
247
|
}
|
|
257
|
-
if (filters !== undefined) {
|
|
258
|
-
localVarQueryParameter['filters'] = filters;
|
|
259
|
-
}
|
|
260
248
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
261
249
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
262
250
|
}
|
|
@@ -329,22 +317,19 @@ var PaymentsApiFp = function (configuration) {
|
|
|
329
317
|
* 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.
|
|
330
318
|
* @summary List payments
|
|
331
319
|
* @param {string} [authorization] Bearer Token
|
|
332
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
333
|
-
* @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.
|
|
334
320
|
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
335
|
-
* @param {
|
|
321
|
+
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
336
322
|
* @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, code, amount</i>
|
|
337
323
|
* @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: transactions<i>
|
|
338
|
-
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
339
324
|
* @param {*} [options] Override http request option.
|
|
340
325
|
* @throws {RequiredError}
|
|
341
326
|
*/
|
|
342
|
-
listPayments: function (authorization,
|
|
327
|
+
listPayments: function (authorization, filter, filters, order, expand, options) {
|
|
343
328
|
return __awaiter(this, void 0, void 0, function () {
|
|
344
329
|
var localVarAxiosArgs;
|
|
345
330
|
return __generator(this, function (_a) {
|
|
346
331
|
switch (_a.label) {
|
|
347
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPayments(authorization,
|
|
332
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPayments(authorization, filter, filters, order, expand, options)];
|
|
348
333
|
case 1:
|
|
349
334
|
localVarAxiosArgs = _a.sent();
|
|
350
335
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -390,18 +375,15 @@ var PaymentsApiFactory = function (configuration, basePath, axios) {
|
|
|
390
375
|
* 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.
|
|
391
376
|
* @summary List payments
|
|
392
377
|
* @param {string} [authorization] Bearer Token
|
|
393
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
394
|
-
* @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.
|
|
395
378
|
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
396
|
-
* @param {
|
|
379
|
+
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
397
380
|
* @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, code, amount</i>
|
|
398
381
|
* @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: transactions<i>
|
|
399
|
-
* @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: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber</i>
|
|
400
382
|
* @param {*} [options] Override http request option.
|
|
401
383
|
* @throws {RequiredError}
|
|
402
384
|
*/
|
|
403
|
-
listPayments: function (authorization,
|
|
404
|
-
return localVarFp.listPayments(authorization,
|
|
385
|
+
listPayments: function (authorization, filter, filters, order, expand, options) {
|
|
386
|
+
return localVarFp.listPayments(authorization, filter, filters, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
405
387
|
},
|
|
406
388
|
};
|
|
407
389
|
};
|
|
@@ -452,7 +434,7 @@ var PaymentsApi = /** @class */ (function (_super) {
|
|
|
452
434
|
PaymentsApi.prototype.listPayments = function (requestParameters, options) {
|
|
453
435
|
var _this = this;
|
|
454
436
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
455
|
-
return (0, exports.PaymentsApiFp)(this.configuration).listPayments(requestParameters.authorization, requestParameters.
|
|
437
|
+
return (0, exports.PaymentsApiFp)(this.configuration).listPayments(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
456
438
|
};
|
|
457
439
|
return PaymentsApi;
|
|
458
440
|
}(base_1.BaseAPI));
|
|
@@ -41,17 +41,15 @@ export declare const RefundsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
41
41
|
* Returns a list of refunds you have previously created. The refunds are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
42
42
|
* @summary List refunds
|
|
43
43
|
* @param {string} [authorization] Bearer Token
|
|
44
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
45
|
-
* @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.
|
|
46
44
|
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
45
|
+
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
47
46
|
* @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, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
|
|
48
47
|
* @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, updatedAt, amount</i>
|
|
49
48
|
* @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: refundItems<i>
|
|
50
|
-
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
51
49
|
* @param {*} [options] Override http request option.
|
|
52
50
|
* @throws {RequiredError}
|
|
53
51
|
*/
|
|
54
|
-
listRefunds: (authorization?: string,
|
|
52
|
+
listRefunds: (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
53
|
};
|
|
56
54
|
/**
|
|
57
55
|
* RefundsApi - functional programming interface
|
|
@@ -81,17 +79,15 @@ export declare const RefundsApiFp: (configuration?: Configuration) => {
|
|
|
81
79
|
* Returns a list of refunds you have previously created. The refunds are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
82
80
|
* @summary List refunds
|
|
83
81
|
* @param {string} [authorization] Bearer Token
|
|
84
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
85
|
-
* @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.
|
|
86
82
|
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
83
|
+
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
87
84
|
* @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, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
|
|
88
85
|
* @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, updatedAt, amount</i>
|
|
89
86
|
* @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: refundItems<i>
|
|
90
|
-
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
91
87
|
* @param {*} [options] Override http request option.
|
|
92
88
|
* @throws {RequiredError}
|
|
93
89
|
*/
|
|
94
|
-
listRefunds(authorization?: string,
|
|
90
|
+
listRefunds(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
95
91
|
};
|
|
96
92
|
/**
|
|
97
93
|
* RefundsApi - factory interface
|
|
@@ -121,17 +117,15 @@ export declare const RefundsApiFactory: (configuration?: Configuration, basePath
|
|
|
121
117
|
* Returns a list of refunds you have previously created. The refunds are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
122
118
|
* @summary List refunds
|
|
123
119
|
* @param {string} [authorization] Bearer Token
|
|
124
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
125
|
-
* @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.
|
|
126
120
|
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
121
|
+
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
127
122
|
* @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, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
|
|
128
123
|
* @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, updatedAt, amount</i>
|
|
129
124
|
* @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: refundItems<i>
|
|
130
|
-
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
131
125
|
* @param {*} [options] Override http request option.
|
|
132
126
|
* @throws {RequiredError}
|
|
133
127
|
*/
|
|
134
|
-
listRefunds(authorization?: string,
|
|
128
|
+
listRefunds(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<void>;
|
|
135
129
|
};
|
|
136
130
|
/**
|
|
137
131
|
* Request parameters for createRefund operation in RefundsApi.
|
|
@@ -190,23 +184,17 @@ export interface RefundsApiListRefundsRequest {
|
|
|
190
184
|
*/
|
|
191
185
|
readonly authorization?: string;
|
|
192
186
|
/**
|
|
193
|
-
*
|
|
194
|
-
* @type {
|
|
195
|
-
* @memberof RefundsApiListRefunds
|
|
196
|
-
*/
|
|
197
|
-
readonly pageSize?: any;
|
|
198
|
-
/**
|
|
199
|
-
* 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.
|
|
200
|
-
* @type {any}
|
|
187
|
+
* 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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
188
|
+
* @type {string}
|
|
201
189
|
* @memberof RefundsApiListRefunds
|
|
202
190
|
*/
|
|
203
|
-
readonly
|
|
191
|
+
readonly filter?: string;
|
|
204
192
|
/**
|
|
205
|
-
*
|
|
193
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
206
194
|
* @type {string}
|
|
207
195
|
* @memberof RefundsApiListRefunds
|
|
208
196
|
*/
|
|
209
|
-
readonly
|
|
197
|
+
readonly filters?: string;
|
|
210
198
|
/**
|
|
211
199
|
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
|
|
212
200
|
* @type {string}
|
|
@@ -225,12 +213,6 @@ export interface RefundsApiListRefundsRequest {
|
|
|
225
213
|
* @memberof RefundsApiListRefunds
|
|
226
214
|
*/
|
|
227
215
|
readonly expand?: string;
|
|
228
|
-
/**
|
|
229
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
230
|
-
* @type {string}
|
|
231
|
-
* @memberof RefundsApiListRefunds
|
|
232
|
-
*/
|
|
233
|
-
readonly filters?: string;
|
|
234
216
|
}
|
|
235
217
|
/**
|
|
236
218
|
* RefundsApi - object-oriented interface
|
package/dist/api/refunds-api.js
CHANGED
|
@@ -197,17 +197,15 @@ var RefundsApiAxiosParamCreator = function (configuration) {
|
|
|
197
197
|
* Returns a list of refunds you have previously created. The refunds are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
198
198
|
* @summary List refunds
|
|
199
199
|
* @param {string} [authorization] Bearer Token
|
|
200
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
201
|
-
* @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.
|
|
202
200
|
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
201
|
+
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
203
202
|
* @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, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
|
|
204
203
|
* @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, updatedAt, amount</i>
|
|
205
204
|
* @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: refundItems<i>
|
|
206
|
-
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
207
205
|
* @param {*} [options] Override http request option.
|
|
208
206
|
* @throws {RequiredError}
|
|
209
207
|
*/
|
|
210
|
-
listRefunds: function (authorization,
|
|
208
|
+
listRefunds: function (authorization, filter, filters, search, order, expand, options) {
|
|
211
209
|
if (options === void 0) { options = {}; }
|
|
212
210
|
return __awaiter(_this, void 0, void 0, function () {
|
|
213
211
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -230,15 +228,12 @@ var RefundsApiAxiosParamCreator = function (configuration) {
|
|
|
230
228
|
// authentication bearer required
|
|
231
229
|
// http bearer authentication required
|
|
232
230
|
_a.sent();
|
|
233
|
-
if (pageSize !== undefined) {
|
|
234
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
235
|
-
}
|
|
236
|
-
if (pageToken !== undefined) {
|
|
237
|
-
localVarQueryParameter['pageToken'] = pageToken;
|
|
238
|
-
}
|
|
239
231
|
if (filter !== undefined) {
|
|
240
232
|
localVarQueryParameter['filter'] = filter;
|
|
241
233
|
}
|
|
234
|
+
if (filters !== undefined) {
|
|
235
|
+
localVarQueryParameter['filters'] = filters;
|
|
236
|
+
}
|
|
242
237
|
if (search !== undefined) {
|
|
243
238
|
localVarQueryParameter['search'] = search;
|
|
244
239
|
}
|
|
@@ -248,9 +243,6 @@ var RefundsApiAxiosParamCreator = function (configuration) {
|
|
|
248
243
|
if (expand !== undefined) {
|
|
249
244
|
localVarQueryParameter['expand'] = expand;
|
|
250
245
|
}
|
|
251
|
-
if (filters !== undefined) {
|
|
252
|
-
localVarQueryParameter['filters'] = filters;
|
|
253
|
-
}
|
|
254
246
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
255
247
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
256
248
|
}
|
|
@@ -322,22 +314,20 @@ var RefundsApiFp = function (configuration) {
|
|
|
322
314
|
* Returns a list of refunds you have previously created. The refunds are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
323
315
|
* @summary List refunds
|
|
324
316
|
* @param {string} [authorization] Bearer Token
|
|
325
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
326
|
-
* @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.
|
|
327
317
|
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
318
|
+
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
328
319
|
* @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, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
|
|
329
320
|
* @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, updatedAt, amount</i>
|
|
330
321
|
* @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: refundItems<i>
|
|
331
|
-
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
332
322
|
* @param {*} [options] Override http request option.
|
|
333
323
|
* @throws {RequiredError}
|
|
334
324
|
*/
|
|
335
|
-
listRefunds: function (authorization,
|
|
325
|
+
listRefunds: function (authorization, filter, filters, search, order, expand, options) {
|
|
336
326
|
return __awaiter(this, void 0, void 0, function () {
|
|
337
327
|
var localVarAxiosArgs;
|
|
338
328
|
return __generator(this, function (_a) {
|
|
339
329
|
switch (_a.label) {
|
|
340
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listRefunds(authorization,
|
|
330
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listRefunds(authorization, filter, filters, search, order, expand, options)];
|
|
341
331
|
case 1:
|
|
342
332
|
localVarAxiosArgs = _a.sent();
|
|
343
333
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -382,18 +372,16 @@ var RefundsApiFactory = function (configuration, basePath, axios) {
|
|
|
382
372
|
* Returns a list of refunds you have previously created. The refunds are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
383
373
|
* @summary List refunds
|
|
384
374
|
* @param {string} [authorization] Bearer Token
|
|
385
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
386
|
-
* @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.
|
|
387
375
|
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
376
|
+
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
388
377
|
* @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, createdAt, updatedAt, amount, psp, accountCode, invoiceCode, reason, status</i>
|
|
389
378
|
* @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, updatedAt, amount</i>
|
|
390
379
|
* @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: refundItems<i>
|
|
391
|
-
* @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: code, id, status, reason, psp, accountCode, invoiceCode</i>
|
|
392
380
|
* @param {*} [options] Override http request option.
|
|
393
381
|
* @throws {RequiredError}
|
|
394
382
|
*/
|
|
395
|
-
listRefunds: function (authorization,
|
|
396
|
-
return localVarFp.listRefunds(authorization,
|
|
383
|
+
listRefunds: function (authorization, filter, filters, search, order, expand, options) {
|
|
384
|
+
return localVarFp.listRefunds(authorization, filter, filters, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
397
385
|
},
|
|
398
386
|
};
|
|
399
387
|
};
|
|
@@ -444,7 +432,7 @@ var RefundsApi = /** @class */ (function (_super) {
|
|
|
444
432
|
RefundsApi.prototype.listRefunds = function (requestParameters, options) {
|
|
445
433
|
var _this = this;
|
|
446
434
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
447
|
-
return (0, exports.RefundsApiFp)(this.configuration).listRefunds(requestParameters.authorization, requestParameters.
|
|
435
|
+
return (0, exports.RefundsApiFp)(this.configuration).listRefunds(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
448
436
|
};
|
|
449
437
|
return RefundsApi;
|
|
450
438
|
}(base_1.BaseAPI));
|
|
@@ -55,17 +55,15 @@ export declare const TenantBankAccountApiAxiosParamCreator: (configuration?: Con
|
|
|
55
55
|
* 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.
|
|
56
56
|
* @summary List tenant bank accounts
|
|
57
57
|
* @param {string} [authorization] Bearer Token
|
|
58
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
59
|
-
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
60
58
|
* @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>
|
|
59
|
+
* @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>
|
|
61
60
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
62
61
|
* @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>
|
|
63
62
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
64
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
65
63
|
* @param {*} [options] Override http request option.
|
|
66
64
|
* @throws {RequiredError}
|
|
67
65
|
*/
|
|
68
|
-
listTenantBankAccounts: (authorization?: string,
|
|
66
|
+
listTenantBankAccounts: (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
69
67
|
/**
|
|
70
68
|
* Update a tenant bank account by code
|
|
71
69
|
* @summary Update the tenant bank account
|
|
@@ -114,17 +112,15 @@ export declare const TenantBankAccountApiFp: (configuration?: Configuration) =>
|
|
|
114
112
|
* 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.
|
|
115
113
|
* @summary List tenant bank accounts
|
|
116
114
|
* @param {string} [authorization] Bearer Token
|
|
117
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
118
|
-
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
119
115
|
* @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>
|
|
116
|
+
* @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>
|
|
120
117
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
121
118
|
* @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>
|
|
122
119
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
123
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
124
120
|
* @param {*} [options] Override http request option.
|
|
125
121
|
* @throws {RequiredError}
|
|
126
122
|
*/
|
|
127
|
-
listTenantBankAccounts(authorization?: string,
|
|
123
|
+
listTenantBankAccounts(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTenantBankAccountResponseClass>>;
|
|
128
124
|
/**
|
|
129
125
|
* Update a tenant bank account by code
|
|
130
126
|
* @summary Update the tenant bank account
|
|
@@ -173,17 +169,15 @@ export declare const TenantBankAccountApiFactory: (configuration?: Configuration
|
|
|
173
169
|
* 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.
|
|
174
170
|
* @summary List tenant bank accounts
|
|
175
171
|
* @param {string} [authorization] Bearer Token
|
|
176
|
-
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
177
|
-
* @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.
|
|
178
172
|
* @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>
|
|
173
|
+
* @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>
|
|
179
174
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, iban, bankName, accountName</i>
|
|
180
175
|
* @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>
|
|
181
176
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankTransactions<i>
|
|
182
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
183
177
|
* @param {*} [options] Override http request option.
|
|
184
178
|
* @throws {RequiredError}
|
|
185
179
|
*/
|
|
186
|
-
listTenantBankAccounts(authorization?: string,
|
|
180
|
+
listTenantBankAccounts(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListTenantBankAccountResponseClass>;
|
|
187
181
|
/**
|
|
188
182
|
* Update a tenant bank account by code
|
|
189
183
|
* @summary Update the tenant bank account
|
|
@@ -271,23 +265,17 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
271
265
|
*/
|
|
272
266
|
readonly authorization?: string;
|
|
273
267
|
/**
|
|
274
|
-
*
|
|
275
|
-
* @type {
|
|
276
|
-
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
277
|
-
*/
|
|
278
|
-
readonly pageSize?: any;
|
|
279
|
-
/**
|
|
280
|
-
* 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.
|
|
281
|
-
* @type {any}
|
|
268
|
+
* 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>
|
|
269
|
+
* @type {string}
|
|
282
270
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
283
271
|
*/
|
|
284
|
-
readonly
|
|
272
|
+
readonly filter?: string;
|
|
285
273
|
/**
|
|
286
|
-
*
|
|
274
|
+
* 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>
|
|
287
275
|
* @type {string}
|
|
288
276
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
289
277
|
*/
|
|
290
|
-
readonly
|
|
278
|
+
readonly filters?: string;
|
|
291
279
|
/**
|
|
292
280
|
* 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>
|
|
293
281
|
* @type {string}
|
|
@@ -306,12 +294,6 @@ export interface TenantBankAccountApiListTenantBankAccountsRequest {
|
|
|
306
294
|
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
307
295
|
*/
|
|
308
296
|
readonly expand?: string;
|
|
309
|
-
/**
|
|
310
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, iban, bankName, accountName</i>
|
|
311
|
-
* @type {string}
|
|
312
|
-
* @memberof TenantBankAccountApiListTenantBankAccounts
|
|
313
|
-
*/
|
|
314
|
-
readonly filters?: string;
|
|
315
297
|
}
|
|
316
298
|
/**
|
|
317
299
|
* Request parameters for updateTenantBankAccount operation in TenantBankAccountApi.
|