@emilgroup/payment-sdk-node 1.23.1-beta.98 → 1.26.0

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 (37) hide show
  1. package/README.md +2 -2
  2. package/api/payment-reminders-api.ts +12 -12
  3. package/api/payment-requests-api.ts +12 -113
  4. package/api/webhooks-api.ts +14 -125
  5. package/dist/api/payment-reminders-api.d.ts +12 -12
  6. package/dist/api/payment-reminders-api.js +9 -9
  7. package/dist/api/payment-requests-api.d.ts +12 -67
  8. package/dist/api/payment-requests-api.js +9 -101
  9. package/dist/api/webhooks-api.d.ts +9 -73
  10. package/dist/api/webhooks-api.js +11 -100
  11. package/dist/models/bank-transaction-entity.d.ts +2 -4
  12. package/dist/models/create-payment-order-dto.d.ts +2 -4
  13. package/dist/models/create-payment-order-request-dto.d.ts +2 -4
  14. package/dist/models/create-payment-request-dto.d.ts +2 -4
  15. package/dist/models/create-payment-request-request-dto.d.ts +2 -16
  16. package/dist/models/credit-allocation-class.d.ts +0 -6
  17. package/dist/models/credit-allocation-entity.d.ts +0 -6
  18. package/dist/models/invoice-match-suggestion-entity.d.ts +2 -4
  19. package/dist/models/payment-class-without-expand-properties.d.ts +1 -1
  20. package/dist/models/payment-class.d.ts +1 -1
  21. package/dist/models/payment-entity.d.ts +3 -5
  22. package/dist/models/payment-request-class.d.ts +2 -16
  23. package/dist/models/validate-pspconfig-request-dto.d.ts +2 -4
  24. package/models/bank-transaction-entity.ts +2 -2
  25. package/models/create-payment-order-dto.ts +2 -2
  26. package/models/create-payment-order-request-dto.ts +2 -2
  27. package/models/create-payment-request-dto.ts +2 -2
  28. package/models/create-payment-request-request-dto.ts +2 -14
  29. package/models/credit-allocation-class.ts +0 -6
  30. package/models/credit-allocation-entity.ts +0 -6
  31. package/models/invoice-match-suggestion-entity.ts +2 -2
  32. package/models/payment-class-without-expand-properties.ts +1 -1
  33. package/models/payment-class.ts +1 -1
  34. package/models/payment-entity.ts +3 -3
  35. package/models/payment-request-class.ts +2 -14
  36. package/models/validate-pspconfig-request-dto.ts +2 -2
  37. package/package.json +1 -1
package/README.md CHANGED
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
17
17
  Navigate to the folder of your consuming project and run one of the following commands:
18
18
 
