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