@emilgroup/payment-sdk-node 1.13.1-beta.0 → 1.13.1-beta.2
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 +20 -6
- package/api/bank-transaction-api.ts +20 -6
- package/api/payment-methods-api.ts +20 -6
- package/api/payment-reminders-api.ts +20 -6
- package/api/payments-api.ts +20 -6
- package/api/refunds-api.ts +20 -6
- package/api/tenant-bank-account-api.ts +20 -6
- package/dist/api/bank-accounts-api.d.ts +12 -3
- package/dist/api/bank-accounts-api.js +12 -6
- package/dist/api/bank-transaction-api.d.ts +12 -3
- package/dist/api/bank-transaction-api.js +12 -6
- package/dist/api/payment-methods-api.d.ts +12 -3
- package/dist/api/payment-methods-api.js +12 -6
- package/dist/api/payment-reminders-api.d.ts +12 -3
- package/dist/api/payment-reminders-api.js +12 -6
- package/dist/api/payments-api.d.ts +12 -3
- package/dist/api/payments-api.js +12 -6
- package/dist/api/refunds-api.d.ts +12 -3
- package/dist/api/refunds-api.js +12 -6
- package/dist/api/tenant-bank-account-api.d.ts +12 -3
- package/dist/api/tenant-bank-account-api.js +12 -6
- package/package.json +1 -1
|
@@ -36,10 +36,11 @@ export declare const BankAccountsApiAxiosParamCreator: (configuration?: Configur
|
|
|
36
36
|
* @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.
|
|
37
37
|
* @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.
|
|
38
38
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
39
|
+
* @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.
|
|
39
40
|
* @param {*} [options] Override http request option.
|
|
40
41
|
* @throws {RequiredError}
|
|
41
42
|
*/
|
|
42
|
-
listBankAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
|
+
listBankAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
44
|
};
|
|
44
45
|
/**
|
|
45
46
|
* BankAccountsApi - functional programming interface
|
|
@@ -65,10 +66,11 @@ export declare const BankAccountsApiFp: (configuration?: Configuration) => {
|
|
|
65
66
|
* @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.
|
|
66
67
|
* @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.
|
|
67
68
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
69
|
+
* @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.
|
|
68
70
|
* @param {*} [options] Override http request option.
|
|
69
71
|
* @throws {RequiredError}
|
|
70
72
|
*/
|
|
71
|
-
listBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
73
|
+
listBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
72
74
|
};
|
|
73
75
|
/**
|
|
74
76
|
* BankAccountsApi - factory interface
|
|
@@ -94,10 +96,11 @@ export declare const BankAccountsApiFactory: (configuration?: Configuration, bas
|
|
|
94
96
|
* @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.
|
|
95
97
|
* @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.
|
|
96
98
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
99
|
+
* @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.
|
|
97
100
|
* @param {*} [options] Override http request option.
|
|
98
101
|
* @throws {RequiredError}
|
|
99
102
|
*/
|
|
100
|
-
listBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<void>;
|
|
103
|
+
listBankAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<void>;
|
|
101
104
|
};
|
|
102
105
|
/**
|
|
103
106
|
* Request parameters for createBankAccount operation in BankAccountsApi.
|
|
@@ -166,6 +169,12 @@ export interface BankAccountsApiListBankAccountsRequest {
|
|
|
166
169
|
* @memberof BankAccountsApiListBankAccounts
|
|
167
170
|
*/
|
|
168
171
|
readonly expand?: any;
|
|
172
|
+
/**
|
|
173
|
+
* 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.
|
|
174
|
+
* @type {any}
|
|
175
|
+
* @memberof BankAccountsApiListBankAccounts
|
|
176
|
+
*/
|
|
177
|
+
readonly filters?: any;
|
|
169
178
|
}
|
|
170
179
|
/**
|
|
171
180
|
* BankAccountsApi - object-oriented interface
|
|
@@ -155,10 +155,11 @@ var BankAccountsApiAxiosParamCreator = function (configuration) {
|
|
|
155
155
|
* @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.
|
|
156
156
|
* @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.
|
|
157
157
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
158
|
+
* @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.
|
|
158
159
|
* @param {*} [options] Override http request option.
|
|
159
160
|
* @throws {RequiredError}
|
|
160
161
|
*/
|
|
161
|
-
listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
162
|
+
listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
162
163
|
if (options === void 0) { options = {}; }
|
|
163
164
|
return __awaiter(_this, void 0, void 0, function () {
|
|
164
165
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -199,6 +200,9 @@ var BankAccountsApiAxiosParamCreator = function (configuration) {
|
|
|
199
200
|
if (expand !== undefined) {
|
|
200
201
|
localVarQueryParameter['expand'] = expand;
|
|
201
202
|
}
|
|
203
|
+
if (filters !== undefined) {
|
|
204
|
+
localVarQueryParameter['filters'] = filters;
|
|
205
|
+
}
|
|
202
206
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
203
207
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
204
208
|
}
|
|
@@ -254,15 +258,16 @@ var BankAccountsApiFp = function (configuration) {
|
|
|
254
258
|
* @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.
|
|
255
259
|
* @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.
|
|
256
260
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
261
|
+
* @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.
|
|
257
262
|
* @param {*} [options] Override http request option.
|
|
258
263
|
* @throws {RequiredError}
|
|
259
264
|
*/
|
|
260
|
-
listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
265
|
+
listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
261
266
|
return __awaiter(this, void 0, void 0, function () {
|
|
262
267
|
var localVarAxiosArgs;
|
|
263
268
|
return __generator(this, function (_a) {
|
|
264
269
|
switch (_a.label) {
|
|
265
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
270
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
266
271
|
case 1:
|
|
267
272
|
localVarAxiosArgs = _a.sent();
|
|
268
273
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -301,11 +306,12 @@ var BankAccountsApiFactory = function (configuration, basePath, axios) {
|
|
|
301
306
|
* @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.
|
|
302
307
|
* @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.
|
|
303
308
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
309
|
+
* @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.
|
|
304
310
|
* @param {*} [options] Override http request option.
|
|
305
311
|
* @throws {RequiredError}
|
|
306
312
|
*/
|
|
307
|
-
listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
308
|
-
return localVarFp.listBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
313
|
+
listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
314
|
+
return localVarFp.listBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
309
315
|
},
|
|
310
316
|
};
|
|
311
317
|
};
|
|
@@ -344,7 +350,7 @@ var BankAccountsApi = /** @class */ (function (_super) {
|
|
|
344
350
|
BankAccountsApi.prototype.listBankAccounts = function (requestParameters, options) {
|
|
345
351
|
var _this = this;
|
|
346
352
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
347
|
-
return (0, exports.BankAccountsApiFp)(this.configuration).listBankAccounts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
353
|
+
return (0, exports.BankAccountsApiFp)(this.configuration).listBankAccounts(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
348
354
|
};
|
|
349
355
|
return BankAccountsApi;
|
|
350
356
|
}(base_1.BaseAPI));
|
|
@@ -57,10 +57,11 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
57
57
|
* @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.
|
|
58
58
|
* @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.
|
|
59
59
|
* @param {string} [expand] Expand the response with additional entities
|
|
60
|
+
* @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.
|
|
60
61
|
* @param {*} [options] Override http request option.
|
|
61
62
|
* @throws {RequiredError}
|
|
62
63
|
*/
|
|
63
|
-
listBankTransactions: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
64
|
+
listBankTransactions: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
64
65
|
/**
|
|
65
66
|
* Unlinks an already linked bank transaction
|
|
66
67
|
* @summary Unlink Bank Transaction
|
|
@@ -114,10 +115,11 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
114
115
|
* @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.
|
|
115
116
|
* @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.
|
|
116
117
|
* @param {string} [expand] Expand the response with additional entities
|
|
118
|
+
* @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.
|
|
117
119
|
* @param {*} [options] Override http request option.
|
|
118
120
|
* @throws {RequiredError}
|
|
119
121
|
*/
|
|
120
|
-
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
122
|
+
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
121
123
|
/**
|
|
122
124
|
* Unlinks an already linked bank transaction
|
|
123
125
|
* @summary Unlink Bank Transaction
|
|
@@ -171,10 +173,11 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
171
173
|
* @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.
|
|
172
174
|
* @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.
|
|
173
175
|
* @param {string} [expand] Expand the response with additional entities
|
|
176
|
+
* @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.
|
|
174
177
|
* @param {*} [options] Override http request option.
|
|
175
178
|
* @throws {RequiredError}
|
|
176
179
|
*/
|
|
177
|
-
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, options?: any): AxiosPromise<void>;
|
|
180
|
+
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: string, filters?: any, options?: any): AxiosPromise<void>;
|
|
178
181
|
/**
|
|
179
182
|
* Unlinks an already linked bank transaction
|
|
180
183
|
* @summary Unlink Bank Transaction
|
|
@@ -296,6 +299,12 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
296
299
|
* @memberof BankTransactionApiListBankTransactions
|
|
297
300
|
*/
|
|
298
301
|
readonly expand?: string;
|
|
302
|
+
/**
|
|
303
|
+
* 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.
|
|
304
|
+
* @type {any}
|
|
305
|
+
* @memberof BankTransactionApiListBankTransactions
|
|
306
|
+
*/
|
|
307
|
+
readonly filters?: any;
|
|
299
308
|
}
|
|
300
309
|
/**
|
|
301
310
|
* Request parameters for unlinkBankTransaction operation in BankTransactionApi.
|
|
@@ -257,10 +257,11 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
257
257
|
* @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.
|
|
258
258
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
259
259
|
* @param {string} [expand] Expand the response with additional entities
|
|
260
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
260
261
|
* @param {*} [options] Override http request option.
|
|
261
262
|
* @throws {RequiredError}
|
|
262
263
|
*/
|
|
263
|
-
listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
264
|
+
listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
264
265
|
if (options === void 0) { options = {}; }
|
|
265
266
|
return __awaiter(_this, void 0, void 0, function () {
|
|
266
267
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -301,6 +302,9 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
301
302
|
if (expand !== undefined) {
|
|
302
303
|
localVarQueryParameter['expand'] = expand;
|
|
303
304
|
}
|
|
305
|
+
if (filters !== undefined) {
|
|
306
|
+
localVarQueryParameter['filters'] = filters;
|
|
307
|
+
}
|
|
304
308
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
305
309
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
306
310
|
}
|
|
@@ -447,15 +451,16 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
447
451
|
* @param {any} [search] Search the list by any field. For instance, if you want to search by code add code=xxx in order to fetch the result.
|
|
448
452
|
* @param {any} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
449
453
|
* @param {string} [expand] Expand the response with additional entities
|
|
454
|
+
* @param {any} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
450
455
|
* @param {*} [options] Override http request option.
|
|
451
456
|
* @throws {RequiredError}
|
|
452
457
|
*/
|
|
453
|
-
listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
458
|
+
listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
454
459
|
return __awaiter(this, void 0, void 0, function () {
|
|
455
460
|
var localVarAxiosArgs;
|
|
456
461
|
return __generator(this, function (_a) {
|
|
457
462
|
switch (_a.label) {
|
|
458
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
463
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
459
464
|
case 1:
|
|
460
465
|
localVarAxiosArgs = _a.sent();
|
|
461
466
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -538,11 +543,12 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
538
543
|
* @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.
|
|
539
544
|
* @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.
|
|
540
545
|
* @param {string} [expand] Expand the response with additional entities
|
|
546
|
+
* @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.
|
|
541
547
|
* @param {*} [options] Override http request option.
|
|
542
548
|
* @throws {RequiredError}
|
|
543
549
|
*/
|
|
544
|
-
listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
545
|
-
return localVarFp.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
550
|
+
listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
551
|
+
return localVarFp.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
546
552
|
},
|
|
547
553
|
/**
|
|
548
554
|
* Unlinks an already linked bank transaction
|
|
@@ -617,7 +623,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
617
623
|
BankTransactionApi.prototype.listBankTransactions = function (requestParameters, options) {
|
|
618
624
|
var _this = this;
|
|
619
625
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
620
|
-
return (0, exports.BankTransactionApiFp)(this.configuration).listBankTransactions(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
626
|
+
return (0, exports.BankTransactionApiFp)(this.configuration).listBankTransactions(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
621
627
|
};
|
|
622
628
|
/**
|
|
623
629
|
* Unlinks an already linked bank transaction
|
|
@@ -56,10 +56,11 @@ export declare const PaymentMethodsApiAxiosParamCreator: (configuration?: Config
|
|
|
56
56
|
* @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.
|
|
57
57
|
* @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.
|
|
58
58
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
59
|
+
* @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.
|
|
59
60
|
* @param {*} [options] Override http request option.
|
|
60
61
|
* @throws {RequiredError}
|
|
61
62
|
*/
|
|
62
|
-
listPaymentMethods: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
63
|
+
listPaymentMethods: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
63
64
|
};
|
|
64
65
|
/**
|
|
65
66
|
* PaymentMethodsApi - functional programming interface
|
|
@@ -105,10 +106,11 @@ export declare const PaymentMethodsApiFp: (configuration?: Configuration) => {
|
|
|
105
106
|
* @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.
|
|
106
107
|
* @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.
|
|
107
108
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
109
|
+
* @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.
|
|
108
110
|
* @param {*} [options] Override http request option.
|
|
109
111
|
* @throws {RequiredError}
|
|
110
112
|
*/
|
|
111
|
-
listPaymentMethods(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
113
|
+
listPaymentMethods(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
112
114
|
};
|
|
113
115
|
/**
|
|
114
116
|
* PaymentMethodsApi - factory interface
|
|
@@ -154,10 +156,11 @@ export declare const PaymentMethodsApiFactory: (configuration?: Configuration, b
|
|
|
154
156
|
* @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.
|
|
155
157
|
* @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.
|
|
156
158
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
159
|
+
* @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.
|
|
157
160
|
* @param {*} [options] Override http request option.
|
|
158
161
|
* @throws {RequiredError}
|
|
159
162
|
*/
|
|
160
|
-
listPaymentMethods(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<void>;
|
|
163
|
+
listPaymentMethods(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<void>;
|
|
161
164
|
};
|
|
162
165
|
/**
|
|
163
166
|
* Request parameters for createPaymentMethod operation in PaymentMethodsApi.
|
|
@@ -276,6 +279,12 @@ export interface PaymentMethodsApiListPaymentMethodsRequest {
|
|
|
276
279
|
* @memberof PaymentMethodsApiListPaymentMethods
|
|
277
280
|
*/
|
|
278
281
|
readonly expand?: any;
|
|
282
|
+
/**
|
|
283
|
+
* 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.
|
|
284
|
+
* @type {any}
|
|
285
|
+
* @memberof PaymentMethodsApiListPaymentMethods
|
|
286
|
+
*/
|
|
287
|
+
readonly filters?: any;
|
|
279
288
|
}
|
|
280
289
|
/**
|
|
281
290
|
* PaymentMethodsApi - object-oriented interface
|
|
@@ -267,10 +267,11 @@ var PaymentMethodsApiAxiosParamCreator = function (configuration) {
|
|
|
267
267
|
* @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.
|
|
268
268
|
* @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.
|
|
269
269
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
270
|
+
* @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.
|
|
270
271
|
* @param {*} [options] Override http request option.
|
|
271
272
|
* @throws {RequiredError}
|
|
272
273
|
*/
|
|
273
|
-
listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
274
|
+
listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
274
275
|
if (options === void 0) { options = {}; }
|
|
275
276
|
return __awaiter(_this, void 0, void 0, function () {
|
|
276
277
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -311,6 +312,9 @@ var PaymentMethodsApiAxiosParamCreator = function (configuration) {
|
|
|
311
312
|
if (expand !== undefined) {
|
|
312
313
|
localVarQueryParameter['expand'] = expand;
|
|
313
314
|
}
|
|
315
|
+
if (filters !== undefined) {
|
|
316
|
+
localVarQueryParameter['filters'] = filters;
|
|
317
|
+
}
|
|
314
318
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
315
319
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
316
320
|
}
|
|
@@ -410,15 +414,16 @@ var PaymentMethodsApiFp = function (configuration) {
|
|
|
410
414
|
* @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.
|
|
411
415
|
* @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.
|
|
412
416
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
417
|
+
* @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.
|
|
413
418
|
* @param {*} [options] Override http request option.
|
|
414
419
|
* @throws {RequiredError}
|
|
415
420
|
*/
|
|
416
|
-
listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
421
|
+
listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
417
422
|
return __awaiter(this, void 0, void 0, function () {
|
|
418
423
|
var localVarAxiosArgs;
|
|
419
424
|
return __generator(this, function (_a) {
|
|
420
425
|
switch (_a.label) {
|
|
421
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
426
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
422
427
|
case 1:
|
|
423
428
|
localVarAxiosArgs = _a.sent();
|
|
424
429
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -481,11 +486,12 @@ var PaymentMethodsApiFactory = function (configuration, basePath, axios) {
|
|
|
481
486
|
* @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.
|
|
482
487
|
* @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.
|
|
483
488
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
489
|
+
* @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.
|
|
484
490
|
* @param {*} [options] Override http request option.
|
|
485
491
|
* @throws {RequiredError}
|
|
486
492
|
*/
|
|
487
|
-
listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
488
|
-
return localVarFp.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
493
|
+
listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
494
|
+
return localVarFp.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
489
495
|
},
|
|
490
496
|
};
|
|
491
497
|
};
|
|
@@ -548,7 +554,7 @@ var PaymentMethodsApi = /** @class */ (function (_super) {
|
|
|
548
554
|
PaymentMethodsApi.prototype.listPaymentMethods = function (requestParameters, options) {
|
|
549
555
|
var _this = this;
|
|
550
556
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
551
|
-
return (0, exports.PaymentMethodsApiFp)(this.configuration).listPaymentMethods(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
557
|
+
return (0, exports.PaymentMethodsApiFp)(this.configuration).listPaymentMethods(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
552
558
|
};
|
|
553
559
|
return PaymentMethodsApi;
|
|
554
560
|
}(base_1.BaseAPI));
|
|
@@ -57,10 +57,11 @@ export declare const PaymentRemindersApiAxiosParamCreator: (configuration?: Conf
|
|
|
57
57
|
* @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.
|
|
58
58
|
* @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.
|
|
59
59
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
60
|
+
* @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.
|
|
60
61
|
* @param {*} [options] Override http request option.
|
|
61
62
|
* @throws {RequiredError}
|
|
62
63
|
*/
|
|
63
|
-
listPaymentReminders: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
64
|
+
listPaymentReminders: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
64
65
|
};
|
|
65
66
|
/**
|
|
66
67
|
* PaymentRemindersApi - functional programming interface
|
|
@@ -105,10 +106,11 @@ export declare const PaymentRemindersApiFp: (configuration?: Configuration) => {
|
|
|
105
106
|
* @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.
|
|
106
107
|
* @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.
|
|
107
108
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
109
|
+
* @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.
|
|
108
110
|
* @param {*} [options] Override http request option.
|
|
109
111
|
* @throws {RequiredError}
|
|
110
112
|
*/
|
|
111
|
-
listPaymentReminders(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
113
|
+
listPaymentReminders(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
112
114
|
};
|
|
113
115
|
/**
|
|
114
116
|
* PaymentRemindersApi - factory interface
|
|
@@ -153,10 +155,11 @@ export declare const PaymentRemindersApiFactory: (configuration?: Configuration,
|
|
|
153
155
|
* @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.
|
|
154
156
|
* @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.
|
|
155
157
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
158
|
+
* @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.
|
|
156
159
|
* @param {*} [options] Override http request option.
|
|
157
160
|
* @throws {RequiredError}
|
|
158
161
|
*/
|
|
159
|
-
listPaymentReminders(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<void>;
|
|
162
|
+
listPaymentReminders(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<void>;
|
|
160
163
|
};
|
|
161
164
|
/**
|
|
162
165
|
* Request parameters for createPaymentReminder operation in PaymentRemindersApi.
|
|
@@ -269,6 +272,12 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
|
|
|
269
272
|
* @memberof PaymentRemindersApiListPaymentReminders
|
|
270
273
|
*/
|
|
271
274
|
readonly expand?: any;
|
|
275
|
+
/**
|
|
276
|
+
* 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.
|
|
277
|
+
* @type {any}
|
|
278
|
+
* @memberof PaymentRemindersApiListPaymentReminders
|
|
279
|
+
*/
|
|
280
|
+
readonly filters?: any;
|
|
272
281
|
}
|
|
273
282
|
/**
|
|
274
283
|
* PaymentRemindersApi - object-oriented interface
|
|
@@ -256,10 +256,11 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
256
256
|
* @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.
|
|
257
257
|
* @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.
|
|
258
258
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
259
|
+
* @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.
|
|
259
260
|
* @param {*} [options] Override http request option.
|
|
260
261
|
* @throws {RequiredError}
|
|
261
262
|
*/
|
|
262
|
-
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
263
|
+
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
263
264
|
if (options === void 0) { options = {}; }
|
|
264
265
|
return __awaiter(_this, void 0, void 0, function () {
|
|
265
266
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -300,6 +301,9 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
|
|
|
300
301
|
if (expand !== undefined) {
|
|
301
302
|
localVarQueryParameter['expand'] = expand;
|
|
302
303
|
}
|
|
304
|
+
if (filters !== undefined) {
|
|
305
|
+
localVarQueryParameter['filters'] = filters;
|
|
306
|
+
}
|
|
303
307
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
304
308
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
305
309
|
}
|
|
@@ -398,15 +402,16 @@ var PaymentRemindersApiFp = function (configuration) {
|
|
|
398
402
|
* @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.
|
|
399
403
|
* @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.
|
|
400
404
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
405
|
+
* @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.
|
|
401
406
|
* @param {*} [options] Override http request option.
|
|
402
407
|
* @throws {RequiredError}
|
|
403
408
|
*/
|
|
404
|
-
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
409
|
+
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
405
410
|
return __awaiter(this, void 0, void 0, function () {
|
|
406
411
|
var localVarAxiosArgs;
|
|
407
412
|
return __generator(this, function (_a) {
|
|
408
413
|
switch (_a.label) {
|
|
409
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, options)];
|
|
414
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
|
|
410
415
|
case 1:
|
|
411
416
|
localVarAxiosArgs = _a.sent();
|
|
412
417
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -468,11 +473,12 @@ var PaymentRemindersApiFactory = function (configuration, basePath, axios) {
|
|
|
468
473
|
* @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.
|
|
469
474
|
* @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.
|
|
470
475
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
476
|
+
* @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.
|
|
471
477
|
* @param {*} [options] Override http request option.
|
|
472
478
|
* @throws {RequiredError}
|
|
473
479
|
*/
|
|
474
|
-
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
|
|
475
|
-
return localVarFp.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
|
|
480
|
+
listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
|
|
481
|
+
return localVarFp.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
476
482
|
},
|
|
477
483
|
};
|
|
478
484
|
};
|
|
@@ -535,7 +541,7 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
|
|
|
535
541
|
PaymentRemindersApi.prototype.listPaymentReminders = function (requestParameters, options) {
|
|
536
542
|
var _this = this;
|
|
537
543
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
538
|
-
return (0, exports.PaymentRemindersApiFp)(this.configuration).listPaymentReminders(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
544
|
+
return (0, exports.PaymentRemindersApiFp)(this.configuration).listPaymentReminders(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
539
545
|
};
|
|
540
546
|
return PaymentRemindersApi;
|
|
541
547
|
}(base_1.BaseAPI));
|
|
@@ -49,10 +49,11 @@ export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
49
49
|
* @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.
|
|
50
50
|
* @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.
|
|
51
51
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
52
|
+
* @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.
|
|
52
53
|
* @param {*} [options] Override http request option.
|
|
53
54
|
* @throws {RequiredError}
|
|
54
55
|
*/
|
|
55
|
-
listPayments: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
+
listPayments: (authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
57
|
};
|
|
57
58
|
/**
|
|
58
59
|
* PaymentsApi - functional programming interface
|
|
@@ -90,10 +91,11 @@ export declare const PaymentsApiFp: (configuration?: Configuration) => {
|
|
|
90
91
|
* @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.
|
|
91
92
|
* @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.
|
|
92
93
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
94
|
+
* @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.
|
|
93
95
|
* @param {*} [options] Override http request option.
|
|
94
96
|
* @throws {RequiredError}
|
|
95
97
|
*/
|
|
96
|
-
listPayments(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
98
|
+
listPayments(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
97
99
|
};
|
|
98
100
|
/**
|
|
99
101
|
* PaymentsApi - factory interface
|
|
@@ -131,10 +133,11 @@ export declare const PaymentsApiFactory: (configuration?: Configuration, basePat
|
|
|
131
133
|
* @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.
|
|
132
134
|
* @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.
|
|
133
135
|
* @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
|
|
136
|
+
* @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.
|
|
134
137
|
* @param {*} [options] Override http request option.
|
|
135
138
|
* @throws {RequiredError}
|
|
136
139
|
*/
|
|
137
|
-
listPayments(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, options?: any): AxiosPromise<void>;
|
|
140
|
+
listPayments(authorization?: string, pageSize?: any, pageToken?: any, filter?: any, search?: any, order?: any, expand?: any, filters?: any, options?: any): AxiosPromise<void>;
|
|
138
141
|
};
|
|
139
142
|
/**
|
|
140
143
|
* Request parameters for createPayment operation in PaymentsApi.
|
|
@@ -240,6 +243,12 @@ export interface PaymentsApiListPaymentsRequest {
|
|
|
240
243
|
* @memberof PaymentsApiListPayments
|
|
241
244
|
*/
|
|
242
245
|
readonly expand?: any;
|
|
246
|
+
/**
|
|
247
|
+
* 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.
|
|
248
|
+
* @type {any}
|
|
249
|
+
* @memberof PaymentsApiListPayments
|
|
250
|
+
*/
|
|
251
|
+
readonly filters?: any;
|
|
243
252
|
}
|
|
244
253
|
/**
|
|
245
254
|
* PaymentsApi - object-oriented interface
|