kui-crm 0.0.554 → 0.0.557
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 -0
- package/package.json +1 -1
- package/types/index.d.ts +4 -0
- package/utils/index.d.ts +3 -0
package/index.d.ts
CHANGED
|
@@ -481,6 +481,7 @@ declare type InspectionCommonFields = {
|
|
|
481
481
|
address: string;
|
|
482
482
|
inspection_type: InspectionTypes;
|
|
483
483
|
rental_contract: InspectionContractModel;
|
|
484
|
+
service_contract_id: number;
|
|
484
485
|
based_on?: InspectionBasedOnModel | null;
|
|
485
486
|
photo_groups: InspectionRoomPhotoModel[];
|
|
486
487
|
impairments_faq?: string;
|
|
@@ -920,6 +921,9 @@ declare type ServiceContractModel = {
|
|
|
920
921
|
id: number;
|
|
921
922
|
apartment: ApartmentLinkModel;
|
|
922
923
|
owner: LiteUserModel;
|
|
924
|
+
representatives: LiteUserModel[];
|
|
925
|
+
beneficiary: LiteUserModel;
|
|
926
|
+
signer: LiteUserModel;
|
|
923
927
|
renter: LiteUserModel;
|
|
924
928
|
co_owners: CoOwnerModel[];
|
|
925
929
|
auto_prolongate: boolean;
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -661,6 +661,9 @@ declare type ServiceContractModel = {
|
|
|
661
661
|
id: number;
|
|
662
662
|
apartment: ApartmentLinkModel;
|
|
663
663
|
owner: LiteUserModel;
|
|
664
|
+
representatives: LiteUserModel[];
|
|
665
|
+
beneficiary: LiteUserModel;
|
|
666
|
+
signer: LiteUserModel;
|
|
664
667
|
renter: LiteUserModel;
|
|
665
668
|
co_owners: CoOwnerModel[];
|
|
666
669
|
auto_prolongate: boolean;
|
|
@@ -1274,6 +1277,7 @@ declare type InspectionCommonFields = {
|
|
|
1274
1277
|
address: string;
|
|
1275
1278
|
inspection_type: InspectionTypes;
|
|
1276
1279
|
rental_contract: InspectionContractModel;
|
|
1280
|
+
service_contract_id: number;
|
|
1277
1281
|
based_on?: InspectionBasedOnModel | null;
|
|
1278
1282
|
photo_groups: InspectionRoomPhotoModel[];
|
|
1279
1283
|
impairments_faq?: string;
|
package/utils/index.d.ts
CHANGED
|
@@ -431,6 +431,9 @@ declare type ServiceContractModel = {
|
|
|
431
431
|
id: number;
|
|
432
432
|
apartment: ApartmentLinkModel;
|
|
433
433
|
owner: LiteUserModel;
|
|
434
|
+
representatives: LiteUserModel[];
|
|
435
|
+
beneficiary: LiteUserModel;
|
|
436
|
+
signer: LiteUserModel;
|
|
434
437
|
renter: LiteUserModel;
|
|
435
438
|
co_owners: CoOwnerModel[];
|
|
436
439
|
auto_prolongate: boolean;
|