kui-crm 0.0.62 → 0.0.64
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 +3 -2
- package/package.json +1 -1
- package/types/index.d.ts +2 -2
package/index.d.ts
CHANGED
|
@@ -956,11 +956,11 @@ declare type ApartmentPaymentInfoParams = {
|
|
|
956
956
|
declare type ApartmentDescriptionParams = ApartmentMainInfoParams & ApartmentSecurityInfoParams & ApartmentTelecommunicationInfoParams & ApartmentDetailInfoParams & ApartmentHouseInfoParams & MaxMetersInfoParams;
|
|
957
957
|
|
|
958
958
|
declare type FillingInfoFormFields = {
|
|
959
|
-
tag: FillingTagsAutocompleteFields;
|
|
959
|
+
tag: FillingTagsAutocompleteFields | null;
|
|
960
960
|
serialNumber?: string;
|
|
961
961
|
numberOfSubjects?: string | number | null;
|
|
962
962
|
name?: string;
|
|
963
|
-
type?: ApartmentFillingVariants;
|
|
963
|
+
type?: ApartmentFillingVariants | null;
|
|
964
964
|
instruction?: InputFileWithVisibilityFields;
|
|
965
965
|
tempImages?: ImageBodyRequest[];
|
|
966
966
|
};
|
|
@@ -1309,6 +1309,7 @@ type MeterFeaturesFormFields = {
|
|
|
1309
1309
|
type?: MeterTypes
|
|
1310
1310
|
operationalAccountNumber?: string | null
|
|
1311
1311
|
archived?: boolean
|
|
1312
|
+
resource?: ResourceTypes
|
|
1312
1313
|
}
|
|
1313
1314
|
|
|
1314
1315
|
type RenderMeterFieldsSettings = {
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -811,11 +811,11 @@ type InputFileWithVisibilityFields =
|
|
|
811
811
|
| undefined
|
|
812
812
|
|
|
813
813
|
declare type FillingInfoFormFields = {
|
|
814
|
-
tag: FillingTagsAutocompleteFields;
|
|
814
|
+
tag: FillingTagsAutocompleteFields | null;
|
|
815
815
|
serialNumber?: string;
|
|
816
816
|
numberOfSubjects?: string | number | null;
|
|
817
817
|
name?: string;
|
|
818
|
-
type?: ApartmentFillingVariants;
|
|
818
|
+
type?: ApartmentFillingVariants | null;
|
|
819
819
|
instruction?: InputFileWithVisibilityFields;
|
|
820
820
|
tempImages?: ImageBodyRequest[];
|
|
821
821
|
};
|