kui-crm 0.0.588 → 0.0.590
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 +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +1 -1
- package/utils/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1953,7 +1953,7 @@ declare type ApartmentDocumentModel = {
|
|
|
1953
1953
|
start_date: string;
|
|
1954
1954
|
number: string;
|
|
1955
1955
|
amount: string;
|
|
1956
|
-
beneficiary
|
|
1956
|
+
beneficiary?: LiteUserModel | null;
|
|
1957
1957
|
};
|
|
1958
1958
|
declare type MeterCommonInfoModel = {
|
|
1959
1959
|
id: number;
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
package/utils/index.d.ts
CHANGED
|
@@ -526,7 +526,7 @@ declare type ApartmentDocumentModel = {
|
|
|
526
526
|
start_date: string;
|
|
527
527
|
number: string;
|
|
528
528
|
amount: string;
|
|
529
|
-
beneficiary
|
|
529
|
+
beneficiary?: LiteUserModel | null;
|
|
530
530
|
};
|
|
531
531
|
declare type ApartmentLockerParams = Omit<LockerParams, "connected">;
|
|
532
532
|
declare type ApartmentInspectionModel = {
|