@emilgroup/payment-sdk 1.13.1-beta.6 → 1.13.1-beta.60

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.
Files changed (82) hide show
  1. package/.openapi-generator/FILES +4 -0
  2. package/README.md +2 -2
  3. package/api/bank-accounts-api.ts +55 -13
  4. package/api/bank-transaction-api.ts +49 -21
  5. package/api/payment-methods-api.ts +59 -17
  6. package/api/payment-reminders-api.ts +55 -13
  7. package/api/payments-api.ts +59 -17
  8. package/api/refunds-api.ts +45 -17
  9. package/api/tenant-bank-account-api.ts +45 -17
  10. package/base.ts +52 -3
  11. package/dist/api/bank-accounts-api.d.ts +35 -8
  12. package/dist/api/bank-accounts-api.js +29 -11
  13. package/dist/api/bank-transaction-api.d.ts +32 -14
  14. package/dist/api/bank-transaction-api.js +27 -15
  15. package/dist/api/payment-methods-api.d.ts +39 -12
  16. package/dist/api/payment-methods-api.js +32 -14
  17. package/dist/api/payment-reminders-api.d.ts +35 -8
  18. package/dist/api/payment-reminders-api.js +29 -11
  19. package/dist/api/payments-api.d.ts +39 -12
  20. package/dist/api/payments-api.js +32 -14
  21. package/dist/api/refunds-api.d.ts +28 -10
  22. package/dist/api/refunds-api.js +24 -12
  23. package/dist/api/tenant-bank-account-api.d.ts +28 -10
  24. package/dist/api/tenant-bank-account-api.js +24 -12
  25. package/dist/base.d.ts +10 -1
  26. package/dist/base.js +46 -2
  27. package/dist/models/bank-transaction-class-without-expand-properties.d.ts +0 -14
  28. package/dist/models/complete-adyen-payment-setup-request-dto.d.ts +1 -0
  29. package/dist/models/complete-adyen-payment-setup-request-dto.js +2 -1
  30. package/dist/models/complete-eis-payment-setup-request-dto.d.ts +36 -0
  31. package/dist/models/complete-eis-payment-setup-request-dto.js +15 -0
  32. package/dist/models/complete-payment-setup-request-dto.d.ts +7 -0
  33. package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +1 -0
  34. package/dist/models/complete-stripe-payment-setup-request-dto.js +2 -1
  35. package/dist/models/create-bank-order-request-dto.d.ts +74 -0
  36. package/dist/models/create-bank-order-request-dto.js +28 -0
  37. package/dist/models/create-payment-reminder-request-dto.d.ts +7 -1
  38. package/dist/models/create-payment-request-dto.d.ts +7 -1
  39. package/dist/models/create-psp-payment-method-request-dto.d.ts +14 -1
  40. package/dist/models/create-psp-payment-method-request-dto.js +2 -1
  41. package/dist/models/deactivated-payment-reminder-class.d.ts +7 -1
  42. package/dist/models/index.d.ts +4 -0
  43. package/dist/models/index.js +4 -0
  44. package/dist/models/initiate-adyen-payment-setup-request-dto.d.ts +6 -0
  45. package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +6 -0
  46. package/dist/models/initiate-eis-payment-setup-request-dto.d.ts +36 -0
  47. package/dist/models/initiate-eis-payment-setup-request-dto.js +15 -0
  48. package/dist/models/initiate-payment-setup-request-dto.d.ts +3 -2
  49. package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +6 -0
  50. package/dist/models/payment-class-without-expand-properties.d.ts +7 -1
  51. package/dist/models/payment-class.d.ts +7 -1
  52. package/dist/models/payment-method-class.d.ts +6 -0
  53. package/dist/models/payment-reminder-class.d.ts +7 -1
  54. package/dist/models/refund-class.d.ts +7 -1
  55. package/dist/models/unlinked-bank-transaction-response-class.d.ts +0 -14
  56. package/dist/models/update-bank-order-request-dto.d.ts +56 -0
  57. package/dist/models/update-bank-order-request-dto.js +23 -0
  58. package/models/bank-transaction-class-without-expand-properties.ts +0 -14
  59. package/models/complete-adyen-payment-setup-request-dto.ts +2 -1
  60. package/models/complete-eis-payment-setup-request-dto.ts +42 -0
  61. package/models/complete-payment-setup-request-dto.ts +7 -0
  62. package/models/complete-stripe-payment-setup-request-dto.ts +2 -1
  63. package/models/create-bank-order-request-dto.ts +84 -0
  64. package/models/create-payment-reminder-request-dto.ts +7 -1
  65. package/models/create-payment-request-dto.ts +7 -1
  66. package/models/create-psp-payment-method-request-dto.ts +15 -2
  67. package/models/deactivated-payment-reminder-class.ts +7 -1
  68. package/models/index.ts +4 -0
  69. package/models/initiate-adyen-payment-setup-request-dto.ts +6 -0
  70. package/models/initiate-braintree-payment-setup-request-dto.ts +6 -0
  71. package/models/initiate-eis-payment-setup-request-dto.ts +42 -0
  72. package/models/initiate-payment-setup-request-dto.ts +3 -2
  73. package/models/initiate-stripe-payment-setup-request-dto.ts +6 -0
  74. package/models/payment-class-without-expand-properties.ts +7 -1
  75. package/models/payment-class.ts +7 -1
  76. package/models/payment-method-class.ts +6 -0
  77. package/models/payment-reminder-class.ts +7 -1
  78. package/models/refund-class.ts +7 -1
  79. package/models/unlinked-bank-transaction-response-class.ts +0 -14
  80. package/models/update-bank-order-request-dto.ts +65 -0
  81. package/package.json +1 -1
  82. package/tsconfig.json +1 -0
