@emilgroup/claim-sdk-node 1.32.0 → 1.32.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-partner-roles-api.ts +20 -20
- package/api/claim-partners-api.ts +16 -16
- package/api/claim-regulations-api.ts +20 -20
- package/api/claim-statuses-api.ts +16 -16
- package/api/claims-api.ts +28 -28
- package/api/settlements-api.ts +20 -20
- package/dist/api/claim-partner-roles-api.d.ts +20 -20
- package/dist/api/claim-partner-roles-api.js +20 -20
- package/dist/api/claim-partners-api.d.ts +16 -16
- package/dist/api/claim-partners-api.js +16 -16
- package/dist/api/claim-regulations-api.d.ts +20 -20
- package/dist/api/claim-regulations-api.js +20 -20
- package/dist/api/claim-statuses-api.d.ts +16 -16
- package/dist/api/claim-statuses-api.js +16 -16
- package/dist/api/claims-api.d.ts +28 -28
- package/dist/api/claims-api.js +28 -28
- package/dist/api/settlements-api.d.ts +20 -20
- package/dist/api/settlements-api.js +20 -20
- package/package.json +1 -1
|
@@ -39,7 +39,7 @@ const FormData = require('form-data');
|
|
|
39
39
|
export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
40
40
|
return {
|
|
41
41
|
/**
|
|
42
|
-
* This creates a claim status in the database
|
|
42
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
43
43
|
* @summary Create the claim status
|
|
44
44
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
45
45
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -86,7 +86,7 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
86
86
|
};
|
|
87
87
|
},
|
|
88
88
|
/**
|
|
89
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
|
|
89
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
90
90
|
* @summary Delete the claim status
|
|
91
91
|
* @param {number} id
|
|
92
92
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -131,7 +131,7 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
131
131
|
};
|
|
132
132
|
},
|
|
133
133
|
/**
|
|
134
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
|
|
134
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
135
135
|
* @summary Retrieve the claim status
|
|
136
136
|
* @param {number} id
|
|
137
137
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -176,7 +176,7 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
176
176
|
};
|
|
177
177
|
},
|
|
178
178
|
/**
|
|
179
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
179
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
180
180
|
* @summary List claim statuses
|
|
181
181
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
182
182
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -262,7 +262,7 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
262
262
|
const localVarAxiosParamCreator = ClaimStatusesApiAxiosParamCreator(configuration)
|
|
263
263
|
return {
|
|
264
264
|
/**
|
|
265
|
-
* This creates a claim status in the database
|
|
265
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
266
266
|
* @summary Create the claim status
|
|
267
267
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
268
268
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -274,7 +274,7 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
274
274
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
275
275
|
},
|
|
276
276
|
/**
|
|
277
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
|
|
277
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
278
278
|
* @summary Delete the claim status
|
|
279
279
|
* @param {number} id
|
|
280
280
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -286,7 +286,7 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
286
286
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
287
287
|
},
|
|
288
288
|
/**
|
|
289
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
|
|
289
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
290
290
|
* @summary Retrieve the claim status
|
|
291
291
|
* @param {number} id
|
|
292
292
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -298,7 +298,7 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
298
298
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
299
299
|
},
|
|
300
300
|
/**
|
|
301
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
301
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
302
302
|
* @summary List claim statuses
|
|
303
303
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
304
304
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -326,7 +326,7 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
326
326
|
const localVarFp = ClaimStatusesApiFp(configuration)
|
|
327
327
|
return {
|
|
328
328
|
/**
|
|
329
|
-
* This creates a claim status in the database
|
|
329
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
330
330
|
* @summary Create the claim status
|
|
331
331
|
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
332
332
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -337,7 +337,7 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
337
337
|
return localVarFp.createClaimStatus(createClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
338
338
|
},
|
|
339
339
|
/**
|
|
340
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
|
|
340
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
341
341
|
* @summary Delete the claim status
|
|
342
342
|
* @param {number} id
|
|
343
343
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -348,7 +348,7 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
348
348
|
return localVarFp.deleteClaimStatus(id, authorization, options).then((request) => request(axios, basePath));
|
|
349
349
|
},
|
|
350
350
|
/**
|
|
351
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
|
|
351
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
352
352
|
* @summary Retrieve the claim status
|
|
353
353
|
* @param {number} id
|
|
354
354
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -359,7 +359,7 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
359
359
|
return localVarFp.getClaimStatus(id, authorization, options).then((request) => request(axios, basePath));
|
|
360
360
|
},
|
|
361
361
|
/**
|
|
362
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
362
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
363
363
|
* @summary List claim statuses
|
|
364
364
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
365
365
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -512,7 +512,7 @@ export interface ClaimStatusesApiListClaimStatusesRequest {
|
|
|
512
512
|
*/
|
|
513
513
|
export class ClaimStatusesApi extends BaseAPI {
|
|
514
514
|
/**
|
|
515
|
-
* This creates a claim status in the database
|
|
515
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
|
|
516
516
|
* @summary Create the claim status
|
|
517
517
|
* @param {ClaimStatusesApiCreateClaimStatusRequest} requestParameters Request parameters.
|
|
518
518
|
* @param {*} [options] Override http request option.
|
|
@@ -524,7 +524,7 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
524
524
|
}
|
|
525
525
|
|
|
526
526
|
/**
|
|
527
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
|
|
527
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
528
528
|
* @summary Delete the claim status
|
|
529
529
|
* @param {ClaimStatusesApiDeleteClaimStatusRequest} requestParameters Request parameters.
|
|
530
530
|
* @param {*} [options] Override http request option.
|
|
@@ -536,7 +536,7 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
536
536
|
}
|
|
537
537
|
|
|
538
538
|
/**
|
|
539
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
|
|
539
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
540
540
|
* @summary Retrieve the claim status
|
|
541
541
|
* @param {ClaimStatusesApiGetClaimStatusRequest} requestParameters Request parameters.
|
|
542
542
|
* @param {*} [options] Override http request option.
|
|
@@ -548,7 +548,7 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
548
548
|
}
|
|
549
549
|
|
|
550
550
|
/**
|
|
551
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
551
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
552
552
|
* @summary List claim statuses
|
|
553
553
|
* @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
|
|
554
554
|
* @param {*} [options] Override http request option.
|
package/api/claims-api.ts
CHANGED
|
@@ -49,7 +49,7 @@ const FormData = require('form-data');
|
|
|
49
49
|
export const ClaimsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
50
50
|
return {
|
|
51
51
|
/**
|
|
52
|
-
* This will create a claim in the database
|
|
52
|
+
* This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
53
53
|
* @summary Create the claim
|
|
54
54
|
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
55
55
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -96,7 +96,7 @@ export const ClaimsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
96
96
|
};
|
|
97
97
|
},
|
|
98
98
|
/**
|
|
99
|
-
* This will delete the requested claim from the database.
|
|
99
|
+
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
100
100
|
* @summary Delete the claim
|
|
101
101
|
* @param {string} code
|
|
102
102
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -141,7 +141,7 @@ export const ClaimsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
141
141
|
};
|
|
142
142
|
},
|
|
143
143
|
/**
|
|
144
|
-
* This will fetch the identified claim from the database by code
|
|
144
|
+
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
145
145
|
* @summary Retrieve the claim
|
|
146
146
|
* @param {string} code
|
|
147
147
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -186,7 +186,7 @@ export const ClaimsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
186
186
|
};
|
|
187
187
|
},
|
|
188
188
|
/**
|
|
189
|
-
* This endpoint will calculate and get the regulation summary for a claim.
|
|
189
|
+
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
190
190
|
* @summary Retrieve the claim regulation summary
|
|
191
191
|
* @param {string} code Unique identifier for the object.
|
|
192
192
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -231,7 +231,7 @@ export const ClaimsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
231
231
|
};
|
|
232
232
|
},
|
|
233
233
|
/**
|
|
234
|
-
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
234
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
235
235
|
* @summary List claims
|
|
236
236
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
237
237
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -307,7 +307,7 @@ export const ClaimsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
307
307
|
};
|
|
308
308
|
},
|
|
309
309
|
/**
|
|
310
|
-
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
|
|
310
|
+
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
311
311
|
* @summary Patch the claim
|
|
312
312
|
* @param {string} code
|
|
313
313
|
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
@@ -358,7 +358,7 @@ export const ClaimsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
358
358
|
};
|
|
359
359
|
},
|
|
360
360
|
/**
|
|
361
|
-
* This will update the identified claim in the database
|
|
361
|
+
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
362
362
|
* @summary Update the claim
|
|
363
363
|
* @param {string} code
|
|
364
364
|
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
@@ -419,7 +419,7 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
419
419
|
const localVarAxiosParamCreator = ClaimsApiAxiosParamCreator(configuration)
|
|
420
420
|
return {
|
|
421
421
|
/**
|
|
422
|
-
* This will create a claim in the database
|
|
422
|
+
* This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
423
423
|
* @summary Create the claim
|
|
424
424
|
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
425
425
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -431,7 +431,7 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
431
431
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
432
432
|
},
|
|
433
433
|
/**
|
|
434
|
-
* This will delete the requested claim from the database.
|
|
434
|
+
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
435
435
|
* @summary Delete the claim
|
|
436
436
|
* @param {string} code
|
|
437
437
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -443,7 +443,7 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
443
443
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
444
444
|
},
|
|
445
445
|
/**
|
|
446
|
-
* This will fetch the identified claim from the database by code
|
|
446
|
+
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
447
447
|
* @summary Retrieve the claim
|
|
448
448
|
* @param {string} code
|
|
449
449
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -455,7 +455,7 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
455
455
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
456
456
|
},
|
|
457
457
|
/**
|
|
458
|
-
* This endpoint will calculate and get the regulation summary for a claim.
|
|
458
|
+
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
459
459
|
* @summary Retrieve the claim regulation summary
|
|
460
460
|
* @param {string} code Unique identifier for the object.
|
|
461
461
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -467,7 +467,7 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
467
467
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
468
468
|
},
|
|
469
469
|
/**
|
|
470
|
-
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
470
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
471
471
|
* @summary List claims
|
|
472
472
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
473
473
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -485,7 +485,7 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
485
485
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
486
486
|
},
|
|
487
487
|
/**
|
|
488
|
-
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
|
|
488
|
+
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
489
489
|
* @summary Patch the claim
|
|
490
490
|
* @param {string} code
|
|
491
491
|
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
@@ -498,7 +498,7 @@ export const ClaimsApiFp = function(configuration?: Configuration) {
|
|
|
498
498
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
499
499
|
},
|
|
500
500
|
/**
|
|
501
|
-
* This will update the identified claim in the database
|
|
501
|
+
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
502
502
|
* @summary Update the claim
|
|
503
503
|
* @param {string} code
|
|
504
504
|
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
@@ -521,7 +521,7 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
521
521
|
const localVarFp = ClaimsApiFp(configuration)
|
|
522
522
|
return {
|
|
523
523
|
/**
|
|
524
|
-
* This will create a claim in the database
|
|
524
|
+
* This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
525
525
|
* @summary Create the claim
|
|
526
526
|
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
527
527
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -532,7 +532,7 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
532
532
|
return localVarFp.createClaim(createClaimRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
533
533
|
},
|
|
534
534
|
/**
|
|
535
|
-
* This will delete the requested claim from the database.
|
|
535
|
+
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
536
536
|
* @summary Delete the claim
|
|
537
537
|
* @param {string} code
|
|
538
538
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -543,7 +543,7 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
543
543
|
return localVarFp.deleteClaim(code, authorization, options).then((request) => request(axios, basePath));
|
|
544
544
|
},
|
|
545
545
|
/**
|
|
546
|
-
* This will fetch the identified claim from the database by code
|
|
546
|
+
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
547
547
|
* @summary Retrieve the claim
|
|
548
548
|
* @param {string} code
|
|
549
549
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -554,7 +554,7 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
554
554
|
return localVarFp.getClaim(code, authorization, options).then((request) => request(axios, basePath));
|
|
555
555
|
},
|
|
556
556
|
/**
|
|
557
|
-
* This endpoint will calculate and get the regulation summary for a claim.
|
|
557
|
+
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
558
558
|
* @summary Retrieve the claim regulation summary
|
|
559
559
|
* @param {string} code Unique identifier for the object.
|
|
560
560
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -565,7 +565,7 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
565
565
|
return localVarFp.getClaimRegulationSummary(code, authorization, options).then((request) => request(axios, basePath));
|
|
566
566
|
},
|
|
567
567
|
/**
|
|
568
|
-
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
568
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
569
569
|
* @summary List claims
|
|
570
570
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
571
571
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -582,7 +582,7 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
582
582
|
return localVarFp.listClaims(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
583
583
|
},
|
|
584
584
|
/**
|
|
585
|
-
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
|
|
585
|
+
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
586
586
|
* @summary Patch the claim
|
|
587
587
|
* @param {string} code
|
|
588
588
|
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
@@ -594,7 +594,7 @@ export const ClaimsApiFactory = function (configuration?: Configuration, basePat
|
|
|
594
594
|
return localVarFp.patchClaim(code, patchClaimRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
595
595
|
},
|
|
596
596
|
/**
|
|
597
|
-
* This will update the identified claim in the database
|
|
597
|
+
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
598
598
|
* @summary Update the claim
|
|
599
599
|
* @param {string} code
|
|
600
600
|
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
@@ -819,7 +819,7 @@ export interface ClaimsApiUpdateClaimRequest {
|
|
|
819
819
|
*/
|
|
820
820
|
export class ClaimsApi extends BaseAPI {
|
|
821
821
|
/**
|
|
822
|
-
* This will create a claim in the database
|
|
822
|
+
* This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
823
823
|
* @summary Create the claim
|
|
824
824
|
* @param {ClaimsApiCreateClaimRequest} requestParameters Request parameters.
|
|
825
825
|
* @param {*} [options] Override http request option.
|
|
@@ -831,7 +831,7 @@ export class ClaimsApi extends BaseAPI {
|
|
|
831
831
|
}
|
|
832
832
|
|
|
833
833
|
/**
|
|
834
|
-
* This will delete the requested claim from the database.
|
|
834
|
+
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
835
835
|
* @summary Delete the claim
|
|
836
836
|
* @param {ClaimsApiDeleteClaimRequest} requestParameters Request parameters.
|
|
837
837
|
* @param {*} [options] Override http request option.
|
|
@@ -843,7 +843,7 @@ export class ClaimsApi extends BaseAPI {
|
|
|
843
843
|
}
|
|
844
844
|
|
|
845
845
|
/**
|
|
846
|
-
* This will fetch the identified claim from the database by code
|
|
846
|
+
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
847
847
|
* @summary Retrieve the claim
|
|
848
848
|
* @param {ClaimsApiGetClaimRequest} requestParameters Request parameters.
|
|
849
849
|
* @param {*} [options] Override http request option.
|
|
@@ -855,7 +855,7 @@ export class ClaimsApi extends BaseAPI {
|
|
|
855
855
|
}
|
|
856
856
|
|
|
857
857
|
/**
|
|
858
|
-
* This endpoint will calculate and get the regulation summary for a claim.
|
|
858
|
+
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
859
859
|
* @summary Retrieve the claim regulation summary
|
|
860
860
|
* @param {ClaimsApiGetClaimRegulationSummaryRequest} requestParameters Request parameters.
|
|
861
861
|
* @param {*} [options] Override http request option.
|
|
@@ -867,7 +867,7 @@ export class ClaimsApi extends BaseAPI {
|
|
|
867
867
|
}
|
|
868
868
|
|
|
869
869
|
/**
|
|
870
|
-
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
870
|
+
* Returns a list of claims you have previously created. The claims are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
871
871
|
* @summary List claims
|
|
872
872
|
* @param {ClaimsApiListClaimsRequest} requestParameters Request parameters.
|
|
873
873
|
* @param {*} [options] Override http request option.
|
|
@@ -879,7 +879,7 @@ export class ClaimsApi extends BaseAPI {
|
|
|
879
879
|
}
|
|
880
880
|
|
|
881
881
|
/**
|
|
882
|
-
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
|
|
882
|
+
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
883
883
|
* @summary Patch the claim
|
|
884
884
|
* @param {ClaimsApiPatchClaimRequest} requestParameters Request parameters.
|
|
885
885
|
* @param {*} [options] Override http request option.
|
|
@@ -891,7 +891,7 @@ export class ClaimsApi extends BaseAPI {
|
|
|
891
891
|
}
|
|
892
892
|
|
|
893
893
|
/**
|
|
894
|
-
* This will update the identified claim in the database
|
|
894
|
+
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
895
895
|
* @summary Update the claim
|
|
896
896
|
* @param {ClaimsApiUpdateClaimRequest} requestParameters Request parameters.
|
|
897
897
|
* @param {*} [options] Override http request option.
|
package/api/settlements-api.ts
CHANGED
|
@@ -43,7 +43,7 @@ const FormData = require('form-data');
|
|
|
43
43
|
export const SettlementsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
44
44
|
return {
|
|
45
45
|
/**
|
|
46
|
-
* This will create a settlement against a claim in the database
|
|
46
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
47
47
|
* @summary Create the settlement
|
|
48
48
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
49
49
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -90,7 +90,7 @@ export const SettlementsApiAxiosParamCreator = function (configuration?: Configu
|
|
|
90
90
|
};
|
|
91
91
|
},
|
|
92
92
|
/**
|
|
93
|
-
* This will delete the requested settlement from the database.
|
|
93
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
94
94
|
* @summary Delete the settlement
|
|
95
95
|
* @param {string} code
|
|
96
96
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -135,7 +135,7 @@ export const SettlementsApiAxiosParamCreator = function (configuration?: Configu
|
|
|
135
135
|
};
|
|
136
136
|
},
|
|
137
137
|
/**
|
|
138
|
-
* Retrieves the details of the settlement that was previously created. Supply the unique settlement code that was returned when you created it and Emil Api will return the corresponding settlement information.
|
|
138
|
+
* Retrieves the details of the settlement that was previously created. Supply the unique settlement code that was returned when you created it and Emil Api will return the corresponding settlement information. **Required Permissions** \"claim-management.claims.view\"
|
|
139
139
|
* @summary Retrieve the settlement
|
|
140
140
|
* @param {string} code
|
|
141
141
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -180,7 +180,7 @@ export const SettlementsApiAxiosParamCreator = function (configuration?: Configu
|
|
|
180
180
|
};
|
|
181
181
|
},
|
|
182
182
|
/**
|
|
183
|
-
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
183
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
184
184
|
* @summary List settlements
|
|
185
185
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
186
186
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -256,7 +256,7 @@ export const SettlementsApiAxiosParamCreator = function (configuration?: Configu
|
|
|
256
256
|
};
|
|
257
257
|
},
|
|
258
258
|
/**
|
|
259
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
259
|
+
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
260
260
|
* @summary Update the settlement
|
|
261
261
|
* @param {string} code
|
|
262
262
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -317,7 +317,7 @@ export const SettlementsApiFp = function(configuration?: Configuration) {
|
|
|
317
317
|
const localVarAxiosParamCreator = SettlementsApiAxiosParamCreator(configuration)
|
|
318
318
|
return {
|
|
319
319
|
/**
|
|
320
|
-
* This will create a settlement against a claim in the database
|
|
320
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
321
321
|
* @summary Create the settlement
|
|
322
322
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
323
323
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -329,7 +329,7 @@ export const SettlementsApiFp = function(configuration?: Configuration) {
|
|
|
329
329
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
330
330
|
},
|
|
331
331
|
/**
|
|
332
|
-
* This will delete the requested settlement from the database.
|
|
332
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
333
333
|
* @summary Delete the settlement
|
|
334
334
|
* @param {string} code
|
|
335
335
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -341,7 +341,7 @@ export const SettlementsApiFp = function(configuration?: Configuration) {
|
|
|
341
341
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
342
342
|
},
|
|
343
343
|
/**
|
|
344
|
-
* Retrieves the details of the settlement that was previously created. Supply the unique settlement code that was returned when you created it and Emil Api will return the corresponding settlement information.
|
|
344
|
+
* Retrieves the details of the settlement that was previously created. Supply the unique settlement code that was returned when you created it and Emil Api will return the corresponding settlement information. **Required Permissions** \"claim-management.claims.view\"
|
|
345
345
|
* @summary Retrieve the settlement
|
|
346
346
|
* @param {string} code
|
|
347
347
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -353,7 +353,7 @@ export const SettlementsApiFp = function(configuration?: Configuration) {
|
|
|
353
353
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
354
354
|
},
|
|
355
355
|
/**
|
|
356
|
-
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
356
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
357
357
|
* @summary List settlements
|
|
358
358
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
359
359
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -371,7 +371,7 @@ export const SettlementsApiFp = function(configuration?: Configuration) {
|
|
|
371
371
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
372
372
|
},
|
|
373
373
|
/**
|
|
374
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
374
|
+
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
375
375
|
* @summary Update the settlement
|
|
376
376
|
* @param {string} code
|
|
377
377
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -394,7 +394,7 @@ export const SettlementsApiFactory = function (configuration?: Configuration, ba
|
|
|
394
394
|
const localVarFp = SettlementsApiFp(configuration)
|
|
395
395
|
return {
|
|
396
396
|
/**
|
|
397
|
-
* This will create a settlement against a claim in the database
|
|
397
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
398
398
|
* @summary Create the settlement
|
|
399
399
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
400
400
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -405,7 +405,7 @@ export const SettlementsApiFactory = function (configuration?: Configuration, ba
|
|
|
405
405
|
return localVarFp.createSettlement(createSettlementRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
406
406
|
},
|
|
407
407
|
/**
|
|
408
|
-
* This will delete the requested settlement from the database.
|
|
408
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
409
409
|
* @summary Delete the settlement
|
|
410
410
|
* @param {string} code
|
|
411
411
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -416,7 +416,7 @@ export const SettlementsApiFactory = function (configuration?: Configuration, ba
|
|
|
416
416
|
return localVarFp.deleteSettlement(code, authorization, options).then((request) => request(axios, basePath));
|
|
417
417
|
},
|
|
418
418
|
/**
|
|
419
|
-
* Retrieves the details of the settlement that was previously created. Supply the unique settlement code that was returned when you created it and Emil Api will return the corresponding settlement information.
|
|
419
|
+
* Retrieves the details of the settlement that was previously created. Supply the unique settlement code that was returned when you created it and Emil Api will return the corresponding settlement information. **Required Permissions** \"claim-management.claims.view\"
|
|
420
420
|
* @summary Retrieve the settlement
|
|
421
421
|
* @param {string} code
|
|
422
422
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -427,7 +427,7 @@ export const SettlementsApiFactory = function (configuration?: Configuration, ba
|
|
|
427
427
|
return localVarFp.getSettlement(code, authorization, options).then((request) => request(axios, basePath));
|
|
428
428
|
},
|
|
429
429
|
/**
|
|
430
|
-
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
430
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
431
431
|
* @summary List settlements
|
|
432
432
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
433
433
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -444,7 +444,7 @@ export const SettlementsApiFactory = function (configuration?: Configuration, ba
|
|
|
444
444
|
return localVarFp.listSettlements(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
445
445
|
},
|
|
446
446
|
/**
|
|
447
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
447
|
+
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
448
448
|
* @summary Update the settlement
|
|
449
449
|
* @param {string} code
|
|
450
450
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -620,7 +620,7 @@ export interface SettlementsApiUpdateSettlementRequest {
|
|
|
620
620
|
*/
|
|
621
621
|
export class SettlementsApi extends BaseAPI {
|
|
622
622
|
/**
|
|
623
|
-
* This will create a settlement against a claim in the database
|
|
623
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
624
624
|
* @summary Create the settlement
|
|
625
625
|
* @param {SettlementsApiCreateSettlementRequest} requestParameters Request parameters.
|
|
626
626
|
* @param {*} [options] Override http request option.
|
|
@@ -632,7 +632,7 @@ export class SettlementsApi extends BaseAPI {
|
|
|
632
632
|
}
|
|
633
633
|
|
|
634
634
|
/**
|
|
635
|
-
* This will delete the requested settlement from the database.
|
|
635
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
636
636
|
* @summary Delete the settlement
|
|
637
637
|
* @param {SettlementsApiDeleteSettlementRequest} requestParameters Request parameters.
|
|
638
638
|
* @param {*} [options] Override http request option.
|
|
@@ -644,7 +644,7 @@ export class SettlementsApi extends BaseAPI {
|
|
|
644
644
|
}
|
|
645
645
|
|
|
646
646
|
/**
|
|
647
|
-
* Retrieves the details of the settlement that was previously created. Supply the unique settlement code that was returned when you created it and Emil Api will return the corresponding settlement information.
|
|
647
|
+
* Retrieves the details of the settlement that was previously created. Supply the unique settlement code that was returned when you created it and Emil Api will return the corresponding settlement information. **Required Permissions** \"claim-management.claims.view\"
|
|
648
648
|
* @summary Retrieve the settlement
|
|
649
649
|
* @param {SettlementsApiGetSettlementRequest} requestParameters Request parameters.
|
|
650
650
|
* @param {*} [options] Override http request option.
|
|
@@ -656,7 +656,7 @@ export class SettlementsApi extends BaseAPI {
|
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
/**
|
|
659
|
-
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
659
|
+
* Returns a list of settlements you have previously created. The settlements are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.claims.view\"
|
|
660
660
|
* @summary List settlements
|
|
661
661
|
* @param {SettlementsApiListSettlementsRequest} requestParameters Request parameters.
|
|
662
662
|
* @param {*} [options] Override http request option.
|
|
@@ -668,7 +668,7 @@ export class SettlementsApi extends BaseAPI {
|
|
|
668
668
|
}
|
|
669
669
|
|
|
670
670
|
/**
|
|
671
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
671
|
+
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.claims.update\"
|
|
672
672
|
* @summary Update the settlement
|
|
673
673
|
* @param {SettlementsApiUpdateSettlementRequest} requestParameters Request parameters.
|
|
674
674
|
* @param {*} [options] Override http request option.
|