kui-crm 0.0.112 → 0.0.114

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 CHANGED
@@ -674,7 +674,8 @@ declare type UpcomingInspectionApartmentModel = {
674
674
  address: string;
675
675
  geolocation: LatLonParams;
676
676
  main_image: ImageModel;
677
- renter: ClientLiteModel;
677
+ renter: ClientLiteModel | null;
678
+ owner: ClientLiteModel;
678
679
  metro_stations: MetroStationModel[];
679
680
  };
680
681
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kui-crm",
3
- "version": "0.0.112",
3
+ "version": "0.0.114",
4
4
  "description": "crm complex fields",
5
5
  "main": "./cjs/index.js",
6
6
  "types": "./index.d.ts",
package/types/index.d.ts CHANGED
@@ -524,7 +524,8 @@ declare type UpcomingInspectionApartmentModel = {
524
524
  address: string;
525
525
  geolocation: LatLonParams;
526
526
  main_image: ImageModel;
527
- renter: ClientLiteModel;
527
+ renter: ClientLiteModel | null;
528
+ owner: ClientLiteModel;
528
529
  metro_stations: MetroStationModel[];
529
530
  };
530
531