@emilgroup/claim-sdk-node 1.39.0 → 1.39.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/.openapi-generator/FILES +15 -0
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +648 -0
- package/api/claim-partner-roles-api.ts +627 -0
- package/api/claim-partners-api.ts +520 -0
- package/api/claim-positions-api.ts +1340 -0
- package/api/claim-regulations-api.ts +644 -3
- package/api/claim-statuses-api.ts +752 -5
- package/api/claims-api.ts +863 -11
- package/api/health-check-api.ts +66 -0
- package/api/settlements-api.ts +627 -0
- package/api.ts +4 -0
- package/dist/api/claim-limit-usages-api.d.ts +378 -0
- package/dist/api/claim-limit-usages-api.js +585 -0
- package/dist/api/claim-partner-roles-api.d.ts +358 -0
- package/dist/api/claim-partner-roles-api.js +525 -0
- package/dist/api/claim-partners-api.d.ts +299 -0
- package/dist/api/claim-partners-api.js +428 -0
- package/dist/api/claim-positions-api.d.ts +760 -0
- package/dist/api/claim-positions-api.js +1181 -0
- package/dist/api/claim-regulations-api.d.ts +367 -0
- package/dist/api/claim-regulations-api.js +531 -0
- package/dist/api/claim-statuses-api.d.ts +426 -0
- package/dist/api/claim-statuses-api.js +642 -14
- package/dist/api/claims-api.d.ts +493 -8
- package/dist/api/claims-api.js +734 -10
- package/dist/api/health-check-api.d.ts +33 -0
- package/dist/api/health-check-api.js +73 -0
- package/dist/api/settlements-api.d.ts +358 -0
- package/dist/api/settlements-api.js +525 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/calculation-step-result-class.d.ts +72 -0
- package/dist/models/calculation-step-result-class.js +21 -0
- package/dist/models/claim-applied-deductible-class.d.ts +95 -0
- package/dist/models/claim-applied-deductible-class.js +20 -0
- package/dist/models/claim-class.d.ts +25 -0
- package/dist/models/claim-limit-usage-class.d.ts +143 -0
- package/dist/models/claim-limit-usage-class.js +30 -0
- package/dist/models/claim-limit-usage-result-class.d.ts +48 -0
- package/dist/models/claim-limit-usage-result-class.js +21 -0
- package/dist/models/claim-position-class.d.ts +151 -0
- package/dist/models/claim-position-class.js +20 -0
- package/dist/models/create-claim-position-request-dto.d.ts +66 -0
- package/dist/models/create-claim-position-request-dto.js +15 -0
- package/dist/models/create-claim-position-response-class.d.ts +25 -0
- package/dist/models/create-claim-position-response-class.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +6 -0
- package/dist/models/create-regulation-item-request-dto.d.ts +26 -3
- package/dist/models/create-regulation-item-request-dto.js +5 -1
- package/dist/models/get-claim-limit-usage-response-class.d.ts +25 -0
- package/dist/models/get-claim-limit-usage-response-class.js +15 -0
- package/dist/models/get-claim-position-response-class.d.ts +25 -0
- package/dist/models/get-claim-position-response-class.js +15 -0
- package/dist/models/index.d.ts +13 -0
- package/dist/models/index.js +13 -0
- package/dist/models/list-claim-limit-usages-response-class.d.ts +43 -0
- package/dist/models/list-claim-limit-usages-response-class.js +15 -0
- package/dist/models/list-claim-partner-roles-response-class.d.ts +12 -0
- package/dist/models/list-claim-partners-response-class.d.ts +12 -0
- package/dist/models/list-claim-positions-response-class.d.ts +43 -0
- package/dist/models/list-claim-positions-response-class.js +15 -0
- package/dist/models/list-claim-statuses-response-class.d.ts +13 -1
- package/dist/models/list-claims-response-class.d.ts +12 -0
- package/dist/models/list-regulations-response-class.d.ts +12 -0
- package/dist/models/patch-claim-request-dto.d.ts +39 -33
- package/dist/models/regulation-item-class.d.ts +35 -0
- package/dist/models/regulation-item-class.js +10 -1
- package/dist/models/update-claim-position-request-dto.d.ts +60 -0
- package/dist/models/update-claim-position-request-dto.js +15 -0
- package/dist/models/update-claim-position-response-class.d.ts +25 -0
- package/dist/models/update-claim-position-response-class.js +15 -0
- package/dist/models/update-claim-request-dto.d.ts +39 -33
- package/dist/models/update-regulation-item-request-dto.d.ts +12 -0
- package/dist/models/update-regulation-item-request-dto.js +6 -1
- package/models/calculation-step-result-class.ts +81 -0
- package/models/claim-applied-deductible-class.ts +104 -0
- package/models/claim-class.ts +25 -0
- package/models/claim-limit-usage-class.ts +154 -0
- package/models/claim-limit-usage-result-class.ts +57 -0
- package/models/claim-position-class.ts +160 -0
- package/models/create-claim-position-request-dto.ts +72 -0
- package/models/create-claim-position-response-class.ts +31 -0
- package/models/create-claim-request-dto.ts +6 -0
- package/models/create-regulation-item-request-dto.ts +27 -3
- package/models/get-claim-limit-usage-response-class.ts +31 -0
- package/models/get-claim-position-response-class.ts +31 -0
- package/models/index.ts +13 -0
- package/models/list-claim-limit-usages-response-class.ts +49 -0
- package/models/list-claim-partner-roles-response-class.ts +12 -0
- package/models/list-claim-partners-response-class.ts +12 -0
- package/models/list-claim-positions-response-class.ts +49 -0
- package/models/list-claim-statuses-response-class.ts +13 -1
- package/models/list-claims-response-class.ts +12 -0
- package/models/list-regulations-response-class.ts +12 -0
- package/models/patch-claim-request-dto.ts +39 -33
- package/models/regulation-item-class.ts +37 -0
- package/models/update-claim-position-request-dto.ts +66 -0
- package/models/update-claim-position-response-class.ts +31 -0
- package/models/update-claim-request-dto.ts +39 -33
- package/models/update-regulation-item-request-dto.ts +13 -0
- package/package.json +1 -1
package/dist/api/claims-api.d.ts
CHANGED
|
@@ -35,6 +35,16 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
35
35
|
* @throws {RequiredError}
|
|
36
36
|
*/
|
|
37
37
|
createClaim: (createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
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.
|
|
40
|
+
* @summary Create the claim
|
|
41
|
+
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
42
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
43
|
+
* @param {*} [options] Override http request option.
|
|
44
|
+
* @deprecated
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
createClaim1: (createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
38
48
|
/**
|
|
39
49
|
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
40
50
|
* @summary Delete the claim
|
|
@@ -44,6 +54,16 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
44
54
|
* @throws {RequiredError}
|
|
45
55
|
*/
|
|
46
56
|
deleteClaim: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
57
|
+
/**
|
|
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.
|
|
59
|
+
* @summary Delete the claim
|
|
60
|
+
* @param {string} code
|
|
61
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
62
|
+
* @param {*} [options] Override http request option.
|
|
63
|
+
* @deprecated
|
|
64
|
+
* @throws {RequiredError}
|
|
65
|
+
*/
|
|
66
|
+
deleteClaim1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
47
67
|
/**
|
|
48
68
|
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
49
69
|
* @summary Retrieve the claim
|
|
@@ -53,6 +73,16 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
53
73
|
* @throws {RequiredError}
|
|
54
74
|
*/
|
|
55
75
|
getClaim: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
76
|
+
/**
|
|
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.
|
|
78
|
+
* @summary Retrieve the claim
|
|
79
|
+
* @param {string} code
|
|
80
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
81
|
+
* @param {*} [options] Override http request option.
|
|
82
|
+
* @deprecated
|
|
83
|
+
* @throws {RequiredError}
|
|
84
|
+
*/
|
|
85
|
+
getClaim1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
86
|
/**
|
|
57
87
|
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
58
88
|
* @summary Retrieve the claim regulation summary
|
|
@@ -62,21 +92,47 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
62
92
|
* @throws {RequiredError}
|
|
63
93
|
*/
|
|
64
94
|
getClaimRegulationSummary: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
95
|
+
/**
|
|
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.
|
|
97
|
+
* @summary Retrieve the claim regulation summary
|
|
98
|
+
* @param {string} code Unique identifier for the object.
|
|
99
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
100
|
+
* @param {*} [options] Override http request option.
|
|
101
|
+
* @deprecated
|
|
102
|
+
* @throws {RequiredError}
|
|
103
|
+
*/
|
|
104
|
+
getClaimRegulationSummary1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
65
105
|
/**
|
|
66
106
|
* 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\"
|
|
67
107
|
* @summary List claims
|
|
68
108
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
69
109
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
70
110
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
71
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
111
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
72
112
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
73
113
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
74
114
|
* @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<i>
|
|
75
|
-
* @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: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
115
|
+
* @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</i>
|
|
76
116
|
* @param {*} [options] Override http request option.
|
|
77
117
|
* @throws {RequiredError}
|
|
78
118
|
*/
|
|
79
119
|
listClaims: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
120
|
+
/**
|
|
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.
|
|
122
|
+
* @summary List claims
|
|
123
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
124
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
125
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
126
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
127
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
128
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
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<i>
|
|
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</i>
|
|
131
|
+
* @param {*} [options] Override http request option.
|
|
132
|
+
* @deprecated
|
|
133
|
+
* @throws {RequiredError}
|
|
134
|
+
*/
|
|
135
|
+
listClaims1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
136
|
/**
|
|
81
137
|
* 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\"
|
|
82
138
|
* @summary Patch the claim
|
|
@@ -87,6 +143,17 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
87
143
|
* @throws {RequiredError}
|
|
88
144
|
*/
|
|
89
145
|
patchClaim: (code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
146
|
+
/**
|
|
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.
|
|
148
|
+
* @summary Patch the claim
|
|
149
|
+
* @param {string} code
|
|
150
|
+
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
151
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
152
|
+
* @param {*} [options] Override http request option.
|
|
153
|
+
* @deprecated
|
|
154
|
+
* @throws {RequiredError}
|
|
155
|
+
*/
|
|
156
|
+
patchClaim1: (code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
90
157
|
/**
|
|
91
158
|
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
92
159
|
* @summary Update the claim
|
|
@@ -97,6 +164,17 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
97
164
|
* @throws {RequiredError}
|
|
98
165
|
*/
|
|
99
166
|
updateClaim: (code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
167
|
+
/**
|
|
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.
|
|
169
|
+
* @summary Update the claim
|
|
170
|
+
* @param {string} code
|
|
171
|
+
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
172
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
173
|
+
* @param {*} [options] Override http request option.
|
|
174
|
+
* @deprecated
|
|
175
|
+
* @throws {RequiredError}
|
|
176
|
+
*/
|
|
177
|
+
updateClaim1: (code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
178
|
};
|
|
101
179
|
/**
|
|
102
180
|
* ClaimsApi - functional programming interface
|
|
@@ -112,6 +190,16 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
112
190
|
* @throws {RequiredError}
|
|
113
191
|
*/
|
|
114
192
|
createClaim(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimResponseClass>>;
|
|
193
|
+
/**
|
|
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.
|
|
195
|
+
* @summary Create the claim
|
|
196
|
+
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
197
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
198
|
+
* @param {*} [options] Override http request option.
|
|
199
|
+
* @deprecated
|
|
200
|
+
* @throws {RequiredError}
|
|
201
|
+
*/
|
|
202
|
+
createClaim1(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimResponseClass>>;
|
|
115
203
|
/**
|
|
116
204
|
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
117
205
|
* @summary Delete the claim
|
|
@@ -121,6 +209,16 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
121
209
|
* @throws {RequiredError}
|
|
122
210
|
*/
|
|
123
211
|
deleteClaim(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
212
|
+
/**
|
|
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.
|
|
214
|
+
* @summary Delete the claim
|
|
215
|
+
* @param {string} code
|
|
216
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @deprecated
|
|
219
|
+
* @throws {RequiredError}
|
|
220
|
+
*/
|
|
221
|
+
deleteClaim1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
124
222
|
/**
|
|
125
223
|
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
126
224
|
* @summary Retrieve the claim
|
|
@@ -130,6 +228,16 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
130
228
|
* @throws {RequiredError}
|
|
131
229
|
*/
|
|
132
230
|
getClaim(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimResponseClass>>;
|
|
231
|
+
/**
|
|
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.
|
|
233
|
+
* @summary Retrieve the claim
|
|
234
|
+
* @param {string} code
|
|
235
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
236
|
+
* @param {*} [options] Override http request option.
|
|
237
|
+
* @deprecated
|
|
238
|
+
* @throws {RequiredError}
|
|
239
|
+
*/
|
|
240
|
+
getClaim1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimResponseClass>>;
|
|
133
241
|
/**
|
|
134
242
|
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
135
243
|
* @summary Retrieve the claim regulation summary
|
|
@@ -139,21 +247,47 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
139
247
|
* @throws {RequiredError}
|
|
140
248
|
*/
|
|
141
249
|
getClaimRegulationSummary(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationSummaryResponseClass>>;
|
|
250
|
+
/**
|
|
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.
|
|
252
|
+
* @summary Retrieve the claim regulation summary
|
|
253
|
+
* @param {string} code Unique identifier for the object.
|
|
254
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
255
|
+
* @param {*} [options] Override http request option.
|
|
256
|
+
* @deprecated
|
|
257
|
+
* @throws {RequiredError}
|
|
258
|
+
*/
|
|
259
|
+
getClaimRegulationSummary1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationSummaryResponseClass>>;
|
|
142
260
|
/**
|
|
143
261
|
* 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\"
|
|
144
262
|
* @summary List claims
|
|
145
263
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
146
264
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
147
265
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
148
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
266
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
149
267
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
150
268
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
151
269
|
* @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<i>
|
|
152
|
-
* @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: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
270
|
+
* @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</i>
|
|
153
271
|
* @param {*} [options] Override http request option.
|
|
154
272
|
* @throws {RequiredError}
|
|
155
273
|
*/
|
|
156
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>>;
|
|
275
|
+
/**
|
|
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.
|
|
277
|
+
* @summary List claims
|
|
278
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
279
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
280
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
281
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
282
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
283
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
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<i>
|
|
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</i>
|
|
286
|
+
* @param {*} [options] Override http request option.
|
|
287
|
+
* @deprecated
|
|
288
|
+
* @throws {RequiredError}
|
|
289
|
+
*/
|
|
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>>;
|
|
157
291
|
/**
|
|
158
292
|
* 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\"
|
|
159
293
|
* @summary Patch the claim
|
|
@@ -164,6 +298,17 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
164
298
|
* @throws {RequiredError}
|
|
165
299
|
*/
|
|
166
300
|
patchClaim(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimResponseClass>>;
|
|
301
|
+
/**
|
|
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.
|
|
303
|
+
* @summary Patch the claim
|
|
304
|
+
* @param {string} code
|
|
305
|
+
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
306
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
307
|
+
* @param {*} [options] Override http request option.
|
|
308
|
+
* @deprecated
|
|
309
|
+
* @throws {RequiredError}
|
|
310
|
+
*/
|
|
311
|
+
patchClaim1(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimResponseClass>>;
|
|
167
312
|
/**
|
|
168
313
|
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
169
314
|
* @summary Update the claim
|
|
@@ -174,6 +319,17 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
174
319
|
* @throws {RequiredError}
|
|
175
320
|
*/
|
|
176
321
|
updateClaim(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimResponseClass>>;
|
|
322
|
+
/**
|
|
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.
|
|
324
|
+
* @summary Update the claim
|
|
325
|
+
* @param {string} code
|
|
326
|
+
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
327
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
328
|
+
* @param {*} [options] Override http request option.
|
|
329
|
+
* @deprecated
|
|
330
|
+
* @throws {RequiredError}
|
|
331
|
+
*/
|
|
332
|
+
updateClaim1(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimResponseClass>>;
|
|
177
333
|
};
|
|
178
334
|
/**
|
|
179
335
|
* ClaimsApi - factory interface
|
|
@@ -189,6 +345,16 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
189
345
|
* @throws {RequiredError}
|
|
190
346
|
*/
|
|
191
347
|
createClaim(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimResponseClass>;
|
|
348
|
+
/**
|
|
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.
|
|
350
|
+
* @summary Create the claim
|
|
351
|
+
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
352
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
353
|
+
* @param {*} [options] Override http request option.
|
|
354
|
+
* @deprecated
|
|
355
|
+
* @throws {RequiredError}
|
|
356
|
+
*/
|
|
357
|
+
createClaim1(createClaimRequestDto: CreateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimResponseClass>;
|
|
192
358
|
/**
|
|
193
359
|
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
194
360
|
* @summary Delete the claim
|
|
@@ -198,6 +364,16 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
198
364
|
* @throws {RequiredError}
|
|
199
365
|
*/
|
|
200
366
|
deleteClaim(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
367
|
+
/**
|
|
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.
|
|
369
|
+
* @summary Delete the claim
|
|
370
|
+
* @param {string} code
|
|
371
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
372
|
+
* @param {*} [options] Override http request option.
|
|
373
|
+
* @deprecated
|
|
374
|
+
* @throws {RequiredError}
|
|
375
|
+
*/
|
|
376
|
+
deleteClaim1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
201
377
|
/**
|
|
202
378
|
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
203
379
|
* @summary Retrieve the claim
|
|
@@ -207,6 +383,16 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
207
383
|
* @throws {RequiredError}
|
|
208
384
|
*/
|
|
209
385
|
getClaim(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimResponseClass>;
|
|
386
|
+
/**
|
|
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.
|
|
388
|
+
* @summary Retrieve the claim
|
|
389
|
+
* @param {string} code
|
|
390
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
391
|
+
* @param {*} [options] Override http request option.
|
|
392
|
+
* @deprecated
|
|
393
|
+
* @throws {RequiredError}
|
|
394
|
+
*/
|
|
395
|
+
getClaim1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimResponseClass>;
|
|
210
396
|
/**
|
|
211
397
|
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
212
398
|
* @summary Retrieve the claim regulation summary
|
|
@@ -216,21 +402,47 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
216
402
|
* @throws {RequiredError}
|
|
217
403
|
*/
|
|
218
404
|
getClaimRegulationSummary(code: string, authorization?: string, options?: any): AxiosPromise<RegulationSummaryResponseClass>;
|
|
405
|
+
/**
|
|
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.
|
|
407
|
+
* @summary Retrieve the claim regulation summary
|
|
408
|
+
* @param {string} code Unique identifier for the object.
|
|
409
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
410
|
+
* @param {*} [options] Override http request option.
|
|
411
|
+
* @deprecated
|
|
412
|
+
* @throws {RequiredError}
|
|
413
|
+
*/
|
|
414
|
+
getClaimRegulationSummary1(code: string, authorization?: string, options?: any): AxiosPromise<RegulationSummaryResponseClass>;
|
|
219
415
|
/**
|
|
220
416
|
* 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\"
|
|
221
417
|
* @summary List claims
|
|
222
418
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
223
419
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
224
420
|
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
225
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
421
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
226
422
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
227
423
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
228
424
|
* @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<i>
|
|
229
|
-
* @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: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
425
|
+
* @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</i>
|
|
230
426
|
* @param {*} [options] Override http request option.
|
|
231
427
|
* @throws {RequiredError}
|
|
232
428
|
*/
|
|
233
429
|
listClaims(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimsResponseClass>;
|
|
430
|
+
/**
|
|
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.
|
|
432
|
+
* @summary List claims
|
|
433
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
434
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
435
|
+
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
436
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
437
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, policyCode, accountCode, productName, claimNumber, policyNumber, damageDate, notificationDate, description, status</i>
|
|
438
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, accountCode, status, claimNumber, policyNumber, damageDate, notificationDate, description, createdAt, updatedAt</i>
|
|
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<i>
|
|
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</i>
|
|
441
|
+
* @param {*} [options] Override http request option.
|
|
442
|
+
* @deprecated
|
|
443
|
+
* @throws {RequiredError}
|
|
444
|
+
*/
|
|
445
|
+
listClaims1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimsResponseClass>;
|
|
234
446
|
/**
|
|
235
447
|
* 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\"
|
|
236
448
|
* @summary Patch the claim
|
|
@@ -241,6 +453,17 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
241
453
|
* @throws {RequiredError}
|
|
242
454
|
*/
|
|
243
455
|
patchClaim(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimResponseClass>;
|
|
456
|
+
/**
|
|
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.
|
|
458
|
+
* @summary Patch the claim
|
|
459
|
+
* @param {string} code
|
|
460
|
+
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
461
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
462
|
+
* @param {*} [options] Override http request option.
|
|
463
|
+
* @deprecated
|
|
464
|
+
* @throws {RequiredError}
|
|
465
|
+
*/
|
|
466
|
+
patchClaim1(code: string, patchClaimRequestDto: PatchClaimRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimResponseClass>;
|
|
244
467
|
/**
|
|
245
468
|
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
246
469
|
* @summary Update the claim
|
|
@@ -251,6 +474,17 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
251
474
|
* @throws {RequiredError}
|
|
252
475
|
*/
|
|
253
476
|
updateClaim(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimResponseClass>;
|
|
477
|
+
/**
|
|
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.
|
|
479
|
+
* @summary Update the claim
|
|
480
|
+
* @param {string} code
|
|
481
|
+
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
482
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
483
|
+
* @param {*} [options] Override http request option.
|
|
484
|
+
* @deprecated
|
|
485
|
+
* @throws {RequiredError}
|
|
486
|
+
*/
|
|
487
|
+
updateClaim1(code: string, updateClaimRequestDto: UpdateClaimRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimResponseClass>;
|
|
254
488
|
};
|
|
255
489
|
/**
|
|
256
490
|
* Request parameters for createClaim operation in ClaimsApi.
|
|
@@ -271,6 +505,25 @@ export interface ClaimsApiCreateClaimRequest {
|
|
|
271
505
|
*/
|
|
272
506
|
readonly authorization?: string;
|
|
273
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
* Request parameters for createClaim1 operation in ClaimsApi.
|
|
510
|
+
* @export
|
|
511
|
+
* @interface ClaimsApiCreateClaim1Request
|
|
512
|
+
*/
|
|
513
|
+
export interface ClaimsApiCreateClaim1Request {
|
|
514
|
+
/**
|
|
515
|
+
*
|
|
516
|
+
* @type {CreateClaimRequestDto}
|
|
517
|
+
* @memberof ClaimsApiCreateClaim1
|
|
518
|
+
*/
|
|
519
|
+
readonly createClaimRequestDto: CreateClaimRequestDto;
|
|
520
|
+
/**
|
|
521
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
522
|
+
* @type {string}
|
|
523
|
+
* @memberof ClaimsApiCreateClaim1
|
|
524
|
+
*/
|
|
525
|
+
readonly authorization?: string;
|
|
526
|
+
}
|
|
274
527
|
/**
|
|
275
528
|
* Request parameters for deleteClaim operation in ClaimsApi.
|
|
276
529
|
* @export
|
|
@@ -290,6 +543,25 @@ export interface ClaimsApiDeleteClaimRequest {
|
|
|
290
543
|
*/
|
|
291
544
|
readonly authorization?: string;
|
|
292
545
|
}
|
|
546
|
+
/**
|
|
547
|
+
* Request parameters for deleteClaim1 operation in ClaimsApi.
|
|
548
|
+
* @export
|
|
549
|
+
* @interface ClaimsApiDeleteClaim1Request
|
|
550
|
+
*/
|
|
551
|
+
export interface ClaimsApiDeleteClaim1Request {
|
|
552
|
+
/**
|
|
553
|
+
*
|
|
554
|
+
* @type {string}
|
|
555
|
+
* @memberof ClaimsApiDeleteClaim1
|
|
556
|
+
*/
|
|
557
|
+
readonly code: string;
|
|
558
|
+
/**
|
|
559
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
560
|
+
* @type {string}
|
|
561
|
+
* @memberof ClaimsApiDeleteClaim1
|
|
562
|
+
*/
|
|
563
|
+
readonly authorization?: string;
|
|
564
|
+
}
|
|
293
565
|
/**
|
|
294
566
|
* Request parameters for getClaim operation in ClaimsApi.
|
|
295
567
|
* @export
|
|
@@ -309,6 +581,25 @@ export interface ClaimsApiGetClaimRequest {
|
|
|
309
581
|
*/
|
|
310
582
|
readonly authorization?: string;
|
|
311
583
|
}
|
|
584
|
+
/**
|
|
585
|
+
* Request parameters for getClaim1 operation in ClaimsApi.
|
|
586
|
+
* @export
|
|
587
|
+
* @interface ClaimsApiGetClaim1Request
|
|
588
|
+
*/
|
|
589
|
+
export interface ClaimsApiGetClaim1Request {
|
|
590
|
+
/**
|
|
591
|
+
*
|
|
592
|
+
* @type {string}
|
|
593
|
+
* @memberof ClaimsApiGetClaim1
|
|
594
|
+
*/
|
|
595
|
+
readonly code: string;
|
|
596
|
+
/**
|
|
597
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
598
|
+
* @type {string}
|
|
599
|
+
* @memberof ClaimsApiGetClaim1
|
|
600
|
+
*/
|
|
601
|
+
readonly authorization?: string;
|
|
602
|
+
}
|
|
312
603
|
/**
|
|
313
604
|
* Request parameters for getClaimRegulationSummary operation in ClaimsApi.
|
|
314
605
|
* @export
|
|
@@ -328,6 +619,25 @@ export interface ClaimsApiGetClaimRegulationSummaryRequest {
|
|
|
328
619
|
*/
|
|
329
620
|
readonly authorization?: string;
|
|
330
621
|
}
|
|
622
|
+
/**
|
|
623
|
+
* Request parameters for getClaimRegulationSummary1 operation in ClaimsApi.
|
|
624
|
+
* @export
|
|
625
|
+
* @interface ClaimsApiGetClaimRegulationSummary1Request
|
|
626
|
+
*/
|
|
627
|
+
export interface ClaimsApiGetClaimRegulationSummary1Request {
|
|
628
|
+
/**
|
|
629
|
+
* Unique identifier for the object.
|
|
630
|
+
* @type {string}
|
|
631
|
+
* @memberof ClaimsApiGetClaimRegulationSummary1
|
|
632
|
+
*/
|
|
633
|
+
readonly code: string;
|
|
634
|
+
/**
|
|
635
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
636
|
+
* @type {string}
|
|
637
|
+
* @memberof ClaimsApiGetClaimRegulationSummary1
|
|
638
|
+
*/
|
|
639
|
+
readonly authorization?: string;
|
|
640
|
+
}
|
|
331
641
|
/**
|
|
332
642
|
* Request parameters for listClaims operation in ClaimsApi.
|
|
333
643
|
* @export
|
|
@@ -353,7 +663,7 @@ export interface ClaimsApiListClaimsRequest {
|
|
|
353
663
|
*/
|
|
354
664
|
readonly pageToken?: string;
|
|
355
665
|
/**
|
|
356
|
-
* 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: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
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</i>
|
|
357
667
|
* @type {string}
|
|
358
668
|
* @memberof ClaimsApiListClaims
|
|
359
669
|
*/
|
|
@@ -377,12 +687,67 @@ export interface ClaimsApiListClaimsRequest {
|
|
|
377
687
|
*/
|
|
378
688
|
readonly expand?: string;
|
|
379
689
|
/**
|
|
380
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
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</i>
|
|
381
691
|
* @type {string}
|
|
382
692
|
* @memberof ClaimsApiListClaims
|
|
383
693
|
*/
|
|
384
694
|
readonly filters?: string;
|
|
385
695
|
}
|
|
696
|
+
/**
|
|
697
|
+
* Request parameters for listClaims1 operation in ClaimsApi.
|
|
698
|
+
* @export
|
|
699
|
+
* @interface ClaimsApiListClaims1Request
|
|
700
|
+
*/
|
|
701
|
+
export interface ClaimsApiListClaims1Request {
|
|
702
|
+
/**
|
|
703
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
704
|
+
* @type {string}
|
|
705
|
+
* @memberof ClaimsApiListClaims1
|
|
706
|
+
*/
|
|
707
|
+
readonly authorization?: string;
|
|
708
|
+
/**
|
|
709
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
710
|
+
* @type {number}
|
|
711
|
+
* @memberof ClaimsApiListClaims1
|
|
712
|
+
*/
|
|
713
|
+
readonly pageSize?: number;
|
|
714
|
+
/**
|
|
715
|
+
* 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.
|
|
716
|
+
* @type {string}
|
|
717
|
+
* @memberof ClaimsApiListClaims1
|
|
718
|
+
*/
|
|
719
|
+
readonly pageToken?: string;
|
|
720
|
+
/**
|
|
721
|
+
* 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</i>
|
|
722
|
+
* @type {string}
|
|
723
|
+
* @memberof ClaimsApiListClaims1
|
|
724
|
+
*/
|
|
725
|
+
readonly filter?: string;
|
|
726
|
+
/**
|
|
727
|
+
* 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</i>
|
|
728
|
+
* @type {string}
|
|
729
|
+
* @memberof ClaimsApiListClaims1
|
|
730
|
+
*/
|
|
731
|
+
readonly search?: string;
|
|
732
|
+
/**
|
|
733
|
+
* 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</i>
|
|
734
|
+
* @type {string}
|
|
735
|
+
* @memberof ClaimsApiListClaims1
|
|
736
|
+
*/
|
|
737
|
+
readonly order?: string;
|
|
738
|
+
/**
|
|
739
|
+
* 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<i>
|
|
740
|
+
* @type {string}
|
|
741
|
+
* @memberof ClaimsApiListClaims1
|
|
742
|
+
*/
|
|
743
|
+
readonly expand?: string;
|
|
744
|
+
/**
|
|
745
|
+
* 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</i>
|
|
746
|
+
* @type {string}
|
|
747
|
+
* @memberof ClaimsApiListClaims1
|
|
748
|
+
*/
|
|
749
|
+
readonly filters?: string;
|
|
750
|
+
}
|
|
386
751
|
/**
|
|
387
752
|
* Request parameters for patchClaim operation in ClaimsApi.
|
|
388
753
|
* @export
|
|
@@ -408,6 +773,31 @@ export interface ClaimsApiPatchClaimRequest {
|
|
|
408
773
|
*/
|
|
409
774
|
readonly authorization?: string;
|
|
410
775
|
}
|
|
776
|
+
/**
|
|
777
|
+
* Request parameters for patchClaim1 operation in ClaimsApi.
|
|
778
|
+
* @export
|
|
779
|
+
* @interface ClaimsApiPatchClaim1Request
|
|
780
|
+
*/
|
|
781
|
+
export interface ClaimsApiPatchClaim1Request {
|
|
782
|
+
/**
|
|
783
|
+
*
|
|
784
|
+
* @type {string}
|
|
785
|
+
* @memberof ClaimsApiPatchClaim1
|
|
786
|
+
*/
|
|
787
|
+
readonly code: string;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {PatchClaimRequestDto}
|
|
791
|
+
* @memberof ClaimsApiPatchClaim1
|
|
792
|
+
*/
|
|
793
|
+
readonly patchClaimRequestDto: PatchClaimRequestDto;
|
|
794
|
+
/**
|
|
795
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
796
|
+
* @type {string}
|
|
797
|
+
* @memberof ClaimsApiPatchClaim1
|
|
798
|
+
*/
|
|
799
|
+
readonly authorization?: string;
|
|
800
|
+
}
|
|
411
801
|
/**
|
|
412
802
|
* Request parameters for updateClaim operation in ClaimsApi.
|
|
413
803
|
* @export
|
|
@@ -433,6 +823,31 @@ export interface ClaimsApiUpdateClaimRequest {
|
|
|
433
823
|
*/
|
|
434
824
|
readonly authorization?: string;
|
|
435
825
|
}
|
|
826
|
+
/**
|
|
827
|
+
* Request parameters for updateClaim1 operation in ClaimsApi.
|
|
828
|
+
* @export
|
|
829
|
+
* @interface ClaimsApiUpdateClaim1Request
|
|
830
|
+
*/
|
|
831
|
+
export interface ClaimsApiUpdateClaim1Request {
|
|
832
|
+
/**
|
|
833
|
+
*
|
|
834
|
+
* @type {string}
|
|
835
|
+
* @memberof ClaimsApiUpdateClaim1
|
|
836
|
+
*/
|
|
837
|
+
readonly code: string;
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @type {UpdateClaimRequestDto}
|
|
841
|
+
* @memberof ClaimsApiUpdateClaim1
|
|
842
|
+
*/
|
|
843
|
+
readonly updateClaimRequestDto: UpdateClaimRequestDto;
|
|
844
|
+
/**
|
|
845
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
846
|
+
* @type {string}
|
|
847
|
+
* @memberof ClaimsApiUpdateClaim1
|
|
848
|
+
*/
|
|
849
|
+
readonly authorization?: string;
|
|
850
|
+
}
|
|
436
851
|
/**
|
|
437
852
|
* ClaimsApi - object-oriented interface
|
|
438
853
|
* @export
|
|
@@ -449,6 +864,16 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
449
864
|
* @memberof ClaimsApi
|
|
450
865
|
*/
|
|
451
866
|
createClaim(requestParameters: ClaimsApiCreateClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimResponseClass, any, {}>>;
|
|
867
|
+
/**
|
|
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.
|
|
869
|
+
* @summary Create the claim
|
|
870
|
+
* @param {ClaimsApiCreateClaim1Request} requestParameters Request parameters.
|
|
871
|
+
* @param {*} [options] Override http request option.
|
|
872
|
+
* @deprecated
|
|
873
|
+
* @throws {RequiredError}
|
|
874
|
+
* @memberof ClaimsApi
|
|
875
|
+
*/
|
|
876
|
+
createClaim1(requestParameters: ClaimsApiCreateClaim1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimResponseClass, any, {}>>;
|
|
452
877
|
/**
|
|
453
878
|
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
454
879
|
* @summary Delete the claim
|
|
@@ -458,6 +883,16 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
458
883
|
* @memberof ClaimsApi
|
|
459
884
|
*/
|
|
460
885
|
deleteClaim(requestParameters: ClaimsApiDeleteClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
886
|
+
/**
|
|
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.
|
|
888
|
+
* @summary Delete the claim
|
|
889
|
+
* @param {ClaimsApiDeleteClaim1Request} requestParameters Request parameters.
|
|
890
|
+
* @param {*} [options] Override http request option.
|
|
891
|
+
* @deprecated
|
|
892
|
+
* @throws {RequiredError}
|
|
893
|
+
* @memberof ClaimsApi
|
|
894
|
+
*/
|
|
895
|
+
deleteClaim1(requestParameters: ClaimsApiDeleteClaim1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
461
896
|
/**
|
|
462
897
|
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
463
898
|
* @summary Retrieve the claim
|
|
@@ -467,6 +902,16 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
467
902
|
* @memberof ClaimsApi
|
|
468
903
|
*/
|
|
469
904
|
getClaim(requestParameters: ClaimsApiGetClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimResponseClass, any, {}>>;
|
|
905
|
+
/**
|
|
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.
|
|
907
|
+
* @summary Retrieve the claim
|
|
908
|
+
* @param {ClaimsApiGetClaim1Request} requestParameters Request parameters.
|
|
909
|
+
* @param {*} [options] Override http request option.
|
|
910
|
+
* @deprecated
|
|
911
|
+
* @throws {RequiredError}
|
|
912
|
+
* @memberof ClaimsApi
|
|
913
|
+
*/
|
|
914
|
+
getClaim1(requestParameters: ClaimsApiGetClaim1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimResponseClass, any, {}>>;
|
|
470
915
|
/**
|
|
471
916
|
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
472
917
|
* @summary Retrieve the claim regulation summary
|
|
@@ -476,6 +921,16 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
476
921
|
* @memberof ClaimsApi
|
|
477
922
|
*/
|
|
478
923
|
getClaimRegulationSummary(requestParameters: ClaimsApiGetClaimRegulationSummaryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationSummaryResponseClass, any, {}>>;
|
|
924
|
+
/**
|
|
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.
|
|
926
|
+
* @summary Retrieve the claim regulation summary
|
|
927
|
+
* @param {ClaimsApiGetClaimRegulationSummary1Request} requestParameters Request parameters.
|
|
928
|
+
* @param {*} [options] Override http request option.
|
|
929
|
+
* @deprecated
|
|
930
|
+
* @throws {RequiredError}
|
|
931
|
+
* @memberof ClaimsApi
|
|
932
|
+
*/
|
|
933
|
+
getClaimRegulationSummary1(requestParameters: ClaimsApiGetClaimRegulationSummary1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationSummaryResponseClass, any, {}>>;
|
|
479
934
|
/**
|
|
480
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\"
|
|
481
936
|
* @summary List claims
|
|
@@ -485,6 +940,16 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
485
940
|
* @memberof ClaimsApi
|
|
486
941
|
*/
|
|
487
942
|
listClaims(requestParameters?: ClaimsApiListClaimsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimsResponseClass, any, {}>>;
|
|
943
|
+
/**
|
|
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.
|
|
945
|
+
* @summary List claims
|
|
946
|
+
* @param {ClaimsApiListClaims1Request} requestParameters Request parameters.
|
|
947
|
+
* @param {*} [options] Override http request option.
|
|
948
|
+
* @deprecated
|
|
949
|
+
* @throws {RequiredError}
|
|
950
|
+
* @memberof ClaimsApi
|
|
951
|
+
*/
|
|
952
|
+
listClaims1(requestParameters?: ClaimsApiListClaims1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimsResponseClass, any, {}>>;
|
|
488
953
|
/**
|
|
489
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\"
|
|
490
955
|
* @summary Patch the claim
|
|
@@ -494,6 +959,16 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
494
959
|
* @memberof ClaimsApi
|
|
495
960
|
*/
|
|
496
961
|
patchClaim(requestParameters: ClaimsApiPatchClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchClaimResponseClass, any, {}>>;
|
|
962
|
+
/**
|
|
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.
|
|
964
|
+
* @summary Patch the claim
|
|
965
|
+
* @param {ClaimsApiPatchClaim1Request} requestParameters Request parameters.
|
|
966
|
+
* @param {*} [options] Override http request option.
|
|
967
|
+
* @deprecated
|
|
968
|
+
* @throws {RequiredError}
|
|
969
|
+
* @memberof ClaimsApi
|
|
970
|
+
*/
|
|
971
|
+
patchClaim1(requestParameters: ClaimsApiPatchClaim1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchClaimResponseClass, any, {}>>;
|
|
497
972
|
/**
|
|
498
973
|
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
499
974
|
* @summary Update the claim
|
|
@@ -503,4 +978,14 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
503
978
|
* @memberof ClaimsApi
|
|
504
979
|
*/
|
|
505
980
|
updateClaim(requestParameters: ClaimsApiUpdateClaimRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimResponseClass, any, {}>>;
|
|
981
|
+
/**
|
|
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.
|
|
983
|
+
* @summary Update the claim
|
|
984
|
+
* @param {ClaimsApiUpdateClaim1Request} requestParameters Request parameters.
|
|
985
|
+
* @param {*} [options] Override http request option.
|
|
986
|
+
* @deprecated
|
|
987
|
+
* @throws {RequiredError}
|
|
988
|
+
* @memberof ClaimsApi
|
|
989
|
+
*/
|
|
990
|
+
updateClaim1(requestParameters: ClaimsApiUpdateClaim1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimResponseClass, any, {}>>;
|
|
506
991
|
}
|