@reposit/api-client 6.62.0-beta.2 → 6.63.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 +4 -58
- package/dist/index.js +1 -1
- package/dist/index.mjs +1715 -1858
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -190,8 +190,6 @@ 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
|
-
|
|
195
193
|
export declare function approveClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
196
194
|
|
|
197
195
|
export declare interface ArbitrationDocumentDTO {
|
|
@@ -768,54 +766,6 @@ export declare enum ClaimDTOStatusEnum {
|
|
|
768
766
|
INSURANCECLAIM = "INSURANCE_CLAIM"
|
|
769
767
|
}
|
|
770
768
|
|
|
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
|
-
|
|
819
769
|
export declare interface ClaimItemDocumentDTO {
|
|
820
770
|
document: DocumentDTO;
|
|
821
771
|
id: string;
|
|
@@ -2335,8 +2285,6 @@ export declare interface DownloadUrlDTO {
|
|
|
2335
2285
|
expiresInSeconds: number;
|
|
2336
2286
|
}
|
|
2337
2287
|
|
|
2338
|
-
export declare function dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemCorrectionResponseDTO>;
|
|
2339
|
-
|
|
2340
2288
|
export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
|
|
2341
2289
|
|
|
2342
2290
|
export declare interface DuplicatePaymentMethodCheckDTO {
|
|
@@ -5021,7 +4969,8 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
5021
4969
|
RECONCILEUNALLOCATEDFUNDS = "RECONCILE_UNALLOCATED_FUNDS",
|
|
5022
4970
|
MYDEPOSITSCREATEPROPERTYANDTENANCY = "MY_DEPOSITS_CREATE_PROPERTY_AND_TENANCY",
|
|
5023
4971
|
CREATEXEROCONTACTFORORGANIZATION = "CREATE_XERO_CONTACT_FOR_ORGANIZATION",
|
|
5024
|
-
PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE"
|
|
4972
|
+
PROCESSBULKIMPORTFILE = "PROCESS_BULK_IMPORT_FILE",
|
|
4973
|
+
PROCESSBULKIMPORTROW = "PROCESS_BULK_IMPORT_ROW"
|
|
5025
4974
|
}
|
|
5026
4975
|
|
|
5027
4976
|
export declare function readyForArbitrateClaim(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDTO>;
|
|
@@ -6639,10 +6588,6 @@ export declare interface UpdateClaimDTO {
|
|
|
6639
6588
|
|
|
6640
6589
|
export declare function updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
6641
6590
|
|
|
6642
|
-
export declare interface UpdateClaimItemCorrectionDTO {
|
|
6643
|
-
newAmount: number;
|
|
6644
|
-
}
|
|
6645
|
-
|
|
6646
6591
|
export declare interface UpdateClaimItemDTO {
|
|
6647
6592
|
amount?: number;
|
|
6648
6593
|
description?: string;
|
|
@@ -6882,7 +6827,8 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
6882
6827
|
PAYMENTPLANCREATE = "PAYMENT_PLAN_CREATE",
|
|
6883
6828
|
PAYMENTPLANDELETE = "PAYMENT_PLAN_DELETE",
|
|
6884
6829
|
INTERNALREPORTSALES = "INTERNAL_REPORT_SALES",
|
|
6885
|
-
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES"
|
|
6830
|
+
MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
|
|
6831
|
+
BULKIMPORT = "BULK_IMPORT"
|
|
6886
6832
|
}
|
|
6887
6833
|
|
|
6888
6834
|
export declare enum UserDTOUserTypeIdEnum {
|