19
19
  ```
20
- npm install @emilgroup/payment-sdk-node@1.23.1-beta.98 --save
20
+ npm install @emilgroup/payment-sdk-node@1.26.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk-node@1.23.1-beta.98
24
+ yarn add @emilgroup/payment-sdk-node@1.26.0
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -191,11 +191,11 @@ export const PaymentRemindersApiAxiosParamCreator = function (configuration?: Co
191
191
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
192
192
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
193
193
  * @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.
194
- * @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, isActive</i>
194
+ * @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>
195
195
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
196
- * @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, isActive</i>
196
+ * @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>
197
197
  * @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/>
198
- * @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, isActive</i>
198
+ * @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>
199
199
  * @param {*} [options] Override http request option.
200
200
  * @throws {RequiredError}
201
201
  */
@@ -314,11 +314,11 @@ export const PaymentRemindersApiFp = function(configuration?: Configuration) {
314
314
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
315
315
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
316
316
  * @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.
317
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate, isActive</i>
317
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
318
318
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
319
- * @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, isActive</i>
319
+ * @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>
320
320
  * @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/>
321
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate, isActive</i>
321
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, id, policyCode, nextReminderDate</i>
322
322
  * @param {*} [options] Override http request option.
323
323
  * @throws {RequiredError}
324
324
  */
@@ -376,11 +376,11 @@ export const PaymentRemindersApiFactory = function (configuration?: Configuratio
376
376
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
377
377
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
378
378
  * @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.
379
- * @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, isActive</i>
379
+ * @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>
380
380
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
381
- * @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, isActive</i>
381
+ * @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>
382
382
  * @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/>
383
- * @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, isActive</i>
383
+ * @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>
384
384
  * @param {*} [options] Override http request option.
385
385
  * @throws {RequiredError}
386
386
  */
@@ -488,7 +488,7 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
488
488
  readonly pageToken?: string
489
489
 
490
490
  /**
491
- * 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, isActive</i>
491
+ * 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>
492
492
  * @type {string}
493
493
  * @memberof PaymentRemindersApiListPaymentReminders
494
494
  */
@@ -502,7 +502,7 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
502
502
  readonly search?: string
503
503
 
504
504
  /**
505
- * 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, isActive</i>
505
+ * 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>
506
506
  * @type {string}
507
507
  * @memberof PaymentRemindersApiListPaymentReminders
508
508
  */
@@ -516,7 +516,7 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
516
516
  readonly expand?: string
517
517
 
518
518
  /**
519
- * 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, isActive</i>
519
+ * 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>
520
520
  * @type {string}
521
521
  * @memberof PaymentRemindersApiListPaymentReminders
522
522
  */
@@ -89,51 +89,6 @@ export const PaymentRequestsApiAxiosParamCreator = function (configuration?: Con
89
89
  options: localVarRequestOptions,
90
90
  };
91
91
  },
92
- /**
93
- * This will delete payment request. **Required Permissions** \"payment-management.payments.delete\"
94
- * @summary Delete the payment request
95
- * @param {string} code Unique identifier for the object.
96
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
97
- * @param {*} [options] Override http request option.
98
- * @throws {RequiredError}
99
- */
100
- deletePaymentRequest: async (code: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
101
- // verify required parameter 'code' is not null or undefined
102
- assertParamExists('deletePaymentRequest', 'code', code)
103
- const localVarPath = `/paymentservice/v1/payment-requests/{code}`
104
- .replace(`{${"code"}}`, encodeURIComponent(String(code)));
105
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
106
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
107
- let baseOptions;
108
- let baseAccessToken;
109
- if (configuration) {
110
- baseOptions = configuration.baseOptions;
111
- baseAccessToken = configuration.accessToken;
112
- }
113
-
114
- const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
115
- const localVarHeaderParameter = {} as any;
116
- const localVarQueryParameter = {} as any;
117
-
118
- // authentication bearer required
119
- // http bearer authentication required
120
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
121
-
122
- if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
123
- localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
124
- }
125
-
126
-
127
-
128
- setSearchParams(localVarUrlObj, localVarQueryParameter);
129
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
130
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
131
-
132
- return {
133
- url: toPathString(localVarUrlObj),
134
- options: localVarRequestOptions,
135
- };
136
- },
137
92
  /**
138
93
  * This will get payment request. **Required Permissions** \"payment-management.payments.view\"
139
94
  * @summary Retrieve the payment request
@@ -192,11 +147,11 @@ export const PaymentRequestsApiAxiosParamCreator = function (configuration?: Con
192
147
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
193
148
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
194
149
  * @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.
195
- * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode&lt;/i&gt;
196
- * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode&lt;/i&gt;
150
+ * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt&lt;/i&gt;
151
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber&lt;/i&gt;
197
152
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status&lt;/i&gt;
198
153
  * @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: paymentReceipts&lt;i&gt;
199
- * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode&lt;/i&gt;
154
+ * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt&lt;/i&gt;
200
155
  * @param {*} [options] Override http request option.
201
156
  * @throws {RequiredError}
202
157
  */
@@ -335,18 +290,6 @@ export const PaymentRequestsApiFp = function(configuration?: Configuration) {
335
290
  const localVarAxiosArgs = await localVarAxiosParamCreator.createPaymentRequest(createPaymentRequestRequestDto, authorization, options);
336
291
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
337
292
  },
338
- /**
339
- * This will delete payment request. **Required Permissions** \"payment-management.payments.delete\"
340
- * @summary Delete the payment request
341
- * @param {string} code Unique identifier for the object.
342
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
343
- * @param {*} [options] Override http request option.
344
- * @throws {RequiredError}
345
- */
346
- async deletePaymentRequest(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
347
- const localVarAxiosArgs = await localVarAxiosParamCreator.deletePaymentRequest(code, authorization, options);
348
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
349
- },
350
293
  /**
351
294
  * This will get payment request. **Required Permissions** \"payment-management.payments.view\"
352
295
  * @summary Retrieve the payment request
@@ -366,11 +309,11 @@ export const PaymentRequestsApiFp = function(configuration?: Configuration) {
366
309
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
367
310
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
368
311
  * @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.
369
- * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode&lt;/i&gt;
370
- * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode&lt;/i&gt;
312
+ * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt&lt;/i&gt;
313
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber&lt;/i&gt;
371
314
  * @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, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status&lt;/i&gt;
372
315
  * @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: paymentReceipts&lt;i&gt;
373
- * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode&lt;/i&gt;
316
+ * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt&lt;/i&gt;
374
317
  * @param {*} [options] Override http request option.
375
318
  * @throws {RequiredError}
376
319
  */
@@ -412,17 +355,6 @@ export const PaymentRequestsApiFactory = function (configuration?: Configuration
412
355
  createPaymentRequest(createPaymentRequestRequestDto: CreatePaymentRequestRequestDto, authorization?: string, options?: any): AxiosPromise<CreatePaymentRequestResponseClass> {
413
356
  return localVarFp.createPaymentRequest(createPaymentRequestRequestDto, authorization, options).then((request) => request(axios, basePath));
414
357
  },
415
- /**
416
- * This will delete payment request. **Required Permissions** \"payment-management.payments.delete\"
417
- * @summary Delete the payment request
418
- * @param {string} code Unique identifier for the object.
419
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
420
- * @param {*} [options] Override http request option.
421
- * @throws {RequiredError}
422
- */
423
- deletePaymentRequest(code: string, authorization?: string, options?: any): AxiosPromise<object> {
424
- return localVarFp.deletePaymentRequest(code, authorization, options).then((request) => request(axios, basePath));
425
- },
426
358
  /**
427
359
  * This will get payment request. **Required Permissions** \"payment-management.payments.view\"
428
360
  * @summary Retrieve the payment request
@@ -441,11 +373,11 @@ export const PaymentRequestsApiFactory = function (configuration?: Configuration
441
373
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
442
374
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
443
375
  * @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.
444
- * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode&lt;/i&gt;
445
- * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode&lt;/i&gt;
376
+ * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt&lt;/i&gt;
377
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber&lt;/i&gt;
446
378
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, paymentRequestNumber, financialEntityNumber, domainEntityNumber, createdAt, status&lt;/i&gt;
447
379
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: paymentReceipts&lt;i&gt;
448
- * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode&lt;/i&gt;
380
+ * @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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt&lt;/i&gt;
449
381
  * @param {*} [options] Override http request option.
450
382
  * @throws {RequiredError}
451
383
  */
@@ -488,27 +420,6 @@ export interface PaymentRequestsApiCreatePaymentRequestRequest {
488
420
  readonly authorization?: string
489
421
  }
490
422
 
491
- /**
492
- * Request parameters for deletePaymentRequest operation in PaymentRequestsApi.
493
- * @export
494
- * @interface PaymentRequestsApiDeletePaymentRequestRequest
495
- */
496
- export interface PaymentRequestsApiDeletePaymentRequestRequest {
497
- /**
498
- * Unique identifier for the object.
499
- * @type {string}
500
- * @memberof PaymentRequestsApiDeletePaymentRequest
501
- */
502
- readonly code: string
503
-
504
- /**
505
- * Bearer Token: provided by the login endpoint under the name accessToken.
506
- * @type {string}
507
- * @memberof PaymentRequestsApiDeletePaymentRequest
508
- */
509
- readonly authorization?: string
510
- }
511
-
512
423
  /**
513
424
  * Request parameters for getPaymentRequest operation in PaymentRequestsApi.
514
425
  * @export
@@ -565,14 +476,14 @@ export interface PaymentRequestsApiListPaymentRequestsRequest {
565
476
  readonly pageToken?: string
566
477
 
567
478
  /**
568
- * 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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode&lt;/i&gt;
479
+ * 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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt&lt;/i&gt;
569
480
  * @type {string}
570
481
  * @memberof PaymentRequestsApiListPaymentRequests
571
482
  */
572
483
  readonly filter?: string
573
484
 
574
485
  /**
575
- * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber, settlementCode&lt;/i&gt;
486
+ * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, paymentRequestNumber, financialEntityCode, financialEntityNumber, domainEntityCode, domainEntityNumber&lt;/i&gt;
576
487
  * @type {string}
577
488
  * @memberof PaymentRequestsApiListPaymentRequests
578
489
  */
@@ -593,7 +504,7 @@ export interface PaymentRequestsApiListPaymentRequestsRequest {
593
504
  readonly expand?: string
594
505
 
595
506
  /**
596
- * 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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt, settlementCode&lt;/i&gt;
507
+ * 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: id, code, paymentRequestNumber, status, direction, financialEntityType, domainEntityType, paymentMethodPsp, paymentMethodType, createdAt&lt;/i&gt;
597
508
  * @type {string}
598
509
  * @memberof PaymentRequestsApiListPaymentRequests
599
510
  */
@@ -647,18 +558,6 @@ export class PaymentRequestsApi extends BaseAPI {
647
558
  return PaymentRequestsApiFp(this.configuration).createPaymentRequest(requestParameters.createPaymentRequestRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
648
559
  }
649
560
 
650
- /**
651
- * This will delete payment request. **Required Permissions** \"payment-management.payments.delete\"
652
- * @summary Delete the payment request
653
- * @param {PaymentRequestsApiDeletePaymentRequestRequest} requestParameters Request parameters.
654
- * @param {*} [options] Override http request option.
655
- * @throws {RequiredError}
656
- * @memberof PaymentRequestsApi
657
- */
658
- public deletePaymentRequest(requestParameters: PaymentRequestsApiDeletePaymentRequestRequest, options?: AxiosRequestConfig) {
659
- return PaymentRequestsApiFp(this.configuration).deletePaymentRequest(requestParameters.code, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
660
- }
661
-
662
561
  /**
663
562
  * This will get payment request. **Required Permissions** \"payment-management.payments.view\"
664
563
  * @summary Retrieve the payment request
@@ -35,66 +35,20 @@ export const WebhooksApiAxiosParamCreator = function (configuration?: Configurat
35
35
  * @summary Handle the webhook from PSP
36
36
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
37
37
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
38
+ * @param {string} productSlug
38
39
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
39
40
  * @param {*} [options] Override http request option.
40
41
  * @throws {RequiredError}
41
42
  */
42
- postWebhook: async (pspType: string, tenantSlug: string, body: object, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
43
+ postWebhook: async (pspType: string, tenantSlug: string, productSlug: string, body: object, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
43
44
  // verify required parameter 'pspType' is not null or undefined
44
45
  assertParamExists('postWebhook', 'pspType', pspType)
45
46
  // verify required parameter 'tenantSlug' is not null or undefined
46
47
  assertParamExists('postWebhook', 'tenantSlug', tenantSlug)
47
- // verify required parameter 'body' is not null or undefined
48
- assertParamExists('postWebhook', 'body', body)
49
- const localVarPath = `/paymentservice/v1/webhooks/{pspType}/{tenantSlug}`
50
- .replace(`{${"pspType"}}`, encodeURIComponent(String(pspType)))
51
- .replace(`{${"tenantSlug"}}`, encodeURIComponent(String(tenantSlug)));
52
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
53
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
54
- let baseOptions;
55
- let baseAccessToken;
56
- if (configuration) {
57
- baseOptions = configuration.baseOptions;
58
- baseAccessToken = configuration.accessToken;
59
- }
60
-
61
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
62
- const localVarHeaderParameter = {} as any;
63
- const localVarQueryParameter = {} as any;
64
-
65
-
66
-
67
- localVarHeaderParameter['Content-Type'] = 'application/json';
68
-
69
- setSearchParams(localVarUrlObj, localVarQueryParameter);
70
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
71
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
72
- localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
73
-
74
- return {
75
- url: toPathString(localVarUrlObj),
76
- options: localVarRequestOptions,
77
- };
78
- },
79
- /**
80
- * This will processes the webhook from external payment service provider. **Required Permissions** none
81
- * @summary Handle the webhook from PSP
82
- * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
83
- * @param {string} tenantSlug Unique slug identifier representing a tenant.
84
- * @param {string} productSlug Optional product slug associated with the webhook.
85
- * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
86
- * @param {*} [options] Override http request option.
87
- * @throws {RequiredError}
88
- */
89
- postWebhookWithProductSlug: async (pspType: string, tenantSlug: string, productSlug: string, body: object, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
90
- // verify required parameter 'pspType' is not null or undefined
91
- assertParamExists('postWebhookWithProductSlug', 'pspType', pspType)
92
- // verify required parameter 'tenantSlug' is not null or undefined
93
- assertParamExists('postWebhookWithProductSlug', 'tenantSlug', tenantSlug)
94
48
  // verify required parameter 'productSlug' is not null or undefined
95
- assertParamExists('postWebhookWithProductSlug', 'productSlug', productSlug)
49
+ assertParamExists('postWebhook', 'productSlug', productSlug)
96
50
  // verify required parameter 'body' is not null or undefined
97
- assertParamExists('postWebhookWithProductSlug', 'body', body)
51
+ assertParamExists('postWebhook', 'body', body)
98
52
  const localVarPath = `/paymentservice/v1/webhooks/{pspType}/{tenantSlug}/{productSlug}`
99
53
  .replace(`{${"pspType"}}`, encodeURIComponent(String(pspType)))
100
54
  .replace(`{${"tenantSlug"}}`, encodeURIComponent(String(tenantSlug)))
@@ -141,26 +95,13 @@ export const WebhooksApiFp = function(configuration?: Configuration) {
141
95
  * @summary Handle the webhook from PSP
142
96
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
143
97
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
98
+ * @param {string} productSlug
144
99
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
145
100
  * @param {*} [options] Override http request option.
146
101
  * @throws {RequiredError}
147
102
  */
148
- async postWebhook(pspType: string, tenantSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
149
- const localVarAxiosArgs = await localVarAxiosParamCreator.postWebhook(pspType, tenantSlug, body, options);
150
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
151
- },
152
- /**
153
- * This will processes the webhook from external payment service provider. **Required Permissions** none
154
- * @summary Handle the webhook from PSP
155
- * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
156
- * @param {string} tenantSlug Unique slug identifier representing a tenant.
157
- * @param {string} productSlug Optional product slug associated with the webhook.
158
- * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
159
- * @param {*} [options] Override http request option.
160
- * @throws {RequiredError}
161
- */
162
- async postWebhookWithProductSlug(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
163
- const localVarAxiosArgs = await localVarAxiosParamCreator.postWebhookWithProductSlug(pspType, tenantSlug, productSlug, body, options);
103
+ async postWebhook(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
104
+ const localVarAxiosArgs = await localVarAxiosParamCreator.postWebhook(pspType, tenantSlug, productSlug, body, options);
164
105
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
165
106
  },
166
107
  }
@@ -178,25 +119,13 @@ export const WebhooksApiFactory = function (configuration?: Configuration, baseP
178
119
  * @summary Handle the webhook from PSP
179
120
  * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
180
121
  * @param {string} tenantSlug Unique slug identifier representing a tenant.
122
+ * @param {string} productSlug
181
123
  * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
182
124
  * @param {*} [options] Override http request option.
183
125
  * @throws {RequiredError}
184
126
  */
185
- postWebhook(pspType: string, tenantSlug: string, body: object, options?: any): AxiosPromise<void> {
186
- return localVarFp.postWebhook(pspType, tenantSlug, body, options).then((request) => request(axios, basePath));
187
- },
188
- /**
189
- * This will processes the webhook from external payment service provider. **Required Permissions** none
190
- * @summary Handle the webhook from PSP
191
- * @param {string} pspType The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
192
- * @param {string} tenantSlug Unique slug identifier representing a tenant.
193
- * @param {string} productSlug Optional product slug associated with the webhook.
194
- * @param {object} body Accepts a webhook payload. The structure may vary depending on the payment service provider.
195
- * @param {*} [options] Override http request option.
196
- * @throws {RequiredError}
197
- */
198
- postWebhookWithProductSlug(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: any): AxiosPromise<void> {
199
- return localVarFp.postWebhookWithProductSlug(pspType, tenantSlug, productSlug, body, options).then((request) => request(axios, basePath));
127
+ postWebhook(pspType: string, tenantSlug: string, productSlug: string, body: object, options?: any): AxiosPromise<void> {
128
+ return localVarFp.postWebhook(pspType, tenantSlug, productSlug, body, options).then((request) => request(axios, basePath));
200
129
  },
201
130
  };
202
131
  };
@@ -222,44 +151,16 @@ export interface WebhooksApiPostWebhookRequest {
222
151
  readonly tenantSlug: string
223
152
 
224
153
  /**
225
- * Accepts a webhook payload. The structure may vary depending on the payment service provider.
226
- * @type {object}
227
- * @memberof WebhooksApiPostWebhook
228
- */
229
- readonly body: object
230
- }
231
-
232
- /**
233
- * Request parameters for postWebhookWithProductSlug operation in WebhooksApi.
234
- * @export
235
- * @interface WebhooksApiPostWebhookWithProductSlugRequest
236
- */
237
- export interface WebhooksApiPostWebhookWithProductSlugRequest {
238
- /**
239
- * The type of the payment service provider (PSP).&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Supported PSP: braintree, stripe, b4u, eis, adyen&lt;/i&gt;
240
- * @type {string}
241
- * @memberof WebhooksApiPostWebhookWithProductSlug
242
- */
243
- readonly pspType: string
244
-
245
- /**
246
- * Unique slug identifier representing a tenant.
247
- * @type {string}
248
- * @memberof WebhooksApiPostWebhookWithProductSlug
249
- */
250
- readonly tenantSlug: string
251
-
252
- /**
253
- * Optional product slug associated with the webhook.
154
+ *
254
155
  * @type {string}
255
- * @memberof WebhooksApiPostWebhookWithProductSlug
156
+ * @memberof WebhooksApiPostWebhook
256
157
  */
257
158
  readonly productSlug: string
258
159
 
259
160
  /**
260
161
  * Accepts a webhook payload. The structure may vary depending on the payment service provider.
261
162
  * @type {object}
262
- * @memberof WebhooksApiPostWebhookWithProductSlug
163
+ * @memberof WebhooksApiPostWebhook
263
164
  */
264
165
  readonly body: object
265
166
  }
@@ -280,18 +181,6 @@ export class WebhooksApi extends BaseAPI {
280
181
  * @memberof WebhooksApi
281
182
  */
282
183
  public postWebhook(requestParameters: WebhooksApiPostWebhookRequest, options?: AxiosRequestConfig) {
283
- return WebhooksApiFp(this.configuration).postWebhook(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
284
- }
285
-
286
- /**
287
- * This will processes the webhook from external payment service provider. **Required Permissions** none
288
- * @summary Handle the webhook from PSP
289
- * @param {WebhooksApiPostWebhookWithProductSlugRequest} requestParameters Request parameters.
290
- * @param {*} [options] Override http request option.
291
- * @throws {RequiredError}
292
- * @memberof WebhooksApi
293
- */
294
- public postWebhookWithProductSlug(requestParameters: WebhooksApiPostWebhookWithProductSlugRequest, options?: AxiosRequestConfig) {
295
- return WebhooksApiFp(this.configuration).postWebhookWithProductSlug(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.productSlug, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
184
+ return WebhooksApiFp(this.configuration).postWebhook(requestParameters.pspType, requestParameters.tenantSlug, requestParameters.productSlug, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
296
185
  }
297
186
  }
@@ -57,11 +57,11 @@ export declare const PaymentRemindersApiAxiosParamCreator: (configuration?: Conf
57
57
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
58
58
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
59
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
60
- * @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, isActive&lt;/i&gt;
60
+ * @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;
61
61
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt, isActive&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt&lt;/i&gt;
63
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.&lt;br/&gt; &lt;br/&gt;
64
- * @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, isActive&lt;/i&gt;
64
+ * @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;
65
65
  * @param {*} [options] Override http request option.
66
66
  * @throws {RequiredError}
67
67
  */
@@ -106,11 +106,11 @@ export declare const PaymentRemindersApiFp: (configuration?: Configuration) => {
106
106
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
107
107
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
108
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.
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, isActive&lt;/i&gt;
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;
110
110
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
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, isActive&lt;/i&gt;
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;
112
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, isActive&lt;/i&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;
114
114
  * @param {*} [options] Override http request option.
115
115
  * @throws {RequiredError}
116
116
  */
@@ -155,11 +155,11 @@ export declare const PaymentRemindersApiFactory: (configuration?: Configuration,
155
155
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
156
156
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
157
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.
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, isActive&lt;/i&gt;
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;
159
159
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
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, isActive&lt;/i&gt;
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;
161
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, isActive&lt;/i&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;
163
163
  * @param {*} [options] Override http request option.
164
164
  * @throws {RequiredError}
165
165
  */
@@ -253,7 +253,7 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
253
253
  */
254
254
  readonly pageToken?: string;
255
255
  /**
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, isActive&lt;/i&gt;
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;
257
257
  * @type {string}
258
258
  * @memberof PaymentRemindersApiListPaymentReminders
259
259
  */
@@ -265,7 +265,7 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
265
265
  */
266
266
  readonly search?: string;
267
267
  /**
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, isActive&lt;/i&gt;
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;
269
269
  * @type {string}
270
270
  * @memberof PaymentRemindersApiListPaymentReminders
271
271
  */
@@ -277,7 +277,7 @@ export interface PaymentRemindersApiListPaymentRemindersRequest {
277
277
  */
278
278
  readonly expand?: string;
279
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, isActive&lt;/i&gt;
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
281
  * @type {string}
282
282
  * @memberof PaymentRemindersApiListPaymentReminders
283
283
  */