@reposit/api-client 6.52.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 +6 -0
- package/dist/api.js.map +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1302,6 +1302,9 @@ export interface OfferToTenantRequestDTO {
|
|
|
1302
1302
|
tenants: Array<TenantForOfferDTO>;
|
|
1303
1303
|
cashDepositAmount?: number;
|
|
1304
1304
|
tenantsReferenceStatus?: OfferToTenantRequestDTOTenantsReferenceStatusEnum;
|
|
1305
|
+
tenancyStartDate?: string;
|
|
1306
|
+
tenancyEndDate?: string;
|
|
1307
|
+
tenancyLetOnly?: boolean;
|
|
1305
1308
|
}
|
|
1306
1309
|
export declare enum OfferToTenantRequestDTOTenantsReferenceStatusEnum {
|
|
1307
1310
|
PASSED = "PASSED",
|
|
@@ -2113,6 +2116,9 @@ export interface RepositOfferDTO {
|
|
|
2113
2116
|
savingAmount: number;
|
|
2114
2117
|
tenancyOrder?: TenancyOrderDTO;
|
|
2115
2118
|
tenantsReferenceStatus?: RepositOfferDTOTenantsReferenceStatusEnum;
|
|
2119
|
+
tenancyStartDate?: string;
|
|
2120
|
+
tenancyEndDate?: string;
|
|
2121
|
+
tenancyLetOnly?: boolean;
|
|
2116
2122
|
createdAt: string;
|
|
2117
2123
|
updatedAt: string;
|
|
2118
2124
|
}
|