kui-crm 0.0.586 → 0.0.588
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
|
@@ -681,6 +681,7 @@ declare type ApartmentInspectionListModel = {
|
|
|
681
681
|
conclusion: AppraisalTenantOfferModel | null;
|
|
682
682
|
status: InspectionStatus;
|
|
683
683
|
can_resume: boolean;
|
|
684
|
+
transfer_type?: TransferInspectionTypes;
|
|
684
685
|
};
|
|
685
686
|
declare type InspectionFeedbackInterface = {
|
|
686
687
|
agree: boolean;
|
|
@@ -1952,6 +1953,7 @@ declare type ApartmentDocumentModel = {
|
|
|
1952
1953
|
start_date: string;
|
|
1953
1954
|
number: string;
|
|
1954
1955
|
amount: string;
|
|
1956
|
+
beneficiary: LiteUserModel;
|
|
1955
1957
|
};
|
|
1956
1958
|
declare type MeterCommonInfoModel = {
|
|
1957
1959
|
id: number;
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -776,6 +776,7 @@ declare type ApartmentDocumentModel = {
|
|
|
776
776
|
start_date: string;
|
|
777
777
|
number: string;
|
|
778
778
|
amount: string;
|
|
779
|
+
beneficiary: LiteUserModel;
|
|
779
780
|
};
|
|
780
781
|
declare type MeterCommonInfoModel = {
|
|
781
782
|
id: number;
|
|
@@ -1508,6 +1509,7 @@ declare type ApartmentInspectionListModel = {
|
|
|
1508
1509
|
conclusion: AppraisalTenantOfferModel | null;
|
|
1509
1510
|
status: InspectionStatus;
|
|
1510
1511
|
can_resume: boolean;
|
|
1512
|
+
transfer_type?: TransferInspectionTypes;
|
|
1511
1513
|
};
|
|
1512
1514
|
declare type InspectionFeedbackInterface = {
|
|
1513
1515
|
agree: boolean;
|
package/utils/index.d.ts
CHANGED
|
@@ -526,6 +526,7 @@ declare type ApartmentDocumentModel = {
|
|
|
526
526
|
start_date: string;
|
|
527
527
|
number: string;
|
|
528
528
|
amount: string;
|
|
529
|
+
beneficiary: LiteUserModel;
|
|
529
530
|
};
|
|
530
531
|
declare type ApartmentLockerParams = Omit<LockerParams, "connected">;
|
|
531
532
|
declare type ApartmentInspectionModel = {
|