@emilgroup/claim-sdk-node 1.40.1-beta.4 → 1.41.1-beta.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 (49) hide show
  1. package/README.md +2 -2
  2. package/api/claim-limit-usages-api.ts +45 -53
  3. package/api/claim-partner-roles-api.ts +107 -127
  4. package/api/claim-partners-api.ts +87 -103
  5. package/api/claim-positions-api.ts +153 -181
  6. package/api/claim-regulations-api.ts +108 -128
  7. package/api/claim-statuses-api.ts +129 -153
  8. package/api/claims-api.ts +149 -177
  9. package/api/health-check-api.ts +137 -17
  10. package/api/settlements-api.ts +107 -127
  11. package/dist/api/claim-limit-usages-api.d.ts +34 -42
  12. package/dist/api/claim-limit-usages-api.js +29 -37
  13. package/dist/api/claim-partner-roles-api.d.ts +77 -97
  14. package/dist/api/claim-partner-roles-api.js +75 -95
  15. package/dist/api/claim-partners-api.d.ts +63 -79
  16. package/dist/api/claim-partners-api.js +60 -76
  17. package/dist/api/claim-positions-api.d.ts +108 -136
  18. package/dist/api/claim-positions-api.js +108 -136
  19. package/dist/api/claim-regulations-api.d.ts +78 -98
  20. package/dist/api/claim-regulations-api.js +75 -95
  21. package/dist/api/claim-statuses-api.d.ts +92 -116
  22. package/dist/api/claim-statuses-api.js +91 -115
  23. package/dist/api/claims-api.d.ts +106 -134
  24. package/dist/api/claims-api.js +106 -134
  25. package/dist/api/health-check-api.d.ts +66 -12
  26. package/dist/api/health-check-api.js +151 -17
  27. package/dist/api/settlements-api.d.ts +77 -97
  28. package/dist/api/settlements-api.js +75 -95
  29. package/dist/models/calculation-step-result-class.d.ts +3 -3
  30. package/dist/models/list-claim-limit-usages-response-class.d.ts +6 -6
  31. package/dist/models/list-claim-partner-roles-response-class.d.ts +6 -6
  32. package/dist/models/list-claim-partners-response-class.d.ts +6 -6
  33. package/dist/models/list-claim-positions-response-class.d.ts +6 -6
  34. package/dist/models/list-claim-statuses-response-class.d.ts +6 -6
  35. package/dist/models/list-claims-response-class.d.ts +6 -6
  36. package/dist/models/list-regulations-response-class.d.ts +6 -6
  37. package/dist/models/list-settlements-response-class.d.ts +18 -6
  38. package/dist/models/payout-details-class.d.ts +4 -2
  39. package/models/calculation-step-result-class.ts +3 -3
  40. package/models/list-claim-limit-usages-response-class.ts +6 -6
  41. package/models/list-claim-partner-roles-response-class.ts +6 -6
  42. package/models/list-claim-partners-response-class.ts +6 -6
  43. package/models/list-claim-positions-response-class.ts +6 -6
  44. package/models/list-claim-statuses-response-class.ts +6 -6
  45. package/models/list-claims-response-class.ts +6 -6
  46. package/models/list-regulations-response-class.ts +6 -6
  47. package/models/list-settlements-response-class.ts +18 -6
  48. package/models/payout-details-class.ts +2 -2
  49. package/package.json +1 -1
@@ -34,14 +34,13 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
34
34
  * @param {*} [options] Override http request option.
35
35
  * @throws {RequiredError}
36
36
  */
