@emilgroup/payment-sdk 1.4.1-beta.0 → 1.4.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.
@@ -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&#x3D;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&#x3D;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
@@ -151,10 +151,11 @@ var BankAccountsApiAxiosParamCreator = function (configuration) {
151
151
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
152
152
  * @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.
153
153
  * @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.
154
+ * @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.
154
155
  * @param {*} [options] Override http request option.
155
156
  * @throws {RequiredError}
156
157
  */
157
- listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
158
+ listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
158
159
  if (options === void 0) { options = {}; }
159
160
  return __awaiter(_this, void 0, void 0, function () {
160
161
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -195,6 +196,9 @@ var BankAccountsApiAxiosParamCreator = function (configuration) {
195
196
  if (expand !== undefined) {
196
197
  localVarQueryParameter['expand'] = expand;
197
198
  }
199
+ if (filters !== undefined) {
200
+ localVarQueryParameter['filters'] = filters;
201
+ }
198
202
  if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
199
203
  localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
200
204
  }
@@ -250,15 +254,16 @@ var BankAccountsApiFp = function (configuration) {
250
254
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
251
255
  * @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.
252
256
  * @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.
257
+ * @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.
253
258
  * @param {*} [options] Override http request option.
254
259
  * @throws {RequiredError}
255
260
  */
256
- listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
261
+ listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
257
262
  return __awaiter(this, void 0, void 0, function () {
258
263
  var localVarAxiosArgs;
259
264
  return __generator(this, function (_a) {
260
265
  switch (_a.label) {
261
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, options)];
266
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
262
267
  case 1:
263
268
  localVarAxiosArgs = _a.sent();
264
269
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -297,11 +302,12 @@ var BankAccountsApiFactory = function (configuration, basePath, axios) {
297
302
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
298
303
  * @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.
299
304
  * @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.
305
+ * @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.
300
306
  * @param {*} [options] Override http request option.
301
307
  * @throws {RequiredError}
302
308
  */
303
- listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
304
- return localVarFp.listBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
309
+ listBankAccounts: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
310
+ return localVarFp.listBankAccounts(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
305
311
  },
306
312
  };
307
313
  };
@@ -340,7 +346,7 @@ var BankAccountsApi = /** @class */ (function (_super) {
340
346
  BankAccountsApi.prototype.listBankAccounts = function (requestParameters, options) {
341
347
  var _this = this;
342
348
  if (requestParameters === void 0) { requestParameters = {}; }
343
- 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); });
349
+ 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); });
344
350
  };
345
351
  return BankAccountsApi;
346
352
  }(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&#x3D;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&#x3D;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&#x3D;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.
@@ -253,10 +253,11 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
253
253
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
254
254
  * @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.
255
255
  * @param {string} [expand] Expand the response with additional entities
256
+ * @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.
256
257
  * @param {*} [options] Override http request option.
257
258
  * @throws {RequiredError}
258
259
  */
259
- listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
260
+ listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
260
261
  if (options === void 0) { options = {}; }
261
262
  return __awaiter(_this, void 0, void 0, function () {
262
263
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -297,6 +298,9 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
297
298
  if (expand !== undefined) {
298
299
  localVarQueryParameter['expand'] = expand;
299
300
  }
301
+ if (filters !== undefined) {
302
+ localVarQueryParameter['filters'] = filters;
303
+ }
300
304
  if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
301
305
  localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
302
306
  }
@@ -443,15 +447,16 @@ var BankTransactionApiFp = function (configuration) {
443
447
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
444
448
  * @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.
445
449
  * @param {string} [expand] Expand the response with additional entities
450
+ * @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.
446
451
  * @param {*} [options] Override http request option.
447
452
  * @throws {RequiredError}
448
453
  */
449
- listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
454
+ listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
450
455
  return __awaiter(this, void 0, void 0, function () {
451
456
  var localVarAxiosArgs;
452
457
  return __generator(this, function (_a) {
453
458
  switch (_a.label) {
454
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, options)];
459
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
455
460
  case 1:
456
461
  localVarAxiosArgs = _a.sent();
457
462
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -534,11 +539,12 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
534
539
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
535
540
  * @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.
536
541
  * @param {string} [expand] Expand the response with additional entities
542
+ * @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.
537
543
  * @param {*} [options] Override http request option.
538
544
  * @throws {RequiredError}
539
545
  */
540
- listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
541
- return localVarFp.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
546
+ listBankTransactions: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
547
+ return localVarFp.listBankTransactions(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
542
548
  },
543
549
  /**
544
550
  * Unlinks an already linked bank transaction
@@ -613,7 +619,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
613
619
  BankTransactionApi.prototype.listBankTransactions = function (requestParameters, options) {
614
620
  var _this = this;
615
621
  if (requestParameters === void 0) { requestParameters = {}; }
616
- 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); });
622
+ 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); });
617
623
  };
618
624
  /**
619
625
  * 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&#x3D;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&#x3D;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&#x3D;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
@@ -263,10 +263,11 @@ var PaymentMethodsApiAxiosParamCreator = function (configuration) {
263
263
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
264
264
  * @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.
265
265
  * @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.
266
+ * @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.
266
267
  * @param {*} [options] Override http request option.
267
268
  * @throws {RequiredError}
268
269
  */
269
- listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
270
+ listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
270
271
  if (options === void 0) { options = {}; }
271
272
  return __awaiter(_this, void 0, void 0, function () {
272
273
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -307,6 +308,9 @@ var PaymentMethodsApiAxiosParamCreator = function (configuration) {
307
308
  if (expand !== undefined) {
308
309
  localVarQueryParameter['expand'] = expand;
309
310
  }
311
+ if (filters !== undefined) {
312
+ localVarQueryParameter['filters'] = filters;
313
+ }
310
314
  if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
311
315
  localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
312
316
  }
@@ -406,15 +410,16 @@ var PaymentMethodsApiFp = function (configuration) {
406
410
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
407
411
  * @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.
408
412
  * @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.
413
+ * @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.
409
414
  * @param {*} [options] Override http request option.
410
415
  * @throws {RequiredError}
411
416
  */
412
- listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
417
+ listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
413
418
  return __awaiter(this, void 0, void 0, function () {
414
419
  var localVarAxiosArgs;
415
420
  return __generator(this, function (_a) {
416
421
  switch (_a.label) {
417
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, options)];
422
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
418
423
  case 1:
419
424
  localVarAxiosArgs = _a.sent();
420
425
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -477,11 +482,12 @@ var PaymentMethodsApiFactory = function (configuration, basePath, axios) {
477
482
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
478
483
  * @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.
479
484
  * @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.
485
+ * @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.
480
486
  * @param {*} [options] Override http request option.
481
487
  * @throws {RequiredError}
482
488
  */
483
- listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
484
- return localVarFp.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
489
+ listPaymentMethods: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
490
+ return localVarFp.listPaymentMethods(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
485
491
  },
486
492
  };
487
493
  };
@@ -544,7 +550,7 @@ var PaymentMethodsApi = /** @class */ (function (_super) {
544
550
  PaymentMethodsApi.prototype.listPaymentMethods = function (requestParameters, options) {
545
551
  var _this = this;
546
552
  if (requestParameters === void 0) { requestParameters = {}; }
547
- 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); });
553
+ 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); });
548
554
  };
549
555
  return PaymentMethodsApi;
550
556
  }(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&#x3D;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&#x3D;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&#x3D;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
@@ -252,10 +252,11 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
252
252
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
253
253
  * @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.
254
254
  * @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.
255
+ * @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.
255
256
  * @param {*} [options] Override http request option.
256
257
  * @throws {RequiredError}
257
258
  */
258
- listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
259
+ listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
259
260
  if (options === void 0) { options = {}; }
260
261
  return __awaiter(_this, void 0, void 0, function () {
261
262
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -296,6 +297,9 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
296
297
  if (expand !== undefined) {
297
298
  localVarQueryParameter['expand'] = expand;
298
299
  }
300
+ if (filters !== undefined) {
301
+ localVarQueryParameter['filters'] = filters;
302
+ }
299
303
  if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
300
304
  localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
301
305
  }
@@ -394,15 +398,16 @@ var PaymentRemindersApiFp = function (configuration) {
394
398
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
395
399
  * @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.
396
400
  * @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.
401
+ * @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.
397
402
  * @param {*} [options] Override http request option.
398
403
  * @throws {RequiredError}
399
404
  */
400
- listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
405
+ listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
401
406
  return __awaiter(this, void 0, void 0, function () {
402
407
  var localVarAxiosArgs;
403
408
  return __generator(this, function (_a) {
404
409
  switch (_a.label) {
405
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, options)];
410
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
406
411
  case 1:
407
412
  localVarAxiosArgs = _a.sent();
408
413
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -464,11 +469,12 @@ var PaymentRemindersApiFactory = function (configuration, basePath, axios) {
464
469
  * @param {any} [search] Search the list by any field. For instance, if you want to search by code add code&#x3D;xxx in order to fetch the result.
465
470
  * @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.
466
471
  * @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.
472
+ * @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.
467
473
  * @param {*} [options] Override http request option.
468
474
  * @throws {RequiredError}
469
475
  */
470
- listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, options) {
471
- return localVarFp.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, options).then(function (request) { return request(axios, basePath); });
476
+ listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
477
+ return localVarFp.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
472
478
  },
473
479
  };
474
480
  };
@@ -531,7 +537,7 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
531
537
  PaymentRemindersApi.prototype.listPaymentReminders = function (requestParameters, options) {
532
538
  var _this = this;
533
539
  if (requestParameters === void 0) { requestParameters = {}; }
534
- 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); });
540
+ 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); });
535
541
  };
536
542
  return PaymentRemindersApi;
537
543
  }(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&#x3D;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&#x3D;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&#x3D;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