kui-crm 0.0.577 → 0.0.579
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/index.d.ts +3 -0
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
- package/utils/index.d.ts +1 -0
package/index.d.ts
CHANGED
|
@@ -677,6 +677,7 @@ declare type ApartmentInspectionListModel = {
|
|
|
677
677
|
owner_feedback: InspectionFeedbackModel | null;
|
|
678
678
|
renter_feedback: InspectionFeedbackModel | null;
|
|
679
679
|
conclusion: AppraisalTenantOfferModel | null;
|
|
680
|
+
status: InspectionStatus;
|
|
680
681
|
};
|
|
681
682
|
declare type InspectionFeedbackInterface = {
|
|
682
683
|
agree: boolean;
|
|
@@ -920,6 +921,7 @@ declare type RentalContractModel = {
|
|
|
920
921
|
public_offer_status?: OfferSignStatuses;
|
|
921
922
|
terms_acceptation?: ContractTermAcceptationModel;
|
|
922
923
|
representative?: ClientLinkModel | null;
|
|
924
|
+
is_transferred_by_tenant?: boolean;
|
|
923
925
|
};
|
|
924
926
|
|
|
925
927
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
@@ -1539,6 +1541,7 @@ declare type VideoModel = {
|
|
|
1539
1541
|
};
|
|
1540
1542
|
|
|
1541
1543
|
type FileWithVisibility = {
|
|
1544
|
+
id?: number
|
|
1542
1545
|
file: File | null
|
|
1543
1546
|
tenant: boolean
|
|
1544
1547
|
landlord: boolean
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -646,6 +646,7 @@ declare type RentalContractModel = {
|
|
|
646
646
|
public_offer_status?: OfferSignStatuses;
|
|
647
647
|
terms_acceptation?: ContractTermAcceptationModel;
|
|
648
648
|
representative?: ClientLinkModel | null;
|
|
649
|
+
is_transferred_by_tenant?: boolean;
|
|
649
650
|
};
|
|
650
651
|
|
|
651
652
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
@@ -1487,6 +1488,7 @@ declare type ApartmentInspectionListModel = {
|
|
|
1487
1488
|
owner_feedback: InspectionFeedbackModel | null;
|
|
1488
1489
|
renter_feedback: InspectionFeedbackModel | null;
|
|
1489
1490
|
conclusion: AppraisalTenantOfferModel | null;
|
|
1491
|
+
status: InspectionStatus;
|
|
1490
1492
|
};
|
|
1491
1493
|
declare type InspectionFeedbackInterface = {
|
|
1492
1494
|
agree: boolean;
|
package/utils/index.d.ts
CHANGED
|
@@ -415,6 +415,7 @@ declare type RentalContractModel = {
|
|
|
415
415
|
public_offer_status?: OfferSignStatuses;
|
|
416
416
|
terms_acceptation?: ContractTermAcceptationModel;
|
|
417
417
|
representative?: ClientLinkModel | null;
|
|
418
|
+
is_transferred_by_tenant?: boolean;
|
|
418
419
|
};
|
|
419
420
|
|
|
420
421
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|