kui-crm 0.0.595 → 0.0.598
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 +4 -2
- package/package.json +1 -1
- package/types/index.d.ts +4 -2
- package/utils/index.d.ts +2 -2
package/index.d.ts
CHANGED
|
@@ -196,7 +196,7 @@ declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
199
|
-
declare type PaymentStatuses = "paid" | "
|
|
199
|
+
declare type PaymentStatuses = "paid" | "due" | "overdue" | null;
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
@@ -590,6 +590,7 @@ declare type AppraisalInspectionFields = {
|
|
|
590
590
|
declare type ImpairmentType = "damages" | "wear_tear";
|
|
591
591
|
declare type ImpairmentModel = {
|
|
592
592
|
id: number;
|
|
593
|
+
name: string;
|
|
593
594
|
impairment_type: ImpairmentType;
|
|
594
595
|
proof_file: DocumentModel$1 | null;
|
|
595
596
|
price: number;
|
|
@@ -958,6 +959,7 @@ declare type ServiceContractListModel = {
|
|
|
958
959
|
agent_report_payment_status: PaymentStatuses;
|
|
959
960
|
state: ServiceContractStatusStateModel;
|
|
960
961
|
rental_type: RentalTypes;
|
|
962
|
+
start_date: string;
|
|
961
963
|
};
|
|
962
964
|
|
|
963
965
|
declare type RoommateParams = {};
|
|
@@ -1938,7 +1940,7 @@ declare type ApartmentContractTypes = "service_contract" | "renter_contract";
|
|
|
1938
1940
|
declare type GasTypes = "not_have" | "stove" | "stove_and_heater";
|
|
1939
1941
|
declare type WallMaterials = "brick" | "panel" | "wood" | "block" | "stone";
|
|
1940
1942
|
declare type HouseTypes = "ST" | "MB" | "M" | "BR" | "P" | "W" | "BL" | "WP" | "apart_hotel" | "apartment" | "townhouse" | "private_residence";
|
|
1941
|
-
declare type RoomTypes = "
|
|
1943
|
+
declare type RoomTypes = "apartment" | "flat" | "commercial" | "garage" | "car_space";
|
|
1942
1944
|
declare type OverlapTypes = "wood" | "stone" | "brick" | "reinforced_concrete" | "metal" | "combined";
|
|
1943
1945
|
declare type RoomModel = {
|
|
1944
1946
|
id: number;
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
|
16
16
|
declare type ClientTypes = "personal" | "company";
|
|
17
17
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
18
18
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
19
|
-
declare type PaymentStatuses = "paid" | "
|
|
19
|
+
declare type PaymentStatuses = "paid" | "due" | "overdue" | null;
|
|
20
20
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
21
21
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
22
22
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
@@ -680,6 +680,7 @@ declare type ServiceContractListModel = {
|
|
|
680
680
|
agent_report_payment_status: PaymentStatuses;
|
|
681
681
|
state: ServiceContractStatusStateModel;
|
|
682
682
|
rental_type: RentalTypes;
|
|
683
|
+
start_date: string;
|
|
683
684
|
};
|
|
684
685
|
|
|
685
686
|
declare type RoommateParams = {};
|
|
@@ -760,7 +761,7 @@ declare type ApartmentContractTypes = "service_contract" | "renter_contract";
|
|
|
760
761
|
declare type GasTypes = "not_have" | "stove" | "stove_and_heater";
|
|
761
762
|
declare type WallMaterials = "brick" | "panel" | "wood" | "block" | "stone";
|
|
762
763
|
declare type HouseTypes = "ST" | "MB" | "M" | "BR" | "P" | "W" | "BL" | "WP" | "apart_hotel" | "apartment" | "townhouse" | "private_residence";
|
|
763
|
-
declare type RoomTypes = "
|
|
764
|
+
declare type RoomTypes = "apartment" | "flat" | "commercial" | "garage" | "car_space";
|
|
764
765
|
declare type OverlapTypes = "wood" | "stone" | "brick" | "reinforced_concrete" | "metal" | "combined";
|
|
765
766
|
declare type RoomModel = {
|
|
766
767
|
id: number;
|
|
@@ -1422,6 +1423,7 @@ declare type AppraisalInspectionFields = {
|
|
|
1422
1423
|
declare type ImpairmentType = "damages" | "wear_tear";
|
|
1423
1424
|
declare type ImpairmentModel = {
|
|
1424
1425
|
id: number;
|
|
1426
|
+
name: string;
|
|
1425
1427
|
impairment_type: ImpairmentType;
|
|
1426
1428
|
proof_file: DocumentModel | null;
|
|
1427
1429
|
price: number;
|
package/utils/index.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
|
23
23
|
declare type ClientTypes = "personal" | "company";
|
|
24
24
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
25
25
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
26
|
-
declare type PaymentStatuses = "paid" | "
|
|
26
|
+
declare type PaymentStatuses = "paid" | "due" | "overdue" | null;
|
|
27
27
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
28
28
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
29
29
|
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
@@ -514,7 +514,7 @@ declare type ApartmentContractTypes = "service_contract" | "renter_contract";
|
|
|
514
514
|
declare type GasTypes = "not_have" | "stove" | "stove_and_heater";
|
|
515
515
|
declare type WallMaterials = "brick" | "panel" | "wood" | "block" | "stone";
|
|
516
516
|
declare type HouseTypes = "ST" | "MB" | "M" | "BR" | "P" | "W" | "BL" | "WP" | "apart_hotel" | "apartment" | "townhouse" | "private_residence";
|
|
517
|
-
declare type RoomTypes = "
|
|
517
|
+
declare type RoomTypes = "apartment" | "flat" | "commercial" | "garage" | "car_space";
|
|
518
518
|
declare type OverlapTypes = "wood" | "stone" | "brick" | "reinforced_concrete" | "metal" | "combined";
|
|
519
519
|
declare type RoomModel = {
|
|
520
520
|
id: number;
|