kui-crm 0.0.593 → 0.0.594
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 +263 -263
- package/package.json +1 -1
- package/types/index.d.ts +208 -208
- package/utils/index.d.ts +65 -66
package/index.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles
|
|
190
|
-
declare type UnitOfPaymentTypes
|
|
191
|
-
declare type WaterMeterTypes
|
|
192
|
-
declare type ElectricityMeterTypes
|
|
193
|
-
declare type ResourceTypes
|
|
194
|
-
declare type MeterTypes
|
|
195
|
-
declare type UtilityTypes
|
|
189
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants
|
|
203
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel
|
|
242
|
+
main_image: ImageModel | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel
|
|
252
|
+
main_image: ImageModel | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles
|
|
267
|
-
refund_from: ResourcePaymentRoles
|
|
265
|
+
utility_type: UtilityTypes;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
+
refund_from: ResourcePaymentRoles;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes
|
|
269
|
+
value_type?: UnitOfPaymentTypes;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest
|
|
271
|
+
declare type FileBodyRequest = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest
|
|
277
|
+
declare type ImageBodyRequest = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest
|
|
282
|
+
declare type VideoBodyRequest = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel
|
|
291
|
+
declare type ImageModel = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel$1 = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel
|
|
300
|
+
declare type FileModel = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel
|
|
306
|
+
declare type DocumentModel = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -409,7 +409,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
409
409
|
provider_type: string;
|
|
410
410
|
};
|
|
411
411
|
declare type DataTransferFormats = "online" | "offline";
|
|
412
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes
|
|
412
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
413
413
|
declare type ApartmentResourceModel = {
|
|
414
414
|
id: number;
|
|
415
415
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -418,7 +418,7 @@ declare type ApartmentResourceModel = {
|
|
|
418
418
|
payer_code?: string;
|
|
419
419
|
meter_readings_day_from?: number;
|
|
420
420
|
meter_readings_day_to?: number;
|
|
421
|
-
receipt_example?: DocumentModel
|
|
421
|
+
receipt_example?: DocumentModel;
|
|
422
422
|
provider_auth_login?: string;
|
|
423
423
|
provider_auth_password?: string;
|
|
424
424
|
provider_url?: string;
|
|
@@ -444,8 +444,8 @@ declare type InspectionFillingParams = {
|
|
|
444
444
|
description?: string;
|
|
445
445
|
serial_code?: string;
|
|
446
446
|
amount?: number | string | null;
|
|
447
|
-
photos: ImageBodyRequest
|
|
448
|
-
instruction?: FileBodyRequest
|
|
447
|
+
photos: ImageBodyRequest[];
|
|
448
|
+
instruction?: FileBodyRequest | null;
|
|
449
449
|
was_missing?: boolean;
|
|
450
450
|
};
|
|
451
451
|
declare type InspectionMeterValueModel = {
|
|
@@ -461,7 +461,7 @@ declare type InspectionBasedOnModel = {
|
|
|
461
461
|
id: number;
|
|
462
462
|
inspection_type: InspectionTypes;
|
|
463
463
|
};
|
|
464
|
-
declare type VideoModel
|
|
464
|
+
declare type VideoModel = {
|
|
465
465
|
id: number;
|
|
466
466
|
video_url: string;
|
|
467
467
|
file_name?: string;
|
|
@@ -476,8 +476,8 @@ declare type InspectionRoomPhotoModel = {
|
|
|
476
476
|
uploaded: boolean;
|
|
477
477
|
purpose: InspectionRoomPhotoTypes;
|
|
478
478
|
comment?: string;
|
|
479
|
-
photos: ImageModel
|
|
480
|
-
videos: VideoModel
|
|
479
|
+
photos: ImageModel[];
|
|
480
|
+
videos: VideoModel[];
|
|
481
481
|
room_order_number?: number | null;
|
|
482
482
|
};
|
|
483
483
|
declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
|
|
@@ -515,11 +515,11 @@ declare type FullInspectionCommonFields = {
|
|
|
515
515
|
filling: InspectionFillingModel[];
|
|
516
516
|
} & ApartmentModel;
|
|
517
517
|
declare type InspectionMeterCommonInfo = {
|
|
518
|
-
resource_type: ResourceTypes
|
|
519
|
-
passport: FileModel
|
|
520
|
-
meter_type: MeterTypes
|
|
518
|
+
resource_type: ResourceTypes;
|
|
519
|
+
passport: FileModel | null;
|
|
520
|
+
meter_type: MeterTypes;
|
|
521
521
|
operating_account: string;
|
|
522
|
-
photos: ImageModel
|
|
522
|
+
photos: ImageModel[];
|
|
523
523
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
524
524
|
declare type TransferInspectionMeterModel = {
|
|
525
525
|
values: InspectionMeterValueModel;
|
|
@@ -529,9 +529,9 @@ declare type TransferInspectionMeterModel = {
|
|
|
529
529
|
declare type TransferInspectionFields = {
|
|
530
530
|
transfer_type: TransferInspectionTypes;
|
|
531
531
|
meters: TransferInspectionMeterModel[];
|
|
532
|
-
inspection_document: DocumentModel
|
|
533
|
-
rental_contract_termination_document: DocumentModel
|
|
534
|
-
service_contract_termination_document: DocumentModel
|
|
532
|
+
inspection_document: DocumentModel | null;
|
|
533
|
+
rental_contract_termination_document: DocumentModel | null;
|
|
534
|
+
service_contract_termination_document: DocumentModel | null;
|
|
535
535
|
} & FullInspectionCommonFields;
|
|
536
536
|
declare type RegularInspectionFields = {
|
|
537
537
|
meters: TransferInspectionMeterModel[];
|
|
@@ -540,7 +540,7 @@ declare type RegularInspectionFields = {
|
|
|
540
540
|
declare type ComparableObjectModel = {
|
|
541
541
|
id: number;
|
|
542
542
|
advertisement_link: string;
|
|
543
|
-
advertisement_screenshot: ImageModel
|
|
543
|
+
advertisement_screenshot: ImageModel | null;
|
|
544
544
|
object_price: string;
|
|
545
545
|
key_object_differences: string;
|
|
546
546
|
};
|
|
@@ -548,7 +548,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
548
548
|
id: number;
|
|
549
549
|
source_name: string;
|
|
550
550
|
link: string;
|
|
551
|
-
screenshot: ImageModel
|
|
551
|
+
screenshot: ImageModel | null;
|
|
552
552
|
min_price: string;
|
|
553
553
|
max_price: string;
|
|
554
554
|
};
|
|
@@ -591,11 +591,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
591
591
|
declare type ImpairmentModel = {
|
|
592
592
|
id: number;
|
|
593
593
|
impairment_type: ImpairmentType;
|
|
594
|
-
proof_file: DocumentModel
|
|
594
|
+
proof_file: DocumentModel | null;
|
|
595
595
|
price: number;
|
|
596
596
|
solution: string;
|
|
597
597
|
description: string;
|
|
598
|
-
photos: ImageModel
|
|
598
|
+
photos: ImageModel[];
|
|
599
599
|
item_link: string;
|
|
600
600
|
bill_line_name: string;
|
|
601
601
|
};
|
|
@@ -606,7 +606,7 @@ declare type InitialInspectionModelFields = {
|
|
|
606
606
|
used_resources: UsedResourcesModel;
|
|
607
607
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
608
608
|
declare type AppraisalRequestModelFields = {
|
|
609
|
-
floor_plan: DocumentModel
|
|
609
|
+
floor_plan: DocumentModel | null;
|
|
610
610
|
};
|
|
611
611
|
declare type InspectionModel = {
|
|
612
612
|
initial?: InitialInspectionModelFields;
|
|
@@ -640,7 +640,7 @@ declare type InventoryInspectionFields = {
|
|
|
640
640
|
allowed_smoking: boolean;
|
|
641
641
|
additional_terms: string;
|
|
642
642
|
resources: InspectionResourcesModel[];
|
|
643
|
-
inspection_document: DocumentModel
|
|
643
|
+
inspection_document: DocumentModel | null;
|
|
644
644
|
} & FullInspectionCommonFields;
|
|
645
645
|
declare type InventoryInspectionModel = {
|
|
646
646
|
inventory: InventoryInspectionFields;
|
|
@@ -692,10 +692,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
692
692
|
declare type PatchInspectionImageParams = {
|
|
693
693
|
id?: number;
|
|
694
694
|
order?: number;
|
|
695
|
-
} & Partial<ImageBodyRequest
|
|
695
|
+
} & Partial<ImageBodyRequest>;
|
|
696
696
|
declare type PatchInspectionVideoParams = {
|
|
697
697
|
id?: number;
|
|
698
|
-
} & Partial<VideoBodyRequest
|
|
698
|
+
} & Partial<VideoBodyRequest>;
|
|
699
699
|
declare type PatchRoomImagesParams = {
|
|
700
700
|
id?: number | null;
|
|
701
701
|
purpose: InspectionRoomPhotoTypes;
|
|
@@ -736,8 +736,8 @@ declare type InspectionFillingModel = {
|
|
|
736
736
|
description: string;
|
|
737
737
|
serial_code: string;
|
|
738
738
|
amount: number;
|
|
739
|
-
photos: ImageModel
|
|
740
|
-
instruction: DocumentModel
|
|
739
|
+
photos: ImageModel[];
|
|
740
|
+
instruction: DocumentModel;
|
|
741
741
|
is_absent: boolean;
|
|
742
742
|
previously_absent: boolean;
|
|
743
743
|
model: string;
|
|
@@ -819,7 +819,7 @@ declare type CommonMeterParams = {
|
|
|
819
819
|
company: CompanyLiteParams;
|
|
820
820
|
operating_account_number?: string | null;
|
|
821
821
|
company_is_administrative: boolean;
|
|
822
|
-
photos?: ImageModel
|
|
822
|
+
photos?: ImageModel[];
|
|
823
823
|
auto_sending: boolean;
|
|
824
824
|
no_tariff: boolean;
|
|
825
825
|
is_avg: boolean;
|
|
@@ -831,15 +831,15 @@ declare type ElectricityMeterValues = {
|
|
|
831
831
|
T3?: MeterTariffModel;
|
|
832
832
|
};
|
|
833
833
|
declare type WaterMeterParams = {
|
|
834
|
-
type: WaterMeterTypes
|
|
834
|
+
type: WaterMeterTypes;
|
|
835
835
|
tariff: SingleCounterTariffModel;
|
|
836
836
|
} & CommonMeterParams & MeterTariffModel;
|
|
837
837
|
declare type SingleMeterParams = {
|
|
838
|
-
type?: WaterMeterTypes
|
|
838
|
+
type?: WaterMeterTypes;
|
|
839
839
|
tariff: SingleCounterTariffModel;
|
|
840
840
|
} & CommonMeterParams & MeterTariffModel;
|
|
841
841
|
declare type ElectricityMeterParams = {
|
|
842
|
-
type: ElectricityMeterTypes
|
|
842
|
+
type: ElectricityMeterTypes;
|
|
843
843
|
values: ElectricityMeterValues;
|
|
844
844
|
tariff: ElectricityMeterTariffModel;
|
|
845
845
|
overall_value?: number;
|
|
@@ -864,71 +864,6 @@ declare type ContractTermAcceptationModel = {
|
|
|
864
864
|
comment: string;
|
|
865
865
|
};
|
|
866
866
|
|
|
867
|
-
declare type RoommateParams = {};
|
|
868
|
-
declare type RentalInspectionParams = {
|
|
869
|
-
id: number;
|
|
870
|
-
rental_contract_id?: string;
|
|
871
|
-
date: string;
|
|
872
|
-
is_ok?: boolean;
|
|
873
|
-
is_fixed?: boolean;
|
|
874
|
-
note: string;
|
|
875
|
-
};
|
|
876
|
-
declare type ClosingRentalContractFields = {
|
|
877
|
-
have_closing_transfer_inspection?: boolean;
|
|
878
|
-
have_closing_inspection_date_eq_contract_end_date?: boolean;
|
|
879
|
-
have_last_meters_filled?: boolean;
|
|
880
|
-
have_closing_impairments?: boolean;
|
|
881
|
-
have_closed_last_period?: boolean;
|
|
882
|
-
have_calculated_deposit?: boolean;
|
|
883
|
-
};
|
|
884
|
-
declare type RentalContractModel = {
|
|
885
|
-
id: number;
|
|
886
|
-
renter: CounterpartyModel;
|
|
887
|
-
owner: LiteUserModel;
|
|
888
|
-
renter_id: number;
|
|
889
|
-
number: string;
|
|
890
|
-
apartment: ApartmentLinkModel;
|
|
891
|
-
owner_id?: string;
|
|
892
|
-
sign_date: string;
|
|
893
|
-
start_date: string;
|
|
894
|
-
end_date?: string;
|
|
895
|
-
close_date?: string;
|
|
896
|
-
month_payment: string;
|
|
897
|
-
day_of_payment?: number;
|
|
898
|
-
termination_showing_days?: number;
|
|
899
|
-
termination_penalty: string;
|
|
900
|
-
initial_commission: string;
|
|
901
|
-
security_payment: string;
|
|
902
|
-
auto_prolongate: boolean;
|
|
903
|
-
installment: number;
|
|
904
|
-
rental_type: RentalTypes;
|
|
905
|
-
roommates_ids?: RoommateParams[];
|
|
906
|
-
status?: ContractStatuses;
|
|
907
|
-
inspections?: RentalInspectionParams[];
|
|
908
|
-
service_contract_id?: number;
|
|
909
|
-
next_inspection: string | null;
|
|
910
|
-
planned_leave_date: string;
|
|
911
|
-
inspection_interval_month?: number;
|
|
912
|
-
allowable_price_deviation?: number;
|
|
913
|
-
renter_payment_status: RentalPaymentStatuses;
|
|
914
|
-
notification_period: number;
|
|
915
|
-
allowed_pets?: boolean;
|
|
916
|
-
allowed_children?: boolean;
|
|
917
|
-
allowed_smoking?: boolean;
|
|
918
|
-
utility_payers?: UtilityPayerModel[];
|
|
919
|
-
closing_conditions: ClosingRentalContractFields;
|
|
920
|
-
first_appraisal_interval_month: number;
|
|
921
|
-
estate_agent?: ClientLiteModel;
|
|
922
|
-
edit_condition?: EditConditions;
|
|
923
|
-
activate_condition?: ActivateConditions;
|
|
924
|
-
planned_leave_date_setted_at?: string;
|
|
925
|
-
roommates: LiteUserModel[];
|
|
926
|
-
public_offer_status?: OfferSignStatuses;
|
|
927
|
-
terms_acceptation?: ContractTermAcceptationModel;
|
|
928
|
-
representative?: ClientLinkModel | null;
|
|
929
|
-
is_transferred_by_tenant?: boolean;
|
|
930
|
-
};
|
|
931
|
-
|
|
932
867
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
933
868
|
declare type FixedCostModel = {
|
|
934
869
|
name: string;
|
|
@@ -1025,6 +960,71 @@ declare type ServiceContractListModel = {
|
|
|
1025
960
|
rental_type: RentalTypes;
|
|
1026
961
|
};
|
|
1027
962
|
|
|
963
|
+
declare type RoommateParams = {};
|
|
964
|
+
declare type RentalInspectionParams = {
|
|
965
|
+
id: number;
|
|
966
|
+
rental_contract_id?: string;
|
|
967
|
+
date: string;
|
|
968
|
+
is_ok?: boolean;
|
|
969
|
+
is_fixed?: boolean;
|
|
970
|
+
note: string;
|
|
971
|
+
};
|
|
972
|
+
declare type ClosingRentalContractFields = {
|
|
973
|
+
have_closing_transfer_inspection?: boolean;
|
|
974
|
+
have_closing_inspection_date_eq_contract_end_date?: boolean;
|
|
975
|
+
have_last_meters_filled?: boolean;
|
|
976
|
+
have_closing_impairments?: boolean;
|
|
977
|
+
have_closed_last_period?: boolean;
|
|
978
|
+
have_calculated_deposit?: boolean;
|
|
979
|
+
};
|
|
980
|
+
declare type RentalContractModel = {
|
|
981
|
+
id: number;
|
|
982
|
+
renter: CounterpartyModel;
|
|
983
|
+
owner: LiteUserModel;
|
|
984
|
+
renter_id: number;
|
|
985
|
+
number: string;
|
|
986
|
+
apartment: ApartmentLinkModel;
|
|
987
|
+
owner_id?: string;
|
|
988
|
+
sign_date: string;
|
|
989
|
+
start_date: string;
|
|
990
|
+
end_date?: string;
|
|
991
|
+
close_date?: string;
|
|
992
|
+
month_payment: string;
|
|
993
|
+
day_of_payment?: number;
|
|
994
|
+
termination_showing_days?: number;
|
|
995
|
+
termination_penalty: string;
|
|
996
|
+
initial_commission: string;
|
|
997
|
+
security_payment: string;
|
|
998
|
+
auto_prolongate: boolean;
|
|
999
|
+
installment: number;
|
|
1000
|
+
rental_type: RentalTypes;
|
|
1001
|
+
roommates_ids?: RoommateParams[];
|
|
1002
|
+
inspections?: RentalInspectionParams[];
|
|
1003
|
+
service_contract_id?: number;
|
|
1004
|
+
next_inspection: string | null;
|
|
1005
|
+
planned_leave_date: string;
|
|
1006
|
+
inspection_interval_month?: number;
|
|
1007
|
+
allowable_price_deviation?: number;
|
|
1008
|
+
renter_payment_status: RentalPaymentStatuses;
|
|
1009
|
+
notification_period: number;
|
|
1010
|
+
allowed_pets?: boolean;
|
|
1011
|
+
allowed_children?: boolean;
|
|
1012
|
+
allowed_smoking?: boolean;
|
|
1013
|
+
utility_payers?: UtilityPayerModel[];
|
|
1014
|
+
closing_conditions: ClosingRentalContractFields;
|
|
1015
|
+
first_appraisal_interval_month: number;
|
|
1016
|
+
estate_agent?: ClientLiteModel;
|
|
1017
|
+
edit_condition?: EditConditions;
|
|
1018
|
+
activate_condition?: ActivateConditions;
|
|
1019
|
+
planned_leave_date_setted_at?: string;
|
|
1020
|
+
roommates: LiteUserModel[];
|
|
1021
|
+
public_offer_status?: OfferSignStatuses;
|
|
1022
|
+
terms_acceptation?: ContractTermAcceptationModel;
|
|
1023
|
+
representative?: ClientLinkModel | null;
|
|
1024
|
+
is_transferred_by_tenant?: boolean;
|
|
1025
|
+
state: ServiceContractStatusStateModel;
|
|
1026
|
+
};
|
|
1027
|
+
|
|
1028
1028
|
declare type SignInParams = {
|
|
1029
1029
|
phone: string;
|
|
1030
1030
|
password: string;
|
|
@@ -1082,7 +1082,7 @@ declare type CountryParams = {
|
|
|
1082
1082
|
code: string;
|
|
1083
1083
|
} & CatalogItemParams;
|
|
1084
1084
|
|
|
1085
|
-
type FileWithVisibility
|
|
1085
|
+
type FileWithVisibility = {
|
|
1086
1086
|
id?: number
|
|
1087
1087
|
file: File | null
|
|
1088
1088
|
tenant: boolean
|
|
@@ -1091,8 +1091,8 @@ type FileWithVisibility$1 = {
|
|
|
1091
1091
|
url: string
|
|
1092
1092
|
}
|
|
1093
1093
|
|
|
1094
|
-
type InputFileWithVisibilityFields
|
|
1095
|
-
| FileWithVisibility
|
|
1094
|
+
type InputFileWithVisibilityFields =
|
|
1095
|
+
| FileWithVisibility
|
|
1096
1096
|
| DocumentWithVisibility
|
|
1097
1097
|
| null
|
|
1098
1098
|
| undefined
|
|
@@ -1122,7 +1122,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1122
1122
|
}
|
|
1123
1123
|
|
|
1124
1124
|
type ChangeReasonFormFields = {
|
|
1125
|
-
reason: InputFileWithVisibilityFields
|
|
1125
|
+
reason: InputFileWithVisibilityFields
|
|
1126
1126
|
comment?: string
|
|
1127
1127
|
}
|
|
1128
1128
|
|
|
@@ -1137,13 +1137,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1137
1137
|
settings?: any
|
|
1138
1138
|
} & InputWithControllerProps<TFormValues>
|
|
1139
1139
|
|
|
1140
|
-
type CompanyAutocompleteFields
|
|
1140
|
+
type CompanyAutocompleteFields = {
|
|
1141
1141
|
id: number
|
|
1142
1142
|
name: string
|
|
1143
1143
|
logo?: string | null
|
|
1144
1144
|
}
|
|
1145
1145
|
|
|
1146
|
-
declare class FileStore
|
|
1146
|
+
declare class FileStore implements FileStoreInterface {
|
|
1147
1147
|
id: number | null;
|
|
1148
1148
|
index?: number | null;
|
|
1149
1149
|
name: string;
|
|
@@ -1174,13 +1174,13 @@ declare class FileStore$1 implements FileStoreInterface {
|
|
|
1174
1174
|
setIndex: (index: number) => void;
|
|
1175
1175
|
get title(): string;
|
|
1176
1176
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1177
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1178
|
-
static initFromFileModel: (file: FileModel
|
|
1179
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1180
|
-
static initFromImageModel: (file: ImageModel
|
|
1181
|
-
static initFromVideoModel: (image: VideoModel
|
|
1182
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1183
|
-
static initFromFileStore: (file: FileStore
|
|
1177
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1178
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1179
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1180
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1181
|
+
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1182
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1183
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1184
1184
|
}
|
|
1185
1185
|
|
|
1186
1186
|
declare type ImageParams = {
|
|
@@ -1215,8 +1215,8 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1215
1215
|
delete: () => Promise<void>;
|
|
1216
1216
|
get extension(): string;
|
|
1217
1217
|
get title(): string;
|
|
1218
|
-
static initFromImageModel: (image: ImageModel
|
|
1219
|
-
static initFromVideoModel: (image: VideoModel
|
|
1218
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1219
|
+
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1220
1220
|
}
|
|
1221
1221
|
|
|
1222
1222
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1341,7 +1341,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1341
1341
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1342
1342
|
payerCode?: string;
|
|
1343
1343
|
communalServicesAccount?: string;
|
|
1344
|
-
company?: CompanyAutocompleteFields
|
|
1344
|
+
company?: CompanyAutocompleteFields | null;
|
|
1345
1345
|
} & ChangeReasonFormFields;
|
|
1346
1346
|
declare type ApartmentOverviewInfoFields = {
|
|
1347
1347
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1364,14 +1364,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1364
1364
|
} & ApartmentPaymentInfoParams;
|
|
1365
1365
|
declare type InspectionMeterInfoParams = {
|
|
1366
1366
|
id: number;
|
|
1367
|
-
resource: ResourceTypes
|
|
1368
|
-
type?: MeterTypes
|
|
1367
|
+
resource: ResourceTypes;
|
|
1368
|
+
type?: MeterTypes;
|
|
1369
1369
|
number: string;
|
|
1370
1370
|
startDate: DateTime | null;
|
|
1371
1371
|
company: CompanyLiteParams;
|
|
1372
1372
|
operationalAccountNumber?: string | null;
|
|
1373
1373
|
tariff: EntityLinkParams | null;
|
|
1374
|
-
passportFile: FileStore
|
|
1374
|
+
passportFile: FileStore | null;
|
|
1375
1375
|
initialValue?: number;
|
|
1376
1376
|
lastValue?: number;
|
|
1377
1377
|
initialValueT1?: number;
|
|
@@ -1393,8 +1393,8 @@ declare type ValuesParams = {
|
|
|
1393
1393
|
};
|
|
1394
1394
|
declare type PartialMeterInfoParams = {
|
|
1395
1395
|
id: number;
|
|
1396
|
-
type: MeterTypes
|
|
1397
|
-
resource: ResourceTypes
|
|
1396
|
+
type: MeterTypes;
|
|
1397
|
+
resource: ResourceTypes;
|
|
1398
1398
|
number: string;
|
|
1399
1399
|
values: ValuesParams;
|
|
1400
1400
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1408,7 +1408,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1408
1408
|
declare type ComparableObjectParams = {
|
|
1409
1409
|
id: number;
|
|
1410
1410
|
link: string;
|
|
1411
|
-
screenshot: FileStore
|
|
1411
|
+
screenshot: FileStore | null;
|
|
1412
1412
|
price: number;
|
|
1413
1413
|
differences: string;
|
|
1414
1414
|
};
|
|
@@ -1416,7 +1416,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1416
1416
|
id: number;
|
|
1417
1417
|
dataSourceName: string;
|
|
1418
1418
|
link: string;
|
|
1419
|
-
screenshot: FileStore
|
|
1419
|
+
screenshot: FileStore | null;
|
|
1420
1420
|
minPrice: number;
|
|
1421
1421
|
maxPrice: number;
|
|
1422
1422
|
};
|
|
@@ -1441,8 +1441,8 @@ declare type FillingInfoFormFields = {
|
|
|
1441
1441
|
name?: string;
|
|
1442
1442
|
description?: string;
|
|
1443
1443
|
type?: ApartmentFillingVariants | null;
|
|
1444
|
-
instruction?: InputFileWithVisibilityFields
|
|
1445
|
-
tempImages?: ImageBodyRequest
|
|
1444
|
+
instruction?: InputFileWithVisibilityFields;
|
|
1445
|
+
tempImages?: ImageBodyRequest[];
|
|
1446
1446
|
};
|
|
1447
1447
|
|
|
1448
1448
|
declare type FillingTagParams = {
|
|
@@ -1457,7 +1457,7 @@ declare type FillingParams = {
|
|
|
1457
1457
|
images?: (ImageStore | UploadFileParams)[];
|
|
1458
1458
|
serialNumber?: string;
|
|
1459
1459
|
numberOfSubjects?: number | string | null;
|
|
1460
|
-
instruction?: InputFileWithVisibilityFields
|
|
1460
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1461
1461
|
type?: ApartmentFillingVariants;
|
|
1462
1462
|
loader?: Loader;
|
|
1463
1463
|
};
|
|
@@ -1469,7 +1469,7 @@ declare type FillingFullParams = {
|
|
|
1469
1469
|
images?: (ImageStore | UploadFileParams)[];
|
|
1470
1470
|
serialNumber?: string;
|
|
1471
1471
|
numberOfSubjects?: number | string | null;
|
|
1472
|
-
instruction?: InputFileWithVisibilityFields
|
|
1472
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1473
1473
|
type?: ApartmentFillingVariants;
|
|
1474
1474
|
loader?: Loader;
|
|
1475
1475
|
check?: boolean | null;
|
|
@@ -1488,31 +1488,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1488
1488
|
name: string;
|
|
1489
1489
|
};
|
|
1490
1490
|
|
|
1491
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1492
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1493
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
1494
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1495
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1496
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1497
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1498
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1499
|
-
declare type FileBodyRequest = {
|
|
1491
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1492
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
1493
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
1494
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
1495
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
1496
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
1497
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
1498
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1499
|
+
declare type FileBodyRequest$1 = {
|
|
1500
1500
|
temp_file_id?: number;
|
|
1501
1501
|
name: string;
|
|
1502
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1502
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1503
1503
|
url?: string;
|
|
1504
1504
|
};
|
|
1505
|
-
declare type ImageBodyRequest = {
|
|
1505
|
+
declare type ImageBodyRequest$1 = {
|
|
1506
1506
|
temp_file_id: number;
|
|
1507
1507
|
image_name: string;
|
|
1508
1508
|
url: string;
|
|
1509
1509
|
};
|
|
1510
|
-
declare type VideoBodyRequest = {
|
|
1510
|
+
declare type VideoBodyRequest$1 = {
|
|
1511
1511
|
temp_file_id: number;
|
|
1512
1512
|
file_name: string;
|
|
1513
1513
|
url: string;
|
|
1514
1514
|
};
|
|
1515
|
-
declare type ImageModel = {
|
|
1515
|
+
declare type ImageModel$1 = {
|
|
1516
1516
|
id: number;
|
|
1517
1517
|
image_name?: string;
|
|
1518
1518
|
image_url?: string;
|
|
@@ -1521,22 +1521,22 @@ declare type ImageModel = {
|
|
|
1521
1521
|
image_large_url: string;
|
|
1522
1522
|
size: number;
|
|
1523
1523
|
};
|
|
1524
|
-
declare type FileModel = {
|
|
1524
|
+
declare type FileModel$1 = {
|
|
1525
1525
|
id: number;
|
|
1526
1526
|
name: string;
|
|
1527
1527
|
size: number;
|
|
1528
1528
|
url: string;
|
|
1529
1529
|
};
|
|
1530
|
-
declare type DocumentModel = {
|
|
1530
|
+
declare type DocumentModel$1 = {
|
|
1531
1531
|
pk: number;
|
|
1532
1532
|
name: string;
|
|
1533
1533
|
created?: string;
|
|
1534
1534
|
attachment: string;
|
|
1535
1535
|
size: number;
|
|
1536
1536
|
uploaded_by?: string | null;
|
|
1537
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1537
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1538
1538
|
};
|
|
1539
|
-
declare type VideoModel = {
|
|
1539
|
+
declare type VideoModel$1 = {
|
|
1540
1540
|
id: number;
|
|
1541
1541
|
video_url: string;
|
|
1542
1542
|
file_name?: string;
|
|
@@ -1547,7 +1547,7 @@ declare type VideoModel = {
|
|
|
1547
1547
|
resolution?: string;
|
|
1548
1548
|
};
|
|
1549
1549
|
|
|
1550
|
-
type FileWithVisibility = {
|
|
1550
|
+
type FileWithVisibility$1 = {
|
|
1551
1551
|
id?: number
|
|
1552
1552
|
file: File | null
|
|
1553
1553
|
tenant: boolean
|
|
@@ -1556,19 +1556,19 @@ type FileWithVisibility = {
|
|
|
1556
1556
|
url: string
|
|
1557
1557
|
}
|
|
1558
1558
|
|
|
1559
|
-
type InputFileWithVisibilityFields =
|
|
1560
|
-
| FileWithVisibility
|
|
1559
|
+
type InputFileWithVisibilityFields$1 =
|
|
1560
|
+
| FileWithVisibility$1
|
|
1561
1561
|
| DocumentWithVisibility$1
|
|
1562
1562
|
| null
|
|
1563
1563
|
| undefined
|
|
1564
1564
|
|
|
1565
|
-
type CompanyAutocompleteFields = {
|
|
1565
|
+
type CompanyAutocompleteFields$1 = {
|
|
1566
1566
|
id: number
|
|
1567
1567
|
name: string
|
|
1568
1568
|
logo?: string | null
|
|
1569
1569
|
}
|
|
1570
1570
|
|
|
1571
|
-
declare class FileStore implements FileStoreInterface$1 {
|
|
1571
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1572
1572
|
id: number | null;
|
|
1573
1573
|
index?: number | null;
|
|
1574
1574
|
name: string;
|
|
@@ -1599,22 +1599,22 @@ declare class FileStore implements FileStoreInterface$1 {
|
|
|
1599
1599
|
setIndex: (index: number) => void;
|
|
1600
1600
|
get title(): string;
|
|
1601
1601
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1602
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1603
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1604
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1605
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1606
|
-
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1607
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1608
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1602
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1603
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1604
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1605
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1606
|
+
static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
|
|
1607
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1608
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1609
1609
|
}
|
|
1610
1610
|
|
|
1611
1611
|
type PartialPayerFields$1 = {
|
|
1612
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1613
|
-
mainPayer?: ResourcePaymentRoles
|
|
1614
|
-
refundFrom?: ResourcePaymentRoles
|
|
1615
|
-
partType?: UnitOfPaymentTypes | null
|
|
1612
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1613
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1614
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1615
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1616
1616
|
refundValue?: number | string | null
|
|
1617
|
-
utilityType: UtilityTypes
|
|
1617
|
+
utilityType: UtilityTypes$1
|
|
1618
1618
|
}
|
|
1619
1619
|
|
|
1620
1620
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1646,13 +1646,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1646
1646
|
visibility?: DocumentVisibilityVariants$1;
|
|
1647
1647
|
extension: string;
|
|
1648
1648
|
};
|
|
1649
|
-
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1649
|
+
declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1650
1650
|
declare type FileStoreParams$1 = {
|
|
1651
1651
|
id?: number | null;
|
|
1652
1652
|
url?: string;
|
|
1653
1653
|
index?: number | string | null;
|
|
1654
1654
|
createdBy?: string | null;
|
|
1655
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1655
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1656
1656
|
name?: string;
|
|
1657
1657
|
date?: string | null;
|
|
1658
1658
|
size?: number | null;
|
|
@@ -1680,14 +1680,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1680
1680
|
initialValueT1?: number
|
|
1681
1681
|
initialValueT2?: number
|
|
1682
1682
|
initialValueT3?: number
|
|
1683
|
-
type?: MeterTypes
|
|
1684
|
-
resource?: ResourceTypes
|
|
1683
|
+
type?: MeterTypes$1
|
|
1684
|
+
resource?: ResourceTypes$1
|
|
1685
1685
|
withAutoSending?: boolean
|
|
1686
1686
|
}
|
|
1687
1687
|
|
|
1688
1688
|
type MeterFeaturesFormFields$1 = {
|
|
1689
1689
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1690
|
-
company: CompanyAutocompleteFields | null
|
|
1690
|
+
company: CompanyAutocompleteFields$1 | null
|
|
1691
1691
|
nextCheck: DateTime | null
|
|
1692
1692
|
lastValue?: number
|
|
1693
1693
|
lastValueT1?: number
|
|
@@ -1711,9 +1711,9 @@ declare type ApartmentMeterValues = {
|
|
|
1711
1711
|
} & MeterValues;
|
|
1712
1712
|
declare type InspectionMeterFields = {
|
|
1713
1713
|
id?: number;
|
|
1714
|
-
resource: ResourceTypes;
|
|
1715
|
-
passportFile?: InputFileWithVisibilityFields;
|
|
1716
|
-
images: FileStore[];
|
|
1714
|
+
resource: ResourceTypes$1;
|
|
1715
|
+
passportFile?: InputFileWithVisibilityFields$1;
|
|
1716
|
+
images: FileStore$1[];
|
|
1717
1717
|
} & MeterFeaturesFormFields$1;
|
|
1718
1718
|
|
|
1719
1719
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1728,7 +1728,7 @@ type PartialPayerProps<T> = {
|
|
|
1728
1728
|
title: string
|
|
1729
1729
|
name: string
|
|
1730
1730
|
form: UseFormReturn<T>
|
|
1731
|
-
utilityType: UtilityTypes
|
|
1731
|
+
utilityType: UtilityTypes
|
|
1732
1732
|
fieldsVariant?: PartialPayerVariants
|
|
1733
1733
|
settings?: ObjectType
|
|
1734
1734
|
disabled?: boolean
|
|
@@ -1736,12 +1736,12 @@ type PartialPayerProps<T> = {
|
|
|
1736
1736
|
}
|
|
1737
1737
|
|
|
1738
1738
|
type PartialPayerFields = {
|
|
1739
|
-
payer?: ResourcePaymentRoles
|
|
1740
|
-
mainPayer?: ResourcePaymentRoles
|
|
1741
|
-
refundFrom?: ResourcePaymentRoles
|
|
1742
|
-
partType?: UnitOfPaymentTypes
|
|
1739
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1740
|
+
mainPayer?: ResourcePaymentRoles
|
|
1741
|
+
refundFrom?: ResourcePaymentRoles
|
|
1742
|
+
partType?: UnitOfPaymentTypes | null
|
|
1743
1743
|
refundValue?: number | string | null
|
|
1744
|
-
utilityType: UtilityTypes
|
|
1744
|
+
utilityType: UtilityTypes
|
|
1745
1745
|
}
|
|
1746
1746
|
|
|
1747
1747
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1825,15 +1825,15 @@ declare type ResourceAccessParams = {
|
|
|
1825
1825
|
description?: string;
|
|
1826
1826
|
appName?: string;
|
|
1827
1827
|
};
|
|
1828
|
-
declare type ApartmentResourceTypes = ResourceTypes
|
|
1828
|
+
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1829
1829
|
declare type ApartmentResourceCompanyDetails = {
|
|
1830
|
-
company: CompanyAutocompleteFields
|
|
1830
|
+
company: CompanyAutocompleteFields | null;
|
|
1831
1831
|
operationalAccountNumber: string;
|
|
1832
1832
|
payerCode: string;
|
|
1833
1833
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1834
1834
|
access: ResourceAccessParams;
|
|
1835
1835
|
sampleReceiptLink: string;
|
|
1836
|
-
sampleReceipt?: InputFileWithVisibilityFields
|
|
1836
|
+
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1837
1837
|
};
|
|
1838
1838
|
declare type ApartmentResourceInterface = {
|
|
1839
1839
|
type: ApartmentResourceTypes;
|
|
@@ -1870,15 +1870,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1870
1870
|
loader: Loader;
|
|
1871
1871
|
};
|
|
1872
1872
|
declare type PostDocumentsResponse = {
|
|
1873
|
-
documents: DocumentModel
|
|
1873
|
+
documents: DocumentModel[];
|
|
1874
1874
|
};
|
|
1875
1875
|
declare type DocumentAgentInterface = {
|
|
1876
1876
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1877
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1878
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1877
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1878
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1879
1879
|
};
|
|
1880
1880
|
declare type DocumentsAgentInterface = {
|
|
1881
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1881
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1882
1882
|
} & DocumentAgentInterface;
|
|
1883
1883
|
|
|
1884
1884
|
declare type MetroLineParams = {
|
|
@@ -1949,7 +1949,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1949
1949
|
};
|
|
1950
1950
|
declare type ApartmentDocumentModel = {
|
|
1951
1951
|
id: number;
|
|
1952
|
-
document: DocumentModel
|
|
1952
|
+
document: DocumentModel;
|
|
1953
1953
|
expiration_date: string;
|
|
1954
1954
|
start_date: string;
|
|
1955
1955
|
number: string;
|
|
@@ -1962,7 +1962,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1962
1962
|
tariff?: TariffLinkModel;
|
|
1963
1963
|
activation_date?: string;
|
|
1964
1964
|
check_date?: string;
|
|
1965
|
-
type?: ElectricityMeterTypes
|
|
1965
|
+
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1966
1966
|
apartment: ApartmentLinkModel;
|
|
1967
1967
|
company: CompanyLiteParams;
|
|
1968
1968
|
operating_account_number?: string | null;
|
|
@@ -2083,7 +2083,7 @@ declare type ApartmentModel = {
|
|
|
2083
2083
|
owner_id: number;
|
|
2084
2084
|
metro_stations: ApartmentMetroParams[];
|
|
2085
2085
|
rental_status: RentalStatuses;
|
|
2086
|
-
main_image: ImageModel
|
|
2086
|
+
main_image: ImageModel;
|
|
2087
2087
|
tv_type: TVTypes | null;
|
|
2088
2088
|
inspection: ApartmentInspectionModel;
|
|
2089
2089
|
distance_to_center_kilometers: number | null;
|
|
@@ -2110,7 +2110,7 @@ declare type ApartmentLiteModel = {
|
|
|
2110
2110
|
renter: LiteUserModel | null;
|
|
2111
2111
|
rental_status: RentalStatuses;
|
|
2112
2112
|
renter_payment_status: RentalPaymentStatuses;
|
|
2113
|
-
main_image: ImageModel
|
|
2113
|
+
main_image: ImageModel;
|
|
2114
2114
|
service_contract?: ServiceContractLiteModel;
|
|
2115
2115
|
is_imported_from_old_crm?: boolean;
|
|
2116
2116
|
max_electricity_counters?: number | null;
|
|
@@ -2156,7 +2156,7 @@ declare type ObjectForMapModel = {
|
|
|
2156
2156
|
apartment_number: string;
|
|
2157
2157
|
address: string;
|
|
2158
2158
|
geolocation: LatLonParams;
|
|
2159
|
-
main_image: ImageModel
|
|
2159
|
+
main_image: ImageModel;
|
|
2160
2160
|
renter: ClientLiteModel | null;
|
|
2161
2161
|
owner: ClientLiteModel;
|
|
2162
2162
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2188,13 +2188,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2188
2188
|
agent: DocumentAgentInterface;
|
|
2189
2189
|
loader: Loader;
|
|
2190
2190
|
settings?: any;
|
|
2191
|
-
constructor(document: DocumentModel
|
|
2191
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2192
2192
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2193
|
-
updateDocument: (res: DocumentModel
|
|
2193
|
+
updateDocument: (res: DocumentModel) => void;
|
|
2194
2194
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2195
2195
|
get extension(): string;
|
|
2196
2196
|
get title(): string;
|
|
2197
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
2197
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2198
2198
|
}
|
|
2199
2199
|
|
|
2200
2200
|
type InputTypes =
|
|
@@ -2254,13 +2254,13 @@ declare type FileParams = {
|
|
|
2254
2254
|
size?: number | null;
|
|
2255
2255
|
file: File;
|
|
2256
2256
|
};
|
|
2257
|
-
declare type UploadedFileParams = FileBodyRequest
|
|
2257
|
+
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2258
2258
|
declare type FileStoreParams = {
|
|
2259
2259
|
id?: number | null;
|
|
2260
2260
|
url?: string;
|
|
2261
2261
|
index?: number | string | null;
|
|
2262
2262
|
createdBy?: string | null;
|
|
2263
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
2263
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
2264
2264
|
name?: string;
|
|
2265
2265
|
date?: string | null;
|
|
2266
2266
|
size?: number | null;
|
|
@@ -2425,8 +2425,8 @@ declare const FillingTagsAgent: {
|
|
|
2425
2425
|
};
|
|
2426
2426
|
|
|
2427
2427
|
declare const TariffsAgent: {
|
|
2428
|
-
all: (tariff: ResourceTypes
|
|
2429
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes
|
|
2428
|
+
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2429
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2430
2430
|
};
|
|
2431
2431
|
|
|
2432
2432
|
type SignInFormFields = {
|
|
@@ -2445,8 +2445,8 @@ declare const ApartmentsAgent: {
|
|
|
2445
2445
|
};
|
|
2446
2446
|
|
|
2447
2447
|
declare const ApartmentMetersAgent: {
|
|
2448
|
-
getMeters: (apartmentId: number, resource: ResourceTypes
|
|
2449
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes
|
|
2448
|
+
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2449
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2450
2450
|
};
|
|
2451
2451
|
|
|
2452
2452
|
declare const requests: {
|
|
@@ -2470,7 +2470,7 @@ declare const meterUnitLabel: {
|
|
|
2470
2470
|
electricity: string;
|
|
2471
2471
|
};
|
|
2472
2472
|
|
|
2473
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields
|
|
2473
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2474
2474
|
|
|
2475
2475
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2476
2476
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2486,34 +2486,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2486
2486
|
}, "">;
|
|
2487
2487
|
|
|
2488
2488
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2489
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields
|
|
2489
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2490
2490
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2491
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility
|
|
2491
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2492
2492
|
temp_file_id: number;
|
|
2493
2493
|
name: string;
|
|
2494
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2494
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2495
2495
|
url: string;
|
|
2496
2496
|
} | null;
|
|
2497
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest
|
|
2498
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest
|
|
2499
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields
|
|
2497
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2498
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2499
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2500
2500
|
name: string;
|
|
2501
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2501
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2502
2502
|
} | null;
|
|
2503
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields
|
|
2503
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2504
2504
|
name: string;
|
|
2505
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2505
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2506
2506
|
} | null>;
|
|
2507
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore
|
|
2508
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore
|
|
2509
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
2510
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest
|
|
2511
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility
|
|
2512
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields
|
|
2513
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2514
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2515
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest
|
|
2516
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest
|
|
2507
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2508
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2509
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2510
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2511
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2512
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2513
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2514
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2515
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2516
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2517
2517
|
|
|
2518
2518
|
declare const matchesAPISubjectRoles: {
|
|
2519
2519
|
maroom: string;
|
|
@@ -2606,16 +2606,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2606
2606
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2607
2607
|
|
|
2608
2608
|
declare class FilesStore {
|
|
2609
|
-
files: FileStore
|
|
2609
|
+
files: FileStore[];
|
|
2610
2610
|
variant: FileVariant;
|
|
2611
2611
|
constructor(variant: FileVariant);
|
|
2612
|
-
addFile: (newFile: FileStore
|
|
2612
|
+
addFile: (newFile: FileStore) => void;
|
|
2613
2613
|
removeFile: (index: number) => void;
|
|
2614
|
-
setFiles: (files: FileStore
|
|
2614
|
+
setFiles: (files: FileStore[]) => void;
|
|
2615
2615
|
uploadFiles: () => Promise<void>;
|
|
2616
|
-
get uploadedData(): (FileBodyRequest
|
|
2616
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2617
2617
|
get uploadedAllFiles(): boolean;
|
|
2618
|
-
get notUploadedFiles(): FileStore
|
|
2618
|
+
get notUploadedFiles(): FileStore[];
|
|
2619
2619
|
get isUploading(): boolean;
|
|
2620
2620
|
get videoLength(): number;
|
|
2621
2621
|
get nonVideoLength(): number;
|
|
@@ -2637,7 +2637,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2637
2637
|
messages?: UploadMediaMessages;
|
|
2638
2638
|
withoutFilesStore?: boolean;
|
|
2639
2639
|
};
|
|
2640
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore
|
|
2640
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2641
2641
|
|
|
2642
2642
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2643
2643
|
onSearchItem: (value: string) => void;
|
|
@@ -2809,11 +2809,11 @@ type DistrictAutocompleteFields = {
|
|
|
2809
2809
|
type ReplaceableTariffFields = {
|
|
2810
2810
|
name: string
|
|
2811
2811
|
id?: number
|
|
2812
|
-
type?: ResourceTypes
|
|
2812
|
+
type?: ResourceTypes
|
|
2813
2813
|
}
|
|
2814
2814
|
|
|
2815
2815
|
type TariffCommonFields = {
|
|
2816
|
-
resourceType: ResourceTypes
|
|
2816
|
+
resourceType: ResourceTypes
|
|
2817
2817
|
name: string
|
|
2818
2818
|
startDate: DateTime
|
|
2819
2819
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2825,7 +2825,7 @@ type TariffCommonFields = {
|
|
|
2825
2825
|
}
|
|
2826
2826
|
|
|
2827
2827
|
type ElectricityTariffCreationFormFields = {
|
|
2828
|
-
type: ElectricityMeterTypes
|
|
2828
|
+
type: ElectricityMeterTypes
|
|
2829
2829
|
isOverallConsumption: boolean
|
|
2830
2830
|
T1?: number
|
|
2831
2831
|
T2?: number
|
|
@@ -2846,7 +2846,7 @@ type TariffCreationFormProps = {
|
|
|
2846
2846
|
handleClose: () => void
|
|
2847
2847
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2848
2848
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2849
|
-
defaultResource: ResourceTypes
|
|
2849
|
+
defaultResource: ResourceTypes
|
|
2850
2850
|
settings?: any
|
|
2851
2851
|
}
|
|
2852
2852
|
|
|
@@ -2891,7 +2891,7 @@ declare class TariffsLiteStore {
|
|
|
2891
2891
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2892
2892
|
settings?: any;
|
|
2893
2893
|
constructor(settings?: any);
|
|
2894
|
-
fetchAll: (resource: ResourceTypes
|
|
2894
|
+
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2895
2895
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2896
2896
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2897
2897
|
id: number;
|
|
@@ -2899,7 +2899,7 @@ declare class TariffsLiteStore {
|
|
|
2899
2899
|
};
|
|
2900
2900
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2901
2901
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2902
|
-
type: ElectricityMeterTypes
|
|
2902
|
+
type: ElectricityMeterTypes;
|
|
2903
2903
|
T1: string | undefined;
|
|
2904
2904
|
T2: string | undefined;
|
|
2905
2905
|
T3: string | undefined;
|
|
@@ -3193,7 +3193,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3193
3193
|
name?: string
|
|
3194
3194
|
label?: string
|
|
3195
3195
|
hideName?: string
|
|
3196
|
-
resource: ResourceTypes
|
|
3196
|
+
resource: ResourceTypes
|
|
3197
3197
|
filter?: string
|
|
3198
3198
|
filterRequired?: boolean
|
|
3199
3199
|
settings?: any
|
|
@@ -3206,7 +3206,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3206
3206
|
}
|
|
3207
3207
|
|
|
3208
3208
|
type MeterFeaturesFieldsProps = {
|
|
3209
|
-
resource?: ResourceTypes
|
|
3209
|
+
resource?: ResourceTypes
|
|
3210
3210
|
replacements?: LiteMeterInterface[]
|
|
3211
3211
|
isNewResource?: boolean
|
|
3212
3212
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3220,7 +3220,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3220
3220
|
withNextCheck?: boolean
|
|
3221
3221
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3222
3222
|
handleMeterTypeChange?: (
|
|
3223
|
-
meterType: ElectricityMeterTypes
|
|
3223
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3224
3224
|
) => void
|
|
3225
3225
|
settings?: any
|
|
3226
3226
|
disabledInitial?: boolean
|
|
@@ -3233,14 +3233,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3233
3233
|
initialValueT1?: number
|
|
3234
3234
|
initialValueT2?: number
|
|
3235
3235
|
initialValueT3?: number
|
|
3236
|
-
type?: MeterTypes
|
|
3237
|
-
resource?: ResourceTypes
|
|
3236
|
+
type?: MeterTypes
|
|
3237
|
+
resource?: ResourceTypes
|
|
3238
3238
|
withAutoSending?: boolean
|
|
3239
3239
|
}
|
|
3240
3240
|
|
|
3241
3241
|
type MeterFeaturesFormFields = {
|
|
3242
3242
|
tariff: TariffGroupAutocompleteFields | null
|
|
3243
|
-
company: CompanyAutocompleteFields
|
|
3243
|
+
company: CompanyAutocompleteFields | null
|
|
3244
3244
|
nextCheck: DateTime | null
|
|
3245
3245
|
lastValue?: number
|
|
3246
3246
|
lastValueT1?: number
|
|
@@ -3254,8 +3254,8 @@ type MeterFeaturesFormFields = {
|
|
|
3254
3254
|
} & BasicMeterFeaturesFormFields
|
|
3255
3255
|
|
|
3256
3256
|
type BasicMeterFieldsSettings = {
|
|
3257
|
-
resource?: ResourceTypes
|
|
3258
|
-
meterType?: MeterTypes
|
|
3257
|
+
resource?: ResourceTypes
|
|
3258
|
+
meterType?: MeterTypes
|
|
3259
3259
|
disabledInitial?: boolean
|
|
3260
3260
|
}
|
|
3261
3261
|
|
|
@@ -3287,10 +3287,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3287
3287
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3288
3288
|
|
|
3289
3289
|
type MeterTypeRadioGroupProps = {
|
|
3290
|
-
resource?: ResourceTypes
|
|
3290
|
+
resource?: ResourceTypes
|
|
3291
3291
|
form: UseFormReturn<any>
|
|
3292
3292
|
handleChange: (
|
|
3293
|
-
meterType: ElectricityMeterTypes
|
|
3293
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3294
3294
|
) => void
|
|
3295
3295
|
disabled?: boolean
|
|
3296
3296
|
waterOptions?: OptionParams[]
|
|
@@ -3302,7 +3302,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3302
3302
|
type MeterFeaturesFormProps = {
|
|
3303
3303
|
formStore?: MultistepForm$1<any>
|
|
3304
3304
|
handleMeterTypeChange?: (
|
|
3305
|
-
meterType: ElectricityMeterTypes
|
|
3305
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3306
3306
|
) => void
|
|
3307
3307
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3308
3308
|
|
|
@@ -3370,7 +3370,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3370
3370
|
startDate: undefined;
|
|
3371
3371
|
}, "">;
|
|
3372
3372
|
|
|
3373
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes
|
|
3373
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3374
3374
|
|
|
3375
3375
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3376
3376
|
|
|
@@ -3386,7 +3386,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3386
3386
|
|
|
3387
3387
|
type TariffReplacementFieldsProps = {
|
|
3388
3388
|
form: UseFormReturn<TariffCommonFields>
|
|
3389
|
-
resource: ResourceTypes
|
|
3389
|
+
resource: ResourceTypes
|
|
3390
3390
|
setReplaceable: (value: boolean) => void
|
|
3391
3391
|
settings?: any
|
|
3392
3392
|
}
|
|
@@ -3802,7 +3802,7 @@ type UploadPhotosButtonProps = {
|
|
|
3802
3802
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3803
3803
|
|
|
3804
3804
|
type UploadedImageProps = {
|
|
3805
|
-
image: FileStore
|
|
3805
|
+
image: FileStore
|
|
3806
3806
|
index: number
|
|
3807
3807
|
onClick: (index: number) => void
|
|
3808
3808
|
onDelete: (index: number) => void
|
|
@@ -3835,15 +3835,15 @@ declare type PartialMeterValuesFields = {
|
|
|
3835
3835
|
};
|
|
3836
3836
|
declare type PartialMeterInfoFields = {
|
|
3837
3837
|
id: number;
|
|
3838
|
-
resource: ResourceTypes
|
|
3839
|
-
type?: MeterTypes
|
|
3838
|
+
resource: ResourceTypes;
|
|
3839
|
+
type?: MeterTypes;
|
|
3840
3840
|
number: string;
|
|
3841
|
-
images: FileStore
|
|
3841
|
+
images: FileStore[];
|
|
3842
3842
|
maxValue?: PartialMeterValuesFields;
|
|
3843
3843
|
minValue?: PartialMeterValuesFields;
|
|
3844
3844
|
values: PartialMeterValuesFields;
|
|
3845
3845
|
} & PartialMeterValuesFields;
|
|
3846
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes
|
|
3846
|
+
declare const getPartialMeterInfoFields: (resource: ResourceTypes, type?: MeterTypes | undefined, meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | null | undefined, settings?: any | null, required?: boolean | undefined) => InputParams<any>[];
|
|
3847
3847
|
|
|
3848
3848
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3849
3849
|
type: string | undefined;
|
|
@@ -3870,4 +3870,4 @@ type SignInPageProps = {
|
|
|
3870
3870
|
|
|
3871
3871
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3872
3872
|
|
|
3873
|
-
export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields$1 as CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes$1 as ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest$1 as FileBodyRequest, FileModel$1 as FileModel, FileParams, FileStore$1 as FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility$1 as FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest$1 as ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel$1 as ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields$1 as InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, ReceiverPaymentCompanyModel, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, TwoOptionForAutocomplete, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel$1 as VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes$1 as WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
3873
|
+
export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, ReceiverPaymentCompanyModel, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|