@emilgroup/claim-sdk-node 1.39.1-beta.9 → 1.40.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 (87) hide show
  1. package/.openapi-generator/FILES +8 -0
  2. package/README.md +2 -2
  3. package/api/claim-limit-usages-api.ts +24 -24
  4. package/api/claim-partner-roles-api.ts +24 -24
  5. package/api/claim-partners-api.ts +24 -24
  6. package/api/claim-positions-api.ts +496 -16
  7. package/api/claim-regulations-api.ts +24 -24
  8. package/api/claim-statuses-api.ts +24 -24
  9. package/api/claims-api.ts +48 -48
  10. package/api/settlements-api.ts +24 -24
  11. package/dist/api/claim-limit-usages-api.d.ts +24 -24
  12. package/dist/api/claim-limit-usages-api.js +18 -18
  13. package/dist/api/claim-partner-roles-api.d.ts +24 -24
  14. package/dist/api/claim-partner-roles-api.js +20 -20
  15. package/dist/api/claim-partners-api.d.ts +24 -24
  16. package/dist/api/claim-partners-api.js +20 -20
  17. package/dist/api/claim-positions-api.d.ts +284 -16
  18. package/dist/api/claim-positions-api.js +416 -12
  19. package/dist/api/claim-regulations-api.d.ts +24 -24
  20. package/dist/api/claim-regulations-api.js +20 -20
  21. package/dist/api/claim-statuses-api.d.ts +24 -24
  22. package/dist/api/claim-statuses-api.js +20 -20
  23. package/dist/api/claims-api.d.ts +48 -48
  24. package/dist/api/claims-api.js +38 -38
  25. package/dist/api/settlements-api.d.ts +24 -24
  26. package/dist/api/settlements-api.js +20 -20
  27. package/dist/models/batch-upsert-claim-position-input-dto.d.ts +72 -0
  28. package/dist/models/batch-upsert-claim-position-input-dto.js +15 -0
  29. package/dist/models/batch-upsert-claim-positions-request-dto.d.ts +31 -0
  30. package/dist/models/batch-upsert-claim-positions-request-dto.js +15 -0
  31. package/dist/models/batch-upsert-claim-positions-response-class.d.ts +32 -0
  32. package/dist/models/batch-upsert-claim-positions-response-class.js +15 -0
  33. package/dist/models/calculate-claim-positions-request-dto.d.ts +31 -0
  34. package/dist/models/calculate-claim-positions-request-dto.js +15 -0
  35. package/dist/models/calculate-claim-positions-response-class.d.ts +32 -0
  36. package/dist/models/calculate-claim-positions-response-class.js +15 -0
  37. package/dist/models/calculated-claim-position-class.d.ts +74 -0
  38. package/dist/models/calculated-claim-position-class.js +15 -0
  39. package/dist/models/calculation-totals-class.d.ts +30 -0
  40. package/dist/models/calculation-totals-class.js +15 -0
  41. package/dist/models/claim-applied-deductible-class.d.ts +1 -1
  42. package/dist/models/claim-class.d.ts +24 -0
  43. package/dist/models/claim-limit-usage-class.d.ts +8 -0
  44. package/dist/models/claim-limit-usage-class.js +2 -0
  45. package/dist/models/claim-position-calculation-input-dto.d.ts +48 -0
  46. package/dist/models/claim-position-calculation-input-dto.js +15 -0
  47. package/dist/models/claim-position-class.d.ts +8 -1
  48. package/dist/models/claim-position-class.js +3 -2
  49. package/dist/models/create-claim-position-response-class.d.ts +1 -1
  50. package/dist/models/create-claim-request-dto.d.ts +12 -0
  51. package/dist/models/create-regulation-item-request-dto.d.ts +4 -3
  52. package/dist/models/get-claim-position-response-class.d.ts +1 -1
  53. package/dist/models/index.d.ts +8 -0
  54. package/dist/models/index.js +8 -0
  55. package/dist/models/list-claim-positions-response-class.d.ts +1 -1
  56. package/dist/models/patch-claim-request-dto.d.ts +12 -0
  57. package/dist/models/regulation-item-class.d.ts +6 -0
  58. package/dist/models/update-claim-position-request-dto.d.ts +6 -0
  59. package/dist/models/update-claim-position-response-class.d.ts +1 -1
  60. package/dist/models/update-claim-request-dto.d.ts +12 -0
  61. package/dist/models/update-regulation-item-request-dto.d.ts +24 -0
  62. package/dist/models/update-regulation-item-request-dto.js +5 -1
  63. package/models/batch-upsert-claim-position-input-dto.ts +78 -0
  64. package/models/batch-upsert-claim-positions-request-dto.ts +37 -0
  65. package/models/batch-upsert-claim-positions-response-class.ts +38 -0
  66. package/models/calculate-claim-positions-request-dto.ts +37 -0
  67. package/models/calculate-claim-positions-response-class.ts +38 -0
  68. package/models/calculated-claim-position-class.ts +80 -0
  69. package/models/calculation-totals-class.ts +36 -0
  70. package/models/claim-applied-deductible-class.ts +1 -1
  71. package/models/claim-class.ts +24 -0
  72. package/models/claim-limit-usage-class.ts +8 -0
  73. package/models/claim-position-calculation-input-dto.ts +54 -0
  74. package/models/claim-position-class.ts +9 -2
  75. package/models/create-claim-position-response-class.ts +1 -1
  76. package/models/create-claim-request-dto.ts +12 -0
  77. package/models/create-regulation-item-request-dto.ts +4 -3
  78. package/models/get-claim-position-response-class.ts +1 -1
  79. package/models/index.ts +8 -0
  80. package/models/list-claim-positions-response-class.ts +1 -1
  81. package/models/patch-claim-request-dto.ts +12 -0
  82. package/models/regulation-item-class.ts +6 -0
  83. package/models/update-claim-position-request-dto.ts +6 -0
  84. package/models/update-claim-position-response-class.ts +1 -1
  85. package/models/update-claim-request-dto.ts +12 -0
  86. package/models/update-regulation-item-request-dto.ts +25 -0
  87. package/package.json +1 -1
