@emilgroup/claim-sdk 1.40.1-beta.8 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +0 -10
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +0 -627
- package/api/claim-partners-api.ts +0 -520
- package/api/claim-regulations-api.ts +5 -646
- package/api/claim-statuses-api.ts +6 -753
- package/api/claims-api.ts +6 -858
- package/api/health-check-api.ts +0 -66
- package/api/settlements-api.ts +0 -627
- package/api.ts +0 -2
- package/dist/api/claim-partner-roles-api.d.ts +0 -358
- package/dist/api/claim-partner-roles-api.js +0 -525
- package/dist/api/claim-partners-api.d.ts +0 -299
- package/dist/api/claim-partners-api.js +0 -428
- package/dist/api/claim-regulations-api.d.ts +0 -367
- package/dist/api/claim-regulations-api.js +0 -531
- package/dist/api/claim-statuses-api.d.ts +0 -426
- package/dist/api/claim-statuses-api.js +14 -642
- package/dist/api/claims-api.d.ts +0 -485
- package/dist/api/claims-api.js +1 -725
- package/dist/api/health-check-api.d.ts +0 -33
- package/dist/api/health-check-api.js +0 -73
- package/dist/api/settlements-api.d.ts +0 -358
- package/dist/api/settlements-api.js +0 -525
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/claim-class.d.ts +0 -6
- package/dist/models/index.d.ts +0 -9
- package/dist/models/index.js +0 -9
- package/dist/models/list-claim-partner-roles-response-class.d.ts +0 -12
- package/dist/models/list-claim-partners-response-class.d.ts +0 -12
- package/dist/models/list-claim-statuses-response-class.d.ts +1 -13
- package/dist/models/list-claims-response-class.d.ts +0 -12
- package/dist/models/list-regulations-response-class.d.ts +0 -12
- package/models/claim-class.ts +0 -6
- package/models/index.ts +0 -9
- package/models/list-claim-partner-roles-response-class.ts +0 -12
- package/models/list-claim-partners-response-class.ts +0 -12
- package/models/list-claim-statuses-response-class.ts +1 -13
- package/models/list-claims-response-class.ts +0 -12
- package/models/list-regulations-response-class.ts +0 -12
- package/package.json +1 -1
- package/api/claim-positions-api.ts +0 -1336
- package/dist/api/claim-positions-api.d.ts +0 -760
- package/dist/api/claim-positions-api.js +0 -1177
- package/dist/models/claim-position-class.d.ts +0 -121
- package/dist/models/claim-position-class.js +0 -15
- package/dist/models/coverage-class.d.ts +0 -72
- package/dist/models/coverage-class.js +0 -21
- package/dist/models/coverage-request-dto.d.ts +0 -41
- package/dist/models/coverage-request-dto.js +0 -20
- package/dist/models/create-claim-position-request-dto.d.ts +0 -73
- package/dist/models/create-claim-position-request-dto.js +0 -15
- package/dist/models/create-claim-position-response-class.d.ts +0 -25
- package/dist/models/create-claim-position-response-class.js +0 -15
- package/dist/models/get-claim-position-response-class.d.ts +0 -25
- package/dist/models/get-claim-position-response-class.js +0 -15
- package/dist/models/list-claim-positions-response-class.d.ts +0 -43
- package/dist/models/list-claim-positions-response-class.js +0 -15
- package/dist/models/update-claim-position-request-dto.d.ts +0 -73
- package/dist/models/update-claim-position-request-dto.js +0 -15
- package/dist/models/update-claim-position-response-class.d.ts +0 -25
- package/dist/models/update-claim-position-response-class.js +0 -15
- package/models/claim-position-class.ts +0 -127
- package/models/coverage-class.ts +0 -81
- package/models/coverage-request-dto.ts +0 -50
- package/models/create-claim-position-request-dto.ts +0 -79
- package/models/create-claim-position-response-class.ts +0 -31
- package/models/get-claim-position-response-class.ts +0 -31
- package/models/list-claim-positions-response-class.ts +0 -49
- package/models/update-claim-position-request-dto.ts +0 -79
- package/models/update-claim-position-response-class.ts +0 -31
package/dist/api/claims-api.d.ts
CHANGED
|
@@ -35,16 +35,6 @@ 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>;
|
|
48
38
|
/**
|
|
49
39
|
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
50
40
|
* @summary Delete the claim
|
|
@@ -54,16 +44,6 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
54
44
|
* @throws {RequiredError}
|
|
55
45
|
*/
|
|
56
46
|
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>;
|
|
67
47
|
/**
|
|
68
48
|
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
69
49
|
* @summary Retrieve the claim
|
|
@@ -73,16 +53,6 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
73
53
|
* @throws {RequiredError}
|
|
74
54
|
*/
|
|
75
55
|
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>;
|
|
86
56
|
/**
|
|
87
57
|
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
88
58
|
* @summary Retrieve the claim regulation summary
|
|
@@ -92,16 +62,6 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
92
62
|
* @throws {RequiredError}
|
|
93
63
|
*/
|
|
94
64
|
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>;
|
|
105
65
|
/**
|
|
106
66
|
* 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\"
|
|
107
67
|
* @summary List claims
|
|
@@ -117,22 +77,6 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
117
77
|
* @throws {RequiredError}
|
|
118
78
|
*/
|
|
119
79
|
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: 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: 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>;
|
|
136
80
|
/**
|
|
137
81
|
* 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\"
|
|
138
82
|
* @summary Patch the claim
|
|
@@ -143,17 +87,6 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
143
87
|
* @throws {RequiredError}
|
|
144
88
|
*/
|
|
145
89
|
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>;
|
|
157
90
|
/**
|
|
158
91
|
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
159
92
|
* @summary Update the claim
|
|
@@ -164,17 +97,6 @@ export declare const ClaimsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
164
97
|
* @throws {RequiredError}
|
|
165
98
|
*/
|
|
166
99
|
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>;
|
|
178
100
|
};
|
|
179
101
|
/**
|
|
180
102
|
* ClaimsApi - functional programming interface
|
|
@@ -190,16 +112,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
190
112
|
* @throws {RequiredError}
|
|
191
113
|
*/
|
|
192
114
|
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>>;
|
|
203
115
|
/**
|
|
204
116
|
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
205
117
|
* @summary Delete the claim
|
|
@@ -209,16 +121,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
209
121
|
* @throws {RequiredError}
|
|
210
122
|
*/
|
|
211
123
|
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>>;
|
|
222
124
|
/**
|
|
223
125
|
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
224
126
|
* @summary Retrieve the claim
|
|
@@ -228,16 +130,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
228
130
|
* @throws {RequiredError}
|
|
229
131
|
*/
|
|
230
132
|
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>>;
|
|
241
133
|
/**
|
|
242
134
|
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
243
135
|
* @summary Retrieve the claim regulation summary
|
|
@@ -247,16 +139,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
247
139
|
* @throws {RequiredError}
|
|
248
140
|
*/
|
|
249
141
|
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>>;
|
|
260
142
|
/**
|
|
261
143
|
* 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\"
|
|
262
144
|
* @summary List claims
|
|
@@ -272,22 +154,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
272
154
|
* @throws {RequiredError}
|
|
273
155
|
*/
|
|
274
156
|
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: 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: 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>>;
|
|
291
157
|
/**
|
|
292
158
|
* 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\"
|
|
293
159
|
* @summary Patch the claim
|
|
@@ -298,17 +164,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
298
164
|
* @throws {RequiredError}
|
|
299
165
|
*/
|
|
300
166
|
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>>;
|
|
312
167
|
/**
|
|
313
168
|
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
314
169
|
* @summary Update the claim
|
|
@@ -319,17 +174,6 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
319
174
|
* @throws {RequiredError}
|
|
320
175
|
*/
|
|
321
176
|
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>>;
|
|
333
177
|
};
|
|
334
178
|
/**
|
|
335
179
|
* ClaimsApi - factory interface
|
|
@@ -345,16 +189,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
345
189
|
* @throws {RequiredError}
|
|
346
190
|
*/
|
|
347
191
|
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>;
|
|
358
192
|
/**
|
|
359
193
|
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
360
194
|
* @summary Delete the claim
|
|
@@ -364,16 +198,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
364
198
|
* @throws {RequiredError}
|
|
365
199
|
*/
|
|
366
200
|
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>;
|
|
377
201
|
/**
|
|
378
202
|
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
379
203
|
* @summary Retrieve the claim
|
|
@@ -383,16 +207,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
383
207
|
* @throws {RequiredError}
|
|
384
208
|
*/
|
|
385
209
|
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>;
|
|
396
210
|
/**
|
|
397
211
|
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
398
212
|
* @summary Retrieve the claim regulation summary
|
|
@@ -402,16 +216,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
402
216
|
* @throws {RequiredError}
|
|
403
217
|
*/
|
|
404
218
|
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>;
|
|
415
219
|
/**
|
|
416
220
|
* 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\"
|
|
417
221
|
* @summary List claims
|
|
@@ -427,22 +231,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
427
231
|
* @throws {RequiredError}
|
|
428
232
|
*/
|
|
429
233
|
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: 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: 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>;
|
|
446
234
|
/**
|
|
447
235
|
* 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\"
|
|
448
236
|
* @summary Patch the claim
|
|
@@ -453,17 +241,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
453
241
|
* @throws {RequiredError}
|
|
454
242
|
*/
|
|
455
243
|
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>;
|
|
467
244
|
/**
|
|
468
245
|
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
469
246
|
* @summary Update the claim
|
|
@@ -474,17 +251,6 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
474
251
|
* @throws {RequiredError}
|
|
475
252
|
*/
|
|
476
253
|
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>;
|
|
488
254
|
};
|
|
489
255
|
/**
|
|
490
256
|
* Request parameters for createClaim operation in ClaimsApi.
|
|
@@ -505,25 +271,6 @@ export interface ClaimsApiCreateClaimRequest {
|
|
|
505
271
|
*/
|
|
506
272
|
readonly authorization?: string;
|
|
507
273
|
}
|
|
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
|
-
}
|
|
527
274
|
/**
|
|
528
275
|
* Request parameters for deleteClaim operation in ClaimsApi.
|
|
529
276
|
* @export
|
|
@@ -543,25 +290,6 @@ export interface ClaimsApiDeleteClaimRequest {
|
|
|
543
290
|
*/
|
|
544
291
|
readonly authorization?: string;
|
|
545
292
|
}
|
|
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
|
-
}
|
|
565
293
|
/**
|
|
566
294
|
* Request parameters for getClaim operation in ClaimsApi.
|
|
567
295
|
* @export
|
|
@@ -581,25 +309,6 @@ export interface ClaimsApiGetClaimRequest {
|
|
|
581
309
|
*/
|
|
582
310
|
readonly authorization?: string;
|
|
583
311
|
}
|
|
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
|
-
}
|
|
603
312
|
/**
|
|
604
313
|
* Request parameters for getClaimRegulationSummary operation in ClaimsApi.
|
|
605
314
|
* @export
|
|
@@ -619,25 +328,6 @@ export interface ClaimsApiGetClaimRegulationSummaryRequest {
|
|
|
619
328
|
*/
|
|
620
329
|
readonly authorization?: string;
|
|
621
330
|
}
|
|
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
|
-
}
|
|
641
331
|
/**
|
|
642
332
|
* Request parameters for listClaims operation in ClaimsApi.
|
|
643
333
|
* @export
|
|
@@ -693,61 +383,6 @@ export interface ClaimsApiListClaimsRequest {
|
|
|
693
383
|
*/
|
|
694
384
|
readonly filters?: string;
|
|
695
385
|
}
|
|
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: 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: policyNumber, productId, accountCode, insuredObjectId, policyCode</i>
|
|
746
|
-
* @type {string}
|
|
747
|
-
* @memberof ClaimsApiListClaims1
|
|
748
|
-
*/
|
|
749
|
-
readonly filters?: string;
|
|
750
|
-
}
|
|
751
386
|
/**
|
|
752
387
|
* Request parameters for patchClaim operation in ClaimsApi.
|
|
753
388
|
* @export
|
|
@@ -773,31 +408,6 @@ export interface ClaimsApiPatchClaimRequest {
|
|
|
773
408
|
*/
|
|
774
409
|
readonly authorization?: string;
|
|
775
410
|
}
|
|
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
|
-
}
|
|
801
411
|
/**
|
|
802
412
|
* Request parameters for updateClaim operation in ClaimsApi.
|
|
803
413
|
* @export
|
|
@@ -823,31 +433,6 @@ export interface ClaimsApiUpdateClaimRequest {
|
|
|
823
433
|
*/
|
|
824
434
|
readonly authorization?: string;
|
|
825
435
|
}
|
|
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
|
-
}
|
|
851
436
|
/**
|
|
852
437
|
* ClaimsApi - object-oriented interface
|
|
853
438
|
* @export
|
|
@@ -864,16 +449,6 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
864
449
|
* @memberof ClaimsApi
|
|
865
450
|
*/
|
|
866
451
|
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, {}>>;
|
|
877
452
|
/**
|
|
878
453
|
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
879
454
|
* @summary Delete the claim
|
|
@@ -883,16 +458,6 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
883
458
|
* @memberof ClaimsApi
|
|
884
459
|
*/
|
|
885
460
|
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, {}>>;
|
|
896
461
|
/**
|
|
897
462
|
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
898
463
|
* @summary Retrieve the claim
|
|
@@ -902,16 +467,6 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
902
467
|
* @memberof ClaimsApi
|
|
903
468
|
*/
|
|
904
469
|
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, {}>>;
|
|
915
470
|
/**
|
|
916
471
|
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
917
472
|
* @summary Retrieve the claim regulation summary
|
|
@@ -921,16 +476,6 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
921
476
|
* @memberof ClaimsApi
|
|
922
477
|
*/
|
|
923
478
|
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, {}>>;
|
|
934
479
|
/**
|
|
935
480
|
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
936
481
|
* @summary List claims
|
|
@@ -940,16 +485,6 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
940
485
|
* @memberof ClaimsApi
|
|
941
486
|
*/
|
|
942
487
|
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, {}>>;
|
|
953
488
|
/**
|
|
954
489
|
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
955
490
|
* @summary Patch the claim
|
|
@@ -959,16 +494,6 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
959
494
|
* @memberof ClaimsApi
|
|
960
495
|
*/
|
|
961
496
|
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, {}>>;
|
|
972
497
|
/**
|
|
973
498
|
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
974
499
|
* @summary Update the claim
|
|
@@ -978,14 +503,4 @@ export declare class ClaimsApi extends BaseAPI {
|
|
|
978
503
|
* @memberof ClaimsApi
|
|
979
504
|
*/
|
|
980
505
|
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, {}>>;
|
|
991
506
|
}
|