@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
@@ -12,6 +12,10 @@
12
12
  import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
13
  import { Configuration } from '../configuration';
14
14
  import { RequestArgs, BaseAPI } from '../base';
15
+ import { BatchUpsertClaimPositionsRequestDto } from '../models';
16
+ import { BatchUpsertClaimPositionsResponseClass } from '../models';
17
+ import { CalculateClaimPositionsRequestDto } from '../models';
18
+ import { CalculateClaimPositionsResponseClass } from '../models';
15
19
  import { CreateClaimPositionRequestDto } from '../models';
16
20
  import { CreateClaimPositionResponseClass } from '../models';
17
21
  import { GetClaimPositionResponseClass } from '../models';
@@ -23,6 +27,48 @@ import { UpdateClaimPositionResponseClass } from '../models';
23
27
  * @export
24
28
  */
25
29
  export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Configuration) => {
30
+ /**
31
+ * Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
32
+ * @summary Batch upsert claim positions
33
+ * @param {string} claimCode Unique identifier for the object.
34
+ * @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
35
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
36
+ * @param {*} [options] Override http request option.
37
+ * @throws {RequiredError}
38
+ */
39
+ batchUpsertClaimPositions: (claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
40
+ /**
41
+ * Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
42
+ * @summary Batch upsert claim positions
43
+ * @param {string} claimCode Unique identifier for the object.
44
+ * @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
45
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
46
+ * @param {*} [options] Override http request option.
47
+ * @deprecated
48
+ * @throws {RequiredError}
49
+ */
50
+ batchUpsertClaimPositions1: (claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
51
+ /**
52
+ * Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
53
+ * @summary Calculate claim positions
54
+ * @param {string} claimCode Unique identifier for the object.
55
+ * @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
56
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
57
+ * @param {*} [options] Override http request option.
58
+ * @throws {RequiredError}
59
+ */
60
+ calculateClaimPositions: (claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
61
+ /**
62
+ * Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
63
+ * @summary Calculate claim positions
64
+ * @param {string} claimCode Unique identifier for the object.
65
+ * @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
66
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
67
+ * @param {*} [options] Override http request option.
68
+ * @deprecated
69
+ * @throws {RequiredError}
70
+ */
71
+ calculateClaimPositions1: (claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
26
72
  /**
27
73
  * This will create claim position. **Required Permissions** \"claim-management.claims.create\"
28
74
  * @summary Create the claim position
@@ -88,11 +134,11 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
88
134
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
89
135
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
90
136
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
91
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
137
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
92
138
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
93
139
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
94
140
  * @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;
95
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
141
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
96
142
  * @param {*} [options] Override http request option.
97
143
  * @throws {RequiredError}
98
144
  */
@@ -103,11 +149,11 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
103
149
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
104
150
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
105
151
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
106
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
152
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
107
153
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
108
154
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
109
155
  * @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;
110
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
156
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
111
157
  * @param {*} [options] Override http request option.
112
158
  * @deprecated
113
159
  * @throws {RequiredError}
@@ -140,6 +186,48 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
140
186
  * @export
141
187
  */
142
188
  export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
189
+ /**
190
+ * Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
191
+ * @summary Batch upsert claim positions
192
+ * @param {string} claimCode Unique identifier for the object.
193
+ * @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
194
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
195
+ * @param {*} [options] Override http request option.
196
+ * @throws {RequiredError}
197
+ */
198
+ batchUpsertClaimPositions(claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BatchUpsertClaimPositionsResponseClass>>;
199
+ /**
200
+ * Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
201
+ * @summary Batch upsert claim positions
202
+ * @param {string} claimCode Unique identifier for the object.
203
+ * @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
204
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
205
+ * @param {*} [options] Override http request option.
206
+ * @deprecated
207
+ * @throws {RequiredError}
208
+ */
209
+ batchUpsertClaimPositions1(claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BatchUpsertClaimPositionsResponseClass>>;
210
+ /**
211
+ * Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
212
+ * @summary Calculate claim positions
213
+ * @param {string} claimCode Unique identifier for the object.
214
+ * @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
215
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
216
+ * @param {*} [options] Override http request option.
217
+ * @throws {RequiredError}
218
+ */
219
+ calculateClaimPositions(claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalculateClaimPositionsResponseClass>>;
220
+ /**
221
+ * Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
222
+ * @summary Calculate claim positions
223
+ * @param {string} claimCode Unique identifier for the object.
224
+ * @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
225
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
226
+ * @param {*} [options] Override http request option.
227
+ * @deprecated
228
+ * @throws {RequiredError}
229
+ */
230
+ calculateClaimPositions1(claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalculateClaimPositionsResponseClass>>;
143
231
  /**
144
232
  * This will create claim position. **Required Permissions** \"claim-management.claims.create\"
145
233
  * @summary Create the claim position
@@ -205,11 +293,11 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
205
293
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
206
294
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
207
295
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
208
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
296
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
209
297
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
210
298
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
211
299
  * @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;
212
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
300
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
213
301
  * @param {*} [options] Override http request option.
214
302
  * @throws {RequiredError}
215
303
  */
@@ -220,11 +308,11 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
220
308
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
221
309
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
222
310
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
223
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
311
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
224
312
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
225
313
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
226
314
  * @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;
227
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
315
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
228
316
  * @param {*} [options] Override http request option.
229
317
  * @deprecated
230
318
  * @throws {RequiredError}
@@ -257,6 +345,48 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
257
345
  * @export
258
346
  */
259
347
  export declare const ClaimPositionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
348
+ /**
349
+ * Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
350
+ * @summary Batch upsert claim positions
351
+ * @param {string} claimCode Unique identifier for the object.
352
+ * @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
353
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
354
+ * @param {*} [options] Override http request option.
355
+ * @throws {RequiredError}
356
+ */
357
+ batchUpsertClaimPositions(claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: any): AxiosPromise<BatchUpsertClaimPositionsResponseClass>;
358
+ /**
359
+ * Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
360
+ * @summary Batch upsert claim positions
361
+ * @param {string} claimCode Unique identifier for the object.
362
+ * @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
363
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
364
+ * @param {*} [options] Override http request option.
365
+ * @deprecated
366
+ * @throws {RequiredError}
367
+ */
368
+ batchUpsertClaimPositions1(claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: any): AxiosPromise<BatchUpsertClaimPositionsResponseClass>;
369
+ /**
370
+ * Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
371
+ * @summary Calculate claim positions
372
+ * @param {string} claimCode Unique identifier for the object.
373
+ * @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
374
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
375
+ * @param {*} [options] Override http request option.
376
+ * @throws {RequiredError}
377
+ */
378
+ calculateClaimPositions(claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: any): AxiosPromise<CalculateClaimPositionsResponseClass>;
379
+ /**
380
+ * Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
381
+ * @summary Calculate claim positions
382
+ * @param {string} claimCode Unique identifier for the object.
383
+ * @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
384
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
385
+ * @param {*} [options] Override http request option.
386
+ * @deprecated
387
+ * @throws {RequiredError}
388
+ */
389
+ calculateClaimPositions1(claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: any): AxiosPromise<CalculateClaimPositionsResponseClass>;
260
390
  /**
261
391
  * This will create claim position. **Required Permissions** \"claim-management.claims.create\"
262
392
  * @summary Create the claim position
@@ -322,11 +452,11 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
322
452
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
323
453
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
324
454
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
325
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
455
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
326
456
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
327
457
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
328
458
  * @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;
329
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
459
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
330
460
  * @param {*} [options] Override http request option.
331
461
  * @throws {RequiredError}
332
462
  */
@@ -337,11 +467,11 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
337
467
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
338
468
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
339
469
  * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
340
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
470
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
341
471
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
342
472
  * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, order, createdAt, updatedAt, procedureDate&lt;/i&gt;
343
473
  * @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;
344
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
474
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
345
475
  * @param {*} [options] Override http request option.
346
476
  * @deprecated
347
477
  * @throws {RequiredError}
@@ -369,6 +499,106 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
369
499
  */
370
500
  updateClaimPosition1(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPositionResponseClass>;
371
501
  };
502
+ /**
503
+ * Request parameters for batchUpsertClaimPositions operation in ClaimPositionsApi.
504
+ * @export
505
+ * @interface ClaimPositionsApiBatchUpsertClaimPositionsRequest
506
+ */
507
+ export interface ClaimPositionsApiBatchUpsertClaimPositionsRequest {
508
+ /**
509
+ * Unique identifier for the object.
510
+ * @type {string}
511
+ * @memberof ClaimPositionsApiBatchUpsertClaimPositions
512
+ */
513
+ readonly claimCode: string;
514
+ /**
515
+ *
516
+ * @type {BatchUpsertClaimPositionsRequestDto}
517
+ * @memberof ClaimPositionsApiBatchUpsertClaimPositions
518
+ */
519
+ readonly batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto;
520
+ /**
521
+ * Bearer Token: provided by the login endpoint under the name accessToken.
522
+ * @type {string}
523
+ * @memberof ClaimPositionsApiBatchUpsertClaimPositions
524
+ */
525
+ readonly authorization?: string;
526
+ }
527
+ /**
528
+ * Request parameters for batchUpsertClaimPositions1 operation in ClaimPositionsApi.
529
+ * @export
530
+ * @interface ClaimPositionsApiBatchUpsertClaimPositions1Request
531
+ */
532
+ export interface ClaimPositionsApiBatchUpsertClaimPositions1Request {
533
+ /**
534
+ * Unique identifier for the object.
535
+ * @type {string}
536
+ * @memberof ClaimPositionsApiBatchUpsertClaimPositions1
537
+ */
538
+ readonly claimCode: string;
539
+ /**
540
+ *
541
+ * @type {BatchUpsertClaimPositionsRequestDto}
542
+ * @memberof ClaimPositionsApiBatchUpsertClaimPositions1
543
+ */
544
+ readonly batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto;
545
+ /**
546
+ * Bearer Token: provided by the login endpoint under the name accessToken.
547
+ * @type {string}
548
+ * @memberof ClaimPositionsApiBatchUpsertClaimPositions1
549
+ */
550
+ readonly authorization?: string;
551
+ }
552
+ /**
553
+ * Request parameters for calculateClaimPositions operation in ClaimPositionsApi.
554
+ * @export
555
+ * @interface ClaimPositionsApiCalculateClaimPositionsRequest
556
+ */
557
+ export interface ClaimPositionsApiCalculateClaimPositionsRequest {
558
+ /**
559
+ * Unique identifier for the object.
560
+ * @type {string}
561
+ * @memberof ClaimPositionsApiCalculateClaimPositions
562
+ */
563
+ readonly claimCode: string;
564
+ /**
565
+ *
566
+ * @type {CalculateClaimPositionsRequestDto}
567
+ * @memberof ClaimPositionsApiCalculateClaimPositions
568
+ */
569
+ readonly calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto;
570
+ /**
571
+ * Bearer Token: provided by the login endpoint under the name accessToken.
572
+ * @type {string}
573
+ * @memberof ClaimPositionsApiCalculateClaimPositions
574
+ */
575
+ readonly authorization?: string;
576
+ }
577
+ /**
578
+ * Request parameters for calculateClaimPositions1 operation in ClaimPositionsApi.
579
+ * @export
580
+ * @interface ClaimPositionsApiCalculateClaimPositions1Request
581
+ */
582
+ export interface ClaimPositionsApiCalculateClaimPositions1Request {
583
+ /**
584
+ * Unique identifier for the object.
585
+ * @type {string}
586
+ * @memberof ClaimPositionsApiCalculateClaimPositions1
587
+ */
588
+ readonly claimCode: string;
589
+ /**
590
+ *
591
+ * @type {CalculateClaimPositionsRequestDto}
592
+ * @memberof ClaimPositionsApiCalculateClaimPositions1
593
+ */
594
+ readonly calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto;
595
+ /**
596
+ * Bearer Token: provided by the login endpoint under the name accessToken.
597
+ * @type {string}
598
+ * @memberof ClaimPositionsApiCalculateClaimPositions1
599
+ */
600
+ readonly authorization?: string;
601
+ }
372
602
  /**
373
603
  * Request parameters for createClaimPosition operation in ClaimPositionsApi.
374
604
  * @export
@@ -520,7 +750,7 @@ export interface ClaimPositionsApiListClaimPositionsRequest {
520
750
  */
521
751
  readonly pageToken?: string;
522
752
  /**
523
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
753
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
524
754
  * @type {string}
525
755
  * @memberof ClaimPositionsApiListClaimPositions
526
756
  */
@@ -544,7 +774,7 @@ export interface ClaimPositionsApiListClaimPositionsRequest {
544
774
  */
545
775
  readonly expand?: string;
546
776
  /**
547
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
777
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
548
778
  * @type {string}
549
779
  * @memberof ClaimPositionsApiListClaimPositions
550
780
  */
@@ -575,7 +805,7 @@ export interface ClaimPositionsApiListClaimPositions1Request {
575
805
  */
576
806
  readonly pageToken?: string;
577
807
  /**
578
- * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
808
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
579
809
  * @type {string}
580
810
  * @memberof ClaimPositionsApiListClaimPositions1
581
811
  */
@@ -599,7 +829,7 @@ export interface ClaimPositionsApiListClaimPositions1Request {
599
829
  */
600
830
  readonly expand?: string;
601
831
  /**
602
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
832
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, claimCode, positionNumber, category, status, createdAt, updatedAt&lt;/i&gt;
603
833
  * @type {string}
604
834
  * @memberof ClaimPositionsApiListClaimPositions1
605
835
  */
@@ -662,6 +892,44 @@ export interface ClaimPositionsApiUpdateClaimPosition1Request {
662
892
  * @extends {BaseAPI}
663
893
  */
664
894
  export declare class ClaimPositionsApi extends BaseAPI {
895
+ /**
896
+ * Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
897
+ * @summary Batch upsert claim positions
898
+ * @param {ClaimPositionsApiBatchUpsertClaimPositionsRequest} requestParameters Request parameters.
899
+ * @param {*} [options] Override http request option.
900
+ * @throws {RequiredError}
901
+ * @memberof ClaimPositionsApi
902
+ */
903
+ batchUpsertClaimPositions(requestParameters: ClaimPositionsApiBatchUpsertClaimPositionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchUpsertClaimPositionsResponseClass, any, {}>>;
904
+ /**
905
+ * Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
906
+ * @summary Batch upsert claim positions
907
+ * @param {ClaimPositionsApiBatchUpsertClaimPositions1Request} requestParameters Request parameters.
908
+ * @param {*} [options] Override http request option.
909
+ * @deprecated
910
+ * @throws {RequiredError}
911
+ * @memberof ClaimPositionsApi
912
+ */
913
+ batchUpsertClaimPositions1(requestParameters: ClaimPositionsApiBatchUpsertClaimPositions1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchUpsertClaimPositionsResponseClass, any, {}>>;
914
+ /**
915
+ * Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
916
+ * @summary Calculate claim positions
917
+ * @param {ClaimPositionsApiCalculateClaimPositionsRequest} requestParameters Request parameters.
918
+ * @param {*} [options] Override http request option.
919
+ * @throws {RequiredError}
920
+ * @memberof ClaimPositionsApi
921
+ */
922
+ calculateClaimPositions(requestParameters: ClaimPositionsApiCalculateClaimPositionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalculateClaimPositionsResponseClass, any, {}>>;
923
+ /**
924
+ * Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
925
+ * @summary Calculate claim positions
926
+ * @param {ClaimPositionsApiCalculateClaimPositions1Request} requestParameters Request parameters.
927
+ * @param {*} [options] Override http request option.
928
+ * @deprecated
929
+ * @throws {RequiredError}
930
+ * @memberof ClaimPositionsApi
931
+ */
932
+ calculateClaimPositions1(requestParameters: ClaimPositionsApiCalculateClaimPositions1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalculateClaimPositionsResponseClass, any, {}>>;
665
933
  /**
666
934
  * This will create claim position. **Required Permissions** \"claim-management.claims.create\"
667
935
  * @summary Create the claim position