@reposit/api-client 6.63.0 → 6.64.0-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/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 {
@@ -416,6 +418,7 @@ export declare interface BulkImportDTO {
416
418
  failedRecords: number;
417
419
  createdByUserId: string;
418
420
  createdByUser?: UserDTO;
421
+ failureReason?: string;
419
422
  startedAt?: string;
420
423
  completedAt?: string;
421
424
  createdAt: string;
@@ -766,6 +769,54 @@ export declare enum ClaimDTOStatusEnum {
766
769
  INSURANCECLAIM = "INSURANCE_CLAIM"
767
770
  }
768
771
 
772
+ export declare interface ClaimItemCorrectionResponseDTO {
773
+ claimId: string;
774
+ claimItemId: string;
775
+ newAmount: number;
776
+ action: ClaimItemCorrectionResponseDTOActionEnum;
777
+ currentItemAmount: number;
778
+ projectedItemAmount: number;
779
+ currentClaimAmount: number;
780
+ projectedClaimAmount: number;
781
+ hasFinalProposal: boolean;
782
+ orderUpdateWouldApply: boolean;
783
+ orderUpdateSkippedReasons: Array<string>;
784
+ relatedProposalCount: number;
785
+ relatedDocumentCount: number;
786
+ relatedEvidenceChaserItemCount: number;
787
+ relatedEvidenceChaserReviewCount: number;
788
+ }
789
+
790
+ export declare enum ClaimItemCorrectionResponseDTOActionEnum {
791
+ Deletion = "deletion",
792
+ Reduction = "reduction"
793
+ }
794
+
795
+ export declare class ClaimItemCorrectionsApi extends BaseAPI implements ClaimItemCorrectionsApiInterface {
796
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
797
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
798
+ }
799
+
800
+ export declare const ClaimItemCorrectionsApiAxiosParamCreator: (configuration?: Configuration) => {
801
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): RequestArgs;
802
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): RequestArgs;
803
+ };
804
+
805
+ export declare const ClaimItemCorrectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
806
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
807
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
808
+ };
809
+
810
+ export declare const ClaimItemCorrectionsApiFp: (configuration?: Configuration) => {
811
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemCorrectionResponseDTO>;
812
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimItemCorrectionResponseDTO>;
813
+ };
814
+
815
+ export declare interface ClaimItemCorrectionsApiInterface {
816
+ applyClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
817
+ dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, options?: any): AxiosPromise<ClaimItemCorrectionResponseDTO>;
818
+ }
819
+
769
820
  export declare interface ClaimItemDocumentDTO {
770
821
  document: DocumentDTO;
771
822
  id: string;
@@ -1783,6 +1834,7 @@ export declare interface CreateLandlordDTO {
1783
1834
  lastName?: string;
1784
1835
  companyName?: string;
1785
1836
  email: string;
1837
+ contactNumber?: string;
1786
1838
  landlordTypeId: CreateLandlordDTOLandlordTypeIdEnum;
1787
1839
  }
1788
1840
 
@@ -1810,6 +1862,7 @@ export declare interface CreateLandlordWithOrgDTO {
1810
1862
  lastName?: string;
1811
1863
  companyName?: string;
1812
1864
  email: string;
1865
+ contactNumber?: string;
1813
1866
  landlordTypeId: CreateLandlordWithOrgDTOLandlordTypeIdEnum;
1814
1867
  organizationId: string;
1815
1868
  }
@@ -2063,10 +2116,10 @@ export declare interface CreateTenancyRequestDTO {
2063
2116
  PPM?: number;
2064
2117
  isNewTenancy?: boolean;
2065
2118
  startDate?: string;
2119
+ termType?: CreateTenancyRequestDTOTermTypeEnum;
2066
2120
  endDate?: string;
2067
2121
  organizationId: string;
2068
2122
  letOnly?: boolean;
2069
- termType?: CreateTenancyRequestDTOTermTypeEnum;
2070
2123
  }
2071
2124
 
2072
2125
  export declare enum CreateTenancyRequestDTOTermTypeEnum {
@@ -2285,6 +2338,8 @@ export declare interface DownloadUrlDTO {
2285
2338
  expiresInSeconds: number;
2286
2339
  }
2287
2340
 
2341
+ export declare function dryRunClaimItemCorrection(claimItemId: string, updateClaimItemCorrectionDTO: UpdateClaimItemCorrectionDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimItemCorrectionResponseDTO>;
2342
+
2288
2343
  export declare function duplicatePaymentMethodCheck(id: string, duplicatePaymentMethodCheckDTO: DuplicatePaymentMethodCheckDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<IsDuplicateResponse>;
2289
2344
 
2290
2345
  export declare interface DuplicatePaymentMethodCheckDTO {
@@ -3196,6 +3251,7 @@ export declare interface LandlordDTO {
3196
3251
  companyName: string;
3197
3252
  type: LandlordDTOTypeEnum;
3198
3253
  email: string;
3254
+ contactNumber?: string;
3199
3255
  organization: OrganizationDTO;
3200
3256
  createdAt: string;
3201
3257
  updatedAt: string;
@@ -3771,6 +3827,7 @@ export declare interface OrganizationDTO {
3771
3827
  name: string;
3772
3828
  attributes?: OrganizationAttributesDTO;
3773
3829
  settings?: OrganizationSettingsDTO;
3830
+ canUseAllTenancyTypes?: boolean;
3774
3831
  organizationTypeId: OrganizationDTOOrganizationTypeIdEnum;
3775
3832
  organizationRecipients?: Array<OrganizationRecipientDTO>;
3776
3833
  createdAt: string;
@@ -4086,6 +4143,12 @@ export declare interface OrganizationSettingsDTO {
4086
4143
  inventoryChaserDisabled?: boolean;
4087
4144
  minimumFeeDisabled?: boolean;
4088
4145
  pendingSwitchRemindersDisabled?: boolean;
4146
+ allowedTenancyTermTypes?: Array<OrganizationSettingsDTOAllowedTenancyTermTypesEnum>;
4147
+ }
4148
+
4149
+ export declare enum OrganizationSettingsDTOAllowedTenancyTermTypesEnum {
4150
+ FIXED = "FIXED",
4151
+ PERIODIC = "PERIODIC"
4089
4152
  }
4090
4153
 
4091
4154
  export declare enum OrganizationSettingsDTOCommissionRuleEnum {
@@ -4203,6 +4266,7 @@ export declare interface OrganizationWithCashDepositDTO {
4203
4266
  name: string;
4204
4267
  attributes?: OrganizationAttributesDTO;
4205
4268
  settings?: OrganizationSettingsDTO;
4269
+ canUseAllTenancyTypes?: boolean;
4206
4270
  organizationTypeId: OrganizationWithCashDepositDTOOrganizationTypeIdEnum;
4207
4271
  organizationRecipients?: Array<OrganizationRecipientDTO>;
4208
4272
  createdAt: string;
@@ -4224,6 +4288,7 @@ export declare interface OrganizationWithRepositsAndRoles {
4224
4288
  name: string;
4225
4289
  attributes?: OrganizationAttributesDTO;
4226
4290
  settings?: OrganizationSettingsDTO;
4291
+ canUseAllTenancyTypes?: boolean;
4227
4292
  organizationTypeId: OrganizationWithRepositsAndRolesOrganizationTypeIdEnum;
4228
4293
  organizationRecipients?: Array<OrganizationRecipientDTO>;
4229
4294
  createdAt: string;
@@ -4255,6 +4320,7 @@ export declare interface OrganizationWithRoles {
4255
4320
  name: string;
4256
4321
  attributes?: OrganizationAttributesDTO;
4257
4322
  settings?: OrganizationSettingsDTO;
4323
+ canUseAllTenancyTypes?: boolean;
4258
4324
  organizationTypeId: OrganizationWithRolesOrganizationTypeIdEnum;
4259
4325
  organizationRecipients?: Array<OrganizationRecipientDTO>;
4260
4326
  createdAt: string;
@@ -4872,6 +4938,7 @@ export declare enum QueueMessageDTOCronNameEnum {
4872
4938
  DAILYCLAIMAUTORESPONDSUPPLIER = "DAILY_CLAIM_AUTO_RESPOND_SUPPLIER",
4873
4939
  SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
4874
4940
  DAILYFINALSCHEDULEDAUTOCHARGE = "DAILY_FINAL_SCHEDULED_AUTO_CHARGE",
4941
+ DAILYSCHEDULEDRETRYABLEPAYMENT = "DAILY_SCHEDULED_RETRYABLE_PAYMENT",
4875
4942
  DAILYORDERSCHEDULEDCHARGE = "DAILY_ORDER_SCHEDULED_CHARGE",
4876
4943
  MONTHLYDIRECTCOMMISSION = "MONTHLY_DIRECT_COMMISSION",
4877
4944
  WEEKLYLANDLORDTRANSFERREMINDER = "WEEKLY_LANDLORD_TRANSFER_REMINDER",
@@ -4916,6 +4983,7 @@ export declare enum QueueMessageDTOTypeEnum {
4916
4983
  TOPUPUPCOMING = "TOP_UP_UPCOMING",
4917
4984
  AUTOCHARGE = "AUTO_CHARGE",
4918
4985
  SCHEDULEDAUTOCHARGE = "SCHEDULED_AUTO_CHARGE",
4986
+ PROCESSSCHEDULEDRETRYABLEPAYMENT = "PROCESS_SCHEDULED_RETRYABLE_PAYMENT",
4919
4987
  CHARGEORDERSCHEDULEDCHARGE = "CHARGE_ORDER_SCHEDULED_CHARGE",
4920
4988
  AUTORESPONDTENANT = "AUTO_RESPOND_TENANT",
4921
4989
  AUTORESPONDSUPPLIER = "AUTO_RESPOND_SUPPLIER",
@@ -6588,6 +6656,10 @@ export declare interface UpdateClaimDTO {
6588
6656
 
6589
6657
  export declare function updateClaimItem(claimId: string, claimItemId: string, updateClaimItemDTO: UpdateClaimItemDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
6590
6658
 
6659
+ export declare interface UpdateClaimItemCorrectionDTO {
6660
+ newAmount: number;
6661
+ }
6662
+
6591
6663
  export declare interface UpdateClaimItemDTO {
6592
6664
  amount?: number;
6593
6665
  description?: string;
@@ -6651,6 +6723,7 @@ export declare interface UpdateLandlordDTO {
6651
6723
  companyName?: string;
6652
6724
  type?: UpdateLandlordDTOTypeEnum;
6653
6725
  email?: string;
6726
+ contactNumber?: string;
6654
6727
  }
6655
6728
 
6656
6729
  export declare enum UpdateLandlordDTOTypeEnum {
@@ -6828,7 +6901,9 @@ export declare enum UserDTOInternalRolesEnum {
6828
6901
  PAYMENTPLANDELETE = "PAYMENT_PLAN_DELETE",
6829
6902
  INTERNALREPORTSALES = "INTERNAL_REPORT_SALES",
6830
6903
  MANAGEORGANIZATIONUSERROLES = "MANAGE_ORGANIZATION_USER_ROLES",
6831
- BULKIMPORT = "BULK_IMPORT"
6904
+ BULKIMPORT = "BULK_IMPORT",
6905
+ CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
6906
+ CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE"
6832
6907
  }
6833
6908
 
6834
6909
  export declare enum UserDTOUserTypeIdEnum {