37
- createClaim: (createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
37
+ createClaim0: (createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
38
38
  /**
39
- * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
39
+ * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
40
40
  * @summary Create the claim
41
41
  * @param {CreateClaimRequestDto} createClaimRequestDto
42
42
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
43
43
  * @param {*} [options] Override http request option.
44
- * @deprecated
45
44
  * @throws {RequiredError}
46
45
  */
47
46
  createClaim1: (createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -53,14 +52,13 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
53
52
  * @param {*} [options] Override http request option.
54
53
  * @throws {RequiredError}
55
54
  */
56
- deleteClaim: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
55
+ deleteClaim0: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
57
56
  /**
58
- * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
57
+ * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
59
58
  * @summary Delete the claim
60
59
  * @param {string} code
61
60
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
62
61
  * @param {*} [options] Override http request option.
63
- * @deprecated
64
62
  * @throws {RequiredError}
65
63
  */
66
64
  deleteClaim1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -72,14 +70,13 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
72
70
  * @param {*} [options] Override http request option.
73
71
  * @throws {RequiredError}
74
72
  */
75
- getClaim: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
73
+ getClaim0: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
76
74
  /**
77
- * This will fetch the identified claim from the database by code **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.
75
+ * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
78
76
  * @summary Retrieve the claim
79
77
  * @param {string} code
80
78
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
81
79
  * @param {*} [options] Override http request option.
82
- * @deprecated
83
80
  * @throws {RequiredError}
84
81
  */
85
82
  getClaim1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -91,14 +88,13 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
91
88
  * @param {*} [options] Override http request option.
92
89
  * @throws {RequiredError}
93
90
  */
94
- getClaimRegulationSummary: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
91
+ getClaimRegulationSummary0: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
95
92
  /**
96
- * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
93
+ * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
97
94
  * @summary Retrieve the claim regulation summary
98
95
  * @param {string} code Unique identifier for the object.
99
96
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
100
97
  * @param {*} [options] Override http request option.
101
- * @deprecated
102
98
  * @throws {RequiredError}
103
99
  */
104
100
  getClaimRegulationSummary1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -116,9 +112,9 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
116
112
  * @param {*} [options] Override http request option.
117
113
  * @throws {RequiredError}
118
114
  */
119
- listClaims: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
115
+ listClaims0: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
120
116
  /**
121
- * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
117
+ * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
122
118
  * @summary List claims
123
119
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
124
120
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -129,7 +125,6 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
129
125
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partners, appliedDeductibles&lt;i&gt;
130
126
  * @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType&lt;/i&gt;
131
127
  * @param {*} [options] Override http request option.
132
- * @deprecated
133
128
  * @throws {RequiredError}
134
129
  */
135
130
  listClaims1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -142,15 +137,14 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
142
137
  * @param {*} [options] Override http request option.
143
138
  * @throws {RequiredError}
144
139
  */
145
- patchClaim: (code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
140
+ patchClaim0: (code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
146
141
  /**
147
- * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **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.
142
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
148
143
  * @summary Patch the claim
149
144
  * @param {string} code
150
145
  * @param {PatchClaimRequestDto} patchClaimRequestDto
151
146
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
152
147
  * @param {*} [options] Override http request option.
153
- * @deprecated
154
148
  * @throws {RequiredError}
155
149
  */
156
150
  patchClaim1: (code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -163,15 +157,14 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
163
157
  * @param {*} [options] Override http request option.
164
158
  * @throws {RequiredError}
165
159
  */
166
- updateClaim: (code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
160
+ updateClaim0: (code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
167
161
  /**
168
- * This will update the identified claim in the database **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.
162
+ * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
169
163
  * @summary Update the claim
170
164
  * @param {string} code
171
165
  * @param {UpdateClaimRequestDto} updateClaimRequestDto
172
166
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
173
167
  * @param {*} [options] Override http request option.
174
- * @deprecated
175
168
  * @throws {RequiredError}
176
169
  */
177
170
  updateClaim1: (code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -189,14 +182,13 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
189
182
  * @param {*} [options] Override http request option.
190
183
  * @throws {RequiredError}
191
184
  */
192
- createClaim(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimResponseClass>>;
185
+ createClaim0(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimResponseClass>>;
193
186
  /**
194
- * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
187
+ * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
195
188
  * @summary Create the claim
196
189
  * @param {CreateClaimRequestDto} createClaimRequestDto
197
190
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
198
191
  * @param {*} [options] Override http request option.
199
- * @deprecated
200
192
  * @throws {RequiredError}
201
193
  */
202
194
  createClaim1(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimResponseClass>>;
@@ -208,14 +200,13 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
208
200
  * @param {*} [options] Override http request option.
209
201
  * @throws {RequiredError}
210
202
  */
211
- deleteClaim(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
203
+ deleteClaim0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
212
204
  /**
213
- * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
205
+ * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
214
206
  * @summary Delete the claim
215
207
  * @param {string} code
216
208
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
217
209
  * @param {*} [options] Override http request option.
218
- * @deprecated
219
210
  * @throws {RequiredError}
220
211
  */
221
212
  deleteClaim1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
@@ -227,14 +218,13 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
227
218
  * @param {*} [options] Override http request option.
228
219
  * @throws {RequiredError}
229
220
  */
230
- getClaim(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimResponseClass>>;
221
+ getClaim0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimResponseClass>>;
231
222
  /**
232
- * This will fetch the identified claim from the database by code **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.
223
+ * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
233
224
  * @summary Retrieve the claim
234
225
  * @param {string} code
235
226
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
236
227
  * @param {*} [options] Override http request option.
237
- * @deprecated
238
228
  * @throws {RequiredError}
239
229
  */
240
230
  getClaim1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimResponseClass>>;
@@ -246,14 +236,13 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
246
236
  * @param {*} [options] Override http request option.
247
237
  * @throws {RequiredError}
248
238
  */
249
- getClaimRegulationSummary(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationSummaryResponseClass>>;
239
+ getClaimRegulationSummary0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationSummaryResponseClass>>;
250
240
  /**
251
- * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
241
+ * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
252
242
  * @summary Retrieve the claim regulation summary
253
243
  * @param {string} code Unique identifier for the object.
254
244
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
255
245
  * @param {*} [options] Override http request option.
256
- * @deprecated
257
246
  * @throws {RequiredError}
258
247
  */
259
248
  getClaimRegulationSummary1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationSummaryResponseClass>>;
@@ -271,9 +260,9 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
271
260
  * @param {*} [options] Override http request option.
272
261
  * @throws {RequiredError}
273
262
  */
274
- listClaims(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimsResponseClass>>;
263
+ listClaims0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimsResponseClass>>;
275
264
  /**
276
- * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
265
+ * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
277
266
  * @summary List claims
278
267
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
279
268
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -284,7 +273,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
284
273
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partners, appliedDeductibles&lt;i&gt;
285
274
  * @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType&lt;/i&gt;
286
275
  * @param {*} [options] Override http request option.
287
- * @deprecated
288
276
  * @throws {RequiredError}
289
277
  */
290
278
  listClaims1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimsResponseClass>>;
@@ -297,15 +285,14 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
297
285
  * @param {*} [options] Override http request option.
298
286
  * @throws {RequiredError}
299
287
  */
300
- patchClaim(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimResponseClass>>;
288
+ patchClaim0(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimResponseClass>>;
301
289
  /**
302
- * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **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.
290
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
303
291
  * @summary Patch the claim
304
292
  * @param {string} code
305
293
  * @param {PatchClaimRequestDto} patchClaimRequestDto
306
294
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
307
295
  * @param {*} [options] Override http request option.
308
- * @deprecated
309
296
  * @throws {RequiredError}
310
297
  */
311
298
  patchClaim1(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimResponseClass>>;
@@ -318,15 +305,14 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
318
305
  * @param {*} [options] Override http request option.
319
306
  * @throws {RequiredError}
320
307
  */
321
- updateClaim(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimResponseClass>>;
308
+ updateClaim0(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimResponseClass>>;
322
309
  /**
323
- * This will update the identified claim in the database **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.
310
+ * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
324
311
  * @summary Update the claim
325
312
  * @param {string} code
326
313
  * @param {UpdateClaimRequestDto} updateClaimRequestDto
327
314
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
328
315
  * @param {*} [options] Override http request option.
329
- * @deprecated
330
316
  * @throws {RequiredError}
331
317
  */
332
318
  updateClaim1(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimResponseClass>>;
@@ -344,14 +330,13 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
344
330
  * @param {*} [options] Override http request option.
345
331
  * @throws {RequiredError}
346
332
  */
347
- createClaim(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimResponseClass>;
333
+ createClaim0(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimResponseClass>;
348
334
  /**
349
- * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
335
+ * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
350
336
  * @summary Create the claim
351
337
  * @param {CreateClaimRequestDto} createClaimRequestDto
352
338
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
353
339
  * @param {*} [options] Override http request option.
354
- * @deprecated
355
340
  * @throws {RequiredError}
356
341
  */
357
342
  createClaim1(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimResponseClass>;
@@ -363,14 +348,13 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
363
348
  * @param {*} [options] Override http request option.
364
349
  * @throws {RequiredError}
365
350
  */
366
- deleteClaim(code: string, authorization?: string, options?: any): AxiosPromise<void>;
351
+ deleteClaim0(code: string, authorization?: string, options?: any): AxiosPromise<void>;
367
352
  /**
368
- * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
353
+ * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
369
354
  * @summary Delete the claim
370
355
  * @param {string} code
371
356
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
372
357
  * @param {*} [options] Override http request option.
373
- * @deprecated
374
358
  * @throws {RequiredError}
375
359
  */
376
360
  deleteClaim1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
@@ -382,14 +366,13 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
382
366
  * @param {*} [options] Override http request option.
383
367
  * @throws {RequiredError}
384
368
  */
385
- getClaim(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimResponseClass>;
369
+ getClaim0(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimResponseClass>;
386
370
  /**
387
- * This will fetch the identified claim from the database by code **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.
371
+ * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
388
372
  * @summary Retrieve the claim
389
373
  * @param {string} code
390
374
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
391
375
  * @param {*} [options] Override http request option.
392
- * @deprecated
393
376
  * @throws {RequiredError}
394
377
  */
395
378
  getClaim1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimResponseClass>;
@@ -401,14 +384,13 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
401
384
  * @param {*} [options] Override http request option.
402
385
  * @throws {RequiredError}
403
386
  */
404
- getClaimRegulationSummary(code: string, authorization?: string, options?: any): AxiosPromise<RegulationSummaryResponseClass>;
387
+ getClaimRegulationSummary0(code: string, authorization?: string, options?: any): AxiosPromise<RegulationSummaryResponseClass>;
405
388
  /**
406
- * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
389
+ * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
407
390
  * @summary Retrieve the claim regulation summary
408
391
  * @param {string} code Unique identifier for the object.
409
392
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
410
393
  * @param {*} [options] Override http request option.
411
- * @deprecated
412
394
  * @throws {RequiredError}
413
395
  */
414
396
  getClaimRegulationSummary1(code: string, authorization?: string, options?: any): AxiosPromise<RegulationSummaryResponseClass>;
@@ -426,9 +408,9 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
426
408
  * @param {*} [options] Override http request option.
427
409
  * @throws {RequiredError}
428
410
  */
429
- listClaims(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimsResponseClass>;
411
+ listClaims0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimsResponseClass>;
430
412
  /**
431
- * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
413
+ * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
432
414
  * @summary List claims
433
415
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
434
416
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -439,7 +421,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
439
421
  * @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partners, appliedDeductibles&lt;i&gt;
440
422
  * @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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType&lt;/i&gt;
441
423
  * @param {*} [options] Override http request option.
442
- * @deprecated
443
424
  * @throws {RequiredError}
444
425
  */
445
426
  listClaims1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimsResponseClass>;
@@ -452,15 +433,14 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
452
433
  * @param {*} [options] Override http request option.
453
434
  * @throws {RequiredError}
454
435
  */
455
- patchClaim(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimResponseClass>;
436
+ patchClaim0(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimResponseClass>;
456
437
  /**
457
- * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **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.
438
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
458
439
  * @summary Patch the claim
459
440
  * @param {string} code
460
441
  * @param {PatchClaimRequestDto} patchClaimRequestDto
461
442
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
462
443
  * @param {*} [options] Override http request option.
463
- * @deprecated
464
444
  * @throws {RequiredError}
465
445
  */
466
446
  patchClaim1(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimResponseClass>;
@@ -473,35 +453,34 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
473
453
  * @param {*} [options] Override http request option.
474
454
  * @throws {RequiredError}
475
455
  */
476
- updateClaim(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimResponseClass>;
456
+ updateClaim0(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimResponseClass>;
477
457
  /**
478
- * This will update the identified claim in the database **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.
458
+ * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
479
459
  * @summary Update the claim
480
460
  * @param {string} code
481
461
  * @param {UpdateClaimRequestDto} updateClaimRequestDto
482
462
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
483
463
  * @param {*} [options] Override http request option.
484
- * @deprecated
485
464
  * @throws {RequiredError}
486
465
  */
487
466
  updateClaim1(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimResponseClass>;
488
467
  };
489
468
  /**
490
- * Request parameters for createClaim operation in ClaimsApi.
469
+ * Request parameters for createClaim0 operation in ClaimsApi.
491
470
  * @export
492
- * @interface ClaimsApiCreateClaimRequest
471
+ * @interface ClaimsApiCreateClaim0Request
493
472
  */
494
- export interface ClaimsApiCreateClaimRequest {
473
+ export interface ClaimsApiCreateClaim0Request {
495
474
  /**
496
475
  *
497
476
  * @type {CreateClaimRequestDto}
498
- * @memberof ClaimsApiCreateClaim
477
+ * @memberof ClaimsApiCreateClaim0
499
478
  */
500
479
  readonly createClaimRequestDto: CreateClaimRequestDto;
501
480
  /**
502
481
  * Bearer Token: provided by the login endpoint under the name accessToken.
503
482
  * @type {string}
504
- * @memberof ClaimsApiCreateClaim
483
+ * @memberof ClaimsApiCreateClaim0
505
484
  */
506
485
  readonly authorization?: string;
507
486
  }
@@ -525,21 +504,21 @@ export interface ClaimsApiCreateClaim1Request {
525
504
  readonly authorization?: string;
526
505
  }
527
506
  /**
528
- * Request parameters for deleteClaim operation in ClaimsApi.
507
+ * Request parameters for deleteClaim0 operation in ClaimsApi.
529
508
  * @export
530
- * @interface ClaimsApiDeleteClaimRequest
509
+ * @interface ClaimsApiDeleteClaim0Request
531
510
  */
532
- export interface ClaimsApiDeleteClaimRequest {
511
+ export interface ClaimsApiDeleteClaim0Request {
533
512
  /**
534
513
  *
535
514
  * @type {string}
536
- * @memberof ClaimsApiDeleteClaim
515
+ * @memberof ClaimsApiDeleteClaim0
537
516
  */
538
517
  readonly code: string;
539
518
  /**
540
519
  * Bearer Token: provided by the login endpoint under the name accessToken.
541
520
  * @type {string}
542
- * @memberof ClaimsApiDeleteClaim
521
+ * @memberof ClaimsApiDeleteClaim0
543
522
  */
544
523
  readonly authorization?: string;
545
524
  }
@@ -563,21 +542,21 @@ export interface ClaimsApiDeleteClaim1Request {
563
542
  readonly authorization?: string;
564
543
  }
565
544
  /**
566
- * Request parameters for getClaim operation in ClaimsApi.
545
+ * Request parameters for getClaim0 operation in ClaimsApi.
567
546
  * @export
568
- * @interface ClaimsApiGetClaimRequest
547
+ * @interface ClaimsApiGetClaim0Request
569
548
  */
570
- export interface ClaimsApiGetClaimRequest {
549
+ export interface ClaimsApiGetClaim0Request {
571
550
  /**
572
551
  *
573
552
  * @type {string}
574
- * @memberof ClaimsApiGetClaim
553
+ * @memberof ClaimsApiGetClaim0
575
554
  */
576
555
  readonly code: string;
577
556
  /**
578
557
  * Bearer Token: provided by the login endpoint under the name accessToken.
579
558
  * @type {string}
580
- * @memberof ClaimsApiGetClaim
559
+ * @memberof ClaimsApiGetClaim0
581
560
  */
582
561
  readonly authorization?: string;
583
562
  }
@@ -601,21 +580,21 @@ export interface ClaimsApiGetClaim1Request {
601
580
  readonly authorization?: string;
602
581
  }
603
582
  /**
604
- * Request parameters for getClaimRegulationSummary operation in ClaimsApi.
583
+ * Request parameters for getClaimRegulationSummary0 operation in ClaimsApi.
605
584
  * @export
606
- * @interface ClaimsApiGetClaimRegulationSummaryRequest
585
+ * @interface ClaimsApiGetClaimRegulationSummary0Request
607
586
  */
608
- export interface ClaimsApiGetClaimRegulationSummaryRequest {
587
+ export interface ClaimsApiGetClaimRegulationSummary0Request {
609
588
  /**
610
589
  * Unique identifier for the object.
611
590
  * @type {string}
612
- * @memberof ClaimsApiGetClaimRegulationSummary
591
+ * @memberof ClaimsApiGetClaimRegulationSummary0
613
592
  */
614
593
  readonly code: string;
615
594
  /**
616
595
  * Bearer Token: provided by the login endpoint under the name accessToken.
617
596
  * @type {string}
618
- * @memberof ClaimsApiGetClaimRegulationSummary
597
+ * @memberof ClaimsApiGetClaimRegulationSummary0
619
598
  */
620
599
  readonly authorization?: string;
621
600
  }
@@ -639,57 +618,57 @@ export interface ClaimsApiGetClaimRegulationSummary1Request {
639
618
  readonly authorization?: string;
640
619
  }
641
620
  /**
642
- * Request parameters for listClaims operation in ClaimsApi.
621
+ * Request parameters for listClaims0 operation in ClaimsApi.
643
622
  * @export
644
- * @interface ClaimsApiListClaimsRequest
623
+ * @interface ClaimsApiListClaims0Request
645
624
  */
646
- export interface ClaimsApiListClaimsRequest {
625
+ export interface ClaimsApiListClaims0Request {
647
626
  /**
648
627
  * Bearer Token: provided by the login endpoint under the name accessToken.
649
628
  * @type {string}
650
- * @memberof ClaimsApiListClaims
629
+ * @memberof ClaimsApiListClaims0
651
630
  */
652
631
  readonly authorization?: string;
653
632
  /**
654
633
  * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
655
634
  * @type {number}
656
- * @memberof ClaimsApiListClaims
635
+ * @memberof ClaimsApiListClaims0
657
636
  */
658
637
  readonly pageSize?: number;
659
638
  /**
660
639
  * 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.
661
640
  * @type {string}
662
- * @memberof ClaimsApiListClaims
641
+ * @memberof ClaimsApiListClaims0
663
642
  */
664
643
  readonly pageToken?: string;
665
644
  /**
666
645
  * 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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType&lt;/i&gt;
667
646
  * @type {string}
668
- * @memberof ClaimsApiListClaims
647
+ * @memberof ClaimsApiListClaims0
669
648
  */
670
649
  readonly filter?: string;
671
650
  /**
672
651
  * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status, reporter, adjuster, claimType&lt;/i&gt;
673
652
  * @type {string}
674
- * @memberof ClaimsApiListClaims
653
+ * @memberof ClaimsApiListClaims0
675
654
  */
676
655
  readonly search?: string;
677
656
  /**
678
657
  * 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, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt, reporter, adjuster, claimType, initialCost, reimbursementAmount&lt;/i&gt;
679
658
  * @type {string}
680
- * @memberof ClaimsApiListClaims
659
+ * @memberof ClaimsApiListClaims0
681
660
  */
682
661
  readonly order?: string;
683
662
  /**
684
663
  * Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: partners, appliedDeductibles&lt;i&gt;
685
664
  * @type {string}
686
- * @memberof ClaimsApiListClaims
665
+ * @memberof ClaimsApiListClaims0
687
666
  */
688
667
  readonly expand?: string;
689
668
  /**
690
669
  * 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, policyNumber, productId, accountCode, insuredObjectId, policyCode, adjuster, adjusterCode, damageDate, notificationDate, status, claimType&lt;/i&gt;
691
670
  * @type {string}
692
- * @memberof ClaimsApiListClaims
671
+ * @memberof ClaimsApiListClaims0
693
672
  */
694
673
  readonly filters?: string;
695
674
  }
@@ -749,27 +728,27 @@ export interface ClaimsApiListClaims1Request {
749
728
  readonly filters?: string;
750
729
  }
751
730
  /**
752
- * Request parameters for patchClaim operation in ClaimsApi.
731
+ * Request parameters for patchClaim0 operation in ClaimsApi.
753
732
  * @export
754
- * @interface ClaimsApiPatchClaimRequest
733
+ * @interface ClaimsApiPatchClaim0Request
755
734
  */
756
- export interface ClaimsApiPatchClaimRequest {
735
+ export interface ClaimsApiPatchClaim0Request {
757
736
  /**
758
737
  *
759
738
  * @type {string}
760
- * @memberof ClaimsApiPatchClaim
739
+ * @memberof ClaimsApiPatchClaim0
761
740
  */
762
741
  readonly code: string;
763
742
  /**
764
743
  *
765
744
  * @type {PatchClaimRequestDto}
766
- * @memberof ClaimsApiPatchClaim
745
+ * @memberof ClaimsApiPatchClaim0
767
746
  */
768
747
  readonly patchClaimRequestDto: PatchClaimRequestDto;
769
748
  /**
770
749
  * Bearer Token: provided by the login endpoint under the name accessToken.
771
750
  * @type {string}
772
- * @memberof ClaimsApiPatchClaim
751
+ * @memberof ClaimsApiPatchClaim0
773
752
  */
774
753
  readonly authorization?: string;
775
754
  }
@@ -799,27 +778,27 @@ export interface ClaimsApiPatchClaim1Request {
799
778
  readonly authorization?: string;
800
779
  }
801
780
  /**
802
- * Request parameters for updateClaim operation in ClaimsApi.
781
+ * Request parameters for updateClaim0 operation in ClaimsApi.
803
782
  * @export
804
- * @interface ClaimsApiUpdateClaimRequest
783
+ * @interface ClaimsApiUpdateClaim0Request
805
784
  */
806
- export interface ClaimsApiUpdateClaimRequest {
785
+ export interface ClaimsApiUpdateClaim0Request {
807
786
  /**
808
787
  *
809
788
  * @type {string}
810
- * @memberof ClaimsApiUpdateClaim
789
+ * @memberof ClaimsApiUpdateClaim0
811
790
  */
812
791
  readonly code: string;
813
792
  /**
814
793
  *
815
794
  * @type {UpdateClaimRequestDto}
816
- * @memberof ClaimsApiUpdateClaim
795
+ * @memberof ClaimsApiUpdateClaim0
817
796
  */
818
797
  readonly updateClaimRequestDto: UpdateClaimRequestDto;
819
798
  /**
820
799
  * Bearer Token: provided by the login endpoint under the name accessToken.
821
800
  * @type {string}
822
- * @memberof ClaimsApiUpdateClaim
801
+ * @memberof ClaimsApiUpdateClaim0
823
802
  */
824
803
  readonly authorization?: string;
825
804
  }
@@ -858,18 +837,17 @@ export declare class ClaimsApi extends BaseAPI {
858
837
  /**
859
838
  * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
860
839
  * @summary Create the claim
861
- * @param {ClaimsApiCreateClaimRequest} requestParameters Request parameters.
840
+ * @param {ClaimsApiCreateClaim0Request} requestParameters Request parameters.
862
841
  * @param {*} [options] Override http request option.
863
842
  * @throws {RequiredError}
864
843
  * @memberof ClaimsApi
865
844
  */
866
- createClaim(requestParameters: ClaimsApiCreateClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimResponseClass, any, {}>>;
845
+ createClaim0(requestParameters: ClaimsApiCreateClaim0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimResponseClass, any, {}>>;
867
846
  /**
868
- * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
847
+ * This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
869
848
  * @summary Create the claim
870
849
  * @param {ClaimsApiCreateClaim1Request} requestParameters Request parameters.
871
850
  * @param {*} [options] Override http request option.
872
- * @deprecated
873
851
  * @throws {RequiredError}
874
852
  * @memberof ClaimsApi
875
853
  */
@@ -877,18 +855,17 @@ export declare class ClaimsApi extends BaseAPI {
877
855
  /**
878
856
  * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
879
857
  * @summary Delete the claim
880
- * @param {ClaimsApiDeleteClaimRequest} requestParameters Request parameters.
858
+ * @param {ClaimsApiDeleteClaim0Request} requestParameters Request parameters.
881
859
  * @param {*} [options] Override http request option.
882
860
  * @throws {RequiredError}
883
861
  * @memberof ClaimsApi
884
862
  */
885
- deleteClaim(requestParameters: ClaimsApiDeleteClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
863
+ deleteClaim0(requestParameters: ClaimsApiDeleteClaim0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
886
864
  /**
887
- * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
865
+ * This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
888
866
  * @summary Delete the claim
889
867
  * @param {ClaimsApiDeleteClaim1Request} requestParameters Request parameters.
890
868
  * @param {*} [options] Override http request option.
891
- * @deprecated
892
869
  * @throws {RequiredError}
893
870
  * @memberof ClaimsApi
894
871
  */
@@ -896,18 +873,17 @@ export declare class ClaimsApi extends BaseAPI {
896
873
  /**
897
874
  * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
898
875
  * @summary Retrieve the claim
899
- * @param {ClaimsApiGetClaimRequest} requestParameters Request parameters.
876
+ * @param {ClaimsApiGetClaim0Request} requestParameters Request parameters.
900
877
  * @param {*} [options] Override http request option.
901
878
  * @throws {RequiredError}
902
879
  * @memberof ClaimsApi
903
880
  */
904
- getClaim(requestParameters: ClaimsApiGetClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimResponseClass, any, {}>>;
881
+ getClaim0(requestParameters: ClaimsApiGetClaim0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimResponseClass, any, {}>>;
905
882
  /**
906
- * This will fetch the identified claim from the database by code **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.
883
+ * This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
907
884
  * @summary Retrieve the claim
908
885
  * @param {ClaimsApiGetClaim1Request} requestParameters Request parameters.
909
886
  * @param {*} [options] Override http request option.
910
- * @deprecated
911
887
  * @throws {RequiredError}
912
888
  * @memberof ClaimsApi
913
889
  */
@@ -915,18 +891,17 @@ export declare class ClaimsApi extends BaseAPI {
915
891
  /**
916
892
  * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
917
893
  * @summary Retrieve the claim regulation summary
918
- * @param {ClaimsApiGetClaimRegulationSummaryRequest} requestParameters Request parameters.
894
+ * @param {ClaimsApiGetClaimRegulationSummary0Request} requestParameters Request parameters.
919
895
  * @param {*} [options] Override http request option.
920
896
  * @throws {RequiredError}
921
897
  * @memberof ClaimsApi
922
898
  */
923
- getClaimRegulationSummary(requestParameters: ClaimsApiGetClaimRegulationSummaryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationSummaryResponseClass, any, {}>>;
899
+ getClaimRegulationSummary0(requestParameters: ClaimsApiGetClaimRegulationSummary0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationSummaryResponseClass, any, {}>>;
924
900
  /**
925
- * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
901
+ * This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
926
902
  * @summary Retrieve the claim regulation summary
927
903
  * @param {ClaimsApiGetClaimRegulationSummary1Request} requestParameters Request parameters.
928
904
  * @param {*} [options] Override http request option.
929
- * @deprecated
930
905
  * @throws {RequiredError}
931
906
  * @memberof ClaimsApi
932
907
  */
@@ -934,18 +909,17 @@ export declare class ClaimsApi extends BaseAPI {
934
909
  /**
935
910
  * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
936
911
  * @summary List claims
937
- * @param {ClaimsApiListClaimsRequest} requestParameters Request parameters.
912
+ * @param {ClaimsApiListClaims0Request} requestParameters Request parameters.
938
913
  * @param {*} [options] Override http request option.
939
914
  * @throws {RequiredError}
940
915
  * @memberof ClaimsApi
941
916
  */
942
- listClaims(requestParameters?: ClaimsApiListClaimsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimsResponseClass, any, {}>>;
917
+ listClaims0(requestParameters?: ClaimsApiListClaims0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimsResponseClass, any, {}>>;
943
918
  /**
944
- * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **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.
919
+ * Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
945
920
  * @summary List claims
946
921
  * @param {ClaimsApiListClaims1Request} requestParameters Request parameters.
947
922
  * @param {*} [options] Override http request option.
948
- * @deprecated
949
923
  * @throws {RequiredError}
950
924
  * @memberof ClaimsApi
951
925
  */
@@ -953,18 +927,17 @@ export declare class ClaimsApi extends BaseAPI {
953
927
  /**
954
928
  * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
955
929
  * @summary Patch the claim
956
- * @param {ClaimsApiPatchClaimRequest} requestParameters Request parameters.
930
+ * @param {ClaimsApiPatchClaim0Request} requestParameters Request parameters.
957
931
  * @param {*} [options] Override http request option.
958
932
  * @throws {RequiredError}
959
933
  * @memberof ClaimsApi
960
934
  */
961
- patchClaim(requestParameters: ClaimsApiPatchClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchClaimResponseClass, any, {}>>;
935
+ patchClaim0(requestParameters: ClaimsApiPatchClaim0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchClaimResponseClass, any, {}>>;
962
936
  /**
963
- * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **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.
937
+ * Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
964
938
  * @summary Patch the claim
965
939
  * @param {ClaimsApiPatchClaim1Request} requestParameters Request parameters.
966
940
  * @param {*} [options] Override http request option.
967
- * @deprecated
968
941
  * @throws {RequiredError}
969
942
  * @memberof ClaimsApi
970
943
  */
@@ -972,18 +945,17 @@ export declare class ClaimsApi extends BaseAPI {
972
945
  /**
973
946
  * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
974
947
  * @summary Update the claim
975
- * @param {ClaimsApiUpdateClaimRequest} requestParameters Request parameters.
948
+ * @param {ClaimsApiUpdateClaim0Request} requestParameters Request parameters.
976
949
  * @param {*} [options] Override http request option.
977
950
  * @throws {RequiredError}
978
951
  * @memberof ClaimsApi
979
952
  */
980
- updateClaim(requestParameters: ClaimsApiUpdateClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimResponseClass, any, {}>>;
953
+ updateClaim0(requestParameters: ClaimsApiUpdateClaim0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimResponseClass, any, {}>>;
981
954
  /**
982
- * This will update the identified claim in the database **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.
955
+ * This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
983
956
  * @summary Update the claim
984
957
  * @param {ClaimsApiUpdateClaim1Request} requestParameters Request parameters.
985
958
  * @param {*} [options] Override http request option.
986
- * @deprecated
987
959
  * @throws {RequiredError}
988
960
  * @memberof ClaimsApi
989
961
  */