kui-crm 0.0.537 → 0.0.539
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 +2 -0
- package/package.json +2 -6
- package/types/index.d.ts +2 -0
- package/utils/index.d.ts +2 -0
package/index.d.ts
CHANGED
|
@@ -254,6 +254,7 @@ declare type AdministrativeCompanyModel = {
|
|
|
254
254
|
id: number;
|
|
255
255
|
name: string;
|
|
256
256
|
logo: string | null;
|
|
257
|
+
phone?: string;
|
|
257
258
|
};
|
|
258
259
|
declare type TariffLinkModel = {
|
|
259
260
|
id: number;
|
|
@@ -1754,6 +1755,7 @@ declare type ApartmentModel = {
|
|
|
1754
1755
|
insurance_document?: ApartmentDocumentModel;
|
|
1755
1756
|
period_status: PeriodStatus;
|
|
1756
1757
|
have_initial_inspection?: boolean;
|
|
1758
|
+
have_auto_meters?: boolean;
|
|
1757
1759
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields;
|
|
1758
1760
|
declare type ApartmentWithHouseInfoModelFields = ApartmentDetailInfoModelFields & HouseInfoModelFields;
|
|
1759
1761
|
declare type ApartmentLiteModel = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kui-crm",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.539",
|
|
4
4
|
"description": "crm complex fields",
|
|
5
5
|
"main": "./cjs/index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -29,11 +29,7 @@
|
|
|
29
29
|
"react-hook-form": "^7.47.0",
|
|
30
30
|
"await-to-js": "^3.0.0",
|
|
31
31
|
"@hookform/resolvers": "^2.8.0",
|
|
32
|
-
"yup": "^1.3.2"
|
|
33
|
-
"kui-basic": "^1.1.271",
|
|
34
|
-
"kui-complex": "^0.0.233",
|
|
35
|
-
"kui-utils": "^0.0.61",
|
|
36
|
-
"kui-icon": "0.0.71"
|
|
32
|
+
"yup": "^1.3.2"
|
|
37
33
|
},
|
|
38
34
|
"dependencies": {
|
|
39
35
|
"@types/google.maps": "^3.55.5"
|
package/types/index.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ declare type AdministrativeCompanyModel = {
|
|
|
74
74
|
id: number;
|
|
75
75
|
name: string;
|
|
76
76
|
logo: string | null;
|
|
77
|
+
phone?: string;
|
|
77
78
|
};
|
|
78
79
|
declare type TariffLinkModel = {
|
|
79
80
|
id: number;
|
|
@@ -887,6 +888,7 @@ declare type ApartmentModel = {
|
|
|
887
888
|
insurance_document?: ApartmentDocumentModel;
|
|
888
889
|
period_status: PeriodStatus;
|
|
889
890
|
have_initial_inspection?: boolean;
|
|
891
|
+
have_auto_meters?: boolean;
|
|
890
892
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields;
|
|
891
893
|
declare type ApartmentWithHouseInfoModelFields = ApartmentDetailInfoModelFields & HouseInfoModelFields;
|
|
892
894
|
declare type ApartmentLiteModel = {
|
package/utils/index.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ declare type AdministrativeCompanyModel = {
|
|
|
55
55
|
id: number;
|
|
56
56
|
name: string;
|
|
57
57
|
logo: string | null;
|
|
58
|
+
phone?: string;
|
|
58
59
|
};
|
|
59
60
|
declare type UtilityPayerModel = {
|
|
60
61
|
utility_type: UtilityTypes;
|
|
@@ -622,6 +623,7 @@ declare type ApartmentModel = {
|
|
|
622
623
|
insurance_document?: ApartmentDocumentModel;
|
|
623
624
|
period_status: PeriodStatus;
|
|
624
625
|
have_initial_inspection?: boolean;
|
|
626
|
+
have_auto_meters?: boolean;
|
|
625
627
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields;
|
|
626
628
|
declare type MainObjectInfoNonRequiredParams = Partial<Pick<ApartmentModel, "distance_to_center_kilometers">>;
|
|
627
629
|
declare type MainObjectInfoInterface = Pick<ApartmentModel, "country" | "county" | "district" | "region" | "city" | "address" | "apartment_number" | "post_index" | "floor_count" | "floor" | "num_entrance" | "geolocation" | "room_type"> & MainObjectInfoNonRequiredParams;
|