@reposit/api-client 6.65.0-2 → 6.66.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 +45 -15
- package/dist/index.js +1 -1
- package/dist/index.mjs +9 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -410,7 +410,7 @@ export declare interface BulkImportDTO {
|
|
|
410
410
|
id: string;
|
|
411
411
|
name: string;
|
|
412
412
|
importType: BulkImportDTOImportTypeEnum;
|
|
413
|
-
organizationId
|
|
413
|
+
organizationId?: string | null;
|
|
414
414
|
organizationName?: string;
|
|
415
415
|
filePath?: string;
|
|
416
416
|
status: BulkImportDTOStatusEnum;
|
|
@@ -428,7 +428,8 @@ export declare interface BulkImportDTO {
|
|
|
428
428
|
|
|
429
429
|
export declare enum BulkImportDTOImportTypeEnum {
|
|
430
430
|
REPOSIT = "REPOSIT",
|
|
431
|
-
PROPERTY = "PROPERTY"
|
|
431
|
+
PROPERTY = "PROPERTY",
|
|
432
|
+
BANKTRANSACTION = "BANK_TRANSACTION"
|
|
432
433
|
}
|
|
433
434
|
|
|
434
435
|
export declare enum BulkImportDTOStatusEnum {
|
|
@@ -445,7 +446,7 @@ export declare class BulkImportsApi extends BaseAPI implements BulkImportsApiInt
|
|
|
445
446
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
446
447
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
447
448
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
448
|
-
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<Response>;
|
|
449
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<Response>;
|
|
449
450
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
450
451
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
451
452
|
}
|
|
@@ -456,7 +457,7 @@ export declare const BulkImportsApiAxiosParamCreator: (configuration?: Configura
|
|
|
456
457
|
getAllBulkImports(options?: any): RequestArgs;
|
|
457
458
|
getBulkImportById(id: string, options?: any): RequestArgs;
|
|
458
459
|
getBulkImportDownloadUrl(id: string, options?: any): RequestArgs;
|
|
459
|
-
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): RequestArgs;
|
|
460
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): RequestArgs;
|
|
460
461
|
getFailedRowsCsv(id: string, options?: any): RequestArgs;
|
|
461
462
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): RequestArgs;
|
|
462
463
|
};
|
|
@@ -467,7 +468,7 @@ export declare const BulkImportsApiFactory: (configuration?: Configuration, base
|
|
|
467
468
|
getAllBulkImports(options?: any): AxiosPromise<BulkImportDTO[]>;
|
|
468
469
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
469
470
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
470
|
-
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<Response>;
|
|
471
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<Response>;
|
|
471
472
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<Response>;
|
|
472
473
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
473
474
|
};
|
|
@@ -478,7 +479,7 @@ export declare const BulkImportsApiFp: (configuration?: Configuration) => {
|
|
|
478
479
|
getAllBulkImports(options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkImportDTO>>;
|
|
479
480
|
getBulkImportById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
480
481
|
getBulkImportDownloadUrl(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadUrlDTO>;
|
|
481
|
-
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
482
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
482
483
|
getFailedRowsCsv(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
483
484
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkImportDTO>;
|
|
484
485
|
};
|
|
@@ -489,7 +490,7 @@ export declare interface BulkImportsApiInterface {
|
|
|
489
490
|
getAllBulkImports(options?: any): AxiosPromise<Array<BulkImportDTO>>;
|
|
490
491
|
getBulkImportById(id: string, options?: any): AxiosPromise<BulkImportDTO>;
|
|
491
492
|
getBulkImportDownloadUrl(id: string, options?: any): AxiosPromise<DownloadUrlDTO>;
|
|
492
|
-
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', options?: any): AxiosPromise<{}>;
|
|
493
|
+
getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', options?: any): AxiosPromise<{}>;
|
|
493
494
|
getFailedRowsCsv(id: string, options?: any): AxiosPromise<{}>;
|
|
494
495
|
processUploadFile(id: string, processUploadFileDTO: ProcessUploadFileDTO, options?: any): AxiosPromise<BulkImportDTO>;
|
|
495
496
|
}
|
|
@@ -667,6 +668,34 @@ export declare enum ClaimActivityType {
|
|
|
667
668
|
CHECKOUTINVENTORYREPORT = "TENANT_VIEWED_CHECKOUT_INVENTORY_REPORT"
|
|
668
669
|
}
|
|
669
670
|
|
|
671
|
+
export declare interface ClaimDeletionGraphDto {
|
|
672
|
+
claimId: string;
|
|
673
|
+
arbitrationIds: Array<string>;
|
|
674
|
+
evidenceChaserIds: Array<string>;
|
|
675
|
+
hasTenantResponse: boolean;
|
|
676
|
+
orderIds: Array<string>;
|
|
677
|
+
publishedAt?: Date;
|
|
678
|
+
statusId: string;
|
|
679
|
+
claimItemIds: Array<string>;
|
|
680
|
+
claimItemDocumentIds: Array<string>;
|
|
681
|
+
claimItemProposalIds: Array<string>;
|
|
682
|
+
eventIds: Array<string>;
|
|
683
|
+
claimActivityIds: Array<string>;
|
|
684
|
+
claimProposalIds: Array<string>;
|
|
685
|
+
claimDocumentIds: Array<string>;
|
|
686
|
+
claimPolicyIds: Array<string>;
|
|
687
|
+
claimRespondentIds: Array<string>;
|
|
688
|
+
claimStatusIds: Array<string>;
|
|
689
|
+
ivrCallIds: Array<string>;
|
|
690
|
+
ivrCallActivityIds: Array<string>;
|
|
691
|
+
ivrCallClaimIds: Array<string>;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
export declare interface ClaimDeletionPreviewDto {
|
|
695
|
+
blockingReasons: Array<string>;
|
|
696
|
+
deletionGraph: ClaimDeletionGraphDto;
|
|
697
|
+
}
|
|
698
|
+
|
|
670
699
|
export declare interface ClaimDocumentDTO {
|
|
671
700
|
document: DocumentDTO;
|
|
672
701
|
id: string;
|
|
@@ -1114,7 +1143,7 @@ export declare class ClaimsApi extends BaseAPI implements ClaimsApiInterface {
|
|
|
1114
1143
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1115
1144
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1116
1145
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1117
|
-
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<
|
|
1146
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1118
1147
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1119
1148
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1120
1149
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1172,7 +1201,7 @@ export declare const ClaimsApiFactory: (configuration?: Configuration, basePath?
|
|
|
1172
1201
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1173
1202
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1174
1203
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1175
|
-
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<
|
|
1204
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1176
1205
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1177
1206
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1178
1207
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1201,7 +1230,7 @@ export declare const ClaimsApiFp: (configuration?: Configuration) => {
|
|
|
1201
1230
|
generateADRForm(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
1202
1231
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchClaimResultsDTO>;
|
|
1203
1232
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1204
|
-
previewClaimDeletion(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1233
|
+
previewClaimDeletion(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1205
1234
|
publishClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1206
1235
|
readyForArbitrateClaim(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimDTO>;
|
|
1207
1236
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1230,7 +1259,7 @@ export declare interface ClaimsApiInterface {
|
|
|
1230
1259
|
generateADRForm(claimId: string, options?: any): AxiosPromise<object>;
|
|
1231
1260
|
optimisedSearchClaim(organizationId: string, page: number, size: number, query?: string, claimStatus?: string, sortBy?: string, includeDeleted?: boolean, options?: any): AxiosPromise<SearchClaimResultsDTO>;
|
|
1232
1261
|
paySupplier(claimId: string, payClaimDTO: PayClaimDTO, options?: any): AxiosPromise<ClaimDTO>;
|
|
1233
|
-
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<
|
|
1262
|
+
previewClaimDeletion(claimId: string, options?: any): AxiosPromise<ClaimDeletionPreviewDto>;
|
|
1234
1263
|
publishClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1235
1264
|
readyForArbitrateClaim(claimId: string, options?: any): AxiosPromise<ClaimDTO>;
|
|
1236
1265
|
reopenClaim(claimId: string, reopenClaimDTO: ReopenClaimDTO, options?: any): AxiosPromise<ClaimWithCheckoutRelationsDTO>;
|
|
@@ -1565,12 +1594,13 @@ export declare function createBulkImport(createBulkImportDTO: CreateBulkImportDT
|
|
|
1565
1594
|
export declare interface CreateBulkImportDTO {
|
|
1566
1595
|
name: string;
|
|
1567
1596
|
importType: CreateBulkImportDTOImportTypeEnum;
|
|
1568
|
-
organizationId
|
|
1597
|
+
organizationId?: string | null;
|
|
1569
1598
|
}
|
|
1570
1599
|
|
|
1571
1600
|
export declare enum CreateBulkImportDTOImportTypeEnum {
|
|
1572
1601
|
REPOSIT = "REPOSIT",
|
|
1573
|
-
PROPERTY = "PROPERTY"
|
|
1602
|
+
PROPERTY = "PROPERTY",
|
|
1603
|
+
BANKTRANSACTION = "BANK_TRANSACTION"
|
|
1574
1604
|
}
|
|
1575
1605
|
|
|
1576
1606
|
export declare function createCheckout(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<CheckoutDTO>;
|
|
@@ -2946,7 +2976,7 @@ export declare function getDocumentsByIds(ids: Array<string>, configuration?: Co
|
|
|
2946
2976
|
|
|
2947
2977
|
export declare function getEvidenceChaserById(id: string, claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<EvidenceChaserDTO>;
|
|
2948
2978
|
|
|
2949
|
-
export declare function getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY', configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2979
|
+
export declare function getExampleCsv(importType?: 'REPOSIT' | 'PROPERTY' | 'BANK_TRANSACTION', configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2950
2980
|
|
|
2951
2981
|
export declare function getFailedRowsCsv(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2952
2982
|
|
|
@@ -4982,7 +5012,7 @@ export declare interface PreTenancyDocumentsApiInterface {
|
|
|
4982
5012
|
deletePreTenancyDocument(tenancyId: string, documentId: string, options?: any): AxiosPromise<{}>;
|
|
4983
5013
|
}
|
|
4984
5014
|
|
|
4985
|
-
export declare function previewClaimDeletion(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<
|
|
5015
|
+
export declare function previewClaimDeletion(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ClaimDeletionPreviewDto>;
|
|
4986
5016
|
|
|
4987
5017
|
export declare class PricingApi extends BaseAPI implements PricingApiInterface {
|
|
4988
5018
|
getCashDepositAmount(ppm: number, options?: any): AxiosPromise<CashDepositDTO>;
|