@emilgroup/claim-sdk 1.17.2-beta.3 → 1.17.2-beta.4

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 (39) hide show
  1. package/.openapi-generator/FILES +0 -3
  2. package/README.md +2 -2
  3. package/api/claim-regulations-api.ts +46 -18
  4. package/api/health-check-api.ts +5 -5
  5. package/dist/api/claim-regulations-api.d.ts +29 -11
  6. package/dist/api/claim-regulations-api.js +24 -12
  7. package/dist/api/health-check-api.d.ts +4 -4
  8. package/dist/api/health-check-api.js +5 -5
  9. package/dist/models/create-claim-partner-response-class.d.ts +1 -1
  10. package/dist/models/create-claim-partner-role-response-class.d.ts +1 -1
  11. package/dist/models/create-claim-request-dto.d.ts +17 -17
  12. package/dist/models/create-regulation-item-request-dto.d.ts +0 -21
  13. package/dist/models/get-claim-partner-response-class.d.ts +1 -1
  14. package/dist/models/get-claim-partner-role-response-class.d.ts +1 -1
  15. package/dist/models/index.d.ts +0 -3
  16. package/dist/models/index.js +0 -3
  17. package/dist/models/patch-claim-request-dto.d.ts +18 -18
  18. package/dist/models/update-claim-partner-role-response-class.d.ts +1 -1
  19. package/dist/models/update-claim-request-dto.d.ts +15 -15
  20. package/models/create-claim-partner-response-class.ts +1 -1
  21. package/models/create-claim-partner-role-response-class.ts +1 -1
  22. package/models/create-claim-request-dto.ts +17 -17
  23. package/models/create-regulation-item-request-dto.ts +0 -21
  24. package/models/get-claim-partner-response-class.ts +1 -1
  25. package/models/get-claim-partner-role-response-class.ts +1 -1
  26. package/models/index.ts +0 -3
  27. package/models/patch-claim-request-dto.ts +18 -18
  28. package/models/update-claim-partner-role-response-class.ts +1 -1
  29. package/models/update-claim-request-dto.ts +15 -15
  30. package/package.json +1 -1
  31. package/dist/models/payout-details-dto.d.ts +0 -60
  32. package/dist/models/payout-details-dto.js +0 -26
  33. package/dist/models/regress-details-dto.d.ts +0 -51
  34. package/dist/models/regress-details-dto.js +0 -29
  35. package/dist/models/reserve-details-dto.d.ts +0 -29
  36. package/dist/models/reserve-details-dto.js +0 -20
  37. package/models/payout-details-dto.ts +0 -70
  38. package/models/regress-details-dto.ts +0 -61
  39. package/models/reserve-details-dto.ts +0 -38
@@ -47,13 +47,10 @@ models/list-settlements-response-class.ts
47
47
  models/patch-claim-request-dto.ts
48
48
  models/patch-claim-response-class.ts
49
49
  models/payout-details-class.ts
50
- models/payout-details-dto.ts
51
50
  models/regress-details-class.ts
52
- models/regress-details-dto.ts
53
51
  models/regulation-item-class.ts
54
52
  models/regulation-item-response-class.ts
55
53
  models/reserve-details-class.ts
56
- models/reserve-details-dto.ts
57
54
  models/settlement-class.ts
58
55
  models/update-claim-partner-role-request-dto.ts
