@reposit/api-client 6.51.0 → 6.52.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 +17 -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,11 @@ export interface OfferToTenantRequestDTO {
|
|
|
1301
1301
|
organizationId: string;
|
|
1302
1302
|
tenants: Array<TenantForOfferDTO>;
|
|
1303
1303
|
cashDepositAmount?: number;
|
|
1304
|
+
tenantsReferenceStatus?: OfferToTenantRequestDTOTenantsReferenceStatusEnum;
|
|
1305
|
+
}
|
|
1306
|
+
export declare enum OfferToTenantRequestDTOTenantsReferenceStatusEnum {
|
|
1307
|
+
PASSED = "PASSED",
|
|
1308
|
+
FAILED = "FAILED"
|
|
1304
1309
|
}
|
|
1305
1310
|
export interface OneTimeSessionTokenDTO {
|
|
1306
1311
|
id: string;
|
|
@@ -2107,9 +2112,14 @@ export interface RepositOfferDTO {
|
|
|
2107
2112
|
repositAmount: number;
|
|
2108
2113
|
savingAmount: number;
|
|
2109
2114
|
tenancyOrder?: TenancyOrderDTO;
|
|
2115
|
+
tenantsReferenceStatus?: RepositOfferDTOTenantsReferenceStatusEnum;
|
|
2110
2116
|
createdAt: string;
|
|
2111
2117
|
updatedAt: string;
|
|
2112
2118
|
}
|
|
2119
|
+
export declare enum RepositOfferDTOTenantsReferenceStatusEnum {
|
|
2120
|
+
PASSED = "PASSED",
|
|
2121
|
+
FAILED = "FAILED"
|
|
2122
|
+
}
|
|
2113
2123
|
export interface RepositOfferRecipientDTO {
|
|
2114
2124
|
id: string;
|
|
2115
2125
|
repositOfferId: string;
|
|
@@ -2553,6 +2563,7 @@ export interface TenantForOfferDTO {
|
|
|
2553
2563
|
email: string;
|
|
2554
2564
|
firstName: string;
|
|
2555
2565
|
lastName: string;
|
|
2566
|
+
guarantor?: TenantGuarantorForOfferDTO;
|
|
2556
2567
|
}
|
|
2557
2568
|
export interface TenantGuarantorDTO {
|
|
2558
2569
|
firstName: string;
|
|
@@ -2560,6 +2571,12 @@ export interface TenantGuarantorDTO {
|
|
|
2560
2571
|
email: string;
|
|
2561
2572
|
mobileNumber?: string;
|
|
2562
2573
|
}
|
|
2574
|
+
export interface TenantGuarantorForOfferDTO {
|
|
2575
|
+
email: string;
|
|
2576
|
+
firstName: string;
|
|
2577
|
+
lastName: string;
|
|
2578
|
+
mobileNumber?: string;
|
|
2579
|
+
}
|
|
2563
2580
|
export interface TermsDTO {
|
|
2564
2581
|
url: string;
|
|
2565
2582
|
}
|
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";
|