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