@@ -55,14 +55,17 @@ export declare const PaymentRemindersApiAxiosParamCreator: (configuration?: Conf
55
55
  * Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
56
56
  * @summary List payment reminders
57
57
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
58
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
59
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
58
60
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
59
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
61
+ * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
60
62
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
61
63
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
64
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
62
65
  * @param {*} [options] Override http request option.
63
66
  * @throws {RequiredError}
64
67
  */
65
- listPaymentReminders: (authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
68
+ listPaymentReminders: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
66
69
  };
67
70
  /**
68
71
  * PaymentRemindersApi - functional programming interface
@@ -101,14 +104,17 @@ export declare const PaymentRemindersApiFp: (configuration?: Configuration) => {
101
104
  * Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
102
105
  * @summary List payment reminders
103
106
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
107
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
108
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
104
109
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
105
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
110
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
106
111
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt&lt;/i&gt;
107
112
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
113
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
108
114
  * @param {*} [options] Override http request option.
109
115
  * @throws {RequiredError}
110
116
  */
111
- listPaymentReminders(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPaymentRemindersResponseClass>>;
117
+ listPaymentReminders(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPaymentRemindersResponseClass>>;
112
118
  };
113
119
  /**
114
120
  * PaymentRemindersApi - factory interface
@@ -147,14 +153,17 @@ export declare const PaymentRemindersApiFactory: (configuration?: Configuration,
147
153
  * Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
148
154
  * @summary List payment reminders
149
155
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
156
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
157
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
150
158
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
151
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
159
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
152
160
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt&lt;/i&gt;
153
161
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
162
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
154
163
  * @param {*} [options] Override http request option.
155
164
  * @throws {RequiredError}
156
165
  */
157
- listPaymentReminders(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListPaymentRemindersResponseClass>;
166
+ listPaymentReminders(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPaymentRemindersResponseClass>;
158
167
  };
159
168
  /**
160
169
  * Request parameters for createPaymentReminder operation in PaymentRemindersApi.
@@ -231,6 +240,18 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
231
240
  * @memberof PaymentRemindersApiListPaymentReminders
232
241
  */
233
242
  readonly authorization?: string;
243
+ /**
244
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
245
+ * @type {number}
246
+ * @memberof PaymentRemindersApiListPaymentReminders
247
+ */
248
+ readonly pageSize?: number;
249
+ /**
250
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
251
+ * @type {string}
252
+ * @memberof PaymentRemindersApiListPaymentReminders
253
+ */
254
+ readonly pageToken?: string;
234
255
  /**
235
256
  * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
236
257
  * @type {string}
@@ -238,11 +259,11 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
238
259
  */
239
260
  readonly filter?: string;
240
261
  /**
241
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
262
+ * To search the list by any field, pass search&#x3D;xxx to fetch the result.
242
263
  * @type {string}
243
264
  * @memberof PaymentRemindersApiListPaymentReminders
244
265
  */
245
- readonly filters?: string;
266
+ readonly search?: string;
246
267
  /**
247
268
  * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt&lt;/i&gt;
248
269
  * @type {string}
@@ -255,6 +276,12 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
255
276
  * @memberof PaymentRemindersApiListPaymentReminders
256
277
  */
257
278
  readonly expand?: string;
279
+ /**
280
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
281
+ * @type {string}
282
+ * @memberof PaymentRemindersApiListPaymentReminders
283
+ */
284
+ readonly filters?: string;
258
285
  }
259
286
  /**
260
287
  * PaymentRemindersApi - object-oriented interface
@@ -246,14 +246,17 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
246
246
  * Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
247
247
  * @summary List payment reminders
248
248
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
249
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
250
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
249
251
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
250
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
252
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
251
253
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt&lt;/i&gt;
252
254
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
255
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
253
256
  * @param {*} [options] Override http request option.
254
257
  * @throws {RequiredError}
255
258
  */
256
- listPaymentReminders: function (authorization, filter, filters, order, expand, options) {
259
+ listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
257
260
  if (options === void 0) { options = {}; }
258
261
  return __awaiter(_this, void 0, void 0, function () {
259
262
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -276,11 +279,17 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
276
279
  // authentication bearer required
277
280
  // http bearer authentication required
278
281
  _a.sent();
282
+ if (pageSize !== undefined) {
283
+ localVarQueryParameter['pageSize'] = pageSize;
284
+ }
285
+ if (pageToken !== undefined) {
286
+ localVarQueryParameter['pageToken'] = pageToken;
287
+ }
279
288
  if (filter !== undefined) {
280
289
  localVarQueryParameter['filter'] = filter;
281
290
  }
282
- if (filters !== undefined) {
283
- localVarQueryParameter['filters'] = filters;
291
+ if (search !== undefined) {
292
+ localVarQueryParameter['search'] = search;
284
293
  }
285
294
  if (order !== undefined) {
286
295
  localVarQueryParameter['order'] = order;
@@ -288,6 +297,9 @@ var PaymentRemindersApiAxiosParamCreator = function (configuration) {
288
297
  if (expand !== undefined) {
289
298
  localVarQueryParameter['expand'] = expand;
290
299
  }
300
+ if (filters !== undefined) {
301
+ localVarQueryParameter['filters'] = filters;
302
+ }
291
303
  if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
292
304
  localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
293
305
  }
@@ -380,19 +392,22 @@ var PaymentRemindersApiFp = function (configuration) {
380
392
  * Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
381
393
  * @summary List payment reminders
382
394
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
395
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
396
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
383
397
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
384
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
398
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
385
399
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt&lt;/i&gt;
386
400
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
401
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
387
402
  * @param {*} [options] Override http request option.
388
403
  * @throws {RequiredError}
389
404
  */
390
- listPaymentReminders: function (authorization, filter, filters, order, expand, options) {
405
+ listPaymentReminders: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
391
406
  return __awaiter(this, void 0, void 0, function () {
392
407
  var localVarAxiosArgs;
393
408
  return __generator(this, function (_a) {
394
409
  switch (_a.label) {
395
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, filter, filters, order, expand, options)];
410
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPaymentReminders(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
396
411
  case 1:
397
412
  localVarAxiosArgs = _a.sent();
398
413
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -448,15 +463,18 @@ var PaymentRemindersApiFactory = function (configuration, basePath, axios) {
448
463
  * Returns a list of payment reminders you have previously created. The payment reminders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.reminders.view\"
449
464
  * @summary List payment reminders
450
465
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
466
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
467
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
451
468
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
452
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
469
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
453
470
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt&lt;/i&gt;
454
471
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt;
472
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, policyCode, nextReminderDate&lt;/i&gt;
455
473
  * @param {*} [options] Override http request option.
456
474
  * @throws {RequiredError}
457
475
  */
458
- listPaymentReminders: function (authorization, filter, filters, order, expand, options) {
459
- return localVarFp.listPaymentReminders(authorization, filter, filters, 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); });
460
478
  },
461
479
  };
462
480
  };
@@ -519,7 +537,7 @@ var PaymentRemindersApi = /** @class */ (function (_super) {
519
537
  PaymentRemindersApi.prototype.listPaymentReminders = function (requestParameters, options) {
520
538
  var _this = this;
521
539
  if (requestParameters === void 0) { requestParameters = {}; }
522
- return (0, exports.PaymentRemindersApiFp)(this.configuration).listPaymentReminders(requestParameters.authorization, requestParameters.filter, requestParameters.filters, 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); });
523
541
  };
524
542
  return PaymentRemindersApi;
525
543
  }(base_1.BaseAPI));
@@ -45,14 +45,17 @@ export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuratio
45
45
  * Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
46
46
  * @summary List payments
47
47
  * @param {string} [authorization] Bearer Token
48
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
49
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
48
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
49
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
50
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
51
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
50
52
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, code, amount&lt;/i&gt;
51
53
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: transactions&lt;i&gt;
54
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
52
55
  * @param {*} [options] Override http request option.
53
56
  * @throws {RequiredError}
54
57
  */
55
- listPayments: (authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
58
+ listPayments: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
56
59
  };
57
60
  /**
58
61
  * PaymentsApi - functional programming interface
@@ -83,14 +86,17 @@ export declare const PaymentsApiFp: (configuration?: Configuration) => {
83
86
  * Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
84
87
  * @summary List payments
85
88
  * @param {string} [authorization] Bearer Token
86
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
87
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
89
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
90
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
91
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
92
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
88
93
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, code, amount&lt;/i&gt;
89
94
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: transactions&lt;i&gt;
95
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
90
96
  * @param {*} [options] Override http request option.
91
97
  * @throws {RequiredError}
92
98
  */
93
- listPayments(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPaymentsResponseClass>>;
99
+ listPayments(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPaymentsResponseClass>>;
94
100
  };
95
101
  /**
96
102
  * PaymentsApi - factory interface
@@ -121,14 +127,17 @@ export declare const PaymentsApiFactory: (configuration?: Configuration, basePat
121
127
  * Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
122
128
  * @summary List payments
123
129
  * @param {string} [authorization] Bearer Token
124
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
125
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
130
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
131
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
132
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
133
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
126
134
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, code, amount&lt;/i&gt;
127
135
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: transactions&lt;i&gt;
136
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
128
137
  * @param {*} [options] Override http request option.
129
138
  * @throws {RequiredError}
130
139
  */
131
- listPayments(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListPaymentsResponseClass>;
140
+ listPayments(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPaymentsResponseClass>;
132
141
  };
133
142
  /**
134
143
  * Request parameters for createPayment operation in PaymentsApi.
@@ -193,17 +202,29 @@ export interface PaymentsApiListPaymentsRequest {
193
202
  */
194
203
  readonly authorization?: string;
195
204
  /**
196
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
205
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
206
+ * @type {number}
207
+ * @memberof PaymentsApiListPayments
208
+ */
209
+ readonly pageSize?: number;
210
+ /**
211
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
212
+ * @type {string}
213
+ * @memberof PaymentsApiListPayments
214
+ */
215
+ readonly pageToken?: string;
216
+ /**
217
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
197
218
  * @type {string}
198
219
  * @memberof PaymentsApiListPayments
199
220
  */
200
221
  readonly filter?: string;
201
222
  /**
202
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
223
+ * To search the list by any field, pass search&#x3D;xxx to fetch the result.
203
224
  * @type {string}
204
225
  * @memberof PaymentsApiListPayments
205
226
  */
206
- readonly filters?: string;
227
+ readonly search?: string;
207
228
  /**
208
229
  * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, code, amount&lt;/i&gt;
209
230
  * @type {string}
@@ -216,6 +237,12 @@ export interface PaymentsApiListPaymentsRequest {
216
237
  * @memberof PaymentsApiListPayments
217
238
  */
218
239
  readonly expand?: string;
240
+ /**
241
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
242
+ * @type {string}
243
+ * @memberof PaymentsApiListPayments
244
+ */
245
+ readonly filters?: string;
219
246
  }
220
247
  /**
221
248
  * PaymentsApi - object-oriented interface
@@ -203,14 +203,17 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
203
203
  * Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
204
204
  * @summary List payments
205
205
  * @param {string} [authorization] Bearer Token
206
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
207
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
206
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
207
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
208
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
209
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
208
210
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, code, amount&lt;/i&gt;
209
211
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: transactions&lt;i&gt;
212
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
210
213
  * @param {*} [options] Override http request option.
211
214
  * @throws {RequiredError}
212
215
  */
213
- listPayments: function (authorization, filter, filters, order, expand, options) {
216
+ listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
214
217
  if (options === void 0) { options = {}; }
215
218
  return __awaiter(_this, void 0, void 0, function () {
216
219
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -233,11 +236,17 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
233
236
  // authentication bearer required
234
237
  // http bearer authentication required
235
238
  _a.sent();
239
+ if (pageSize !== undefined) {
240
+ localVarQueryParameter['pageSize'] = pageSize;
241
+ }
242
+ if (pageToken !== undefined) {
243
+ localVarQueryParameter['pageToken'] = pageToken;
244
+ }
236
245
  if (filter !== undefined) {
237
246
  localVarQueryParameter['filter'] = filter;
238
247
  }
239
- if (filters !== undefined) {
240
- localVarQueryParameter['filters'] = filters;
248
+ if (search !== undefined) {
249
+ localVarQueryParameter['search'] = search;
241
250
  }
242
251
  if (order !== undefined) {
243
252
  localVarQueryParameter['order'] = order;
@@ -245,6 +254,9 @@ var PaymentsApiAxiosParamCreator = function (configuration) {
245
254
  if (expand !== undefined) {
246
255
  localVarQueryParameter['expand'] = expand;
247
256
  }
257
+ if (filters !== undefined) {
258
+ localVarQueryParameter['filters'] = filters;
259
+ }
248
260
  if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
249
261
  localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
250
262
  }
@@ -317,19 +329,22 @@ var PaymentsApiFp = function (configuration) {
317
329
  * Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
318
330
  * @summary List payments
319
331
  * @param {string} [authorization] Bearer Token
320
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
321
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
332
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
333
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
334
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
335
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
322
336
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, code, amount&lt;/i&gt;
323
337
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: transactions&lt;i&gt;
338
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
324
339
  * @param {*} [options] Override http request option.
325
340
  * @throws {RequiredError}
326
341
  */
327
- listPayments: function (authorization, filter, filters, order, expand, options) {
342
+ listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
328
343
  return __awaiter(this, void 0, void 0, function () {
329
344
  var localVarAxiosArgs;
330
345
  return __generator(this, function (_a) {
331
346
  switch (_a.label) {
332
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPayments(authorization, filter, filters, order, expand, options)];
347
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listPayments(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
333
348
  case 1:
334
349
  localVarAxiosArgs = _a.sent();
335
350
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -375,15 +390,18 @@ var PaymentsApiFactory = function (configuration, basePath, axios) {
375
390
  * Returns a list of payments you have previously created. The payments are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.payments.view\"
376
391
  * @summary List payments
377
392
  * @param {string} [authorization] Bearer Token
378
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
379
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug&lt;/i&gt;
393
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
394
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
395
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
396
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
380
397
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, code, amount&lt;/i&gt;
381
398
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: transactions&lt;i&gt;
399
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, id, pspCustomerId, psp, type, amount, receivedDate, referenceNumber, productSlug, accountCode, partnerCode&lt;/i&gt;
382
400
  * @param {*} [options] Override http request option.
383
401
  * @throws {RequiredError}
384
402
  */
385
- listPayments: function (authorization, filter, filters, order, expand, options) {
386
- return localVarFp.listPayments(authorization, filter, filters, order, expand, options).then(function (request) { return request(axios, basePath); });
403
+ listPayments: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
404
+ return localVarFp.listPayments(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
387
405
  },
388
406
  };
389
407
  };
@@ -434,7 +452,7 @@ var PaymentsApi = /** @class */ (function (_super) {
434
452
  PaymentsApi.prototype.listPayments = function (requestParameters, options) {
435
453
  var _this = this;
436
454
  if (requestParameters === void 0) { requestParameters = {}; }
437
- return (0, exports.PaymentsApiFp)(this.configuration).listPayments(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
455
+ return (0, exports.PaymentsApiFp)(this.configuration).listPayments(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); });
438
456
  };
439
457
  return PaymentsApi;
440
458
  }(base_1.BaseAPI));