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 CHANGED
@@ -1953,7 +1953,7 @@ declare type ApartmentDocumentModel = {
1953
1953
  start_date: string;
1954
1954
  number: string;
1955
1955
  amount: string;
1956
- beneficiary: LiteUserModel;
1956
+ beneficiary?: LiteUserModel | null;
1957
1957
  };
1958
1958
  declare type MeterCommonInfoModel = {
1959
1959
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kui-crm",
3
- "version": "0.0.588",
3
+ "version": "0.0.590",
4
4
  "description": "crm complex fields",
5
5
  "main": "./cjs/index.js",
6
6
  "types": "./index.d.ts",
package/types/index.d.ts CHANGED
@@ -776,7 +776,7 @@ declare type ApartmentDocumentModel = {
776
776
  start_date: string;
777
777
  number: string;
778
778
  amount: string;
779
- beneficiary: LiteUserModel;
779
+ beneficiary?: LiteUserModel | null;
780
780
  };
781
781
  declare type MeterCommonInfoModel = {
782
782
  id: number;
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: LiteUserModel;
529
+ beneficiary?: LiteUserModel | null;
530
530
  };
531
531
  declare type ApartmentLockerParams = Omit<LockerParams, "connected">;
532
532
  declare type ApartmentInspectionModel = {