@emilgroup/claim-sdk-node 1.32.0 → 1.32.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/claim-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
package/dist/api/claims-api.js
CHANGED
|
@@ -97,7 +97,7 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* This will create a claim in the database
|
|
100
|
+
* This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
101
101
|
* @summary Create the claim
|
|
102
102
|
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -146,7 +146,7 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* This will delete the requested claim from the database.
|
|
149
|
+
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
150
150
|
* @summary Delete the claim
|
|
151
151
|
* @param {string} code
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -194,7 +194,7 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
|
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
196
|
/**
|
|
197
|
-
* This will fetch the identified claim from the database by code
|
|
197
|
+
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
198
198
|
* @summary Retrieve the claim
|
|
199
199
|
* @param {string} code
|
|
200
200
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -242,7 +242,7 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
|
|
|
242
242
|
});
|
|
243
243
|
},
|
|
244
244
|
/**
|
|
245
|
-
* This endpoint will calculate and get the regulation summary for a claim.
|
|
245
|
+
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
246
246
|
* @summary Retrieve the claim regulation summary
|
|
247
247
|
* @param {string} code Unique identifier for the object.
|
|
248
248
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -290,7 +290,7 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
|
|
|
290
290
|
});
|
|
291
291
|
},
|
|
292
292
|
/**
|
|
293
|
-
* 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.
|
|
293
|
+
* 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\"
|
|
294
294
|
* @summary List claims
|
|
295
295
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
296
296
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -362,7 +362,7 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
|
|
|
362
362
|
});
|
|
363
363
|
},
|
|
364
364
|
/**
|
|
365
|
-
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
|
|
365
|
+
* 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\"
|
|
366
366
|
* @summary Patch the claim
|
|
367
367
|
* @param {string} code
|
|
368
368
|
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
@@ -415,7 +415,7 @@ var ClaimsApiAxiosParamCreator = function (configuration) {
|
|
|
415
415
|
});
|
|
416
416
|
},
|
|
417
417
|
/**
|
|
418
|
-
* This will update the identified claim in the database
|
|
418
|
+
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
419
419
|
* @summary Update the claim
|
|
420
420
|
* @param {string} code
|
|
421
421
|
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
@@ -478,7 +478,7 @@ var ClaimsApiFp = function (configuration) {
|
|
|
478
478
|
var localVarAxiosParamCreator = (0, exports.ClaimsApiAxiosParamCreator)(configuration);
|
|
479
479
|
return {
|
|
480
480
|
/**
|
|
481
|
-
* This will create a claim in the database
|
|
481
|
+
* This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
482
482
|
* @summary Create the claim
|
|
483
483
|
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
484
484
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -499,7 +499,7 @@ var ClaimsApiFp = function (configuration) {
|
|
|
499
499
|
});
|
|
500
500
|
},
|
|
501
501
|
/**
|
|
502
|
-
* This will delete the requested claim from the database.
|
|
502
|
+
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
503
503
|
* @summary Delete the claim
|
|
504
504
|
* @param {string} code
|
|
505
505
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -520,7 +520,7 @@ var ClaimsApiFp = function (configuration) {
|
|
|
520
520
|
});
|
|
521
521
|
},
|
|
522
522
|
/**
|
|
523
|
-
* This will fetch the identified claim from the database by code
|
|
523
|
+
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
524
524
|
* @summary Retrieve the claim
|
|
525
525
|
* @param {string} code
|
|
526
526
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -541,7 +541,7 @@ var ClaimsApiFp = function (configuration) {
|
|
|
541
541
|
});
|
|
542
542
|
},
|
|
543
543
|
/**
|
|
544
|
-
* This endpoint will calculate and get the regulation summary for a claim.
|
|
544
|
+
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
545
545
|
* @summary Retrieve the claim regulation summary
|
|
546
546
|
* @param {string} code Unique identifier for the object.
|
|
547
547
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -562,7 +562,7 @@ var ClaimsApiFp = function (configuration) {
|
|
|
562
562
|
});
|
|
563
563
|
},
|
|
564
564
|
/**
|
|
565
|
-
* 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.
|
|
565
|
+
* 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\"
|
|
566
566
|
* @summary List claims
|
|
567
567
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
568
568
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -589,7 +589,7 @@ var ClaimsApiFp = function (configuration) {
|
|
|
589
589
|
});
|
|
590
590
|
},
|
|
591
591
|
/**
|
|
592
|
-
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
|
|
592
|
+
* 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\"
|
|
593
593
|
* @summary Patch the claim
|
|
594
594
|
* @param {string} code
|
|
595
595
|
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
@@ -611,7 +611,7 @@ var ClaimsApiFp = function (configuration) {
|
|
|
611
611
|
});
|
|
612
612
|
},
|
|
613
613
|
/**
|
|
614
|
-
* This will update the identified claim in the database
|
|
614
|
+
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
615
615
|
* @summary Update the claim
|
|
616
616
|
* @param {string} code
|
|
617
617
|
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
@@ -643,7 +643,7 @@ var ClaimsApiFactory = function (configuration, basePath, axios) {
|
|
|
643
643
|
var localVarFp = (0, exports.ClaimsApiFp)(configuration);
|
|
644
644
|
return {
|
|
645
645
|
/**
|
|
646
|
-
* This will create a claim in the database
|
|
646
|
+
* This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
647
647
|
* @summary Create the claim
|
|
648
648
|
* @param {CreateClaimRequestDto} createClaimRequestDto
|
|
649
649
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -654,7 +654,7 @@ var ClaimsApiFactory = function (configuration, basePath, axios) {
|
|
|
654
654
|
return localVarFp.createClaim(createClaimRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
655
655
|
},
|
|
656
656
|
/**
|
|
657
|
-
* This will delete the requested claim from the database.
|
|
657
|
+
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
658
658
|
* @summary Delete the claim
|
|
659
659
|
* @param {string} code
|
|
660
660
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -665,7 +665,7 @@ var ClaimsApiFactory = function (configuration, basePath, axios) {
|
|
|
665
665
|
return localVarFp.deleteClaim(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
666
666
|
},
|
|
667
667
|
/**
|
|
668
|
-
* This will fetch the identified claim from the database by code
|
|
668
|
+
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
669
669
|
* @summary Retrieve the claim
|
|
670
670
|
* @param {string} code
|
|
671
671
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -676,7 +676,7 @@ var ClaimsApiFactory = function (configuration, basePath, axios) {
|
|
|
676
676
|
return localVarFp.getClaim(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
677
677
|
},
|
|
678
678
|
/**
|
|
679
|
-
* This endpoint will calculate and get the regulation summary for a claim.
|
|
679
|
+
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
680
680
|
* @summary Retrieve the claim regulation summary
|
|
681
681
|
* @param {string} code Unique identifier for the object.
|
|
682
682
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -687,7 +687,7 @@ var ClaimsApiFactory = function (configuration, basePath, axios) {
|
|
|
687
687
|
return localVarFp.getClaimRegulationSummary(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
688
688
|
},
|
|
689
689
|
/**
|
|
690
|
-
* 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.
|
|
690
|
+
* 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\"
|
|
691
691
|
* @summary List claims
|
|
692
692
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
693
693
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -704,7 +704,7 @@ var ClaimsApiFactory = function (configuration, basePath, axios) {
|
|
|
704
704
|
return localVarFp.listClaims(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
705
705
|
},
|
|
706
706
|
/**
|
|
707
|
-
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
|
|
707
|
+
* 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\"
|
|
708
708
|
* @summary Patch the claim
|
|
709
709
|
* @param {string} code
|
|
710
710
|
* @param {PatchClaimRequestDto} patchClaimRequestDto
|
|
@@ -716,7 +716,7 @@ var ClaimsApiFactory = function (configuration, basePath, axios) {
|
|
|
716
716
|
return localVarFp.patchClaim(code, patchClaimRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
717
717
|
},
|
|
718
718
|
/**
|
|
719
|
-
* This will update the identified claim in the database
|
|
719
|
+
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
720
720
|
* @summary Update the claim
|
|
721
721
|
* @param {string} code
|
|
722
722
|
* @param {UpdateClaimRequestDto} updateClaimRequestDto
|
|
@@ -742,7 +742,7 @@ var ClaimsApi = /** @class */ (function (_super) {
|
|
|
742
742
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
743
743
|
}
|
|
744
744
|
/**
|
|
745
|
-
* This will create a claim in the database
|
|
745
|
+
* This will create a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
746
746
|
* @summary Create the claim
|
|
747
747
|
* @param {ClaimsApiCreateClaimRequest} requestParameters Request parameters.
|
|
748
748
|
* @param {*} [options] Override http request option.
|
|
@@ -754,7 +754,7 @@ var ClaimsApi = /** @class */ (function (_super) {
|
|
|
754
754
|
return (0, exports.ClaimsApiFp)(this.configuration).createClaim(requestParameters.createClaimRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
755
755
|
};
|
|
756
756
|
/**
|
|
757
|
-
* This will delete the requested claim from the database.
|
|
757
|
+
* This will delete the requested claim from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
758
758
|
* @summary Delete the claim
|
|
759
759
|
* @param {ClaimsApiDeleteClaimRequest} requestParameters Request parameters.
|
|
760
760
|
* @param {*} [options] Override http request option.
|
|
@@ -766,7 +766,7 @@ var ClaimsApi = /** @class */ (function (_super) {
|
|
|
766
766
|
return (0, exports.ClaimsApiFp)(this.configuration).deleteClaim(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
767
767
|
};
|
|
768
768
|
/**
|
|
769
|
-
* This will fetch the identified claim from the database by code
|
|
769
|
+
* This will fetch the identified claim from the database by code **Required Permissions** \"claim-management.claims.view\"
|
|
770
770
|
* @summary Retrieve the claim
|
|
771
771
|
* @param {ClaimsApiGetClaimRequest} requestParameters Request parameters.
|
|
772
772
|
* @param {*} [options] Override http request option.
|
|
@@ -778,7 +778,7 @@ var ClaimsApi = /** @class */ (function (_super) {
|
|
|
778
778
|
return (0, exports.ClaimsApiFp)(this.configuration).getClaim(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
779
779
|
};
|
|
780
780
|
/**
|
|
781
|
-
* This endpoint will calculate and get the regulation summary for a claim.
|
|
781
|
+
* This endpoint will calculate and get the regulation summary for a claim. **Required Permissions** \"claim-management.claims.view\", \"claim-management.regulations.view\"
|
|
782
782
|
* @summary Retrieve the claim regulation summary
|
|
783
783
|
* @param {ClaimsApiGetClaimRegulationSummaryRequest} requestParameters Request parameters.
|
|
784
784
|
* @param {*} [options] Override http request option.
|
|
@@ -790,7 +790,7 @@ var ClaimsApi = /** @class */ (function (_super) {
|
|
|
790
790
|
return (0, exports.ClaimsApiFp)(this.configuration).getClaimRegulationSummary(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
791
791
|
};
|
|
792
792
|
/**
|
|
793
|
-
* 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.
|
|
793
|
+
* 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\"
|
|
794
794
|
* @summary List claims
|
|
795
795
|
* @param {ClaimsApiListClaimsRequest} requestParameters Request parameters.
|
|
796
796
|
* @param {*} [options] Override http request option.
|
|
@@ -803,7 +803,7 @@ var ClaimsApi = /** @class */ (function (_super) {
|
|
|
803
803
|
return (0, exports.ClaimsApiFp)(this.configuration).listClaims(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
804
804
|
};
|
|
805
805
|
/**
|
|
806
|
-
* Updates the identified claim by setting the values of the provided parameters. Any parameters not provided will be left unchanged.
|
|
806
|
+
* 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\"
|
|
807
807
|
* @summary Patch the claim
|
|
808
808
|
* @param {ClaimsApiPatchClaimRequest} requestParameters Request parameters.
|
|
809
809
|
* @param {*} [options] Override http request option.
|
|
@@ -815,7 +815,7 @@ var ClaimsApi = /** @class */ (function (_super) {
|
|
|
815
815
|
return (0, exports.ClaimsApiFp)(this.configuration).patchClaim(requestParameters.code, requestParameters.patchClaimRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
816
816
|
};
|
|
817
817
|
/**
|
|
818
|
-
* This will update the identified claim in the database
|
|
818
|
+
* This will update the identified claim in the database **Required Permissions** \"claim-management.claims.update\"
|
|
819
819
|
* @summary Update the claim
|
|
820
820
|
* @param {ClaimsApiUpdateClaimRequest} requestParameters Request parameters.
|
|
821
821
|
* @param {*} [options] Override http request option.
|
|
@@ -24,7 +24,7 @@ import { UpdateSettlementResponseClass } from '../models';
|
|
|
24
24
|
*/
|
|
25
25
|
export declare const SettlementsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26
26
|
/**
|
|
27
|
-
* This will create a settlement against a claim in the database
|
|
27
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
28
28
|
* @summary Create the settlement
|
|
29
29
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
30
30
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -33,7 +33,7 @@ export declare const SettlementsApiAxiosParamCreator: (configuration?: Configura
|
|
|
33
33
|
*/
|
|
34
34
|
createSettlement: (createSettlementRequestDto: CreateSettlementRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
35
|
/**
|
|
36
|
-
* This will delete the requested settlement from the database.
|
|
36
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
37
37
|
* @summary Delete the settlement
|
|
38
38
|
* @param {string} code
|
|
39
39
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -42,7 +42,7 @@ export declare const SettlementsApiAxiosParamCreator: (configuration?: Configura
|
|
|
42
42
|
*/
|
|
43
43
|
deleteSettlement: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
44
|
/**
|
|
45
|
-
* 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.
|
|
45
|
+
* 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\"
|
|
46
46
|
* @summary Retrieve the settlement
|
|
47
47
|
* @param {string} code
|
|
48
48
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -51,7 +51,7 @@ export declare const SettlementsApiAxiosParamCreator: (configuration?: Configura
|
|
|
51
51
|
*/
|
|
52
52
|
getSettlement: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
53
|
/**
|
|
54
|
-
* 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.
|
|
54
|
+
* 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\"
|
|
55
55
|
* @summary List settlements
|
|
56
56
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
57
57
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -66,7 +66,7 @@ export declare const SettlementsApiAxiosParamCreator: (configuration?: Configura
|
|
|
66
66
|
*/
|
|
67
67
|
listSettlements: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
68
|
/**
|
|
69
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
69
|
+
* 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\"
|
|
70
70
|
* @summary Update the settlement
|
|
71
71
|
* @param {string} code
|
|
72
72
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -82,7 +82,7 @@ export declare const SettlementsApiAxiosParamCreator: (configuration?: Configura
|
|
|
82
82
|
*/
|
|
83
83
|
export declare const SettlementsApiFp: (configuration?: Configuration) => {
|
|
84
84
|
/**
|
|
85
|
-
* This will create a settlement against a claim in the database
|
|
85
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
86
86
|
* @summary Create the settlement
|
|
87
87
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
88
88
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -91,7 +91,7 @@ export declare const SettlementsApiFp: (configuration?: Configuration) => {
|
|
|
91
91
|
*/
|
|
92
92
|
createSettlement(createSettlementRequestDto: CreateSettlementRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSettlementResponseClass>>;
|
|
93
93
|
/**
|
|
94
|
-
* This will delete the requested settlement from the database.
|
|
94
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
95
95
|
* @summary Delete the settlement
|
|
96
96
|
* @param {string} code
|
|
97
97
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -100,7 +100,7 @@ export declare const SettlementsApiFp: (configuration?: Configuration) => {
|
|
|
100
100
|
*/
|
|
101
101
|
deleteSettlement(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
102
102
|
/**
|
|
103
|
-
* 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.
|
|
103
|
+
* 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\"
|
|
104
104
|
* @summary Retrieve the settlement
|
|
105
105
|
* @param {string} code
|
|
106
106
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -109,7 +109,7 @@ export declare const SettlementsApiFp: (configuration?: Configuration) => {
|
|
|
109
109
|
*/
|
|
110
110
|
getSettlement(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSettlementResponseClass>>;
|
|
111
111
|
/**
|
|
112
|
-
* 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.
|
|
112
|
+
* 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\"
|
|
113
113
|
* @summary List settlements
|
|
114
114
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
115
115
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -124,7 +124,7 @@ export declare const SettlementsApiFp: (configuration?: Configuration) => {
|
|
|
124
124
|
*/
|
|
125
125
|
listSettlements(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSettlementsResponseClass>>;
|
|
126
126
|
/**
|
|
127
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
127
|
+
* 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\"
|
|
128
128
|
* @summary Update the settlement
|
|
129
129
|
* @param {string} code
|
|
130
130
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -140,7 +140,7 @@ export declare const SettlementsApiFp: (configuration?: Configuration) => {
|
|
|
140
140
|
*/
|
|
141
141
|
export declare const SettlementsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
142
142
|
/**
|
|
143
|
-
* This will create a settlement against a claim in the database
|
|
143
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
144
144
|
* @summary Create the settlement
|
|
145
145
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
146
146
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -149,7 +149,7 @@ export declare const SettlementsApiFactory: (configuration?: Configuration, base
|
|
|
149
149
|
*/
|
|
150
150
|
createSettlement(createSettlementRequestDto: CreateSettlementRequestDto, authorization?: string, options?: any): AxiosPromise<CreateSettlementResponseClass>;
|
|
151
151
|
/**
|
|
152
|
-
* This will delete the requested settlement from the database.
|
|
152
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
153
153
|
* @summary Delete the settlement
|
|
154
154
|
* @param {string} code
|
|
155
155
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -158,7 +158,7 @@ export declare const SettlementsApiFactory: (configuration?: Configuration, base
|
|
|
158
158
|
*/
|
|
159
159
|
deleteSettlement(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
160
160
|
/**
|
|
161
|
-
* 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.
|
|
161
|
+
* 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\"
|
|
162
162
|
* @summary Retrieve the settlement
|
|
163
163
|
* @param {string} code
|
|
164
164
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -167,7 +167,7 @@ export declare const SettlementsApiFactory: (configuration?: Configuration, base
|
|
|
167
167
|
*/
|
|
168
168
|
getSettlement(code: string, authorization?: string, options?: any): AxiosPromise<GetSettlementResponseClass>;
|
|
169
169
|
/**
|
|
170
|
-
* 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.
|
|
170
|
+
* 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\"
|
|
171
171
|
* @summary List settlements
|
|
172
172
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
173
173
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -182,7 +182,7 @@ export declare const SettlementsApiFactory: (configuration?: Configuration, base
|
|
|
182
182
|
*/
|
|
183
183
|
listSettlements(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListSettlementsResponseClass>;
|
|
184
184
|
/**
|
|
185
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
185
|
+
* 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\"
|
|
186
186
|
* @summary Update the settlement
|
|
187
187
|
* @param {string} code
|
|
188
188
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -337,7 +337,7 @@ export interface SettlementsApiUpdateSettlementRequest {
|
|
|
337
337
|
*/
|
|
338
338
|
export declare class SettlementsApi extends BaseAPI {
|
|
339
339
|
/**
|
|
340
|
-
* This will create a settlement against a claim in the database
|
|
340
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
341
341
|
* @summary Create the settlement
|
|
342
342
|
* @param {SettlementsApiCreateSettlementRequest} requestParameters Request parameters.
|
|
343
343
|
* @param {*} [options] Override http request option.
|
|
@@ -346,7 +346,7 @@ export declare class SettlementsApi extends BaseAPI {
|
|
|
346
346
|
*/
|
|
347
347
|
createSettlement(requestParameters: SettlementsApiCreateSettlementRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSettlementResponseClass, any>>;
|
|
348
348
|
/**
|
|
349
|
-
* This will delete the requested settlement from the database.
|
|
349
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
350
350
|
* @summary Delete the settlement
|
|
351
351
|
* @param {SettlementsApiDeleteSettlementRequest} requestParameters Request parameters.
|
|
352
352
|
* @param {*} [options] Override http request option.
|
|
@@ -355,7 +355,7 @@ export declare class SettlementsApi extends BaseAPI {
|
|
|
355
355
|
*/
|
|
356
356
|
deleteSettlement(requestParameters: SettlementsApiDeleteSettlementRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
357
357
|
/**
|
|
358
|
-
* 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.
|
|
358
|
+
* 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\"
|
|
359
359
|
* @summary Retrieve the settlement
|
|
360
360
|
* @param {SettlementsApiGetSettlementRequest} requestParameters Request parameters.
|
|
361
361
|
* @param {*} [options] Override http request option.
|
|
@@ -364,7 +364,7 @@ export declare class SettlementsApi extends BaseAPI {
|
|
|
364
364
|
*/
|
|
365
365
|
getSettlement(requestParameters: SettlementsApiGetSettlementRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSettlementResponseClass, any>>;
|
|
366
366
|
/**
|
|
367
|
-
* 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.
|
|
367
|
+
* 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\"
|
|
368
368
|
* @summary List settlements
|
|
369
369
|
* @param {SettlementsApiListSettlementsRequest} requestParameters Request parameters.
|
|
370
370
|
* @param {*} [options] Override http request option.
|
|
@@ -373,7 +373,7 @@ export declare class SettlementsApi extends BaseAPI {
|
|
|
373
373
|
*/
|
|
374
374
|
listSettlements(requestParameters?: SettlementsApiListSettlementsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSettlementsResponseClass, any>>;
|
|
375
375
|
/**
|
|
376
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
376
|
+
* 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\"
|
|
377
377
|
* @summary Update the settlement
|
|
378
378
|
* @param {SettlementsApiUpdateSettlementRequest} requestParameters Request parameters.
|
|
379
379
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* This will create a settlement against a claim in the database
|
|
100
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
101
101
|
* @summary Create the settlement
|
|
102
102
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -146,7 +146,7 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* This will delete the requested settlement from the database.
|
|
149
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
150
150
|
* @summary Delete the settlement
|
|
151
151
|
* @param {string} code
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -194,7 +194,7 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
|
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
196
|
/**
|
|
197
|
-
* 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.
|
|
197
|
+
* 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\"
|
|
198
198
|
* @summary Retrieve the settlement
|
|
199
199
|
* @param {string} code
|
|
200
200
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -242,7 +242,7 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
|
|
|
242
242
|
});
|
|
243
243
|
},
|
|
244
244
|
/**
|
|
245
|
-
* 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.
|
|
245
|
+
* 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\"
|
|
246
246
|
* @summary List settlements
|
|
247
247
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
248
248
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -314,7 +314,7 @@ var SettlementsApiAxiosParamCreator = function (configuration) {
|
|
|
314
314
|
});
|
|
315
315
|
},
|
|
316
316
|
/**
|
|
317
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
317
|
+
* 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\"
|
|
318
318
|
* @summary Update the settlement
|
|
319
319
|
* @param {string} code
|
|
320
320
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -377,7 +377,7 @@ var SettlementsApiFp = function (configuration) {
|
|
|
377
377
|
var localVarAxiosParamCreator = (0, exports.SettlementsApiAxiosParamCreator)(configuration);
|
|
378
378
|
return {
|
|
379
379
|
/**
|
|
380
|
-
* This will create a settlement against a claim in the database
|
|
380
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
381
381
|
* @summary Create the settlement
|
|
382
382
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
383
383
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -398,7 +398,7 @@ var SettlementsApiFp = function (configuration) {
|
|
|
398
398
|
});
|
|
399
399
|
},
|
|
400
400
|
/**
|
|
401
|
-
* This will delete the requested settlement from the database.
|
|
401
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
402
402
|
* @summary Delete the settlement
|
|
403
403
|
* @param {string} code
|
|
404
404
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -419,7 +419,7 @@ var SettlementsApiFp = function (configuration) {
|
|
|
419
419
|
});
|
|
420
420
|
},
|
|
421
421
|
/**
|
|
422
|
-
* 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.
|
|
422
|
+
* 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\"
|
|
423
423
|
* @summary Retrieve the settlement
|
|
424
424
|
* @param {string} code
|
|
425
425
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -440,7 +440,7 @@ var SettlementsApiFp = function (configuration) {
|
|
|
440
440
|
});
|
|
441
441
|
},
|
|
442
442
|
/**
|
|
443
|
-
* 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.
|
|
443
|
+
* 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\"
|
|
444
444
|
* @summary List settlements
|
|
445
445
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
446
446
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -467,7 +467,7 @@ var SettlementsApiFp = function (configuration) {
|
|
|
467
467
|
});
|
|
468
468
|
},
|
|
469
469
|
/**
|
|
470
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
470
|
+
* 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\"
|
|
471
471
|
* @summary Update the settlement
|
|
472
472
|
* @param {string} code
|
|
473
473
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -499,7 +499,7 @@ var SettlementsApiFactory = function (configuration, basePath, axios) {
|
|
|
499
499
|
var localVarFp = (0, exports.SettlementsApiFp)(configuration);
|
|
500
500
|
return {
|
|
501
501
|
/**
|
|
502
|
-
* This will create a settlement against a claim in the database
|
|
502
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
503
503
|
* @summary Create the settlement
|
|
504
504
|
* @param {CreateSettlementRequestDto} createSettlementRequestDto
|
|
505
505
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -510,7 +510,7 @@ var SettlementsApiFactory = function (configuration, basePath, axios) {
|
|
|
510
510
|
return localVarFp.createSettlement(createSettlementRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
511
511
|
},
|
|
512
512
|
/**
|
|
513
|
-
* This will delete the requested settlement from the database.
|
|
513
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
514
514
|
* @summary Delete the settlement
|
|
515
515
|
* @param {string} code
|
|
516
516
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -521,7 +521,7 @@ var SettlementsApiFactory = function (configuration, basePath, axios) {
|
|
|
521
521
|
return localVarFp.deleteSettlement(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
522
522
|
},
|
|
523
523
|
/**
|
|
524
|
-
* 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.
|
|
524
|
+
* 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\"
|
|
525
525
|
* @summary Retrieve the settlement
|
|
526
526
|
* @param {string} code
|
|
527
527
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -532,7 +532,7 @@ var SettlementsApiFactory = function (configuration, basePath, axios) {
|
|
|
532
532
|
return localVarFp.getSettlement(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
533
533
|
},
|
|
534
534
|
/**
|
|
535
|
-
* 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.
|
|
535
|
+
* 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\"
|
|
536
536
|
* @summary List settlements
|
|
537
537
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
538
538
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -549,7 +549,7 @@ var SettlementsApiFactory = function (configuration, basePath, axios) {
|
|
|
549
549
|
return localVarFp.listSettlements(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
550
550
|
},
|
|
551
551
|
/**
|
|
552
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
552
|
+
* 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\"
|
|
553
553
|
* @summary Update the settlement
|
|
554
554
|
* @param {string} code
|
|
555
555
|
* @param {UpdateSettlementRequestDto} updateSettlementRequestDto
|
|
@@ -575,7 +575,7 @@ var SettlementsApi = /** @class */ (function (_super) {
|
|
|
575
575
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
578
|
-
* This will create a settlement against a claim in the database
|
|
578
|
+
* This will create a settlement against a claim in the database **Required Permissions** \"claim-management.claims.create\"
|
|
579
579
|
* @summary Create the settlement
|
|
580
580
|
* @param {SettlementsApiCreateSettlementRequest} requestParameters Request parameters.
|
|
581
581
|
* @param {*} [options] Override http request option.
|
|
@@ -587,7 +587,7 @@ var SettlementsApi = /** @class */ (function (_super) {
|
|
|
587
587
|
return (0, exports.SettlementsApiFp)(this.configuration).createSettlement(requestParameters.createSettlementRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
588
588
|
};
|
|
589
589
|
/**
|
|
590
|
-
* This will delete the requested settlement from the database.
|
|
590
|
+
* This will delete the requested settlement from the database. **Required Permissions** \"claim-management.claims.delete\"
|
|
591
591
|
* @summary Delete the settlement
|
|
592
592
|
* @param {SettlementsApiDeleteSettlementRequest} requestParameters Request parameters.
|
|
593
593
|
* @param {*} [options] Override http request option.
|
|
@@ -599,7 +599,7 @@ var SettlementsApi = /** @class */ (function (_super) {
|
|
|
599
599
|
return (0, exports.SettlementsApiFp)(this.configuration).deleteSettlement(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
600
600
|
};
|
|
601
601
|
/**
|
|
602
|
-
* 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.
|
|
602
|
+
* 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\"
|
|
603
603
|
* @summary Retrieve the settlement
|
|
604
604
|
* @param {SettlementsApiGetSettlementRequest} requestParameters Request parameters.
|
|
605
605
|
* @param {*} [options] Override http request option.
|
|
@@ -611,7 +611,7 @@ var SettlementsApi = /** @class */ (function (_super) {
|
|
|
611
611
|
return (0, exports.SettlementsApiFp)(this.configuration).getSettlement(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
612
612
|
};
|
|
613
613
|
/**
|
|
614
|
-
* 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.
|
|
614
|
+
* 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\"
|
|
615
615
|
* @summary List settlements
|
|
616
616
|
* @param {SettlementsApiListSettlementsRequest} requestParameters Request parameters.
|
|
617
617
|
* @param {*} [options] Override http request option.
|
|
@@ -624,7 +624,7 @@ var SettlementsApi = /** @class */ (function (_super) {
|
|
|
624
624
|
return (0, exports.SettlementsApiFp)(this.configuration).listSettlements(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
625
625
|
};
|
|
626
626
|
/**
|
|
627
|
-
* Updates the specified settlement by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
627
|
+
* 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\"
|
|
628
628
|
* @summary Update the settlement
|
|
629
629
|
* @param {SettlementsApiUpdateSettlementRequest} requestParameters Request parameters.
|
|
630
630
|
* @param {*} [options] Override http request option.
|