59
56
  models/update-claim-partner-role-response-class.ts
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/claim-sdk@1.17.2-beta.3 --save
20
+ npm install @emilgroup/claim-sdk@1.17.2-beta.4 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/claim-sdk@1.17.2-beta.3
24
+ yarn add @emilgroup/claim-sdk@1.17.2-beta.4
25
25
  ```
26
26
 
27
27
  And then you can import `ClaimsApi`.
@@ -178,15 +178,17 @@ export const ClaimRegulationsApiAxiosParamCreator = function (configuration?: Co
178
178
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
179
179
  * @summary List claim regulation items
180
180
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
181
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
182
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
181
183
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus</i>
182
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus</i>
183
184
  * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, claimCode, amount, bookingDate, currency</i>
184
185
  * @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: amount, bookingDate, createdAt, updatedAt</i>
185
186
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: claim.<i>
187
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus</i>
186
188
  * @param {*} [options] Override http request option.
187
189
  * @throws {RequiredError}
188
190
  */
189
- listClaimRegulations: async (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
191
+ listClaimRegulations: async (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
190
192
  const localVarPath = `/v1/claims/regulations`;
191
193
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
192
194
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -205,12 +207,16 @@ export const ClaimRegulationsApiAxiosParamCreator = function (configuration?: Co
205
207
  // http bearer authentication required
206
208
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
207
209
 
208
- if (filter !== undefined) {
209
- localVarQueryParameter['filter'] = filter;
210
+ if (pageSize !== undefined) {
211
+ localVarQueryParameter['pageSize'] = pageSize;
210
212
  }
211
213
 
212
- if (filters !== undefined) {
213
- localVarQueryParameter['filters'] = filters;
214
+ if (pageToken !== undefined) {
215
+ localVarQueryParameter['pageToken'] = pageToken;
216
+ }
217
+
218
+ if (filter !== undefined) {
219
+ localVarQueryParameter['filter'] = filter;
214
220
  }
215
221
 
216
222
  if (search !== undefined) {
@@ -225,6 +231,10 @@ export const ClaimRegulationsApiAxiosParamCreator = function (configuration?: Co
225
231
  localVarQueryParameter['expand'] = expand;
226
232
  }
227
233
 
234
+ if (filters !== undefined) {
235
+ localVarQueryParameter['filters'] = filters;
236
+ }
237
+
228
238
  if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
229
239
  localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
230
240
  }
@@ -342,16 +352,18 @@ export const ClaimRegulationsApiFp = function(configuration?: Configuration) {
342
352
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
343
353
  * @summary List claim regulation items
344
354
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
355
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
356
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
345
357
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
346
- * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
347
358
  * @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, claimCode, amount, bookingDate, currency&lt;/i&gt;
348
359
  * @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: amount, bookingDate, createdAt, updatedAt&lt;/i&gt;
349
360
  * @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: claim.&lt;i&gt;
361
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
350
362
  * @param {*} [options] Override http request option.
351
363
  * @throws {RequiredError}
352
364
  */
353
- async listClaimRegulations(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>> {
354
- const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimRegulations(authorization, filter, filters, search, order, expand, options);
365
+ async listClaimRegulations(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>> {
366
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimRegulations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
355
367
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
356
368
  },
357
369
  /**
@@ -415,16 +427,18 @@ export const ClaimRegulationsApiFactory = function (configuration?: Configuratio
415
427
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
416
428
  * @summary List claim regulation items
417
429
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
430
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
431
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
418
432
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
419
- * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
420
433
  * @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, claimCode, amount, bookingDate, currency&lt;/i&gt;
421
434
  * @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: amount, bookingDate, createdAt, updatedAt&lt;/i&gt;
422
435
  * @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: claim.&lt;i&gt;
436
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
423
437
  * @param {*} [options] Override http request option.
424
438
  * @throws {RequiredError}
425
439
  */
426
- listClaimRegulations(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListRegulationsResponseClass> {
427
- return localVarFp.listClaimRegulations(authorization, filter, filters, search, order, expand, options).then((request) => request(axios, basePath));
440
+ listClaimRegulations(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass> {
441
+ return localVarFp.listClaimRegulations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
428
442
  },
429
443
  /**
430
444
  * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
@@ -525,18 +539,25 @@ export interface ClaimRegulationsApiListClaimRegulationsRequest {
525
539
  readonly authorization?: string
526
540
 
527
541
  /**
528
- * 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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
529
- * @type {string}
542
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
543
+ * @type {any}
530
544
  * @memberof ClaimRegulationsApiListClaimRegulations
531
545
  */
532
- readonly filter?: string
546
+ readonly pageSize?: any
533
547
 
534
548
  /**
535
- * 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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
549
+ * 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.
550
+ * @type {any}
551
+ * @memberof ClaimRegulationsApiListClaimRegulations
552
+ */
553
+ readonly pageToken?: any
554
+
555
+ /**
556
+ * 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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
536
557
  * @type {string}
537
558
  * @memberof ClaimRegulationsApiListClaimRegulations
538
559
  */
539
- readonly filters?: string
560
+ readonly filter?: string
540
561
 
541
562
  /**
542
563
  * 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, claimCode, amount, bookingDate, currency&lt;/i&gt;
@@ -558,6 +579,13 @@ export interface ClaimRegulationsApiListClaimRegulationsRequest {
558
579
  * @memberof ClaimRegulationsApiListClaimRegulations
559
580
  */
560
581
  readonly expand?: string
582
+
583
+ /**
584
+ * 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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
585
+ * @type {string}
586
+ * @memberof ClaimRegulationsApiListClaimRegulations
587
+ */
588
+ readonly filters?: string
561
589
  }
562
590
 
563
591
  /**
@@ -640,7 +668,7 @@ export class ClaimRegulationsApi extends BaseAPI {
640
668
  * @memberof ClaimRegulationsApi
641
669
  */
642
670
  public listClaimRegulations(requestParameters: ClaimRegulationsApiListClaimRegulationsRequest = {}, options?: AxiosRequestConfig) {
643
- return ClaimRegulationsApiFp(this.configuration).listClaimRegulations(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath));
671
+ return ClaimRegulationsApiFp(this.configuration).listClaimRegulations(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
644
672
  }
645
673
 
646
674
  /**
@@ -31,13 +31,13 @@ import { InlineResponse503 } from '../models';
31
31
  export const HealthCheckApiAxiosParamCreator = function (configuration?: Configuration) {
32
32
  return {
33
33
  /**
34
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
34
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
35
35
  * @summary Health Check
36
36
  * @param {*} [options] Override http request option.
37
37
  * @throws {RequiredError}
38
38
  */
39
39
  check: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
40
- const localVarPath = `/claimservice/health`;
40
+ const localVarPath = `/v1/claims/health`;
41
41
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
42
42
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
43
43
  let baseOptions;
@@ -73,7 +73,7 @@ export const HealthCheckApiFp = function(configuration?: Configuration) {
73
73
  const localVarAxiosParamCreator = HealthCheckApiAxiosParamCreator(configuration)
74
74
  return {
75
75
  /**
76
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
76
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
77
77
  * @summary Health Check
78
78
  * @param {*} [options] Override http request option.
79
79
  * @throws {RequiredError}
@@ -93,7 +93,7 @@ export const HealthCheckApiFactory = function (configuration?: Configuration, ba
93
93
  const localVarFp = HealthCheckApiFp(configuration)
94
94
  return {
95
95
  /**
96
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
96
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
97
97
  * @summary Health Check
98
98
  * @param {*} [options] Override http request option.
99
99
  * @throws {RequiredError}
@@ -112,7 +112,7 @@ export const HealthCheckApiFactory = function (configuration?: Configuration, ba
112
112
  */
113
113
  export class HealthCheckApi extends BaseAPI {
114
114
  /**
115
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
115
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
116
116
  * @summary Health Check
117
117
  * @param {*} [options] Override http request option.
118
118
  * @throws {RequiredError}
@@ -52,15 +52,17 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
52
52
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
53
53
  * @summary List claim regulation items
54
54
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
55
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
56
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
55
57
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
56
- * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
57
58
  * @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, claimCode, amount, bookingDate, currency&lt;/i&gt;
58
59
  * @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: amount, bookingDate, createdAt, updatedAt&lt;/i&gt;
59
60
  * @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: claim.&lt;i&gt;
61
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
60
62
  * @param {*} [options] Override http request option.
61
63
  * @throws {RequiredError}
62
64
  */
63
- listClaimRegulations: (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
65
+ listClaimRegulations: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
64
66
  /**
65
67
  * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
66
68
  * @summary Update the claim regulation item
@@ -109,15 +111,17 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
109
111
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
110
112
  * @summary List claim regulation items
111
113
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
114
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
115
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
112
116
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
114
117
  * @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, claimCode, amount, bookingDate, currency&lt;/i&gt;
115
118
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: amount, bookingDate, createdAt, updatedAt&lt;/i&gt;
116
119
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: claim.&lt;i&gt;
120
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
117
121
  * @param {*} [options] Override http request option.
118
122
  * @throws {RequiredError}
119
123
  */
120
- listClaimRegulations(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>>;
124
+ listClaimRegulations(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>>;
121
125
  /**
122
126
  * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
123
127
  * @summary Update the claim regulation item
@@ -166,15 +170,17 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
166
170
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
167
171
  * @summary List claim regulation items
168
172
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
173
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
174
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
169
175
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
170
- * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
171
176
  * @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, claimCode, amount, bookingDate, currency&lt;/i&gt;
172
177
  * @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: amount, bookingDate, createdAt, updatedAt&lt;/i&gt;
173
178
  * @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: claim.&lt;i&gt;
179
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
174
180
  * @param {*} [options] Override http request option.
175
181
  * @throws {RequiredError}
176
182
  */
177
- listClaimRegulations(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
183
+ listClaimRegulations(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
178
184
  /**
179
185
  * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
180
186
  * @summary Update the claim regulation item
@@ -262,17 +268,23 @@ export interface ClaimRegulationsApiListClaimRegulationsRequest {
262
268
  */
263
269
  readonly authorization?: string;
264
270
  /**
265
- * 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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
266
- * @type {string}
271
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
272
+ * @type {any}
267
273
  * @memberof ClaimRegulationsApiListClaimRegulations
268
274
  */
269
- readonly filter?: string;
275
+ readonly pageSize?: any;
270
276
  /**
271
- * 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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
277
+ * 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.
278
+ * @type {any}
279
+ * @memberof ClaimRegulationsApiListClaimRegulations
280
+ */
281
+ readonly pageToken?: any;
282
+ /**
283
+ * 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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
272
284
  * @type {string}
273
285
  * @memberof ClaimRegulationsApiListClaimRegulations
274
286
  */
275
- readonly filters?: string;
287
+ readonly filter?: string;
276
288
  /**
277
289
  * 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, claimCode, amount, bookingDate, currency&lt;/i&gt;
278
290
  * @type {string}
@@ -291,6 +303,12 @@ export interface ClaimRegulationsApiListClaimRegulationsRequest {
291
303
  * @memberof ClaimRegulationsApiListClaimRegulations
292
304
  */
293
305
  readonly expand?: string;
306
+ /**
307
+ * 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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
308
+ * @type {string}
309
+ * @memberof ClaimRegulationsApiListClaimRegulations
310
+ */
311
+ readonly filters?: string;
294
312
  }
295
313
  /**
296
314
  * Request parameters for updateClaimRegulation operation in ClaimRegulationsApi.
@@ -245,15 +245,17 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
245
245
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
246
246
  * @summary List claim regulation items
247
247
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
248
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
249
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
248
250
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
249
- * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
250
251
  * @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, claimCode, amount, bookingDate, currency&lt;/i&gt;
251
252
  * @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: amount, bookingDate, createdAt, updatedAt&lt;/i&gt;
252
253
  * @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: claim.&lt;i&gt;
254
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
253
255
  * @param {*} [options] Override http request option.
254
256
  * @throws {RequiredError}
255
257
  */
256
- listClaimRegulations: function (authorization, filter, filters, search, order, expand, options) {
258
+ listClaimRegulations: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
257
259
  if (options === void 0) { options = {}; }
258
260
  return __awaiter(_this, void 0, void 0, function () {
259
261
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -276,12 +278,15 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
276
278
  // authentication bearer required
277
279
  // http bearer authentication required
278
280
  _a.sent();
281
+ if (pageSize !== undefined) {
282
+ localVarQueryParameter['pageSize'] = pageSize;
283
+ }
284
+ if (pageToken !== undefined) {
285
+ localVarQueryParameter['pageToken'] = pageToken;
286
+ }
279
287
  if (filter !== undefined) {
280
288
  localVarQueryParameter['filter'] = filter;
281
289
  }
282
- if (filters !== undefined) {
283
- localVarQueryParameter['filters'] = filters;
284
- }
285
290
  if (search !== undefined) {
286
291
  localVarQueryParameter['search'] = search;
287
292
  }
@@ -291,6 +296,9 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
291
296
  if (expand !== undefined) {
292
297
  localVarQueryParameter['expand'] = expand;
293
298
  }
299
+ if (filters !== undefined) {
300
+ localVarQueryParameter['filters'] = filters;
301
+ }
294
302
  if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
295
303
  localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
296
304
  }
@@ -436,20 +444,22 @@ var ClaimRegulationsApiFp = function (configuration) {
436
444
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
437
445
  * @summary List claim regulation items
438
446
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
447
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
448
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
439
449
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
440
- * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
441
450
  * @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, claimCode, amount, bookingDate, currency&lt;/i&gt;
442
451
  * @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: amount, bookingDate, createdAt, updatedAt&lt;/i&gt;
443
452
  * @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: claim.&lt;i&gt;
453
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
444
454
  * @param {*} [options] Override http request option.
445
455
  * @throws {RequiredError}
446
456
  */
447
- listClaimRegulations: function (authorization, filter, filters, search, order, expand, options) {
457
+ listClaimRegulations: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
448
458
  return __awaiter(this, void 0, void 0, function () {
449
459
  var localVarAxiosArgs;
450
460
  return __generator(this, function (_a) {
451
461
  switch (_a.label) {
452
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listClaimRegulations(authorization, filter, filters, search, order, expand, options)];
462
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listClaimRegulations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
453
463
  case 1:
454
464
  localVarAxiosArgs = _a.sent();
455
465
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -527,16 +537,18 @@ var ClaimRegulationsApiFactory = function (configuration, basePath, axios) {
527
537
  * Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
528
538
  * @summary List claim regulation items
529
539
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
540
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
541
+ * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
530
542
  * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
531
- * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
532
543
  * @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, claimCode, amount, bookingDate, currency&lt;/i&gt;
533
544
  * @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: amount, bookingDate, createdAt, updatedAt&lt;/i&gt;
534
545
  * @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: claim.&lt;i&gt;
546
+ * @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, claimCode, amount, bookingDate, currency, regulationItemType, payoutType, regressType, reserveType, payoutStatus, regressStatus&lt;/i&gt;
535
547
  * @param {*} [options] Override http request option.
536
548
  * @throws {RequiredError}
537
549
  */
538
- listClaimRegulations: function (authorization, filter, filters, search, order, expand, options) {
539
- return localVarFp.listClaimRegulations(authorization, filter, filters, search, order, expand, options).then(function (request) { return request(axios, basePath); });
550
+ listClaimRegulations: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
551
+ return localVarFp.listClaimRegulations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
540
552
  },
541
553
  /**
542
554
  * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
@@ -611,7 +623,7 @@ var ClaimRegulationsApi = /** @class */ (function (_super) {
611
623
  ClaimRegulationsApi.prototype.listClaimRegulations = function (requestParameters, options) {
612
624
  var _this = this;
613
625
  if (requestParameters === void 0) { requestParameters = {}; }
614
- return (0, exports.ClaimRegulationsApiFp)(this.configuration).listClaimRegulations(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
626
+ return (0, exports.ClaimRegulationsApiFp)(this.configuration).listClaimRegulations(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); });
615
627
  };
616
628
  /**
617
629
  * Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
@@ -19,7 +19,7 @@ import { InlineResponse200 } from '../models';
19
19
  */
20
20
  export declare const HealthCheckApiAxiosParamCreator: (configuration?: Configuration) => {
21
21
  /**
22
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
22
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
23
23
  * @summary Health Check
24
24
  * @param {*} [options] Override http request option.
25
25
  * @throws {RequiredError}
@@ -32,7 +32,7 @@ export declare const HealthCheckApiAxiosParamCreator: (configuration?: Configura
32
32
  */
33
33
  export declare const HealthCheckApiFp: (configuration?: Configuration) => {
34
34
  /**
35
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
35
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
36
36
  * @summary Health Check
37
37
  * @param {*} [options] Override http request option.
38
38
  * @throws {RequiredError}
@@ -45,7 +45,7 @@ export declare const HealthCheckApiFp: (configuration?: Configuration) => {
45
45
  */
46
46
  export declare const HealthCheckApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
47
47
  /**
48
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
48
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
49
49
  * @summary Health Check
50
50
  * @param {*} [options] Override http request option.
51
51
  * @throws {RequiredError}
@@ -60,7 +60,7 @@ export declare const HealthCheckApiFactory: (configuration?: Configuration, base
60
60
  */
61
61
  export declare class HealthCheckApi extends BaseAPI {
62
62
  /**
63
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
63
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
64
64
  * @summary Health Check
65
65
  * @param {*} [options] Override http request option.
66
66
  * @throws {RequiredError}
@@ -93,7 +93,7 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
93
93
  var _this = this;
94
94
  return {
95
95
  /**
96
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
96
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
97
97
  * @summary Health Check
98
98
  * @param {*} [options] Override http request option.
99
99
  * @throws {RequiredError}
@@ -103,7 +103,7 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
103
103
  return __awaiter(_this, void 0, void 0, function () {
104
104
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
105
105
  return __generator(this, function (_a) {
106
- localVarPath = "/claimservice/health";
106
+ localVarPath = "/v1/claims/health";
107
107
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
108
108
  if (configuration) {
109
109
  baseOptions = configuration.baseOptions;
@@ -133,7 +133,7 @@ var HealthCheckApiFp = function (configuration) {
133
133
  var localVarAxiosParamCreator = (0, exports.HealthCheckApiAxiosParamCreator)(configuration);
134
134
  return {
135
135
  /**
136
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
136
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
137
137
  * @summary Health Check
138
138
  * @param {*} [options] Override http request option.
139
139
  * @throws {RequiredError}
@@ -162,7 +162,7 @@ var HealthCheckApiFactory = function (configuration, basePath, axios) {
162
162
  var localVarFp = (0, exports.HealthCheckApiFp)(configuration);
163
163
  return {
164
164
  /**
165
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
165
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
166
166
  * @summary Health Check
167
167
  * @param {*} [options] Override http request option.
168
168
  * @throws {RequiredError}
@@ -185,7 +185,7 @@ var HealthCheckApi = /** @class */ (function (_super) {
185
185
  return _super !== null && _super.apply(this, arguments) || this;
186
186
  }
187
187
  /**
188
- * Returns the health status of the partner service. This endpoint is used to monitor the operational status of the partner service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
188
+ * Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
189
189
  * @summary Health Check
190
190
  * @param {*} [options] Override http request option.
191
191
  * @throws {RequiredError}
@@ -21,5 +21,5 @@ export interface CreateClaimPartnerResponseClass {
21
21
  * @type {ClaimPartnerClass}
22
22
  * @memberof CreateClaimPartnerResponseClass
23
23
  */
24
- 'claimPartner'?: ClaimPartnerClass;
24
+ 'claimPartner': ClaimPartnerClass;
25
25
  }
@@ -21,5 +21,5 @@ export interface CreateClaimPartnerRoleResponseClass {
21
21
  * @type {ClaimPartnerRoleClass}
22
22
  * @memberof CreateClaimPartnerRoleResponseClass
23
23
  */
24
- 'claimPartnerRole'?: ClaimPartnerRoleClass;
24
+ 'claimPartnerRole': ClaimPartnerRoleClass;
25
25
  }