@reposit/api-client 6.51.0 → 6.53.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 +23 -0
- package/dist/api.js +10 -0
- package/dist/api.js.map +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1301,6 +1301,14 @@ export interface OfferToTenantRequestDTO {
|
|
|
1301
1301
|
organizationId: string;
|
|
1302
1302
|
tenants: Array<TenantForOfferDTO>;
|
|
1303
1303
|
cashDepositAmount?: number;
|
|
1304
|
+
tenantsReferenceStatus?: OfferToTenantRequestDTOTenantsReferenceStatusEnum;
|
|
1305
|
+
tenancyStartDate?: string;
|
|
1306
|
+
tenancyEndDate?: string;
|
|
1307
|
+
tenancyLetOnly?: boolean;
|
|
1308
|
+
}
|
|
1309
|
+
export declare enum OfferToTenantRequestDTOTenantsReferenceStatusEnum {
|
|
1310
|
+
PASSED = "PASSED",
|
|
1311
|
+
FAILED = "FAILED"
|
|
1304
1312
|
}
|
|
1305
1313
|
export interface OneTimeSessionTokenDTO {
|
|
1306
1314
|
id: string;
|
|
@@ -2107,9 +2115,17 @@ export interface RepositOfferDTO {
|
|
|
2107
2115
|
repositAmount: number;
|
|
2108
2116
|
savingAmount: number;
|
|
2109
2117
|
tenancyOrder?: TenancyOrderDTO;
|
|
2118
|
+
tenantsReferenceStatus?: RepositOfferDTOTenantsReferenceStatusEnum;
|
|
2119
|
+
tenancyStartDate?: string;
|
|
2120
|
+
tenancyEndDate?: string;
|
|
2121
|
+
tenancyLetOnly?: boolean;
|
|
2110
2122
|
createdAt: string;
|
|
2111
2123
|
updatedAt: string;
|
|
2112
2124
|
}
|
|
2125
|
+
export declare enum RepositOfferDTOTenantsReferenceStatusEnum {
|
|
2126
|
+
PASSED = "PASSED",
|
|
2127
|
+
FAILED = "FAILED"
|
|
2128
|
+
}
|
|
2113
2129
|
export interface RepositOfferRecipientDTO {
|
|
2114
2130
|
id: string;
|
|
2115
2131
|
repositOfferId: string;
|
|
@@ -2553,6 +2569,7 @@ export interface TenantForOfferDTO {
|
|
|
2553
2569
|
email: string;
|
|
2554
2570
|
firstName: string;
|
|
2555
2571
|
lastName: string;
|
|
2572
|
+
guarantor?: TenantGuarantorForOfferDTO;
|
|
2556
2573
|
}
|
|
2557
2574
|
export interface TenantGuarantorDTO {
|
|
2558
2575
|
firstName: string;
|
|
@@ -2560,6 +2577,12 @@ export interface TenantGuarantorDTO {
|
|
|
2560
2577
|
email: string;
|
|
2561
2578
|
mobileNumber?: string;
|
|
2562
2579
|
}
|
|
2580
|
+
export interface TenantGuarantorForOfferDTO {
|
|
2581
|
+
email: string;
|
|
2582
|
+
firstName: string;
|
|
2583
|
+
lastName: string;
|
|
2584
|
+
mobileNumber?: string;
|
|
2585
|
+
}
|
|
2563
2586
|
export interface TermsDTO {
|
|
2564
2587
|
url: string;
|
|
2565
2588
|
}
|
package/dist/api.js
CHANGED
|
@@ -476,6 +476,11 @@ var NetPromoterScoreDTOCategoryEnum;
|
|
|
476
476
|
NetPromoterScoreDTOCategoryEnum["DETRACTOR"] = "DETRACTOR";
|
|
477
477
|
NetPromoterScoreDTOCategoryEnum["PASSIVE"] = "PASSIVE";
|
|
478
478
|
})(NetPromoterScoreDTOCategoryEnum = exports.NetPromoterScoreDTOCategoryEnum || (exports.NetPromoterScoreDTOCategoryEnum = {}));
|
|
479
|
+
var OfferToTenantRequestDTOTenantsReferenceStatusEnum;
|
|
480
|
+
(function (OfferToTenantRequestDTOTenantsReferenceStatusEnum) {
|
|
481
|
+
OfferToTenantRequestDTOTenantsReferenceStatusEnum["PASSED"] = "PASSED";
|
|
482
|
+
OfferToTenantRequestDTOTenantsReferenceStatusEnum["FAILED"] = "FAILED";
|
|
483
|
+
})(OfferToTenantRequestDTOTenantsReferenceStatusEnum = exports.OfferToTenantRequestDTOTenantsReferenceStatusEnum || (exports.OfferToTenantRequestDTOTenantsReferenceStatusEnum = {}));
|
|
479
484
|
var OrderCustomerActionDTOTypeIdEnum;
|
|
480
485
|
(function (OrderCustomerActionDTOTypeIdEnum) {
|
|
481
486
|
OrderCustomerActionDTOTypeIdEnum["REPOSITABOUTYOU"] = "REPOSIT_ABOUT_YOU";
|
|
@@ -853,6 +858,11 @@ var RepositDTOStatusEnum;
|
|
|
853
858
|
RepositDTOStatusEnum["DRAFT"] = "DRAFT";
|
|
854
859
|
RepositDTOStatusEnum["PUBLISHED"] = "PUBLISHED";
|
|
855
860
|
})(RepositDTOStatusEnum = exports.RepositDTOStatusEnum || (exports.RepositDTOStatusEnum = {}));
|
|
861
|
+
var RepositOfferDTOTenantsReferenceStatusEnum;
|
|
862
|
+
(function (RepositOfferDTOTenantsReferenceStatusEnum) {
|
|
863
|
+
RepositOfferDTOTenantsReferenceStatusEnum["PASSED"] = "PASSED";
|
|
864
|
+
RepositOfferDTOTenantsReferenceStatusEnum["FAILED"] = "FAILED";
|
|
865
|
+
})(RepositOfferDTOTenantsReferenceStatusEnum = exports.RepositOfferDTOTenantsReferenceStatusEnum || (exports.RepositOfferDTOTenantsReferenceStatusEnum = {}));
|
|
856
866
|
var RepositOfferRecipientDTOChoiceEnum;
|
|
857
867
|
(function (RepositOfferRecipientDTOChoiceEnum) {
|
|
858
868
|
RepositOfferRecipientDTOChoiceEnum["REPOSIT"] = "REPOSIT";
|