@reposit/api-client 6.43.0 → 6.45.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/api.d.ts +8 -0
- package/dist/api.js +44 -0
- package/dist/api.js.map +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1874,6 +1874,7 @@ export declare enum QueueMessageDTOTypeEnum {
|
|
|
1874
1874
|
TENANCYINVENTORYNOTIFICATION = "TENANCY_INVENTORY_NOTIFICATION",
|
|
1875
1875
|
REPOSITOFFERREMINDER = "REPOSIT_OFFER_REMINDER",
|
|
1876
1876
|
EVIDENCECHASERREMINDER = "EVIDENCE_CHASER_REMINDER",
|
|
1877
|
+
EVIDENCECHASEREXPIREDNOTIFICATION = "EVIDENCE_CHASER_EXPIRED_NOTIFICATION",
|
|
1877
1878
|
ARBITRATIONSENTNOTIFICATION = "ARBITRATION_SENT_NOTIFICATION"
|
|
1878
1879
|
}
|
|
1879
1880
|
export declare enum QueueMessageDTOCronNameEnum {
|
|
@@ -1914,6 +1915,7 @@ export declare enum QueueMessageDTOCronNameEnum {
|
|
|
1914
1915
|
DAILYSENDTENANCYINVENTORYNOTIFICATIONS = "DAILY_SEND_TENANCY_INVENTORY_NOTIFICATIONS",
|
|
1915
1916
|
DAILYREPOSITOFFERREMINDER = "DAILY_REPOSIT_OFFER_REMINDER",
|
|
1916
1917
|
DAILYEVIDENCECHASERREMINDER = "DAILY_EVIDENCE_CHASER_REMINDER",
|
|
1918
|
+
DAILYEVIDENCECHASEREXPIREDNOTIFICATION = "DAILY_EVIDENCE_CHASER_EXPIRED_NOTIFICATION",
|
|
1917
1919
|
DAILYARBITRATIONSENTNOTIFICATION = "DAILY_ARBITRATION_SENT_NOTIFICATION"
|
|
1918
1920
|
}
|
|
1919
1921
|
export interface ReconciliationDocumentDTO {
|
|
@@ -2579,6 +2581,7 @@ export interface UpdateClosingRemindersEnabledRequestDTO {
|
|
|
2579
2581
|
export interface UpdateEvidenceChaserItemDTO {
|
|
2580
2582
|
claimItemIds?: Array<string>;
|
|
2581
2583
|
message?: string;
|
|
2584
|
+
displayTitle?: string;
|
|
2582
2585
|
}
|
|
2583
2586
|
export interface UpdateEvidenceChaserItemResponseDTO {
|
|
2584
2587
|
message?: string;
|
|
@@ -3435,22 +3438,27 @@ export declare class EvidenceChaserRoundsApi extends BaseAPI implements Evidence
|
|
|
3435
3438
|
}
|
|
3436
3439
|
export declare const EvidenceChasersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3437
3440
|
createEvidenceChaser(claimId: string, options?: any): RequestArgs;
|
|
3441
|
+
expireEvidenceChaser(claimId: string, id: string, options?: any): RequestArgs;
|
|
3438
3442
|
getEvidenceChaserById(id: string, claimId: string, options?: any): RequestArgs;
|
|
3439
3443
|
};
|
|
3440
3444
|
export declare const EvidenceChasersApiFp: (configuration?: Configuration) => {
|
|
3441
3445
|
createEvidenceChaser(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceChaserDTO>;
|
|
3446
|
+
expireEvidenceChaser(claimId: string, id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceChaserDTO>;
|
|
3442
3447
|
getEvidenceChaserById(id: string, claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<EvidenceChaserDTO>;
|
|
3443
3448
|
};
|
|
3444
3449
|
export declare const EvidenceChasersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3445
3450
|
createEvidenceChaser(claimId: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3451
|
+
expireEvidenceChaser(claimId: string, id: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3446
3452
|
getEvidenceChaserById(id: string, claimId: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3447
3453
|
};
|
|
3448
3454
|
export interface EvidenceChasersApiInterface {
|
|
3449
3455
|
createEvidenceChaser(claimId: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3456
|
+
expireEvidenceChaser(claimId: string, id: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3450
3457
|
getEvidenceChaserById(id: string, claimId: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3451
3458
|
}
|
|
3452
3459
|
export declare class EvidenceChasersApi extends BaseAPI implements EvidenceChasersApiInterface {
|
|
3453
3460
|
createEvidenceChaser(claimId: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3461
|
+
expireEvidenceChaser(claimId: string, id: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3454
3462
|
getEvidenceChaserById(id: string, claimId: string, options?: any): AxiosPromise<EvidenceChaserDTO>;
|
|
3455
3463
|
}
|
|
3456
3464
|
export declare const FeedbackApiAxiosParamCreator: (configuration?: Configuration) => {
|
package/dist/api.js
CHANGED
|
@@ -758,6 +758,7 @@ var QueueMessageDTOTypeEnum;
|
|
|
758
758
|
QueueMessageDTOTypeEnum["TENANCYINVENTORYNOTIFICATION"] = "TENANCY_INVENTORY_NOTIFICATION";
|
|
759
759
|
QueueMessageDTOTypeEnum["REPOSITOFFERREMINDER"] = "REPOSIT_OFFER_REMINDER";
|
|
760
760
|
QueueMessageDTOTypeEnum["EVIDENCECHASERREMINDER"] = "EVIDENCE_CHASER_REMINDER";
|
|
761
|
+
QueueMessageDTOTypeEnum["EVIDENCECHASEREXPIREDNOTIFICATION"] = "EVIDENCE_CHASER_EXPIRED_NOTIFICATION";
|
|
761
762
|
QueueMessageDTOTypeEnum["ARBITRATIONSENTNOTIFICATION"] = "ARBITRATION_SENT_NOTIFICATION";
|
|
762
763
|
})(QueueMessageDTOTypeEnum = exports.QueueMessageDTOTypeEnum || (exports.QueueMessageDTOTypeEnum = {}));
|
|
763
764
|
var QueueMessageDTOCronNameEnum;
|
|
@@ -799,6 +800,7 @@ var QueueMessageDTOCronNameEnum;
|
|
|
799
800
|
QueueMessageDTOCronNameEnum["DAILYSENDTENANCYINVENTORYNOTIFICATIONS"] = "DAILY_SEND_TENANCY_INVENTORY_NOTIFICATIONS";
|
|
800
801
|
QueueMessageDTOCronNameEnum["DAILYREPOSITOFFERREMINDER"] = "DAILY_REPOSIT_OFFER_REMINDER";
|
|
801
802
|
QueueMessageDTOCronNameEnum["DAILYEVIDENCECHASERREMINDER"] = "DAILY_EVIDENCE_CHASER_REMINDER";
|
|
803
|
+
QueueMessageDTOCronNameEnum["DAILYEVIDENCECHASEREXPIREDNOTIFICATION"] = "DAILY_EVIDENCE_CHASER_EXPIRED_NOTIFICATION";
|
|
802
804
|
QueueMessageDTOCronNameEnum["DAILYARBITRATIONSENTNOTIFICATION"] = "DAILY_ARBITRATION_SENT_NOTIFICATION";
|
|
803
805
|
})(QueueMessageDTOCronNameEnum = exports.QueueMessageDTOCronNameEnum || (exports.QueueMessageDTOCronNameEnum = {}));
|
|
804
806
|
var ReferenceDTOStatusEnum;
|
|
@@ -5473,6 +5475,33 @@ exports.EvidenceChasersApiAxiosParamCreator = function (configuration) {
|
|
|
5473
5475
|
options: localVarRequestOptions,
|
|
5474
5476
|
};
|
|
5475
5477
|
},
|
|
5478
|
+
expireEvidenceChaser: function (claimId, id, options) {
|
|
5479
|
+
if (options === void 0) { options = {}; }
|
|
5480
|
+
if (claimId === null || claimId === undefined) {
|
|
5481
|
+
throw new base_1.RequiredError('claimId', 'Required parameter claimId was null or undefined when calling expireEvidenceChaser.');
|
|
5482
|
+
}
|
|
5483
|
+
if (id === null || id === undefined) {
|
|
5484
|
+
throw new base_1.RequiredError('id', 'Required parameter id was null or undefined when calling expireEvidenceChaser.');
|
|
5485
|
+
}
|
|
5486
|
+
var localVarPath = "/v2/claims/{claimId}/evidence-chaser/{id}/expire"
|
|
5487
|
+
.replace("{" + "claimId" + "}", encodeURIComponent(String(claimId)))
|
|
5488
|
+
.replace("{" + "id" + "}", encodeURIComponent(String(id)));
|
|
5489
|
+
var localVarUrlObj = globalImportUrl.parse(localVarPath, true);
|
|
5490
|
+
var baseOptions;
|
|
5491
|
+
if (configuration) {
|
|
5492
|
+
baseOptions = configuration.baseOptions;
|
|
5493
|
+
}
|
|
5494
|
+
var localVarRequestOptions = __assign({ method: 'POST' }, baseOptions, options);
|
|
5495
|
+
var localVarHeaderParameter = {};
|
|
5496
|
+
var localVarQueryParameter = {};
|
|
5497
|
+
localVarUrlObj.query = __assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
5498
|
+
delete localVarUrlObj.search;
|
|
5499
|
+
localVarRequestOptions.headers = __assign({}, localVarHeaderParameter, options.headers);
|
|
5500
|
+
return {
|
|
5501
|
+
url: globalImportUrl.format(localVarUrlObj),
|
|
5502
|
+
options: localVarRequestOptions,
|
|
5503
|
+
};
|
|
5504
|
+
},
|
|
5476
5505
|
getEvidenceChaserById: function (id, claimId, options) {
|
|
5477
5506
|
if (options === void 0) { options = {}; }
|
|
5478
5507
|
if (id === null || id === undefined) {
|
|
@@ -5513,6 +5542,15 @@ exports.EvidenceChasersApiFp = function (configuration) {
|
|
|
5513
5542
|
return axios.request(axiosRequestArgs);
|
|
5514
5543
|
};
|
|
5515
5544
|
},
|
|
5545
|
+
expireEvidenceChaser: function (claimId, id, options) {
|
|
5546
|
+
var localVarAxiosArgs = exports.EvidenceChasersApiAxiosParamCreator(configuration).expireEvidenceChaser(claimId, id, options);
|
|
5547
|
+
return function (axios, basePath) {
|
|
5548
|
+
if (axios === void 0) { axios = axios_1.default; }
|
|
5549
|
+
if (basePath === void 0) { basePath = base_1.BASE_PATH; }
|
|
5550
|
+
var axiosRequestArgs = __assign({}, localVarAxiosArgs.options, { url: basePath + localVarAxiosArgs.url });
|
|
5551
|
+
return axios.request(axiosRequestArgs);
|
|
5552
|
+
};
|
|
5553
|
+
},
|
|
5516
5554
|
getEvidenceChaserById: function (id, claimId, options) {
|
|
5517
5555
|
var localVarAxiosArgs = exports.EvidenceChasersApiAxiosParamCreator(configuration).getEvidenceChaserById(id, claimId, options);
|
|
5518
5556
|
return function (axios, basePath) {
|
|
@@ -5529,6 +5567,9 @@ exports.EvidenceChasersApiFactory = function (configuration, basePath, axios) {
|
|
|
5529
5567
|
createEvidenceChaser: function (claimId, options) {
|
|
5530
5568
|
return exports.EvidenceChasersApiFp(configuration).createEvidenceChaser(claimId, options)(axios, basePath);
|
|
5531
5569
|
},
|
|
5570
|
+
expireEvidenceChaser: function (claimId, id, options) {
|
|
5571
|
+
return exports.EvidenceChasersApiFp(configuration).expireEvidenceChaser(claimId, id, options)(axios, basePath);
|
|
5572
|
+
},
|
|
5532
5573
|
getEvidenceChaserById: function (id, claimId, options) {
|
|
5533
5574
|
return exports.EvidenceChasersApiFp(configuration).getEvidenceChaserById(id, claimId, options)(axios, basePath);
|
|
5534
5575
|
},
|
|
@@ -5542,6 +5583,9 @@ var EvidenceChasersApi = (function (_super) {
|
|
|
5542
5583
|
EvidenceChasersApi.prototype.createEvidenceChaser = function (claimId, options) {
|
|
5543
5584
|
return exports.EvidenceChasersApiFp(this.configuration).createEvidenceChaser(claimId, options)(this.axios, this.basePath);
|
|
5544
5585
|
};
|
|
5586
|
+
EvidenceChasersApi.prototype.expireEvidenceChaser = function (claimId, id, options) {
|
|
5587
|
+
return exports.EvidenceChasersApiFp(this.configuration).expireEvidenceChaser(claimId, id, options)(this.axios, this.basePath);
|
|
5588
|
+
};
|
|
5545
5589
|
EvidenceChasersApi.prototype.getEvidenceChaserById = function (id, claimId, options) {
|
|
5546
5590
|
return exports.EvidenceChasersApiFp(this.configuration).getEvidenceChaserById(id, claimId, options)(this.axios, this.basePath);
|
|
5547
5591
|
};
|