@emilgroup/claim-sdk-node 1.41.0 → 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
|
@@ -29,14 +29,13 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
29
29
|
* @param {*} [options] Override http request option.
|
|
30
30
|
* @throws {RequiredError}
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
createClaimRegulation0: (createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
33
|
/**
|
|
34
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
34
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
35
35
|
* @summary Create the claim regulation item
|
|
36
36
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
37
37
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
38
38
|
* @param {*} [options] Override http request option.
|
|
39
|
-
* @deprecated
|
|
40
39
|
* @throws {RequiredError}
|
|
41
40
|
*/
|
|
42
41
|
createClaimRegulation1: (createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -48,14 +47,13 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
48
47
|
* @param {*} [options] Override http request option.
|
|
49
48
|
* @throws {RequiredError}
|
|
50
49
|
*/
|
|
51
|
-
|
|
50
|
+
deleteClaimRegulations0: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
51
|
/**
|
|
53
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
52
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
54
53
|
* @summary Delete the claim regulation item
|
|
55
54
|
* @param {string} code Unique identifier for the object.
|
|
56
55
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
57
56
|
* @param {*} [options] Override http request option.
|
|
58
|
-
* @deprecated
|
|
59
57
|
* @throws {RequiredError}
|
|
60
58
|
*/
|
|
61
59
|
deleteClaimRegulations1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -68,15 +66,14 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
68
66
|
* @param {*} [options] Override http request option.
|
|
69
67
|
* @throws {RequiredError}
|
|
70
68
|
*/
|
|
71
|
-
|
|
69
|
+
getClaimRegulation0: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
70
|
/**
|
|
73
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
71
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
74
72
|
* @summary Retrieve the claim regulation item
|
|
75
73
|
* @param {string} code
|
|
76
74
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
77
75
|
* @param {'claim'} [expand]
|
|
78
76
|
* @param {*} [options] Override http request option.
|
|
79
|
-
* @deprecated
|
|
80
77
|
* @throws {RequiredError}
|
|
81
78
|
*/
|
|
82
79
|
getClaimRegulation1: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -94,9 +91,9 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
94
91
|
* @param {*} [options] Override http request option.
|
|
95
92
|
* @throws {RequiredError}
|
|
96
93
|
*/
|
|
97
|
-
|
|
94
|
+
listClaimRegulations0: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
98
95
|
/**
|
|
99
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
96
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
100
97
|
* @summary List claim regulation items
|
|
101
98
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
102
99
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -107,7 +104,6 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
107
104
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: claim<i>
|
|
108
105
|
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
109
106
|
* @param {*} [options] Override http request option.
|
|
110
|
-
* @deprecated
|
|
111
107
|
* @throws {RequiredError}
|
|
112
108
|
*/
|
|
113
109
|
listClaimRegulations1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -120,15 +116,14 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
120
116
|
* @param {*} [options] Override http request option.
|
|
121
117
|
* @throws {RequiredError}
|
|
122
118
|
*/
|
|
123
|
-
|
|
119
|
+
updateClaimRegulation0: (code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
124
120
|
/**
|
|
125
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
121
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
126
122
|
* @summary Update the claim regulation item
|
|
127
123
|
* @param {string} code Unique identifier for the object.
|
|
128
124
|
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
129
125
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
130
126
|
* @param {*} [options] Override http request option.
|
|
131
|
-
* @deprecated
|
|
132
127
|
* @throws {RequiredError}
|
|
133
128
|
*/
|
|
134
129
|
updateClaimRegulation1: (code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -146,14 +141,13 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
146
141
|
* @param {*} [options] Override http request option.
|
|
147
142
|
* @throws {RequiredError}
|
|
148
143
|
*/
|
|
149
|
-
|
|
144
|
+
createClaimRegulation0(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
150
145
|
/**
|
|
151
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
146
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
152
147
|
* @summary Create the claim regulation item
|
|
153
148
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
154
149
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
155
150
|
* @param {*} [options] Override http request option.
|
|
156
|
-
* @deprecated
|
|
157
151
|
* @throws {RequiredError}
|
|
158
152
|
*/
|
|
159
153
|
createClaimRegulation1(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
@@ -165,14 +159,13 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
165
159
|
* @param {*} [options] Override http request option.
|
|
166
160
|
* @throws {RequiredError}
|
|
167
161
|
*/
|
|
168
|
-
|
|
162
|
+
deleteClaimRegulations0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
169
163
|
/**
|
|
170
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
164
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
171
165
|
* @summary Delete the claim regulation item
|
|
172
166
|
* @param {string} code Unique identifier for the object.
|
|
173
167
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
174
168
|
* @param {*} [options] Override http request option.
|
|
175
|
-
* @deprecated
|
|
176
169
|
* @throws {RequiredError}
|
|
177
170
|
*/
|
|
178
171
|
deleteClaimRegulations1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -185,15 +178,14 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
185
178
|
* @param {*} [options] Override http request option.
|
|
186
179
|
* @throws {RequiredError}
|
|
187
180
|
*/
|
|
188
|
-
|
|
181
|
+
getClaimRegulation0(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
189
182
|
/**
|
|
190
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
183
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
191
184
|
* @summary Retrieve the claim regulation item
|
|
192
185
|
* @param {string} code
|
|
193
186
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
194
187
|
* @param {'claim'} [expand]
|
|
195
188
|
* @param {*} [options] Override http request option.
|
|
196
|
-
* @deprecated
|
|
197
189
|
* @throws {RequiredError}
|
|
198
190
|
*/
|
|
199
191
|
getClaimRegulation1(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
@@ -211,9 +203,9 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
211
203
|
* @param {*} [options] Override http request option.
|
|
212
204
|
* @throws {RequiredError}
|
|
213
205
|
*/
|
|
214
|
-
|
|
206
|
+
listClaimRegulations0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>>;
|
|
215
207
|
/**
|
|
216
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
208
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
217
209
|
* @summary List claim regulation items
|
|
218
210
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
219
211
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -224,7 +216,6 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
224
216
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: claim<i>
|
|
225
217
|
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
226
218
|
* @param {*} [options] Override http request option.
|
|
227
|
-
* @deprecated
|
|
228
219
|
* @throws {RequiredError}
|
|
229
220
|
*/
|
|
230
221
|
listClaimRegulations1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>>;
|
|
@@ -237,15 +228,14 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
237
228
|
* @param {*} [options] Override http request option.
|
|
238
229
|
* @throws {RequiredError}
|
|
239
230
|
*/
|
|
240
|
-
|
|
231
|
+
updateClaimRegulation0(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
241
232
|
/**
|
|
242
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
233
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
243
234
|
* @summary Update the claim regulation item
|
|
244
235
|
* @param {string} code Unique identifier for the object.
|
|
245
236
|
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
246
237
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
247
238
|
* @param {*} [options] Override http request option.
|
|
248
|
-
* @deprecated
|
|
249
239
|
* @throws {RequiredError}
|
|
250
240
|
*/
|
|
251
241
|
updateClaimRegulation1(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
@@ -263,14 +253,13 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
263
253
|
* @param {*} [options] Override http request option.
|
|
264
254
|
* @throws {RequiredError}
|
|
265
255
|
*/
|
|
266
|
-
|
|
256
|
+
createClaimRegulation0(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
267
257
|
/**
|
|
268
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
258
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
269
259
|
* @summary Create the claim regulation item
|
|
270
260
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
271
261
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
272
262
|
* @param {*} [options] Override http request option.
|
|
273
|
-
* @deprecated
|
|
274
263
|
* @throws {RequiredError}
|
|
275
264
|
*/
|
|
276
265
|
createClaimRegulation1(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
@@ -282,14 +271,13 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
282
271
|
* @param {*} [options] Override http request option.
|
|
283
272
|
* @throws {RequiredError}
|
|
284
273
|
*/
|
|
285
|
-
|
|
274
|
+
deleteClaimRegulations0(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
286
275
|
/**
|
|
287
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
276
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
288
277
|
* @summary Delete the claim regulation item
|
|
289
278
|
* @param {string} code Unique identifier for the object.
|
|
290
279
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
291
280
|
* @param {*} [options] Override http request option.
|
|
292
|
-
* @deprecated
|
|
293
281
|
* @throws {RequiredError}
|
|
294
282
|
*/
|
|
295
283
|
deleteClaimRegulations1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
@@ -302,15 +290,14 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
302
290
|
* @param {*} [options] Override http request option.
|
|
303
291
|
* @throws {RequiredError}
|
|
304
292
|
*/
|
|
305
|
-
|
|
293
|
+
getClaimRegulation0(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
306
294
|
/**
|
|
307
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
295
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
308
296
|
* @summary Retrieve the claim regulation item
|
|
309
297
|
* @param {string} code
|
|
310
298
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
311
299
|
* @param {'claim'} [expand]
|
|
312
300
|
* @param {*} [options] Override http request option.
|
|
313
|
-
* @deprecated
|
|
314
301
|
* @throws {RequiredError}
|
|
315
302
|
*/
|
|
316
303
|
getClaimRegulation1(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
@@ -328,9 +315,9 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
328
315
|
* @param {*} [options] Override http request option.
|
|
329
316
|
* @throws {RequiredError}
|
|
330
317
|
*/
|
|
331
|
-
|
|
318
|
+
listClaimRegulations0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
332
319
|
/**
|
|
333
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
320
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
334
321
|
* @summary List claim regulation items
|
|
335
322
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
336
323
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -341,7 +328,6 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
341
328
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: claim<i>
|
|
342
329
|
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
343
330
|
* @param {*} [options] Override http request option.
|
|
344
|
-
* @deprecated
|
|
345
331
|
* @throws {RequiredError}
|
|
346
332
|
*/
|
|
347
333
|
listClaimRegulations1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
@@ -354,35 +340,34 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
354
340
|
* @param {*} [options] Override http request option.
|
|
355
341
|
* @throws {RequiredError}
|
|
356
342
|
*/
|
|
357
|
-
|
|
343
|
+
updateClaimRegulation0(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
358
344
|
/**
|
|
359
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
345
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
360
346
|
* @summary Update the claim regulation item
|
|
361
347
|
* @param {string} code Unique identifier for the object.
|
|
362
348
|
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
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
|
updateClaimRegulation1(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
369
354
|
};
|
|
370
355
|
/**
|
|
371
|
-
* Request parameters for
|
|
356
|
+
* Request parameters for createClaimRegulation0 operation in ClaimRegulationsApi.
|
|
372
357
|
* @export
|
|
373
|
-
* @interface
|
|
358
|
+
* @interface ClaimRegulationsApiCreateClaimRegulation0Request
|
|
374
359
|
*/
|
|
375
|
-
export interface
|
|
360
|
+
export interface ClaimRegulationsApiCreateClaimRegulation0Request {
|
|
376
361
|
/**
|
|
377
362
|
*
|
|
378
363
|
* @type {CreateRegulationItemRequestDto}
|
|
379
|
-
* @memberof
|
|
364
|
+
* @memberof ClaimRegulationsApiCreateClaimRegulation0
|
|
380
365
|
*/
|
|
381
366
|
readonly createRegulationItemRequestDto: CreateRegulationItemRequestDto;
|
|
382
367
|
/**
|
|
383
368
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
384
369
|
* @type {string}
|
|
385
|
-
* @memberof
|
|
370
|
+
* @memberof ClaimRegulationsApiCreateClaimRegulation0
|
|
386
371
|
*/
|
|
387
372
|
readonly authorization?: string;
|
|
388
373
|
}
|
|
@@ -406,21 +391,21 @@ export interface ClaimRegulationsApiCreateClaimRegulation1Request {
|
|
|
406
391
|
readonly authorization?: string;
|
|
407
392
|
}
|
|
408
393
|
/**
|
|
409
|
-
* Request parameters for
|
|
394
|
+
* Request parameters for deleteClaimRegulations0 operation in ClaimRegulationsApi.
|
|
410
395
|
* @export
|
|
411
|
-
* @interface
|
|
396
|
+
* @interface ClaimRegulationsApiDeleteClaimRegulations0Request
|
|
412
397
|
*/
|
|
413
|
-
export interface
|
|
398
|
+
export interface ClaimRegulationsApiDeleteClaimRegulations0Request {
|
|
414
399
|
/**
|
|
415
400
|
* Unique identifier for the object.
|
|
416
401
|
* @type {string}
|
|
417
|
-
* @memberof
|
|
402
|
+
* @memberof ClaimRegulationsApiDeleteClaimRegulations0
|
|
418
403
|
*/
|
|
419
404
|
readonly code: string;
|
|
420
405
|
/**
|
|
421
406
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
422
407
|
* @type {string}
|
|
423
|
-
* @memberof
|
|
408
|
+
* @memberof ClaimRegulationsApiDeleteClaimRegulations0
|
|
424
409
|
*/
|
|
425
410
|
readonly authorization?: string;
|
|
426
411
|
}
|
|
@@ -444,27 +429,27 @@ export interface ClaimRegulationsApiDeleteClaimRegulations1Request {
|
|
|
444
429
|
readonly authorization?: string;
|
|
445
430
|
}
|
|
446
431
|
/**
|
|
447
|
-
* Request parameters for
|
|
432
|
+
* Request parameters for getClaimRegulation0 operation in ClaimRegulationsApi.
|
|
448
433
|
* @export
|
|
449
|
-
* @interface
|
|
434
|
+
* @interface ClaimRegulationsApiGetClaimRegulation0Request
|
|
450
435
|
*/
|
|
451
|
-
export interface
|
|
436
|
+
export interface ClaimRegulationsApiGetClaimRegulation0Request {
|
|
452
437
|
/**
|
|
453
438
|
*
|
|
454
439
|
* @type {string}
|
|
455
|
-
* @memberof
|
|
440
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation0
|
|
456
441
|
*/
|
|
457
442
|
readonly code: string;
|
|
458
443
|
/**
|
|
459
444
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
460
445
|
* @type {string}
|
|
461
|
-
* @memberof
|
|
446
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation0
|
|
462
447
|
*/
|
|
463
448
|
readonly authorization?: string;
|
|
464
449
|
/**
|
|
465
450
|
*
|
|
466
451
|
* @type {'claim'}
|
|
467
|
-
* @memberof
|
|
452
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation0
|
|
468
453
|
*/
|
|
469
454
|
readonly expand?: 'claim';
|
|
470
455
|
}
|
|
@@ -494,57 +479,57 @@ export interface ClaimRegulationsApiGetClaimRegulation1Request {
|
|
|
494
479
|
readonly expand?: 'claim';
|
|
495
480
|
}
|
|
496
481
|
/**
|
|
497
|
-
* Request parameters for
|
|
482
|
+
* Request parameters for listClaimRegulations0 operation in ClaimRegulationsApi.
|
|
498
483
|
* @export
|
|
499
|
-
* @interface
|
|
484
|
+
* @interface ClaimRegulationsApiListClaimRegulations0Request
|
|
500
485
|
*/
|
|
501
|
-
export interface
|
|
486
|
+
export interface ClaimRegulationsApiListClaimRegulations0Request {
|
|
502
487
|
/**
|
|
503
488
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
504
489
|
* @type {string}
|
|
505
|
-
* @memberof
|
|
490
|
+
* @memberof ClaimRegulationsApiListClaimRegulations0
|
|
506
491
|
*/
|
|
507
492
|
readonly authorization?: string;
|
|
508
493
|
/**
|
|
509
494
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
510
495
|
* @type {number}
|
|
511
|
-
* @memberof
|
|
496
|
+
* @memberof ClaimRegulationsApiListClaimRegulations0
|
|
512
497
|
*/
|
|
513
498
|
readonly pageSize?: number;
|
|
514
499
|
/**
|
|
515
500
|
* 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.
|
|
516
501
|
* @type {string}
|
|
517
|
-
* @memberof
|
|
502
|
+
* @memberof ClaimRegulationsApiListClaimRegulations0
|
|
518
503
|
*/
|
|
519
504
|
readonly pageToken?: string;
|
|
520
505
|
/**
|
|
521
506
|
* 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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
522
507
|
* @type {string}
|
|
523
|
-
* @memberof
|
|
508
|
+
* @memberof ClaimRegulationsApiListClaimRegulations0
|
|
524
509
|
*/
|
|
525
510
|
readonly filter?: string;
|
|
526
511
|
/**
|
|
527
512
|
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, claimCode, currency</i>
|
|
528
513
|
* @type {string}
|
|
529
|
-
* @memberof
|
|
514
|
+
* @memberof ClaimRegulationsApiListClaimRegulations0
|
|
530
515
|
*/
|
|
531
516
|
readonly search?: string;
|
|
532
517
|
/**
|
|
533
518
|
* 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: amount, bookingDate, createdAt, updatedAt</i>
|
|
534
519
|
* @type {string}
|
|
535
|
-
* @memberof
|
|
520
|
+
* @memberof ClaimRegulationsApiListClaimRegulations0
|
|
536
521
|
*/
|
|
537
522
|
readonly order?: string;
|
|
538
523
|
/**
|
|
539
524
|
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: claim<i>
|
|
540
525
|
* @type {string}
|
|
541
|
-
* @memberof
|
|
526
|
+
* @memberof ClaimRegulationsApiListClaimRegulations0
|
|
542
527
|
*/
|
|
543
528
|
readonly expand?: string;
|
|
544
529
|
/**
|
|
545
530
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
546
531
|
* @type {string}
|
|
547
|
-
* @memberof
|
|
532
|
+
* @memberof ClaimRegulationsApiListClaimRegulations0
|
|
548
533
|
*/
|
|
549
534
|
readonly filters?: string;
|
|
550
535
|
}
|
|
@@ -604,27 +589,27 @@ export interface ClaimRegulationsApiListClaimRegulations1Request {
|
|
|
604
589
|
readonly filters?: string;
|
|
605
590
|
}
|
|
606
591
|
/**
|
|
607
|
-
* Request parameters for
|
|
592
|
+
* Request parameters for updateClaimRegulation0 operation in ClaimRegulationsApi.
|
|
608
593
|
* @export
|
|
609
|
-
* @interface
|
|
594
|
+
* @interface ClaimRegulationsApiUpdateClaimRegulation0Request
|
|
610
595
|
*/
|
|
611
|
-
export interface
|
|
596
|
+
export interface ClaimRegulationsApiUpdateClaimRegulation0Request {
|
|
612
597
|
/**
|
|
613
598
|
* Unique identifier for the object.
|
|
614
599
|
* @type {string}
|
|
615
|
-
* @memberof
|
|
600
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation0
|
|
616
601
|
*/
|
|
617
602
|
readonly code: string;
|
|
618
603
|
/**
|
|
619
604
|
*
|
|
620
605
|
* @type {UpdateRegulationItemRequestDto}
|
|
621
|
-
* @memberof
|
|
606
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation0
|
|
622
607
|
*/
|
|
623
608
|
readonly updateRegulationItemRequestDto: UpdateRegulationItemRequestDto;
|
|
624
609
|
/**
|
|
625
610
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
626
611
|
* @type {string}
|
|
627
|
-
* @memberof
|
|
612
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation0
|
|
628
613
|
*/
|
|
629
614
|
readonly authorization?: string;
|
|
630
615
|
}
|
|
@@ -663,18 +648,17 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
663
648
|
/**
|
|
664
649
|
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
665
650
|
* @summary Create the claim regulation item
|
|
666
|
-
* @param {
|
|
651
|
+
* @param {ClaimRegulationsApiCreateClaimRegulation0Request} requestParameters Request parameters.
|
|
667
652
|
* @param {*} [options] Override http request option.
|
|
668
653
|
* @throws {RequiredError}
|
|
669
654
|
* @memberof ClaimRegulationsApi
|
|
670
655
|
*/
|
|
671
|
-
|
|
656
|
+
createClaimRegulation0(requestParameters: ClaimRegulationsApiCreateClaimRegulation0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
672
657
|
/**
|
|
673
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
658
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
674
659
|
* @summary Create the claim regulation item
|
|
675
660
|
* @param {ClaimRegulationsApiCreateClaimRegulation1Request} requestParameters Request parameters.
|
|
676
661
|
* @param {*} [options] Override http request option.
|
|
677
|
-
* @deprecated
|
|
678
662
|
* @throws {RequiredError}
|
|
679
663
|
* @memberof ClaimRegulationsApi
|
|
680
664
|
*/
|
|
@@ -682,18 +666,17 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
682
666
|
/**
|
|
683
667
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
684
668
|
* @summary Delete the claim regulation item
|
|
685
|
-
* @param {
|
|
669
|
+
* @param {ClaimRegulationsApiDeleteClaimRegulations0Request} requestParameters Request parameters.
|
|
686
670
|
* @param {*} [options] Override http request option.
|
|
687
671
|
* @throws {RequiredError}
|
|
688
672
|
* @memberof ClaimRegulationsApi
|
|
689
673
|
*/
|
|
690
|
-
|
|
674
|
+
deleteClaimRegulations0(requestParameters: ClaimRegulationsApiDeleteClaimRegulations0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
691
675
|
/**
|
|
692
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
676
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
693
677
|
* @summary Delete the claim regulation item
|
|
694
678
|
* @param {ClaimRegulationsApiDeleteClaimRegulations1Request} requestParameters Request parameters.
|
|
695
679
|
* @param {*} [options] Override http request option.
|
|
696
|
-
* @deprecated
|
|
697
680
|
* @throws {RequiredError}
|
|
698
681
|
* @memberof ClaimRegulationsApi
|
|
699
682
|
*/
|
|
@@ -701,18 +684,17 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
701
684
|
/**
|
|
702
685
|
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
703
686
|
* @summary Retrieve the claim regulation item
|
|
704
|
-
* @param {
|
|
687
|
+
* @param {ClaimRegulationsApiGetClaimRegulation0Request} requestParameters Request parameters.
|
|
705
688
|
* @param {*} [options] Override http request option.
|
|
706
689
|
* @throws {RequiredError}
|
|
707
690
|
* @memberof ClaimRegulationsApi
|
|
708
691
|
*/
|
|
709
|
-
|
|
692
|
+
getClaimRegulation0(requestParameters: ClaimRegulationsApiGetClaimRegulation0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
710
693
|
/**
|
|
711
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
694
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information. **Required Permissions** \"claim-management.regulations.view\"
|
|
712
695
|
* @summary Retrieve the claim regulation item
|
|
713
696
|
* @param {ClaimRegulationsApiGetClaimRegulation1Request} requestParameters Request parameters.
|
|
714
697
|
* @param {*} [options] Override http request option.
|
|
715
|
-
* @deprecated
|
|
716
698
|
* @throws {RequiredError}
|
|
717
699
|
* @memberof ClaimRegulationsApi
|
|
718
700
|
*/
|
|
@@ -720,18 +702,17 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
720
702
|
/**
|
|
721
703
|
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
722
704
|
* @summary List claim regulation items
|
|
723
|
-
* @param {
|
|
705
|
+
* @param {ClaimRegulationsApiListClaimRegulations0Request} requestParameters Request parameters.
|
|
724
706
|
* @param {*} [options] Override http request option.
|
|
725
707
|
* @throws {RequiredError}
|
|
726
708
|
* @memberof ClaimRegulationsApi
|
|
727
709
|
*/
|
|
728
|
-
|
|
710
|
+
listClaimRegulations0(requestParameters?: ClaimRegulationsApiListClaimRegulations0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRegulationsResponseClass, any, {}>>;
|
|
729
711
|
/**
|
|
730
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
712
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.regulations.view\"
|
|
731
713
|
* @summary List claim regulation items
|
|
732
714
|
* @param {ClaimRegulationsApiListClaimRegulations1Request} requestParameters Request parameters.
|
|
733
715
|
* @param {*} [options] Override http request option.
|
|
734
|
-
* @deprecated
|
|
735
716
|
* @throws {RequiredError}
|
|
736
717
|
* @memberof ClaimRegulationsApi
|
|
737
718
|
*/
|
|
@@ -739,18 +720,17 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
739
720
|
/**
|
|
740
721
|
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
741
722
|
* @summary Update the claim regulation item
|
|
742
|
-
* @param {
|
|
723
|
+
* @param {ClaimRegulationsApiUpdateClaimRegulation0Request} requestParameters Request parameters.
|
|
743
724
|
* @param {*} [options] Override http request option.
|
|
744
725
|
* @throws {RequiredError}
|
|
745
726
|
* @memberof ClaimRegulationsApi
|
|
746
727
|
*/
|
|
747
|
-
|
|
728
|
+
updateClaimRegulation0(requestParameters: ClaimRegulationsApiUpdateClaimRegulation0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
748
729
|
/**
|
|
749
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
730
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created. **Required Permissions** \"claim-management.regulations.update\"
|
|
750
731
|
* @summary Update the claim regulation item
|
|
751
732
|
* @param {ClaimRegulationsApiUpdateClaimRegulation1Request} requestParameters Request parameters.
|
|
752
733
|
* @param {*} [options] Override http request option.
|
|
753
|
-
* @deprecated
|
|
754
734
|
* @throws {RequiredError}
|
|
755
735
|
* @memberof ClaimRegulationsApi
|
|
756
736
|
*/
|