@emilgroup/claim-sdk-node 1.41.1-beta.0 → 1.41.1-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +53 -45
- package/api/claim-partner-roles-api.ts +127 -107
- package/api/claim-partners-api.ts +103 -87
- package/api/claim-positions-api.ts +181 -153
- package/api/claim-regulations-api.ts +128 -108
- package/api/claim-statuses-api.ts +153 -129
- package/api/claims-api.ts +177 -149
- package/api/health-check-api.ts +46 -38
- package/api/settlements-api.ts +127 -107
- package/dist/api/claim-limit-usages-api.d.ts +42 -34
- package/dist/api/claim-limit-usages-api.js +37 -29
- package/dist/api/claim-partner-roles-api.d.ts +97 -77
- package/dist/api/claim-partner-roles-api.js +95 -75
- package/dist/api/claim-partners-api.d.ts +79 -63
- package/dist/api/claim-partners-api.js +76 -60
- package/dist/api/claim-positions-api.d.ts +136 -108
- package/dist/api/claim-positions-api.js +136 -108
- package/dist/api/claim-regulations-api.d.ts +98 -78
- package/dist/api/claim-regulations-api.js +95 -75
- package/dist/api/claim-statuses-api.d.ts +116 -92
- package/dist/api/claim-statuses-api.js +115 -91
- package/dist/api/claims-api.d.ts +134 -106
- package/dist/api/claims-api.js +134 -106
- package/dist/api/health-check-api.d.ts +32 -24
- package/dist/api/health-check-api.js +46 -38
- package/dist/api/settlements-api.d.ts +97 -77
- package/dist/api/settlements-api.js +95 -75
- package/package.json +1 -1
|
@@ -29,13 +29,14 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
29
29
|
* @param {*} [options] Override http request option.
|
|
30
30
|
* @throws {RequiredError}
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
createClaimRegulation: (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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
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
|
|
39
40
|
* @throws {RequiredError}
|
|
40
41
|
*/
|
|
41
42
|
createClaimRegulation1: (createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -47,13 +48,14 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
47
48
|
* @param {*} [options] Override http request option.
|
|
48
49
|
* @throws {RequiredError}
|
|
49
50
|
*/
|
|
50
|
-
|
|
51
|
+
deleteClaimRegulations: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
52
|
/**
|
|
52
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
53
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
53
54
|
* @summary Delete the claim regulation item
|
|
54
55
|
* @param {string} code Unique identifier for the object.
|
|
55
56
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
56
57
|
* @param {*} [options] Override http request option.
|
|
58
|
+
* @deprecated
|
|
57
59
|
* @throws {RequiredError}
|
|
58
60
|
*/
|
|
59
61
|
deleteClaimRegulations1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -66,14 +68,15 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
66
68
|
* @param {*} [options] Override http request option.
|
|
67
69
|
* @throws {RequiredError}
|
|
68
70
|
*/
|
|
69
|
-
|
|
71
|
+
getClaimRegulation: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
72
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
72
74
|
* @summary Retrieve the claim regulation item
|
|
73
75
|
* @param {string} code
|
|
74
76
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
75
77
|
* @param {'claim'} [expand]
|
|
76
78
|
* @param {*} [options] Override http request option.
|
|
79
|
+
* @deprecated
|
|
77
80
|
* @throws {RequiredError}
|
|
78
81
|
*/
|
|
79
82
|
getClaimRegulation1: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -91,9 +94,9 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
91
94
|
* @param {*} [options] Override http request option.
|
|
92
95
|
* @throws {RequiredError}
|
|
93
96
|
*/
|
|
94
|
-
|
|
97
|
+
listClaimRegulations: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
95
98
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
97
100
|
* @summary List claim regulation items
|
|
98
101
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
99
102
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -104,6 +107,7 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
104
107
|
* @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>
|
|
105
108
|
* @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>
|
|
106
109
|
* @param {*} [options] Override http request option.
|
|
110
|
+
* @deprecated
|
|
107
111
|
* @throws {RequiredError}
|
|
108
112
|
*/
|
|
109
113
|
listClaimRegulations1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -116,14 +120,15 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
116
120
|
* @param {*} [options] Override http request option.
|
|
117
121
|
* @throws {RequiredError}
|
|
118
122
|
*/
|
|
119
|
-
|
|
123
|
+
updateClaimRegulation: (code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
120
124
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
122
126
|
* @summary Update the claim regulation item
|
|
123
127
|
* @param {string} code Unique identifier for the object.
|
|
124
128
|
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
125
129
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
126
130
|
* @param {*} [options] Override http request option.
|
|
131
|
+
* @deprecated
|
|
127
132
|
* @throws {RequiredError}
|
|
128
133
|
*/
|
|
129
134
|
updateClaimRegulation1: (code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -141,13 +146,14 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
141
146
|
* @param {*} [options] Override http request option.
|
|
142
147
|
* @throws {RequiredError}
|
|
143
148
|
*/
|
|
144
|
-
|
|
149
|
+
createClaimRegulation(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
145
150
|
/**
|
|
146
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
151
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
147
152
|
* @summary Create the claim regulation item
|
|
148
153
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
149
154
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
150
155
|
* @param {*} [options] Override http request option.
|
|
156
|
+
* @deprecated
|
|
151
157
|
* @throws {RequiredError}
|
|
152
158
|
*/
|
|
153
159
|
createClaimRegulation1(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
@@ -159,13 +165,14 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
159
165
|
* @param {*} [options] Override http request option.
|
|
160
166
|
* @throws {RequiredError}
|
|
161
167
|
*/
|
|
162
|
-
|
|
168
|
+
deleteClaimRegulations(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
163
169
|
/**
|
|
164
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
170
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
165
171
|
* @summary Delete the claim regulation item
|
|
166
172
|
* @param {string} code Unique identifier for the object.
|
|
167
173
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
168
174
|
* @param {*} [options] Override http request option.
|
|
175
|
+
* @deprecated
|
|
169
176
|
* @throws {RequiredError}
|
|
170
177
|
*/
|
|
171
178
|
deleteClaimRegulations1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -178,14 +185,15 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
178
185
|
* @param {*} [options] Override http request option.
|
|
179
186
|
* @throws {RequiredError}
|
|
180
187
|
*/
|
|
181
|
-
|
|
188
|
+
getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
182
189
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
184
191
|
* @summary Retrieve the claim regulation item
|
|
185
192
|
* @param {string} code
|
|
186
193
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
187
194
|
* @param {'claim'} [expand]
|
|
188
195
|
* @param {*} [options] Override http request option.
|
|
196
|
+
* @deprecated
|
|
189
197
|
* @throws {RequiredError}
|
|
190
198
|
*/
|
|
191
199
|
getClaimRegulation1(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
@@ -203,9 +211,9 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
203
211
|
* @param {*} [options] Override http request option.
|
|
204
212
|
* @throws {RequiredError}
|
|
205
213
|
*/
|
|
206
|
-
|
|
214
|
+
listClaimRegulations(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>>;
|
|
207
215
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
209
217
|
* @summary List claim regulation items
|
|
210
218
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
211
219
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -216,6 +224,7 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
216
224
|
* @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>
|
|
217
225
|
* @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>
|
|
218
226
|
* @param {*} [options] Override http request option.
|
|
227
|
+
* @deprecated
|
|
219
228
|
* @throws {RequiredError}
|
|
220
229
|
*/
|
|
221
230
|
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>>;
|
|
@@ -228,14 +237,15 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
228
237
|
* @param {*} [options] Override http request option.
|
|
229
238
|
* @throws {RequiredError}
|
|
230
239
|
*/
|
|
231
|
-
|
|
240
|
+
updateClaimRegulation(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
232
241
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
234
243
|
* @summary Update the claim regulation item
|
|
235
244
|
* @param {string} code Unique identifier for the object.
|
|
236
245
|
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
237
246
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
238
247
|
* @param {*} [options] Override http request option.
|
|
248
|
+
* @deprecated
|
|
239
249
|
* @throws {RequiredError}
|
|
240
250
|
*/
|
|
241
251
|
updateClaimRegulation1(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
@@ -253,13 +263,14 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
253
263
|
* @param {*} [options] Override http request option.
|
|
254
264
|
* @throws {RequiredError}
|
|
255
265
|
*/
|
|
256
|
-
|
|
266
|
+
createClaimRegulation(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
257
267
|
/**
|
|
258
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
268
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
259
269
|
* @summary Create the claim regulation item
|
|
260
270
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
261
271
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
262
272
|
* @param {*} [options] Override http request option.
|
|
273
|
+
* @deprecated
|
|
263
274
|
* @throws {RequiredError}
|
|
264
275
|
*/
|
|
265
276
|
createClaimRegulation1(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
@@ -271,13 +282,14 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
271
282
|
* @param {*} [options] Override http request option.
|
|
272
283
|
* @throws {RequiredError}
|
|
273
284
|
*/
|
|
274
|
-
|
|
285
|
+
deleteClaimRegulations(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
275
286
|
/**
|
|
276
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
287
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
277
288
|
* @summary Delete the claim regulation item
|
|
278
289
|
* @param {string} code Unique identifier for the object.
|
|
279
290
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
280
291
|
* @param {*} [options] Override http request option.
|
|
292
|
+
* @deprecated
|
|
281
293
|
* @throws {RequiredError}
|
|
282
294
|
*/
|
|
283
295
|
deleteClaimRegulations1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
@@ -290,14 +302,15 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
290
302
|
* @param {*} [options] Override http request option.
|
|
291
303
|
* @throws {RequiredError}
|
|
292
304
|
*/
|
|
293
|
-
|
|
305
|
+
getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
294
306
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
296
308
|
* @summary Retrieve the claim regulation item
|
|
297
309
|
* @param {string} code
|
|
298
310
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
299
311
|
* @param {'claim'} [expand]
|
|
300
312
|
* @param {*} [options] Override http request option.
|
|
313
|
+
* @deprecated
|
|
301
314
|
* @throws {RequiredError}
|
|
302
315
|
*/
|
|
303
316
|
getClaimRegulation1(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
@@ -315,9 +328,9 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
315
328
|
* @param {*} [options] Override http request option.
|
|
316
329
|
* @throws {RequiredError}
|
|
317
330
|
*/
|
|
318
|
-
|
|
331
|
+
listClaimRegulations(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
319
332
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
321
334
|
* @summary List claim regulation items
|
|
322
335
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
323
336
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -328,6 +341,7 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
328
341
|
* @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>
|
|
329
342
|
* @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>
|
|
330
343
|
* @param {*} [options] Override http request option.
|
|
344
|
+
* @deprecated
|
|
331
345
|
* @throws {RequiredError}
|
|
332
346
|
*/
|
|
333
347
|
listClaimRegulations1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
@@ -340,34 +354,35 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
340
354
|
* @param {*} [options] Override http request option.
|
|
341
355
|
* @throws {RequiredError}
|
|
342
356
|
*/
|
|
343
|
-
|
|
357
|
+
updateClaimRegulation(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
344
358
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
346
360
|
* @summary Update the claim regulation item
|
|
347
361
|
* @param {string} code Unique identifier for the object.
|
|
348
362
|
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
349
363
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
350
364
|
* @param {*} [options] Override http request option.
|
|
365
|
+
* @deprecated
|
|
351
366
|
* @throws {RequiredError}
|
|
352
367
|
*/
|
|
353
368
|
updateClaimRegulation1(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
354
369
|
};
|
|
355
370
|
/**
|
|
356
|
-
* Request parameters for
|
|
371
|
+
* Request parameters for createClaimRegulation operation in ClaimRegulationsApi.
|
|
357
372
|
* @export
|
|
358
|
-
* @interface
|
|
373
|
+
* @interface ClaimRegulationsApiCreateClaimRegulationRequest
|
|
359
374
|
*/
|
|
360
|
-
export interface
|
|
375
|
+
export interface ClaimRegulationsApiCreateClaimRegulationRequest {
|
|
361
376
|
/**
|
|
362
377
|
*
|
|
363
378
|
* @type {CreateRegulationItemRequestDto}
|
|
364
|
-
* @memberof
|
|
379
|
+
* @memberof ClaimRegulationsApiCreateClaimRegulation
|
|
365
380
|
*/
|
|
366
381
|
readonly createRegulationItemRequestDto: CreateRegulationItemRequestDto;
|
|
367
382
|
/**
|
|
368
383
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
369
384
|
* @type {string}
|
|
370
|
-
* @memberof
|
|
385
|
+
* @memberof ClaimRegulationsApiCreateClaimRegulation
|
|
371
386
|
*/
|
|
372
387
|
readonly authorization?: string;
|
|
373
388
|
}
|
|
@@ -391,21 +406,21 @@ export interface ClaimRegulationsApiCreateClaimRegulation1Request {
|
|
|
391
406
|
readonly authorization?: string;
|
|
392
407
|
}
|
|
393
408
|
/**
|
|
394
|
-
* Request parameters for
|
|
409
|
+
* Request parameters for deleteClaimRegulations operation in ClaimRegulationsApi.
|
|
395
410
|
* @export
|
|
396
|
-
* @interface
|
|
411
|
+
* @interface ClaimRegulationsApiDeleteClaimRegulationsRequest
|
|
397
412
|
*/
|
|
398
|
-
export interface
|
|
413
|
+
export interface ClaimRegulationsApiDeleteClaimRegulationsRequest {
|
|
399
414
|
/**
|
|
400
415
|
* Unique identifier for the object.
|
|
401
416
|
* @type {string}
|
|
402
|
-
* @memberof
|
|
417
|
+
* @memberof ClaimRegulationsApiDeleteClaimRegulations
|
|
403
418
|
*/
|
|
404
419
|
readonly code: string;
|
|
405
420
|
/**
|
|
406
421
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
407
422
|
* @type {string}
|
|
408
|
-
* @memberof
|
|
423
|
+
* @memberof ClaimRegulationsApiDeleteClaimRegulations
|
|
409
424
|
*/
|
|
410
425
|
readonly authorization?: string;
|
|
411
426
|
}
|
|
@@ -429,27 +444,27 @@ export interface ClaimRegulationsApiDeleteClaimRegulations1Request {
|
|
|
429
444
|
readonly authorization?: string;
|
|
430
445
|
}
|
|
431
446
|
/**
|
|
432
|
-
* Request parameters for
|
|
447
|
+
* Request parameters for getClaimRegulation operation in ClaimRegulationsApi.
|
|
433
448
|
* @export
|
|
434
|
-
* @interface
|
|
449
|
+
* @interface ClaimRegulationsApiGetClaimRegulationRequest
|
|
435
450
|
*/
|
|
436
|
-
export interface
|
|
451
|
+
export interface ClaimRegulationsApiGetClaimRegulationRequest {
|
|
437
452
|
/**
|
|
438
453
|
*
|
|
439
454
|
* @type {string}
|
|
440
|
-
* @memberof
|
|
455
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation
|
|
441
456
|
*/
|
|
442
457
|
readonly code: string;
|
|
443
458
|
/**
|
|
444
459
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
445
460
|
* @type {string}
|
|
446
|
-
* @memberof
|
|
461
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation
|
|
447
462
|
*/
|
|
448
463
|
readonly authorization?: string;
|
|
449
464
|
/**
|
|
450
465
|
*
|
|
451
466
|
* @type {'claim'}
|
|
452
|
-
* @memberof
|
|
467
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation
|
|
453
468
|
*/
|
|
454
469
|
readonly expand?: 'claim';
|
|
455
470
|
}
|
|
@@ -479,57 +494,57 @@ export interface ClaimRegulationsApiGetClaimRegulation1Request {
|
|
|
479
494
|
readonly expand?: 'claim';
|
|
480
495
|
}
|
|
481
496
|
/**
|
|
482
|
-
* Request parameters for
|
|
497
|
+
* Request parameters for listClaimRegulations operation in ClaimRegulationsApi.
|
|
483
498
|
* @export
|
|
484
|
-
* @interface
|
|
499
|
+
* @interface ClaimRegulationsApiListClaimRegulationsRequest
|
|
485
500
|
*/
|
|
486
|
-
export interface
|
|
501
|
+
export interface ClaimRegulationsApiListClaimRegulationsRequest {
|
|
487
502
|
/**
|
|
488
503
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
489
504
|
* @type {string}
|
|
490
|
-
* @memberof
|
|
505
|
+
* @memberof ClaimRegulationsApiListClaimRegulations
|
|
491
506
|
*/
|
|
492
507
|
readonly authorization?: string;
|
|
493
508
|
/**
|
|
494
509
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
495
510
|
* @type {number}
|
|
496
|
-
* @memberof
|
|
511
|
+
* @memberof ClaimRegulationsApiListClaimRegulations
|
|
497
512
|
*/
|
|
498
513
|
readonly pageSize?: number;
|
|
499
514
|
/**
|
|
500
515
|
* 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.
|
|
501
516
|
* @type {string}
|
|
502
|
-
* @memberof
|
|
517
|
+
* @memberof ClaimRegulationsApiListClaimRegulations
|
|
503
518
|
*/
|
|
504
519
|
readonly pageToken?: string;
|
|
505
520
|
/**
|
|
506
521
|
* 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>
|
|
507
522
|
* @type {string}
|
|
508
|
-
* @memberof
|
|
523
|
+
* @memberof ClaimRegulationsApiListClaimRegulations
|
|
509
524
|
*/
|
|
510
525
|
readonly filter?: string;
|
|
511
526
|
/**
|
|
512
527
|
* 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>
|
|
513
528
|
* @type {string}
|
|
514
|
-
* @memberof
|
|
529
|
+
* @memberof ClaimRegulationsApiListClaimRegulations
|
|
515
530
|
*/
|
|
516
531
|
readonly search?: string;
|
|
517
532
|
/**
|
|
518
533
|
* 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>
|
|
519
534
|
* @type {string}
|
|
520
|
-
* @memberof
|
|
535
|
+
* @memberof ClaimRegulationsApiListClaimRegulations
|
|
521
536
|
*/
|
|
522
537
|
readonly order?: string;
|
|
523
538
|
/**
|
|
524
539
|
* 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>
|
|
525
540
|
* @type {string}
|
|
526
|
-
* @memberof
|
|
541
|
+
* @memberof ClaimRegulationsApiListClaimRegulations
|
|
527
542
|
*/
|
|
528
543
|
readonly expand?: string;
|
|
529
544
|
/**
|
|
530
545
|
* 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>
|
|
531
546
|
* @type {string}
|
|
532
|
-
* @memberof
|
|
547
|
+
* @memberof ClaimRegulationsApiListClaimRegulations
|
|
533
548
|
*/
|
|
534
549
|
readonly filters?: string;
|
|
535
550
|
}
|
|
@@ -589,27 +604,27 @@ export interface ClaimRegulationsApiListClaimRegulations1Request {
|
|
|
589
604
|
readonly filters?: string;
|
|
590
605
|
}
|
|
591
606
|
/**
|
|
592
|
-
* Request parameters for
|
|
607
|
+
* Request parameters for updateClaimRegulation operation in ClaimRegulationsApi.
|
|
593
608
|
* @export
|
|
594
|
-
* @interface
|
|
609
|
+
* @interface ClaimRegulationsApiUpdateClaimRegulationRequest
|
|
595
610
|
*/
|
|
596
|
-
export interface
|
|
611
|
+
export interface ClaimRegulationsApiUpdateClaimRegulationRequest {
|
|
597
612
|
/**
|
|
598
613
|
* Unique identifier for the object.
|
|
599
614
|
* @type {string}
|
|
600
|
-
* @memberof
|
|
615
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation
|
|
601
616
|
*/
|
|
602
617
|
readonly code: string;
|
|
603
618
|
/**
|
|
604
619
|
*
|
|
605
620
|
* @type {UpdateRegulationItemRequestDto}
|
|
606
|
-
* @memberof
|
|
621
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation
|
|
607
622
|
*/
|
|
608
623
|
readonly updateRegulationItemRequestDto: UpdateRegulationItemRequestDto;
|
|
609
624
|
/**
|
|
610
625
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
611
626
|
* @type {string}
|
|
612
|
-
* @memberof
|
|
627
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation
|
|
613
628
|
*/
|
|
614
629
|
readonly authorization?: string;
|
|
615
630
|
}
|
|
@@ -648,17 +663,18 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
648
663
|
/**
|
|
649
664
|
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
650
665
|
* @summary Create the claim regulation item
|
|
651
|
-
* @param {
|
|
666
|
+
* @param {ClaimRegulationsApiCreateClaimRegulationRequest} requestParameters Request parameters.
|
|
652
667
|
* @param {*} [options] Override http request option.
|
|
653
668
|
* @throws {RequiredError}
|
|
654
669
|
* @memberof ClaimRegulationsApi
|
|
655
670
|
*/
|
|
656
|
-
|
|
671
|
+
createClaimRegulation(requestParameters: ClaimRegulationsApiCreateClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
657
672
|
/**
|
|
658
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
673
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
659
674
|
* @summary Create the claim regulation item
|
|
660
675
|
* @param {ClaimRegulationsApiCreateClaimRegulation1Request} requestParameters Request parameters.
|
|
661
676
|
* @param {*} [options] Override http request option.
|
|
677
|
+
* @deprecated
|
|
662
678
|
* @throws {RequiredError}
|
|
663
679
|
* @memberof ClaimRegulationsApi
|
|
664
680
|
*/
|
|
@@ -666,17 +682,18 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
666
682
|
/**
|
|
667
683
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
668
684
|
* @summary Delete the claim regulation item
|
|
669
|
-
* @param {
|
|
685
|
+
* @param {ClaimRegulationsApiDeleteClaimRegulationsRequest} requestParameters Request parameters.
|
|
670
686
|
* @param {*} [options] Override http request option.
|
|
671
687
|
* @throws {RequiredError}
|
|
672
688
|
* @memberof ClaimRegulationsApi
|
|
673
689
|
*/
|
|
674
|
-
|
|
690
|
+
deleteClaimRegulations(requestParameters: ClaimRegulationsApiDeleteClaimRegulationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
675
691
|
/**
|
|
676
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
692
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
677
693
|
* @summary Delete the claim regulation item
|
|
678
694
|
* @param {ClaimRegulationsApiDeleteClaimRegulations1Request} requestParameters Request parameters.
|
|
679
695
|
* @param {*} [options] Override http request option.
|
|
696
|
+
* @deprecated
|
|
680
697
|
* @throws {RequiredError}
|
|
681
698
|
* @memberof ClaimRegulationsApi
|
|
682
699
|
*/
|
|
@@ -684,17 +701,18 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
684
701
|
/**
|
|
685
702
|
* 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\"
|
|
686
703
|
* @summary Retrieve the claim regulation item
|
|
687
|
-
* @param {
|
|
704
|
+
* @param {ClaimRegulationsApiGetClaimRegulationRequest} requestParameters Request parameters.
|
|
688
705
|
* @param {*} [options] Override http request option.
|
|
689
706
|
* @throws {RequiredError}
|
|
690
707
|
* @memberof ClaimRegulationsApi
|
|
691
708
|
*/
|
|
692
|
-
|
|
709
|
+
getClaimRegulation(requestParameters: ClaimRegulationsApiGetClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
693
710
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
695
712
|
* @summary Retrieve the claim regulation item
|
|
696
713
|
* @param {ClaimRegulationsApiGetClaimRegulation1Request} requestParameters Request parameters.
|
|
697
714
|
* @param {*} [options] Override http request option.
|
|
715
|
+
* @deprecated
|
|
698
716
|
* @throws {RequiredError}
|
|
699
717
|
* @memberof ClaimRegulationsApi
|
|
700
718
|
*/
|
|
@@ -702,17 +720,18 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
702
720
|
/**
|
|
703
721
|
* 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\"
|
|
704
722
|
* @summary List claim regulation items
|
|
705
|
-
* @param {
|
|
723
|
+
* @param {ClaimRegulationsApiListClaimRegulationsRequest} requestParameters Request parameters.
|
|
706
724
|
* @param {*} [options] Override http request option.
|
|
707
725
|
* @throws {RequiredError}
|
|
708
726
|
* @memberof ClaimRegulationsApi
|
|
709
727
|
*/
|
|
710
|
-
|
|
728
|
+
listClaimRegulations(requestParameters?: ClaimRegulationsApiListClaimRegulationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRegulationsResponseClass, any, {}>>;
|
|
711
729
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
713
731
|
* @summary List claim regulation items
|
|
714
732
|
* @param {ClaimRegulationsApiListClaimRegulations1Request} requestParameters Request parameters.
|
|
715
733
|
* @param {*} [options] Override http request option.
|
|
734
|
+
* @deprecated
|
|
716
735
|
* @throws {RequiredError}
|
|
717
736
|
* @memberof ClaimRegulationsApi
|
|
718
737
|
*/
|
|
@@ -720,17 +739,18 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
720
739
|
/**
|
|
721
740
|
* 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\"
|
|
722
741
|
* @summary Update the claim regulation item
|
|
723
|
-
* @param {
|
|
742
|
+
* @param {ClaimRegulationsApiUpdateClaimRegulationRequest} requestParameters Request parameters.
|
|
724
743
|
* @param {*} [options] Override http request option.
|
|
725
744
|
* @throws {RequiredError}
|
|
726
745
|
* @memberof ClaimRegulationsApi
|
|
727
746
|
*/
|
|
728
|
-
|
|
747
|
+
updateClaimRegulation(requestParameters: ClaimRegulationsApiUpdateClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
729
748
|
/**
|
|
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\"
|
|
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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
731
750
|
* @summary Update the claim regulation item
|
|
732
751
|
* @param {ClaimRegulationsApiUpdateClaimRegulation1Request} requestParameters Request parameters.
|
|
733
752
|
* @param {*} [options] Override http request option.
|
|
753
|
+
* @deprecated
|
|
734
754
|
* @throws {RequiredError}
|
|
735
755
|
* @memberof ClaimRegulationsApi
|
|
736
756
|
*/
|