@reposit/api-client 6.63.0 → 6.64.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/dist/index.d.ts +60 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1858 -1715
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -190,6 +190,8 @@ export declare interface ApplicantsApiInterface {
|
|
|
190
190
|
updateAttributes(id: string, updateApplicantAttributesDTO: UpdateApplicantAttributesDTO, options?: any): AxiosPromise<ApplicantDTO>;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
+
export declare function applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemCorrectionResponseDTO>;
|
|
194
|
+
|
|
193
195
|
export declare function approveClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
194
196
|
|
|
195
197
|
export declare interface ArbitrationDocumentDTO {
|
|
@@ -766,6 +768,54 @@ export declare enum ClaimDTOStatusEnum {
|
|
|
766
768
|
INSURANCECLAIM = "INSURANCE_CLAIM"
|
|
767
769
|
}
|
|
768
770
|
|
|
771
|
+
export declare interface ClaimItemCorrectionResponseDTO {
|
|
772
|
+
claimId: string;
|
|
773
|
+
claimItemId: string;
|
|
774
|
+
newAmount: number;
|
|
775
|
+
action: ClaimItemCorrectionResponseDTOActionEnum;
|
|
776
|
+
currentItemAmount: number;
|
|
777
|
+
projectedItemAmount: number;
|
|
778
|
+
currentClaimAmount: number;
|
|
779
|
+
projectedClaimAmount: number;
|
|
780
|
+
hasFinalProposal: boolean;
|
|
781
|
+
orderUpdateWouldApply: boolean;
|
|
782
|
+
orderUpdateSkippedReasons: Array<string>;
|
|
783
|
+
relatedProposalCount: number;
|
|
784
|
+
relatedDocumentCount: number;
|
|
785
|
+
relatedEvidenceChaserItemCount: number;
|
|
786
|
+
relatedEvidenceChaserReviewCount: number;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
export declare enum ClaimItemCorrectionResponseDTOActionEnum {
|
|
790
|
+
Deletion = "deletion",
|
|
791
|
+
Reduction = "reduction"
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
export declare class ClaimItemCorrectionsApi extends BaseAPI implements ClaimItemCorrectionsApiInterface {
|
|
795
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
796
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
export declare const ClaimItemCorrectionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
800
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): RequestArgs;
|
|
801
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): RequestArgs;
|
|
802
|
+
};
|
|
803
|
+
|
|
804
|
+
export declare const ClaimItemCorrectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
805
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
806
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
807
|
+
};
|
|
808
|
+
|
|
809
|
+
export declare const ClaimItemCorrectionsApiFp: (configuration?: Configuration) => {
|
|
810
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
811
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
812
|
+
};
|
|
813
|
+
|
|
814
|
+
export declare interface ClaimItemCorrectionsApiInterface {
|
|
815
|
+
applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
816
|
+
dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
|
|
817
|
+
}
|
|
818
|
+
|
|
769
819
|
export declare interface ClaimItemDocumentDTO {
|
|
770
820
|
document: DocumentDTO;
|
|
771
821
|
id: string;
|
|
@@ -1783,6 +1833,7 @@ export declare interface CreateLandlordDTO {
|
|
|
1783
1833
|
lastName?: string;
|
|
1784
1834
|
companyName?: string;
|
|
1785
1835
|
email: string;
|
|
1836
|
+
contactNumber?: string;
|
|
1786
1837
|
landlordTypeId: CreateLandlordDTOLandlordTypeIdEnum;
|
|
1787
1838
|
}
|
|
1788
1839
|
|
|
@@ -1810,6 +1861,7 @@ export declare interface CreateLandlordWithOrgDTO {
|
|
|
1810
1861
|
lastName?: string;
|
|
1811
1862
|
companyName?: string;
|
|
1812
1863
|
email: string;
|
|
1864
|
+
contactNumber?: string;
|
|
1813
1865
|
landlordTypeId: CreateLandlordWithOrgDTOLandlordTypeIdEnum;
|
|
1814
1866
|
organizationId: string;
|
|
1815
1867
|
}
|
|
@@ -2285,6 +2337,8 @@ export declare interface DownloadUrlDTO {
|
|
|
2285
2337
|
expiresInSeconds: number;
|
|
2286
2338
|
}
|
|
2287
2339
|
|
|
2340
|
+
export declare function dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemCorrectionResponseDTO>;
|
|
2341
|
+
|
|
2288
2342
|
export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
|
|
2289
2343
|
|
|
2290
2344
|
export declare interface DuplicatePaymentMethodCheckDTO {
|
|
@@ -3196,6 +3250,7 @@ export declare interface LandlordDTO {
|
|
|
3196
3250
|
companyName: string;
|
|
3197
3251
|
type: LandlordDTOTypeEnum;
|
|
3198
3252
|
email: string;
|
|
3253
|
+
contactNumber?: string;
|
|
3199
3254
|
organization: OrganizationDTO;
|
|
3200
3255
|
createdAt: string;
|
|
3201
3256
|
updatedAt: string;
|
|
@@ -6588,6 +6643,10 @@ export declare interface UpdateClaimDTO {
|
|
|
6588
6643
|
|
|
6589
6644
|
export declare function updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6590
6645
|
|
|
6646
|
+
export declare interface UpdateClaimItemCorrectionDTO {
|
|
6647
|
+
newAmount: number;
|
|
6648
|
+
}
|
|
6649
|
+
|
|
6591
6650
|
export declare interface UpdateClaimItemDTO {
|
|
6592
6651
|
amount?: number;
|
|
6593
6652
|
description?: string;
|
|
@@ -6651,6 +6710,7 @@ export declare interface UpdateLandlordDTO {
|
|
|
6651
6710
|
companyName?: string;
|
|
6652
6711
|
type?: UpdateLandlordDTOTypeEnum;
|
|
6653
6712
|
email?: string;
|
|
6713
|
+
contactNumber?: string;
|
|
6654
6714
|
}
|
|
6655
6715
|
|
|
6656
6716
|
export declare enum UpdateLandlordDTOTypeEnum {
|