kui-crm 0.0.114 → 0.0.116
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 +1 -1
- package/types/index.d.ts +2 -0
- package/utils/index.d.ts +1 -0
package/index.d.ts
CHANGED
|
@@ -506,6 +506,7 @@ declare type ApartmentInspectionModel = {
|
|
|
506
506
|
next_inspection: string;
|
|
507
507
|
};
|
|
508
508
|
declare type ApartmentMetroParams = {
|
|
509
|
+
name: string;
|
|
509
510
|
metro_station_id: number;
|
|
510
511
|
distance_walk_meters?: number;
|
|
511
512
|
distance_car_kilometers?: string | number;
|
|
@@ -677,6 +678,7 @@ declare type UpcomingInspectionApartmentModel = {
|
|
|
677
678
|
renter: ClientLiteModel | null;
|
|
678
679
|
owner: ClientLiteModel;
|
|
679
680
|
metro_stations: MetroStationModel[];
|
|
681
|
+
rooms_number: number;
|
|
680
682
|
};
|
|
681
683
|
|
|
682
684
|
declare type SubjectRoles = "maroom" | "landlord" | "tenant";
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -356,6 +356,7 @@ declare type ApartmentInspectionModel = {
|
|
|
356
356
|
next_inspection: string;
|
|
357
357
|
};
|
|
358
358
|
declare type ApartmentMetroParams = {
|
|
359
|
+
name: string;
|
|
359
360
|
metro_station_id: number;
|
|
360
361
|
distance_walk_meters?: number;
|
|
361
362
|
distance_car_kilometers?: string | number;
|
|
@@ -527,6 +528,7 @@ declare type UpcomingInspectionApartmentModel = {
|
|
|
527
528
|
renter: ClientLiteModel | null;
|
|
528
529
|
owner: ClientLiteModel;
|
|
529
530
|
metro_stations: MetroStationModel[];
|
|
531
|
+
rooms_number: number;
|
|
530
532
|
};
|
|
531
533
|
|
|
532
534
|
declare type SubjectRoles = "maroom" | "landlord" | "tenant";
|
package/utils/index.d.ts
CHANGED