@@ -17,13 +17,21 @@ common.ts
17
17
  configuration.ts
18
18
  git_push.sh
19
19
  index.ts
20
+ models/batch-upsert-claim-position-input-dto.ts
21
+ models/batch-upsert-claim-positions-request-dto.ts
22
+ models/batch-upsert-claim-positions-response-class.ts
23
+ models/calculate-claim-positions-request-dto.ts
24
+ models/calculate-claim-positions-response-class.ts
25
+ models/calculated-claim-position-class.ts
20
26
  models/calculation-step-result-class.ts
27
+ models/calculation-totals-class.ts
21
28
  models/claim-applied-deductible-class.ts
22
29
  models/claim-class.ts
23
30
  models/claim-limit-usage-class.ts
24
31
  models/claim-limit-usage-result-class.ts
25
32
  models/claim-partner-class.ts
26
33
  models/claim-partner-role-class.ts
34
+ models/claim-position-calculation-input-dto.ts
27
35
  models/claim-position-class.ts
28
36
  models/claim-status-class.ts
29
37
  models/create-claim-partner-request-dto.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-node@1.39.1-beta.9 --save
20
+ npm install @emilgroup/claim-sdk-node@1.40.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/claim-sdk-node@1.39.1-beta.9
24
+ yarn add @emilgroup/claim-sdk-node@1.40.0
25
25
  ```
26
26
 
27
27
  And then you can import `ClaimsApi`.
@@ -131,11 +131,11 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
131
131
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
132
132
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
133
133
  * @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.
134
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
134
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
135
135
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
136
- * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
136
+ * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
137
137
  * @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/>
138
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
138
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
139
139
  * @param {*} [options] Override http request option.
140
140
  * @throws {RequiredError}
141
141
  */
@@ -207,11 +207,11 @@ export const ClaimLimitUsagesApiAxiosParamCreator = function (configuration?: Co
207
207
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
208
208
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
209
209
  * @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.
210
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
210
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
211
211
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
212
- * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
212
+ * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
213
213
  * @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/>
214
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
214
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
215
215
  * @param {*} [options] Override http request option.
216
216
  * @deprecated
217
217
  * @throws {RequiredError}
@@ -319,11 +319,11 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
319
319
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
320
320
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
321
321
  * @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.
322
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
322
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
323
323
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
324
- * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
324
+ * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
325
325
  * @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/>
326
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
326
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
327
327
  * @param {*} [options] Override http request option.
328
328
  * @throws {RequiredError}
329
329
  */
@@ -337,11 +337,11 @@ export const ClaimLimitUsagesApiFp = function(configuration?: Configuration) {
337
337
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
338
338
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
339
339
  * @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.
340
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
340
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
341
341
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
342
- * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
342
+ * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
343
343
  * @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/>
344
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
344
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
345
345
  * @param {*} [options] Override http request option.
346
346
  * @deprecated
347
347
  * @throws {RequiredError}
@@ -389,11 +389,11 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
389
389
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
390
390
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
391
391
  * @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.
392
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
392
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
393
393
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
394
- * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
394
+ * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
395
395
  * @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/>
396
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
396
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
397
397
  * @param {*} [options] Override http request option.
398
398
  * @throws {RequiredError}
399
399
  */
@@ -406,11 +406,11 @@ export const ClaimLimitUsagesApiFactory = function (configuration?: Configuratio
406
406
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
407
407
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
408
408
  * @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.
409
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
409
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
410
410
  * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
411
- * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
411
+ * @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
412
412
  * @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/>
413
- * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
413
+ * @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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
414
414
  * @param {*} [options] Override http request option.
415
415
  * @deprecated
416
416
  * @throws {RequiredError}
@@ -491,7 +491,7 @@ export interface ClaimLimitUsagesApiListClaimLimitUsagesRequest {
491
491
  readonly pageToken?: string
492
492
 
493
493
  /**
494
- * 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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
494
+ * 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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
495
495
  * @type {string}
496
496
  * @memberof ClaimLimitUsagesApiListClaimLimitUsages
497
497
  */
@@ -505,7 +505,7 @@ export interface ClaimLimitUsagesApiListClaimLimitUsagesRequest {
505
505
  readonly search?: string
506
506
 
507
507
  /**
508
- * 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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
508
+ * 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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
509
509
  * @type {string}
510
510
  * @memberof ClaimLimitUsagesApiListClaimLimitUsages
511
511
  */
@@ -519,7 +519,7 @@ export interface ClaimLimitUsagesApiListClaimLimitUsagesRequest {
519
519
  readonly expand?: string
520
520
 
521
521
  /**
522
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
522
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
523
523
  * @type {string}
524
524
  * @memberof ClaimLimitUsagesApiListClaimLimitUsages
525
525
  */
@@ -554,7 +554,7 @@ export interface ClaimLimitUsagesApiListClaimLimitUsages1Request {
554
554
  readonly pageToken?: string
555
555
 
556
556
  /**
557
- * 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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
557
+ * 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: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
558
558
  * @type {string}
559
559
  * @memberof ClaimLimitUsagesApiListClaimLimitUsages1
560
560
  */
@@ -568,7 +568,7 @@ export interface ClaimLimitUsagesApiListClaimLimitUsages1Request {
568
568
  readonly search?: string
569
569
 
570
570
  /**
571
- * 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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
571
+ * 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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount</i>
572
572
  * @type {string}
573
573
  * @memberof ClaimLimitUsagesApiListClaimLimitUsages1
574
574
  */
@@ -582,7 +582,7 @@ export interface ClaimLimitUsagesApiListClaimLimitUsages1Request {
582
582
  readonly expand?: string
583
583
 
584
584
  /**
585
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
585
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
586
586
  * @type {string}
587
587
  * @memberof ClaimLimitUsagesApiListClaimLimitUsages1
588
588
  */
@@ -320,16 +320,16 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
320
320
  };
321
321
  },
322
322
  /**
323
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
323
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
324
324
  * @summary List claim partner roles
325
325
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
326
326
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
327
327
  * @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.
328
- * @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: name, productSlug</i>
328
+ * @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: name, productSlug</i>
329
329
  * @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: name, productSlug</i>
330
330
  * @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, name, productSlug, createdAt, updatedAt</i>
331
331
  * @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/>
332
- * @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: name, productSlug</i>
332
+ * @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: name, productSlug</i>
333
333
  * @param {*} [options] Override http request option.
334
334
  * @throws {RequiredError}
335
335
  */
@@ -396,16 +396,16 @@ export const ClaimPartnerRolesApiAxiosParamCreator = function (configuration?: C
396
396
  };
397
397
  },
398
398
  /**
399
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
399
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
400
400
  * @summary List claim partner roles
401
401
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
402
402
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
403
403
  * @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.
404
- * @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: name, productSlug</i>
404
+ * @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: name, productSlug</i>
405
405
  * @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: name, productSlug</i>
406
406
  * @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, name, productSlug, createdAt, updatedAt</i>
407
407
  * @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/>
408
- * @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: name, productSlug</i>
408
+ * @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: name, productSlug</i>
409
409
  * @param {*} [options] Override http request option.
410
410
  * @deprecated
411
411
  * @throws {RequiredError}
@@ -661,16 +661,16 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
661
661
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
662
662
  },
663
663
  /**
664
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
664
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
665
665
  * @summary List claim partner roles
666
666
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
667
667
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
668
668
  * @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.
669
- * @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: name, productSlug</i>
669
+ * @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: name, productSlug</i>
670
670
  * @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: name, productSlug</i>
671
671
  * @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, name, productSlug, createdAt, updatedAt</i>
672
672
  * @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/>
673
- * @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: name, productSlug</i>
673
+ * @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: name, productSlug</i>
674
674
  * @param {*} [options] Override http request option.
675
675
  * @throws {RequiredError}
676
676
  */
@@ -679,16 +679,16 @@ export const ClaimPartnerRolesApiFp = function(configuration?: Configuration) {
679
679
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
680
680
  },
681
681
  /**
682
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
682
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
683
683
  * @summary List claim partner roles
684
684
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
685
685
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
686
686
  * @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.
687
- * @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: name, productSlug</i>
687
+ * @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: name, productSlug</i>
688
688
  * @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: name, productSlug</i>
689
689
  * @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, name, productSlug, createdAt, updatedAt</i>
690
690
  * @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/>
691
- * @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: name, productSlug</i>
691
+ * @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: name, productSlug</i>
692
692
  * @param {*} [options] Override http request option.
693
693
  * @deprecated
694
694
  * @throws {RequiredError}
@@ -804,16 +804,16 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
804
804
  return localVarFp.getClaimPartnerRole1(code, authorization, options).then((request) => request(axios, basePath));
805
805
  },
806
806
  /**
807
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
807
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
808
808
  * @summary List claim partner roles
809
809
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
810
810
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
811
811
  * @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.
812
- * @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: name, productSlug</i>
812
+ * @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: name, productSlug</i>
813
813
  * @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: name, productSlug</i>
814
814
  * @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, name, productSlug, createdAt, updatedAt</i>
815
815
  * @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/>
816
- * @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: name, productSlug</i>
816
+ * @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: name, productSlug</i>
817
817
  * @param {*} [options] Override http request option.
818
818
  * @throws {RequiredError}
819
819
  */
@@ -821,16 +821,16 @@ export const ClaimPartnerRolesApiFactory = function (configuration?: Configurati
821
821
  return localVarFp.listClaimPartnerRole(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
822
822
  },
823
823
  /**
824
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
824
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
825
825
  * @summary List claim partner roles
826
826
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
827
827
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
828
828
  * @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.
829
- * @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: name, productSlug</i>
829
+ * @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: name, productSlug</i>
830
830
  * @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: name, productSlug</i>
831
831
  * @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, name, productSlug, createdAt, updatedAt</i>
832
832
  * @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/>
833
- * @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: name, productSlug</i>
833
+ * @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: name, productSlug</i>
834
834
  * @param {*} [options] Override http request option.
835
835
  * @deprecated
836
836
  * @throws {RequiredError}
@@ -1020,7 +1020,7 @@ export interface ClaimPartnerRolesApiListClaimPartnerRoleRequest {
1020
1020
  readonly pageToken?: string
1021
1021
 
1022
1022
  /**
1023
- * 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: name, productSlug</i>
1023
+ * 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: name, productSlug</i>
1024
1024
  * @type {string}
1025
1025
  * @memberof ClaimPartnerRolesApiListClaimPartnerRole
1026
1026
  */
@@ -1048,7 +1048,7 @@ export interface ClaimPartnerRolesApiListClaimPartnerRoleRequest {
1048
1048
  readonly expand?: string
1049
1049
 
1050
1050
  /**
1051
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
1051
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
1052
1052
  * @type {string}
1053
1053
  * @memberof ClaimPartnerRolesApiListClaimPartnerRole
1054
1054
  */
@@ -1083,7 +1083,7 @@ export interface ClaimPartnerRolesApiListClaimPartnerRole1Request {
1083
1083
  readonly pageToken?: string
1084
1084
 
1085
1085
  /**
1086
- * 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: name, productSlug</i>
1086
+ * 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: name, productSlug</i>
1087
1087
  * @type {string}
1088
1088
  * @memberof ClaimPartnerRolesApiListClaimPartnerRole1
1089
1089
  */
@@ -1111,7 +1111,7 @@ export interface ClaimPartnerRolesApiListClaimPartnerRole1Request {
1111
1111
  readonly expand?: string
1112
1112
 
1113
1113
  /**
1114
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
1114
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
1115
1115
  * @type {string}
1116
1116
  * @memberof ClaimPartnerRolesApiListClaimPartnerRole1
1117
1117
  */
@@ -1257,7 +1257,7 @@ export class ClaimPartnerRolesApi extends BaseAPI {
1257
1257
  }
1258
1258
 
1259
1259
  /**
1260
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
1260
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
1261
1261
  * @summary List claim partner roles
1262
1262
  * @param {ClaimPartnerRolesApiListClaimPartnerRoleRequest} requestParameters Request parameters.
1263
1263
  * @param {*} [options] Override http request option.
@@ -1269,7 +1269,7 @@ export class ClaimPartnerRolesApi extends BaseAPI {
1269
1269
  }
1270
1270
 
1271
1271
  /**
1272
- * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1272
+ * Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
1273
1273
  * @summary List claim partner roles
1274
1274
  * @param {ClaimPartnerRolesApiListClaimPartnerRole1Request} requestParameters Request parameters.
1275
1275
  * @param {*} [options] Override http request option.