@emilgroup/claim-sdk-node 1.41.1-beta.0 → 1.41.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +53 -45
- package/api/claim-partner-roles-api.ts +127 -107
- package/api/claim-partners-api.ts +103 -87
- package/api/claim-positions-api.ts +181 -153
- package/api/claim-regulations-api.ts +128 -108
- package/api/claim-statuses-api.ts +153 -129
- package/api/claims-api.ts +177 -149
- package/api/health-check-api.ts +46 -38
- package/api/settlements-api.ts +127 -107
- package/dist/api/claim-limit-usages-api.d.ts +42 -34
- package/dist/api/claim-limit-usages-api.js +37 -29
- package/dist/api/claim-partner-roles-api.d.ts +97 -77
- package/dist/api/claim-partner-roles-api.js +95 -75
- package/dist/api/claim-partners-api.d.ts +79 -63
- package/dist/api/claim-partners-api.js +76 -60
- package/dist/api/claim-positions-api.d.ts +136 -108
- package/dist/api/claim-positions-api.js +136 -108
- package/dist/api/claim-regulations-api.d.ts +98 -78
- package/dist/api/claim-regulations-api.js +95 -75
- package/dist/api/claim-statuses-api.d.ts +116 -92
- package/dist/api/claim-statuses-api.js +115 -91
- package/dist/api/claims-api.d.ts +134 -106
- package/dist/api/claims-api.js +134 -106
- package/dist/api/health-check-api.d.ts +32 -24
- package/dist/api/health-check-api.js +46 -38
- package/dist/api/settlements-api.d.ts +97 -77
- package/dist/api/settlements-api.js +95 -75
- package/package.json +1 -1
|
@@ -36,14 +36,15 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
|
|
|
36
36
|
* @param {*} [options] Override http request option.
|
|
37
37
|
* @throws {RequiredError}
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
batchUpsertClaimPositions: (claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
40
40
|
/**
|
|
41
|
-
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
|
|
41
|
+
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
42
42
|
* @summary Batch upsert claim positions
|
|
43
43
|
* @param {string} claimCode Unique identifier for the object.
|
|
44
44
|
* @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
|
|
45
45
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
46
46
|
* @param {*} [options] Override http request option.
|
|
47
|
+
* @deprecated
|
|
47
48
|
* @throws {RequiredError}
|
|
48
49
|
*/
|
|
49
50
|
batchUpsertClaimPositions1: (claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -56,14 +57,15 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
|
|
|
56
57
|
* @param {*} [options] Override http request option.
|
|
57
58
|
* @throws {RequiredError}
|
|
58
59
|
*/
|
|
59
|
-
|
|
60
|
+
calculateClaimPositions: (claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
61
|
/**
|
|
61
|
-
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
|
|
62
|
+
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
62
63
|
* @summary Calculate claim positions
|
|
63
64
|
* @param {string} claimCode Unique identifier for the object.
|
|
64
65
|
* @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
|
|
65
66
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
66
67
|
* @param {*} [options] Override http request option.
|
|
68
|
+
* @deprecated
|
|
67
69
|
* @throws {RequiredError}
|
|
68
70
|
*/
|
|
69
71
|
calculateClaimPositions1: (claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -75,13 +77,14 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
|
|
|
75
77
|
* @param {*} [options] Override http request option.
|
|
76
78
|
* @throws {RequiredError}
|
|
77
79
|
*/
|
|
78
|
-
|
|
80
|
+
createClaimPosition: (createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
79
81
|
/**
|
|
80
|
-
* This will create claim position. **Required Permissions** \"claim-management.claims.create\"
|
|
82
|
+
* This will create claim position. **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.
|
|
81
83
|
* @summary Create the claim position
|
|
82
84
|
* @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
|
|
83
85
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
84
86
|
* @param {*} [options] Override http request option.
|
|
87
|
+
* @deprecated
|
|
85
88
|
* @throws {RequiredError}
|
|
86
89
|
*/
|
|
87
90
|
createClaimPosition1: (createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -93,13 +96,14 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
|
|
|
93
96
|
* @param {*} [options] Override http request option.
|
|
94
97
|
* @throws {RequiredError}
|
|
95
98
|
*/
|
|
96
|
-
|
|
99
|
+
deleteClaimPosition: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
97
100
|
/**
|
|
98
|
-
* This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
|
|
101
|
+
* This will delete claim position. **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.
|
|
99
102
|
* @summary Delete the claim position
|
|
100
103
|
* @param {string} code Unique identifier for the object.
|
|
101
104
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
102
105
|
* @param {*} [options] Override http request option.
|
|
106
|
+
* @deprecated
|
|
103
107
|
* @throws {RequiredError}
|
|
104
108
|
*/
|
|
105
109
|
deleteClaimPosition1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -112,14 +116,15 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
|
|
|
112
116
|
* @param {*} [options] Override http request option.
|
|
113
117
|
* @throws {RequiredError}
|
|
114
118
|
*/
|
|
115
|
-
|
|
119
|
+
getClaimPosition: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
116
120
|
/**
|
|
117
|
-
* This will get claim position. **Required Permissions** \"claim-management.claims.view\"
|
|
121
|
+
* This will get claim position. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
118
122
|
* @summary Retrieve the claim position
|
|
119
123
|
* @param {string} code
|
|
120
124
|
* @param {string} expand
|
|
121
125
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
122
126
|
* @param {*} [options] Override http request option.
|
|
127
|
+
* @deprecated
|
|
123
128
|
* @throws {RequiredError}
|
|
124
129
|
*/
|
|
125
130
|
getClaimPosition1: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -137,9 +142,9 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
|
|
|
137
142
|
* @param {*} [options] Override http request option.
|
|
138
143
|
* @throws {RequiredError}
|
|
139
144
|
*/
|
|
140
|
-
|
|
145
|
+
listClaimPositions: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
141
146
|
/**
|
|
142
|
-
* Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
|
|
147
|
+
* Retrieves a list of claim positions. **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.
|
|
143
148
|
* @summary List claim positions
|
|
144
149
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
145
150
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -150,6 +155,7 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
|
|
|
150
155
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
151
156
|
* @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, claimCode, positionNumber, category, status, createdAt, updatedAt</i>
|
|
152
157
|
* @param {*} [options] Override http request option.
|
|
158
|
+
* @deprecated
|
|
153
159
|
* @throws {RequiredError}
|
|
154
160
|
*/
|
|
155
161
|
listClaimPositions1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -162,14 +168,15 @@ export declare const ClaimPositionsApiAxiosParamCreator: (configuration?: Config
|
|
|
162
168
|
* @param {*} [options] Override http request option.
|
|
163
169
|
* @throws {RequiredError}
|
|
164
170
|
*/
|
|
165
|
-
|
|
171
|
+
updateClaimPosition: (code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
166
172
|
/**
|
|
167
|
-
* This will update claim position. **Required Permissions** \"claim-management.claims.update\"
|
|
173
|
+
* This will update claim position. **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.
|
|
168
174
|
* @summary Update the claim position
|
|
169
175
|
* @param {string} code
|
|
170
176
|
* @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
|
|
171
177
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
172
178
|
* @param {*} [options] Override http request option.
|
|
179
|
+
* @deprecated
|
|
173
180
|
* @throws {RequiredError}
|
|
174
181
|
*/
|
|
175
182
|
updateClaimPosition1: (code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -188,14 +195,15 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
|
|
|
188
195
|
* @param {*} [options] Override http request option.
|
|
189
196
|
* @throws {RequiredError}
|
|
190
197
|
*/
|
|
191
|
-
|
|
198
|
+
batchUpsertClaimPositions(claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BatchUpsertClaimPositionsResponseClass>>;
|
|
192
199
|
/**
|
|
193
|
-
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
|
|
200
|
+
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
194
201
|
* @summary Batch upsert claim positions
|
|
195
202
|
* @param {string} claimCode Unique identifier for the object.
|
|
196
203
|
* @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
|
|
197
204
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
198
205
|
* @param {*} [options] Override http request option.
|
|
206
|
+
* @deprecated
|
|
199
207
|
* @throws {RequiredError}
|
|
200
208
|
*/
|
|
201
209
|
batchUpsertClaimPositions1(claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BatchUpsertClaimPositionsResponseClass>>;
|
|
@@ -208,14 +216,15 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
|
|
|
208
216
|
* @param {*} [options] Override http request option.
|
|
209
217
|
* @throws {RequiredError}
|
|
210
218
|
*/
|
|
211
|
-
|
|
219
|
+
calculateClaimPositions(claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalculateClaimPositionsResponseClass>>;
|
|
212
220
|
/**
|
|
213
|
-
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
|
|
221
|
+
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
214
222
|
* @summary Calculate claim positions
|
|
215
223
|
* @param {string} claimCode Unique identifier for the object.
|
|
216
224
|
* @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
|
|
217
225
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
218
226
|
* @param {*} [options] Override http request option.
|
|
227
|
+
* @deprecated
|
|
219
228
|
* @throws {RequiredError}
|
|
220
229
|
*/
|
|
221
230
|
calculateClaimPositions1(claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalculateClaimPositionsResponseClass>>;
|
|
@@ -227,13 +236,14 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
|
|
|
227
236
|
* @param {*} [options] Override http request option.
|
|
228
237
|
* @throws {RequiredError}
|
|
229
238
|
*/
|
|
230
|
-
|
|
239
|
+
createClaimPosition(createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPositionResponseClass>>;
|
|
231
240
|
/**
|
|
232
|
-
* This will create claim position. **Required Permissions** \"claim-management.claims.create\"
|
|
241
|
+
* This will create claim position. **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.
|
|
233
242
|
* @summary Create the claim position
|
|
234
243
|
* @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
|
|
235
244
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
236
245
|
* @param {*} [options] Override http request option.
|
|
246
|
+
* @deprecated
|
|
237
247
|
* @throws {RequiredError}
|
|
238
248
|
*/
|
|
239
249
|
createClaimPosition1(createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPositionResponseClass>>;
|
|
@@ -245,13 +255,14 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
|
|
|
245
255
|
* @param {*} [options] Override http request option.
|
|
246
256
|
* @throws {RequiredError}
|
|
247
257
|
*/
|
|
248
|
-
|
|
258
|
+
deleteClaimPosition(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
249
259
|
/**
|
|
250
|
-
* This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
|
|
260
|
+
* This will delete claim position. **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.
|
|
251
261
|
* @summary Delete the claim position
|
|
252
262
|
* @param {string} code Unique identifier for the object.
|
|
253
263
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
254
264
|
* @param {*} [options] Override http request option.
|
|
265
|
+
* @deprecated
|
|
255
266
|
* @throws {RequiredError}
|
|
256
267
|
*/
|
|
257
268
|
deleteClaimPosition1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -264,14 +275,15 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
|
|
|
264
275
|
* @param {*} [options] Override http request option.
|
|
265
276
|
* @throws {RequiredError}
|
|
266
277
|
*/
|
|
267
|
-
|
|
278
|
+
getClaimPosition(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPositionResponseClass>>;
|
|
268
279
|
/**
|
|
269
|
-
* This will get claim position. **Required Permissions** \"claim-management.claims.view\"
|
|
280
|
+
* This will get claim position. **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.
|
|
270
281
|
* @summary Retrieve the claim position
|
|
271
282
|
* @param {string} code
|
|
272
283
|
* @param {string} expand
|
|
273
284
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
274
285
|
* @param {*} [options] Override http request option.
|
|
286
|
+
* @deprecated
|
|
275
287
|
* @throws {RequiredError}
|
|
276
288
|
*/
|
|
277
289
|
getClaimPosition1(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPositionResponseClass>>;
|
|
@@ -289,9 +301,9 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
|
|
|
289
301
|
* @param {*} [options] Override http request option.
|
|
290
302
|
* @throws {RequiredError}
|
|
291
303
|
*/
|
|
292
|
-
|
|
304
|
+
listClaimPositions(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPositionsResponseClass>>;
|
|
293
305
|
/**
|
|
294
|
-
* Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
|
|
306
|
+
* Retrieves a list of claim positions. **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.
|
|
295
307
|
* @summary List claim positions
|
|
296
308
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
297
309
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -302,6 +314,7 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
|
|
|
302
314
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
303
315
|
* @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, claimCode, positionNumber, category, status, createdAt, updatedAt</i>
|
|
304
316
|
* @param {*} [options] Override http request option.
|
|
317
|
+
* @deprecated
|
|
305
318
|
* @throws {RequiredError}
|
|
306
319
|
*/
|
|
307
320
|
listClaimPositions1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPositionsResponseClass>>;
|
|
@@ -314,14 +327,15 @@ export declare const ClaimPositionsApiFp: (configuration?: Configuration) => {
|
|
|
314
327
|
* @param {*} [options] Override http request option.
|
|
315
328
|
* @throws {RequiredError}
|
|
316
329
|
*/
|
|
317
|
-
|
|
330
|
+
updateClaimPosition(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPositionResponseClass>>;
|
|
318
331
|
/**
|
|
319
|
-
* This will update claim position. **Required Permissions** \"claim-management.claims.update\"
|
|
332
|
+
* This will update claim position. **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.
|
|
320
333
|
* @summary Update the claim position
|
|
321
334
|
* @param {string} code
|
|
322
335
|
* @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
|
|
323
336
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
324
337
|
* @param {*} [options] Override http request option.
|
|
338
|
+
* @deprecated
|
|
325
339
|
* @throws {RequiredError}
|
|
326
340
|
*/
|
|
327
341
|
updateClaimPosition1(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPositionResponseClass>>;
|
|
@@ -340,14 +354,15 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
|
|
|
340
354
|
* @param {*} [options] Override http request option.
|
|
341
355
|
* @throws {RequiredError}
|
|
342
356
|
*/
|
|
343
|
-
|
|
357
|
+
batchUpsertClaimPositions(claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: any): AxiosPromise<BatchUpsertClaimPositionsResponseClass>;
|
|
344
358
|
/**
|
|
345
|
-
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
|
|
359
|
+
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
346
360
|
* @summary Batch upsert claim positions
|
|
347
361
|
* @param {string} claimCode Unique identifier for the object.
|
|
348
362
|
* @param {BatchUpsertClaimPositionsRequestDto} batchUpsertClaimPositionsRequestDto
|
|
349
363
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
350
364
|
* @param {*} [options] Override http request option.
|
|
365
|
+
* @deprecated
|
|
351
366
|
* @throws {RequiredError}
|
|
352
367
|
*/
|
|
353
368
|
batchUpsertClaimPositions1(claimCode: string, batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto, authorization?: string, options?: any): AxiosPromise<BatchUpsertClaimPositionsResponseClass>;
|
|
@@ -360,14 +375,15 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
|
|
|
360
375
|
* @param {*} [options] Override http request option.
|
|
361
376
|
* @throws {RequiredError}
|
|
362
377
|
*/
|
|
363
|
-
|
|
378
|
+
calculateClaimPositions(claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: any): AxiosPromise<CalculateClaimPositionsResponseClass>;
|
|
364
379
|
/**
|
|
365
|
-
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
|
|
380
|
+
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
366
381
|
* @summary Calculate claim positions
|
|
367
382
|
* @param {string} claimCode Unique identifier for the object.
|
|
368
383
|
* @param {CalculateClaimPositionsRequestDto} calculateClaimPositionsRequestDto
|
|
369
384
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
370
385
|
* @param {*} [options] Override http request option.
|
|
386
|
+
* @deprecated
|
|
371
387
|
* @throws {RequiredError}
|
|
372
388
|
*/
|
|
373
389
|
calculateClaimPositions1(claimCode: string, calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto, authorization?: string, options?: any): AxiosPromise<CalculateClaimPositionsResponseClass>;
|
|
@@ -379,13 +395,14 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
|
|
|
379
395
|
* @param {*} [options] Override http request option.
|
|
380
396
|
* @throws {RequiredError}
|
|
381
397
|
*/
|
|
382
|
-
|
|
398
|
+
createClaimPosition(createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPositionResponseClass>;
|
|
383
399
|
/**
|
|
384
|
-
* This will create claim position. **Required Permissions** \"claim-management.claims.create\"
|
|
400
|
+
* This will create claim position. **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.
|
|
385
401
|
* @summary Create the claim position
|
|
386
402
|
* @param {CreateClaimPositionRequestDto} createClaimPositionRequestDto
|
|
387
403
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
388
404
|
* @param {*} [options] Override http request option.
|
|
405
|
+
* @deprecated
|
|
389
406
|
* @throws {RequiredError}
|
|
390
407
|
*/
|
|
391
408
|
createClaimPosition1(createClaimPositionRequestDto: CreateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPositionResponseClass>;
|
|
@@ -397,13 +414,14 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
|
|
|
397
414
|
* @param {*} [options] Override http request option.
|
|
398
415
|
* @throws {RequiredError}
|
|
399
416
|
*/
|
|
400
|
-
|
|
417
|
+
deleteClaimPosition(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
401
418
|
/**
|
|
402
|
-
* This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
|
|
419
|
+
* This will delete claim position. **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.
|
|
403
420
|
* @summary Delete the claim position
|
|
404
421
|
* @param {string} code Unique identifier for the object.
|
|
405
422
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
406
423
|
* @param {*} [options] Override http request option.
|
|
424
|
+
* @deprecated
|
|
407
425
|
* @throws {RequiredError}
|
|
408
426
|
*/
|
|
409
427
|
deleteClaimPosition1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
@@ -416,14 +434,15 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
|
|
|
416
434
|
* @param {*} [options] Override http request option.
|
|
417
435
|
* @throws {RequiredError}
|
|
418
436
|
*/
|
|
419
|
-
|
|
437
|
+
getClaimPosition(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetClaimPositionResponseClass>;
|
|
420
438
|
/**
|
|
421
|
-
* This will get claim position. **Required Permissions** \"claim-management.claims.view\"
|
|
439
|
+
* This will get claim position. **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.
|
|
422
440
|
* @summary Retrieve the claim position
|
|
423
441
|
* @param {string} code
|
|
424
442
|
* @param {string} expand
|
|
425
443
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
426
444
|
* @param {*} [options] Override http request option.
|
|
445
|
+
* @deprecated
|
|
427
446
|
* @throws {RequiredError}
|
|
428
447
|
*/
|
|
429
448
|
getClaimPosition1(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetClaimPositionResponseClass>;
|
|
@@ -441,9 +460,9 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
|
|
|
441
460
|
* @param {*} [options] Override http request option.
|
|
442
461
|
* @throws {RequiredError}
|
|
443
462
|
*/
|
|
444
|
-
|
|
463
|
+
listClaimPositions(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPositionsResponseClass>;
|
|
445
464
|
/**
|
|
446
|
-
* Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
|
|
465
|
+
* Retrieves a list of claim positions. **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.
|
|
447
466
|
* @summary List claim positions
|
|
448
467
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
449
468
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -454,6 +473,7 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
|
|
|
454
473
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
455
474
|
* @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, claimCode, positionNumber, category, status, createdAt, updatedAt</i>
|
|
456
475
|
* @param {*} [options] Override http request option.
|
|
476
|
+
* @deprecated
|
|
457
477
|
* @throws {RequiredError}
|
|
458
478
|
*/
|
|
459
479
|
listClaimPositions1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPositionsResponseClass>;
|
|
@@ -466,40 +486,41 @@ export declare const ClaimPositionsApiFactory: (configuration?: Configuration, b
|
|
|
466
486
|
* @param {*} [options] Override http request option.
|
|
467
487
|
* @throws {RequiredError}
|
|
468
488
|
*/
|
|
469
|
-
|
|
489
|
+
updateClaimPosition(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPositionResponseClass>;
|
|
470
490
|
/**
|
|
471
|
-
* This will update claim position. **Required Permissions** \"claim-management.claims.update\"
|
|
491
|
+
* This will update claim position. **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.
|
|
472
492
|
* @summary Update the claim position
|
|
473
493
|
* @param {string} code
|
|
474
494
|
* @param {UpdateClaimPositionRequestDto} updateClaimPositionRequestDto
|
|
475
495
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
476
496
|
* @param {*} [options] Override http request option.
|
|
497
|
+
* @deprecated
|
|
477
498
|
* @throws {RequiredError}
|
|
478
499
|
*/
|
|
479
500
|
updateClaimPosition1(code: string, updateClaimPositionRequestDto: UpdateClaimPositionRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPositionResponseClass>;
|
|
480
501
|
};
|
|
481
502
|
/**
|
|
482
|
-
* Request parameters for
|
|
503
|
+
* Request parameters for batchUpsertClaimPositions operation in ClaimPositionsApi.
|
|
483
504
|
* @export
|
|
484
|
-
* @interface
|
|
505
|
+
* @interface ClaimPositionsApiBatchUpsertClaimPositionsRequest
|
|
485
506
|
*/
|
|
486
|
-
export interface
|
|
507
|
+
export interface ClaimPositionsApiBatchUpsertClaimPositionsRequest {
|
|
487
508
|
/**
|
|
488
509
|
* Unique identifier for the object.
|
|
489
510
|
* @type {string}
|
|
490
|
-
* @memberof
|
|
511
|
+
* @memberof ClaimPositionsApiBatchUpsertClaimPositions
|
|
491
512
|
*/
|
|
492
513
|
readonly claimCode: string;
|
|
493
514
|
/**
|
|
494
515
|
*
|
|
495
516
|
* @type {BatchUpsertClaimPositionsRequestDto}
|
|
496
|
-
* @memberof
|
|
517
|
+
* @memberof ClaimPositionsApiBatchUpsertClaimPositions
|
|
497
518
|
*/
|
|
498
519
|
readonly batchUpsertClaimPositionsRequestDto: BatchUpsertClaimPositionsRequestDto;
|
|
499
520
|
/**
|
|
500
521
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
501
522
|
* @type {string}
|
|
502
|
-
* @memberof
|
|
523
|
+
* @memberof ClaimPositionsApiBatchUpsertClaimPositions
|
|
503
524
|
*/
|
|
504
525
|
readonly authorization?: string;
|
|
505
526
|
}
|
|
@@ -529,27 +550,27 @@ export interface ClaimPositionsApiBatchUpsertClaimPositions1Request {
|
|
|
529
550
|
readonly authorization?: string;
|
|
530
551
|
}
|
|
531
552
|
/**
|
|
532
|
-
* Request parameters for
|
|
553
|
+
* Request parameters for calculateClaimPositions operation in ClaimPositionsApi.
|
|
533
554
|
* @export
|
|
534
|
-
* @interface
|
|
555
|
+
* @interface ClaimPositionsApiCalculateClaimPositionsRequest
|
|
535
556
|
*/
|
|
536
|
-
export interface
|
|
557
|
+
export interface ClaimPositionsApiCalculateClaimPositionsRequest {
|
|
537
558
|
/**
|
|
538
559
|
* Unique identifier for the object.
|
|
539
560
|
* @type {string}
|
|
540
|
-
* @memberof
|
|
561
|
+
* @memberof ClaimPositionsApiCalculateClaimPositions
|
|
541
562
|
*/
|
|
542
563
|
readonly claimCode: string;
|
|
543
564
|
/**
|
|
544
565
|
*
|
|
545
566
|
* @type {CalculateClaimPositionsRequestDto}
|
|
546
|
-
* @memberof
|
|
567
|
+
* @memberof ClaimPositionsApiCalculateClaimPositions
|
|
547
568
|
*/
|
|
548
569
|
readonly calculateClaimPositionsRequestDto: CalculateClaimPositionsRequestDto;
|
|
549
570
|
/**
|
|
550
571
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
551
572
|
* @type {string}
|
|
552
|
-
* @memberof
|
|
573
|
+
* @memberof ClaimPositionsApiCalculateClaimPositions
|
|
553
574
|
*/
|
|
554
575
|
readonly authorization?: string;
|
|
555
576
|
}
|
|
@@ -579,21 +600,21 @@ export interface ClaimPositionsApiCalculateClaimPositions1Request {
|
|
|
579
600
|
readonly authorization?: string;
|
|
580
601
|
}
|
|
581
602
|
/**
|
|
582
|
-
* Request parameters for
|
|
603
|
+
* Request parameters for createClaimPosition operation in ClaimPositionsApi.
|
|
583
604
|
* @export
|
|
584
|
-
* @interface
|
|
605
|
+
* @interface ClaimPositionsApiCreateClaimPositionRequest
|
|
585
606
|
*/
|
|
586
|
-
export interface
|
|
607
|
+
export interface ClaimPositionsApiCreateClaimPositionRequest {
|
|
587
608
|
/**
|
|
588
609
|
*
|
|
589
610
|
* @type {CreateClaimPositionRequestDto}
|
|
590
|
-
* @memberof
|
|
611
|
+
* @memberof ClaimPositionsApiCreateClaimPosition
|
|
591
612
|
*/
|
|
592
613
|
readonly createClaimPositionRequestDto: CreateClaimPositionRequestDto;
|
|
593
614
|
/**
|
|
594
615
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
595
616
|
* @type {string}
|
|
596
|
-
* @memberof
|
|
617
|
+
* @memberof ClaimPositionsApiCreateClaimPosition
|
|
597
618
|
*/
|
|
598
619
|
readonly authorization?: string;
|
|
599
620
|
}
|
|
@@ -617,21 +638,21 @@ export interface ClaimPositionsApiCreateClaimPosition1Request {
|
|
|
617
638
|
readonly authorization?: string;
|
|
618
639
|
}
|
|
619
640
|
/**
|
|
620
|
-
* Request parameters for
|
|
641
|
+
* Request parameters for deleteClaimPosition operation in ClaimPositionsApi.
|
|
621
642
|
* @export
|
|
622
|
-
* @interface
|
|
643
|
+
* @interface ClaimPositionsApiDeleteClaimPositionRequest
|
|
623
644
|
*/
|
|
624
|
-
export interface
|
|
645
|
+
export interface ClaimPositionsApiDeleteClaimPositionRequest {
|
|
625
646
|
/**
|
|
626
647
|
* Unique identifier for the object.
|
|
627
648
|
* @type {string}
|
|
628
|
-
* @memberof
|
|
649
|
+
* @memberof ClaimPositionsApiDeleteClaimPosition
|
|
629
650
|
*/
|
|
630
651
|
readonly code: string;
|
|
631
652
|
/**
|
|
632
653
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
633
654
|
* @type {string}
|
|
634
|
-
* @memberof
|
|
655
|
+
* @memberof ClaimPositionsApiDeleteClaimPosition
|
|
635
656
|
*/
|
|
636
657
|
readonly authorization?: string;
|
|
637
658
|
}
|
|
@@ -655,27 +676,27 @@ export interface ClaimPositionsApiDeleteClaimPosition1Request {
|
|
|
655
676
|
readonly authorization?: string;
|
|
656
677
|
}
|
|
657
678
|
/**
|
|
658
|
-
* Request parameters for
|
|
679
|
+
* Request parameters for getClaimPosition operation in ClaimPositionsApi.
|
|
659
680
|
* @export
|
|
660
|
-
* @interface
|
|
681
|
+
* @interface ClaimPositionsApiGetClaimPositionRequest
|
|
661
682
|
*/
|
|
662
|
-
export interface
|
|
683
|
+
export interface ClaimPositionsApiGetClaimPositionRequest {
|
|
663
684
|
/**
|
|
664
685
|
*
|
|
665
686
|
* @type {string}
|
|
666
|
-
* @memberof
|
|
687
|
+
* @memberof ClaimPositionsApiGetClaimPosition
|
|
667
688
|
*/
|
|
668
689
|
readonly code: string;
|
|
669
690
|
/**
|
|
670
691
|
*
|
|
671
692
|
* @type {string}
|
|
672
|
-
* @memberof
|
|
693
|
+
* @memberof ClaimPositionsApiGetClaimPosition
|
|
673
694
|
*/
|
|
674
695
|
readonly expand: string;
|
|
675
696
|
/**
|
|
676
697
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
677
698
|
* @type {string}
|
|
678
|
-
* @memberof
|
|
699
|
+
* @memberof ClaimPositionsApiGetClaimPosition
|
|
679
700
|
*/
|
|
680
701
|
readonly authorization?: string;
|
|
681
702
|
}
|
|
@@ -705,57 +726,57 @@ export interface ClaimPositionsApiGetClaimPosition1Request {
|
|
|
705
726
|
readonly authorization?: string;
|
|
706
727
|
}
|
|
707
728
|
/**
|
|
708
|
-
* Request parameters for
|
|
729
|
+
* Request parameters for listClaimPositions operation in ClaimPositionsApi.
|
|
709
730
|
* @export
|
|
710
|
-
* @interface
|
|
731
|
+
* @interface ClaimPositionsApiListClaimPositionsRequest
|
|
711
732
|
*/
|
|
712
|
-
export interface
|
|
733
|
+
export interface ClaimPositionsApiListClaimPositionsRequest {
|
|
713
734
|
/**
|
|
714
735
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
715
736
|
* @type {string}
|
|
716
|
-
* @memberof
|
|
737
|
+
* @memberof ClaimPositionsApiListClaimPositions
|
|
717
738
|
*/
|
|
718
739
|
readonly authorization?: string;
|
|
719
740
|
/**
|
|
720
741
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
721
742
|
* @type {number}
|
|
722
|
-
* @memberof
|
|
743
|
+
* @memberof ClaimPositionsApiListClaimPositions
|
|
723
744
|
*/
|
|
724
745
|
readonly pageSize?: number;
|
|
725
746
|
/**
|
|
726
747
|
* 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.
|
|
727
748
|
* @type {string}
|
|
728
|
-
* @memberof
|
|
749
|
+
* @memberof ClaimPositionsApiListClaimPositions
|
|
729
750
|
*/
|
|
730
751
|
readonly pageToken?: string;
|
|
731
752
|
/**
|
|
732
753
|
* 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, claimCode, positionNumber, category, status, createdAt, updatedAt</i>
|
|
733
754
|
* @type {string}
|
|
734
|
-
* @memberof
|
|
755
|
+
* @memberof ClaimPositionsApiListClaimPositions
|
|
735
756
|
*/
|
|
736
757
|
readonly filter?: string;
|
|
737
758
|
/**
|
|
738
759
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
739
760
|
* @type {string}
|
|
740
|
-
* @memberof
|
|
761
|
+
* @memberof ClaimPositionsApiListClaimPositions
|
|
741
762
|
*/
|
|
742
763
|
readonly search?: string;
|
|
743
764
|
/**
|
|
744
765
|
* 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, code, order, createdAt, updatedAt, procedureDate</i>
|
|
745
766
|
* @type {string}
|
|
746
|
-
* @memberof
|
|
767
|
+
* @memberof ClaimPositionsApiListClaimPositions
|
|
747
768
|
*/
|
|
748
769
|
readonly order?: string;
|
|
749
770
|
/**
|
|
750
771
|
* 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/>
|
|
751
772
|
* @type {string}
|
|
752
|
-
* @memberof
|
|
773
|
+
* @memberof ClaimPositionsApiListClaimPositions
|
|
753
774
|
*/
|
|
754
775
|
readonly expand?: string;
|
|
755
776
|
/**
|
|
756
777
|
* 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, claimCode, positionNumber, category, status, createdAt, updatedAt</i>
|
|
757
778
|
* @type {string}
|
|
758
|
-
* @memberof
|
|
779
|
+
* @memberof ClaimPositionsApiListClaimPositions
|
|
759
780
|
*/
|
|
760
781
|
readonly filters?: string;
|
|
761
782
|
}
|
|
@@ -815,27 +836,27 @@ export interface ClaimPositionsApiListClaimPositions1Request {
|
|
|
815
836
|
readonly filters?: string;
|
|
816
837
|
}
|
|
817
838
|
/**
|
|
818
|
-
* Request parameters for
|
|
839
|
+
* Request parameters for updateClaimPosition operation in ClaimPositionsApi.
|
|
819
840
|
* @export
|
|
820
|
-
* @interface
|
|
841
|
+
* @interface ClaimPositionsApiUpdateClaimPositionRequest
|
|
821
842
|
*/
|
|
822
|
-
export interface
|
|
843
|
+
export interface ClaimPositionsApiUpdateClaimPositionRequest {
|
|
823
844
|
/**
|
|
824
845
|
*
|
|
825
846
|
* @type {string}
|
|
826
|
-
* @memberof
|
|
847
|
+
* @memberof ClaimPositionsApiUpdateClaimPosition
|
|
827
848
|
*/
|
|
828
849
|
readonly code: string;
|
|
829
850
|
/**
|
|
830
851
|
*
|
|
831
852
|
* @type {UpdateClaimPositionRequestDto}
|
|
832
|
-
* @memberof
|
|
853
|
+
* @memberof ClaimPositionsApiUpdateClaimPosition
|
|
833
854
|
*/
|
|
834
855
|
readonly updateClaimPositionRequestDto: UpdateClaimPositionRequestDto;
|
|
835
856
|
/**
|
|
836
857
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
837
858
|
* @type {string}
|
|
838
|
-
* @memberof
|
|
859
|
+
* @memberof ClaimPositionsApiUpdateClaimPosition
|
|
839
860
|
*/
|
|
840
861
|
readonly authorization?: string;
|
|
841
862
|
}
|
|
@@ -874,17 +895,18 @@ export declare class ClaimPositionsApi extends BaseAPI {
|
|
|
874
895
|
/**
|
|
875
896
|
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
|
|
876
897
|
* @summary Batch upsert claim positions
|
|
877
|
-
* @param {
|
|
898
|
+
* @param {ClaimPositionsApiBatchUpsertClaimPositionsRequest} requestParameters Request parameters.
|
|
878
899
|
* @param {*} [options] Override http request option.
|
|
879
900
|
* @throws {RequiredError}
|
|
880
901
|
* @memberof ClaimPositionsApi
|
|
881
902
|
*/
|
|
882
|
-
|
|
903
|
+
batchUpsertClaimPositions(requestParameters: ClaimPositionsApiBatchUpsertClaimPositionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchUpsertClaimPositionsResponseClass, any, {}>>;
|
|
883
904
|
/**
|
|
884
|
-
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\"
|
|
905
|
+
* Batch upsert claim positions for a claim. Creates new positions, updates existing ones by code, and deletes positions by code in a single request. **Required Permissions** \"claim-management.claims.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
885
906
|
* @summary Batch upsert claim positions
|
|
886
907
|
* @param {ClaimPositionsApiBatchUpsertClaimPositions1Request} requestParameters Request parameters.
|
|
887
908
|
* @param {*} [options] Override http request option.
|
|
909
|
+
* @deprecated
|
|
888
910
|
* @throws {RequiredError}
|
|
889
911
|
* @memberof ClaimPositionsApi
|
|
890
912
|
*/
|
|
@@ -892,17 +914,18 @@ export declare class ClaimPositionsApi extends BaseAPI {
|
|
|
892
914
|
/**
|
|
893
915
|
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
|
|
894
916
|
* @summary Calculate claim positions
|
|
895
|
-
* @param {
|
|
917
|
+
* @param {ClaimPositionsApiCalculateClaimPositionsRequest} requestParameters Request parameters.
|
|
896
918
|
* @param {*} [options] Override http request option.
|
|
897
919
|
* @throws {RequiredError}
|
|
898
920
|
* @memberof ClaimPositionsApi
|
|
899
921
|
*/
|
|
900
|
-
|
|
922
|
+
calculateClaimPositions(requestParameters: ClaimPositionsApiCalculateClaimPositionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalculateClaimPositionsResponseClass, any, {}>>;
|
|
901
923
|
/**
|
|
902
|
-
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\"
|
|
924
|
+
* Calculates the reimbursement amount for all open claim positions in a claim. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
903
925
|
* @summary Calculate claim positions
|
|
904
926
|
* @param {ClaimPositionsApiCalculateClaimPositions1Request} requestParameters Request parameters.
|
|
905
927
|
* @param {*} [options] Override http request option.
|
|
928
|
+
* @deprecated
|
|
906
929
|
* @throws {RequiredError}
|
|
907
930
|
* @memberof ClaimPositionsApi
|
|
908
931
|
*/
|
|
@@ -910,17 +933,18 @@ export declare class ClaimPositionsApi extends BaseAPI {
|
|
|
910
933
|
/**
|
|
911
934
|
* This will create claim position. **Required Permissions** \"claim-management.claims.create\"
|
|
912
935
|
* @summary Create the claim position
|
|
913
|
-
* @param {
|
|
936
|
+
* @param {ClaimPositionsApiCreateClaimPositionRequest} requestParameters Request parameters.
|
|
914
937
|
* @param {*} [options] Override http request option.
|
|
915
938
|
* @throws {RequiredError}
|
|
916
939
|
* @memberof ClaimPositionsApi
|
|
917
940
|
*/
|
|
918
|
-
|
|
941
|
+
createClaimPosition(requestParameters: ClaimPositionsApiCreateClaimPositionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPositionResponseClass, any, {}>>;
|
|
919
942
|
/**
|
|
920
|
-
* This will create claim position. **Required Permissions** \"claim-management.claims.create\"
|
|
943
|
+
* This will create claim position. **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.
|
|
921
944
|
* @summary Create the claim position
|
|
922
945
|
* @param {ClaimPositionsApiCreateClaimPosition1Request} requestParameters Request parameters.
|
|
923
946
|
* @param {*} [options] Override http request option.
|
|
947
|
+
* @deprecated
|
|
924
948
|
* @throws {RequiredError}
|
|
925
949
|
* @memberof ClaimPositionsApi
|
|
926
950
|
*/
|
|
@@ -928,17 +952,18 @@ export declare class ClaimPositionsApi extends BaseAPI {
|
|
|
928
952
|
/**
|
|
929
953
|
* This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
|
|
930
954
|
* @summary Delete the claim position
|
|
931
|
-
* @param {
|
|
955
|
+
* @param {ClaimPositionsApiDeleteClaimPositionRequest} requestParameters Request parameters.
|
|
932
956
|
* @param {*} [options] Override http request option.
|
|
933
957
|
* @throws {RequiredError}
|
|
934
958
|
* @memberof ClaimPositionsApi
|
|
935
959
|
*/
|
|
936
|
-
|
|
960
|
+
deleteClaimPosition(requestParameters: ClaimPositionsApiDeleteClaimPositionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
937
961
|
/**
|
|
938
|
-
* This will delete claim position. **Required Permissions** \"claim-management.claims.delete\"
|
|
962
|
+
* This will delete claim position. **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.
|
|
939
963
|
* @summary Delete the claim position
|
|
940
964
|
* @param {ClaimPositionsApiDeleteClaimPosition1Request} requestParameters Request parameters.
|
|
941
965
|
* @param {*} [options] Override http request option.
|
|
966
|
+
* @deprecated
|
|
942
967
|
* @throws {RequiredError}
|
|
943
968
|
* @memberof ClaimPositionsApi
|
|
944
969
|
*/
|
|
@@ -946,17 +971,18 @@ export declare class ClaimPositionsApi extends BaseAPI {
|
|
|
946
971
|
/**
|
|
947
972
|
* This will get claim position. **Required Permissions** \"claim-management.claims.view\"
|
|
948
973
|
* @summary Retrieve the claim position
|
|
949
|
-
* @param {
|
|
974
|
+
* @param {ClaimPositionsApiGetClaimPositionRequest} requestParameters Request parameters.
|
|
950
975
|
* @param {*} [options] Override http request option.
|
|
951
976
|
* @throws {RequiredError}
|
|
952
977
|
* @memberof ClaimPositionsApi
|
|
953
978
|
*/
|
|
954
|
-
|
|
979
|
+
getClaimPosition(requestParameters: ClaimPositionsApiGetClaimPositionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPositionResponseClass, any, {}>>;
|
|
955
980
|
/**
|
|
956
|
-
* This will get claim position. **Required Permissions** \"claim-management.claims.view\"
|
|
981
|
+
* This will get claim position. **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.
|
|
957
982
|
* @summary Retrieve the claim position
|
|
958
983
|
* @param {ClaimPositionsApiGetClaimPosition1Request} requestParameters Request parameters.
|
|
959
984
|
* @param {*} [options] Override http request option.
|
|
985
|
+
* @deprecated
|
|
960
986
|
* @throws {RequiredError}
|
|
961
987
|
* @memberof ClaimPositionsApi
|
|
962
988
|
*/
|
|
@@ -964,17 +990,18 @@ export declare class ClaimPositionsApi extends BaseAPI {
|
|
|
964
990
|
/**
|
|
965
991
|
* Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
|
|
966
992
|
* @summary List claim positions
|
|
967
|
-
* @param {
|
|
993
|
+
* @param {ClaimPositionsApiListClaimPositionsRequest} requestParameters Request parameters.
|
|
968
994
|
* @param {*} [options] Override http request option.
|
|
969
995
|
* @throws {RequiredError}
|
|
970
996
|
* @memberof ClaimPositionsApi
|
|
971
997
|
*/
|
|
972
|
-
|
|
998
|
+
listClaimPositions(requestParameters?: ClaimPositionsApiListClaimPositionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPositionsResponseClass, any, {}>>;
|
|
973
999
|
/**
|
|
974
|
-
* Retrieves a list of claim positions. **Required Permissions** \"claim-management.claims.view\"
|
|
1000
|
+
* Retrieves a list of claim positions. **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.
|
|
975
1001
|
* @summary List claim positions
|
|
976
1002
|
* @param {ClaimPositionsApiListClaimPositions1Request} requestParameters Request parameters.
|
|
977
1003
|
* @param {*} [options] Override http request option.
|
|
1004
|
+
* @deprecated
|
|
978
1005
|
* @throws {RequiredError}
|
|
979
1006
|
* @memberof ClaimPositionsApi
|
|
980
1007
|
*/
|
|
@@ -982,17 +1009,18 @@ export declare class ClaimPositionsApi extends BaseAPI {
|
|
|
982
1009
|
/**
|
|
983
1010
|
* This will update claim position. **Required Permissions** \"claim-management.claims.update\"
|
|
984
1011
|
* @summary Update the claim position
|
|
985
|
-
* @param {
|
|
1012
|
+
* @param {ClaimPositionsApiUpdateClaimPositionRequest} requestParameters Request parameters.
|
|
986
1013
|
* @param {*} [options] Override http request option.
|
|
987
1014
|
* @throws {RequiredError}
|
|
988
1015
|
* @memberof ClaimPositionsApi
|
|
989
1016
|
*/
|
|
990
|
-
|
|
1017
|
+
updateClaimPosition(requestParameters: ClaimPositionsApiUpdateClaimPositionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPositionResponseClass, any, {}>>;
|
|
991
1018
|
/**
|
|
992
|
-
* This will update claim position. **Required Permissions** \"claim-management.claims.update\"
|
|
1019
|
+
* This will update claim position. **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.
|
|
993
1020
|
* @summary Update the claim position
|
|
994
1021
|
* @param {ClaimPositionsApiUpdateClaimPosition1Request} requestParameters Request parameters.
|
|
995
1022
|
* @param {*} [options] Override http request option.
|
|
1023
|
+
* @deprecated
|
|
996
1024
|
* @throws {RequiredError}
|
|
997
1025
|
* @memberof ClaimPositionsApi
|
|
998
1026
|
*/
|