kui-crm 0.0.558 → 0.0.559

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
@@ -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$1 = "maroom" | "owner" | "renter" | "by_invoice";
190
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
191
- declare type WaterMeterTypes$1 = "cold" | "hot";
192
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
193
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
194
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
195
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
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$1 = "everybody" | "renter" | "owner" | "nobody";
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$1 | null;
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$1 | null;
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$1;
266
- payment_made_by?: ResourcePaymentRoles$1;
267
- refund_from: ResourcePaymentRoles$1;
265
+ utility_type: UtilityTypes;
266
+ payment_made_by?: ResourcePaymentRoles;
267
+ refund_from: ResourcePaymentRoles;
268
268
  refund_value?: number | string;
269
- value_type?: UnitOfPaymentTypes$1;
269
+ value_type?: UnitOfPaymentTypes;
270
270
  };
271
- declare type FileBodyRequest$1 = {
271
+ declare type FileBodyRequest = {
272
272
  temp_file_id?: number;
273
273
  name: string;
274
- visibility?: DocumentVisibilityAPIVariants$1;
274
+ visibility?: DocumentVisibilityAPIVariants;
275
275
  url?: string;
276
276
  };
277
- declare type ImageBodyRequest$1 = {
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$1 = {
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$1 = {
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$1 = {
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$1 = {
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$1;
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$1;
321
+ visibility: DocumentVisibilityAPIVariants;
322
322
  };
323
323
  declare type PaginationRes<T> = {
324
324
  count: number;
@@ -401,7 +401,7 @@ declare type ApartmentResourceCompanyModel = {
401
401
  provider_type: string;
402
402
  };
403
403
  declare type DataTransferFormats = "online" | "offline";
404
- declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "other";
404
+ declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
405
405
  declare type ApartmentResourceModel = {
406
406
  id: number;
407
407
  company: ApartmentResourceCompanyModel | null;
@@ -410,7 +410,7 @@ declare type ApartmentResourceModel = {
410
410
  payer_code?: string;
411
411
  meter_readings_day_from?: number;
412
412
  meter_readings_day_to?: number;
413
- receipt_example?: DocumentModel$1;
413
+ receipt_example?: DocumentModel;
414
414
  provider_auth_login?: string;
415
415
  provider_auth_password?: string;
416
416
  provider_url?: string;
@@ -431,8 +431,8 @@ declare type InspectionFillingParams = {
431
431
  description?: string;
432
432
  serial_code?: string;
433
433
  amount?: number | string | null;
434
- photos: ImageBodyRequest$1[];
435
- instruction?: FileBodyRequest$1 | null;
434
+ photos: ImageBodyRequest[];
435
+ instruction?: FileBodyRequest | null;
436
436
  was_missing?: boolean;
437
437
  };
438
438
  declare type InspectionMeterValueModel = {
@@ -463,7 +463,7 @@ declare type InspectionRoomPhotoModel = {
463
463
  uploaded: boolean;
464
464
  purpose: InspectionRoomPhotoTypes;
465
465
  comment?: string;
466
- photos: ImageModel$1[];
466
+ photos: ImageModel[];
467
467
  videos: VideoModel[];
468
468
  room_order_number?: number | null;
469
469
  };
@@ -501,11 +501,11 @@ declare type FullInspectionCommonFields = {
501
501
  filling: InspectionFillingModel[];
502
502
  } & ApartmentModel;
503
503
  declare type InspectionMeterCommonInfo = {
504
- resource_type: ResourceTypes$1;
505
- passport: FileModel$1 | null;
506
- meter_type: MeterTypes$1;
504
+ resource_type: ResourceTypes;
505
+ passport: FileModel | null;
506
+ meter_type: MeterTypes;
507
507
  operating_account: string;
508
- photos: ImageModel$1[];
508
+ photos: ImageModel[];
509
509
  } & Omit<MeterCommonInfoModel, "operating_account_number">;
510
510
  declare type TransferInspectionMeterModel = {
511
511
  values: InspectionMeterValueModel;
@@ -521,7 +521,7 @@ declare type RegularInspectionFields = {
521
521
  declare type ComparableObjectModel = {
522
522
  id: number;
523
523
  advertisement_link: string;
524
- advertisement_screenshot: ImageModel$1 | null;
524
+ advertisement_screenshot: ImageModel | null;
525
525
  object_price: string;
526
526
  key_object_differences: string;
527
527
  };
@@ -529,7 +529,7 @@ declare type StatisticalEvaluationModel = {
529
529
  id: number;
530
530
  source_name: string;
531
531
  link: string;
532
- screenshot: ImageModel$1 | null;
532
+ screenshot: ImageModel | null;
533
533
  min_price: string;
534
534
  max_price: string;
535
535
  };
@@ -572,11 +572,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
572
572
  declare type ImpairmentModel = {
573
573
  id: number;
574
574
  impairment_type: ImpairmentType;
575
- proof_file: DocumentModel$1 | null;
575
+ proof_file: DocumentModel | null;
576
576
  price: number;
577
577
  solution: string;
578
578
  description: string;
579
- photos: ImageModel$1[];
579
+ photos: ImageModel[];
580
580
  item_link: string;
581
581
  };
582
582
  declare type MetroStationsFields = {
@@ -586,7 +586,7 @@ declare type InitialInspectionModelFields = {
586
586
  used_resources: UsedResourcesModel;
587
587
  } & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
588
588
  declare type AppraisalRequestModelFields = {
589
- floor_plan: DocumentModel$1 | null;
589
+ floor_plan: DocumentModel | null;
590
590
  };
591
591
  declare type InspectionModel = {
592
592
  initial?: InitialInspectionModelFields;
@@ -663,10 +663,10 @@ declare type InspectionFeedbackInterface = {
663
663
  };
664
664
  declare type PatchInspectionImageParams = {
665
665
  id?: number;
666
- } & Partial<ImageBodyRequest$1>;
666
+ } & Partial<ImageBodyRequest>;
667
667
  declare type PatchInspectionVideoParams = {
668
668
  id?: number;
669
- } & Partial<VideoBodyRequest$1>;
669
+ } & Partial<VideoBodyRequest>;
670
670
  declare type PatchRoomImagesParams = {
671
671
  type: InspectionRoomPhotoTypes;
672
672
  comment?: string;
@@ -706,8 +706,8 @@ declare type InspectionFillingModel = {
706
706
  description: string;
707
707
  serial_code: string;
708
708
  amount: number;
709
- photos: ImageModel$1[];
710
- instruction: DocumentModel$1;
709
+ photos: ImageModel[];
710
+ instruction: DocumentModel;
711
711
  is_absent: boolean;
712
712
  previously_absent: boolean;
713
713
  model: string;
@@ -789,7 +789,7 @@ declare type CommonMeterParams = {
789
789
  company: CompanyLiteParams;
790
790
  operating_account_number?: string | null;
791
791
  company_is_administrative: boolean;
792
- photos?: ImageModel$1[];
792
+ photos?: ImageModel[];
793
793
  auto_sending: boolean;
794
794
  no_tariff: boolean;
795
795
  is_avg: boolean;
@@ -801,15 +801,15 @@ declare type ElectricityMeterValues = {
801
801
  T3?: MeterTariffModel;
802
802
  };
803
803
  declare type WaterMeterParams = {
804
- type: WaterMeterTypes$1;
804
+ type: WaterMeterTypes;
805
805
  tariff: SingleCounterTariffModel;
806
806
  } & CommonMeterParams & MeterTariffModel;
807
807
  declare type SingleMeterParams = {
808
- type?: WaterMeterTypes$1;
808
+ type?: WaterMeterTypes;
809
809
  tariff: SingleCounterTariffModel;
810
810
  } & CommonMeterParams & MeterTariffModel;
811
811
  declare type ElectricityMeterParams = {
812
- type: ElectricityMeterTypes$1;
812
+ type: ElectricityMeterTypes;
813
813
  values: ElectricityMeterValues;
814
814
  tariff: ElectricityMeterTariffModel;
815
815
  overall_value?: number;
@@ -920,6 +920,7 @@ declare type CoOwnerModel = {
920
920
  declare type RepresentativeTypes = "transfer_only" | "maintenance" | "beneficiary";
921
921
  declare type RepresentativeModel = {
922
922
  id: number;
923
+ owner_id: number;
923
924
  first_name: string;
924
925
  last_name: string;
925
926
  middle_name: string;
@@ -1047,7 +1048,7 @@ declare type CountryParams = {
1047
1048
  code: string;
1048
1049
  } & CatalogItemParams;
1049
1050
 
1050
- type FileWithVisibility$1 = {
1051
+ type FileWithVisibility = {
1051
1052
  file: File | null
1052
1053
  tenant: boolean
1053
1054
  landlord: boolean
@@ -1055,8 +1056,8 @@ type FileWithVisibility$1 = {
1055
1056
  url: string
1056
1057
  }
1057
1058
 
1058
- type InputFileWithVisibilityFields$1 =
1059
- | FileWithVisibility$1
1059
+ type InputFileWithVisibilityFields =
1060
+ | FileWithVisibility
1060
1061
  | DocumentWithVisibility
1061
1062
  | null
1062
1063
  | undefined
@@ -1086,7 +1087,7 @@ type ChangeReasonFieldsProps<T> = {
1086
1087
  }
1087
1088
 
1088
1089
  type ChangeReasonFormFields = {
1089
- reason: InputFileWithVisibilityFields$1
1090
+ reason: InputFileWithVisibilityFields
1090
1091
  comment?: string
1091
1092
  }
1092
1093
 
@@ -1101,13 +1102,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1101
1102
  settings?: any
1102
1103
  } & InputWithControllerProps<TFormValues>
1103
1104
 
1104
- type CompanyAutocompleteFields$1 = {
1105
+ type CompanyAutocompleteFields = {
1105
1106
  id: number
1106
1107
  name: string
1107
1108
  logo?: string | null
1108
1109
  }
1109
1110
 
1110
- declare class FileStore$1 implements FileStoreInterface {
1111
+ declare class FileStore implements FileStoreInterface {
1111
1112
  id: number | null;
1112
1113
  index?: number | null;
1113
1114
  name: string;
@@ -1138,12 +1139,12 @@ declare class FileStore$1 implements FileStoreInterface {
1138
1139
  setIndex: (index: number) => void;
1139
1140
  get title(): string;
1140
1141
  static createPreviewUrl: (file: File) => Promise<string>;
1141
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1142
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1143
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1144
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1145
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1146
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1142
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1143
+ static initFromFileModel: (file: FileModel) => FileStore;
1144
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1145
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1146
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1147
+ static initFromFileStore: (file: FileStore) => FileStore;
1147
1148
  }
1148
1149
 
1149
1150
  declare type ImageParams = {
@@ -1178,7 +1179,7 @@ declare class ImageStore implements ImageStoreInterface {
1178
1179
  delete: () => Promise<void>;
1179
1180
  get extension(): string;
1180
1181
  get title(): string;
1181
- static initFromImageModel: (image: ImageModel$1) => ImageStore;
1182
+ static initFromImageModel: (image: ImageModel) => ImageStore;
1182
1183
  static initFromVideoModel: (image: VideoModel) => ImageStore;
1183
1184
  }
1184
1185
 
@@ -1304,7 +1305,7 @@ declare type LockerAutocompleteFields = {
1304
1305
  declare type ApartmentOverviewPaymentInfoFields = {
1305
1306
  payerCode?: string;
1306
1307
  communalServicesAccount?: string;
1307
- company?: CompanyAutocompleteFields$1 | null;
1308
+ company?: CompanyAutocompleteFields | null;
1308
1309
  } & ChangeReasonFormFields;
1309
1310
  declare type ApartmentOverviewInfoFields = {
1310
1311
  locker?: LockerAutocompleteFields | null;
@@ -1327,14 +1328,14 @@ declare type InspectionPaymentInfoParams = {
1327
1328
  } & ApartmentPaymentInfoParams;
1328
1329
  declare type InspectionMeterInfoParams = {
1329
1330
  id: number;
1330
- resource: ResourceTypes$1;
1331
- type?: MeterTypes$1;
1331
+ resource: ResourceTypes;
1332
+ type?: MeterTypes;
1332
1333
  number: string;
1333
1334
  startDate: DateTime | null;
1334
1335
  company: CompanyLiteParams;
1335
1336
  operationalAccountNumber?: string | null;
1336
1337
  tariff: EntityLinkParams | null;
1337
- passportFile: FileStore$1 | null;
1338
+ passportFile: FileStore | null;
1338
1339
  initialValue?: number;
1339
1340
  lastValue?: number;
1340
1341
  initialValueT1?: number;
@@ -1356,8 +1357,8 @@ declare type ValuesParams = {
1356
1357
  };
1357
1358
  declare type PartialMeterInfoParams = {
1358
1359
  id: number;
1359
- type: MeterTypes$1;
1360
- resource: ResourceTypes$1;
1360
+ type: MeterTypes;
1361
+ resource: ResourceTypes;
1361
1362
  number: string;
1362
1363
  values: ValuesParams;
1363
1364
  images?: (ImageStore | UploadImageParams)[];
@@ -1369,7 +1370,7 @@ declare type InspectionPartialMetersInfoParams = {
1369
1370
  declare type ComparableObjectParams = {
1370
1371
  id: number;
1371
1372
  link: string;
1372
- screenshot: FileStore$1 | null;
1373
+ screenshot: FileStore | null;
1373
1374
  price: number;
1374
1375
  differences: string;
1375
1376
  };
@@ -1377,7 +1378,7 @@ declare type StatisticalEvaluationParams = {
1377
1378
  id: number;
1378
1379
  dataSourceName: string;
1379
1380
  link: string;
1380
- screenshot: FileStore$1 | null;
1381
+ screenshot: FileStore | null;
1381
1382
  minPrice: number;
1382
1383
  maxPrice: number;
1383
1384
  };
@@ -1402,8 +1403,8 @@ declare type FillingInfoFormFields = {
1402
1403
  name?: string;
1403
1404
  description?: string;
1404
1405
  type?: ApartmentFillingVariants | null;
1405
- instruction?: InputFileWithVisibilityFields$1;
1406
- tempImages?: ImageBodyRequest$1[];
1406
+ instruction?: InputFileWithVisibilityFields;
1407
+ tempImages?: ImageBodyRequest[];
1407
1408
  };
1408
1409
 
1409
1410
  declare type FillingTagParams = {
@@ -1418,7 +1419,7 @@ declare type FillingParams = {
1418
1419
  images?: (ImageStore | UploadFileParams)[];
1419
1420
  serialNumber?: string;
1420
1421
  numberOfSubjects?: number | string | null;
1421
- instruction?: InputFileWithVisibilityFields$1 | null;
1422
+ instruction?: InputFileWithVisibilityFields | null;
1422
1423
  type?: ApartmentFillingVariants;
1423
1424
  loader?: Loader;
1424
1425
  };
@@ -1430,7 +1431,7 @@ declare type FillingFullParams = {
1430
1431
  images?: (ImageStore | UploadFileParams)[];
1431
1432
  serialNumber?: string;
1432
1433
  numberOfSubjects?: number | string | null;
1433
- instruction?: InputFileWithVisibilityFields$1 | null;
1434
+ instruction?: InputFileWithVisibilityFields | null;
1434
1435
  type?: ApartmentFillingVariants;
1435
1436
  loader?: Loader;
1436
1437
  check?: boolean | null;
@@ -1449,31 +1450,31 @@ declare type TariffGroupLiteParams = {
1449
1450
  name: string;
1450
1451
  };
1451
1452
 
1452
- declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1453
- declare type UnitOfPaymentTypes = "percent" | "value";
1454
- declare type WaterMeterTypes = "cold" | "hot";
1455
- declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1456
- declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1457
- declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1458
- declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1459
- declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1460
- declare type FileBodyRequest = {
1453
+ declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1454
+ declare type UnitOfPaymentTypes$1 = "percent" | "value";
1455
+ declare type WaterMeterTypes$1 = "cold" | "hot";
1456
+ declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1457
+ declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1458
+ declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1459
+ declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1460
+ declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1461
+ declare type FileBodyRequest$1 = {
1461
1462
  temp_file_id?: number;
1462
1463
  name: string;
1463
- visibility?: DocumentVisibilityAPIVariants;
1464
+ visibility?: DocumentVisibilityAPIVariants$1;
1464
1465
  url?: string;
1465
1466
  };
1466
- declare type ImageBodyRequest = {
1467
+ declare type ImageBodyRequest$1 = {
1467
1468
  temp_file_id: number;
1468
1469
  image_name: string;
1469
1470
  url: string;
1470
1471
  };
1471
- declare type VideoBodyRequest = {
1472
+ declare type VideoBodyRequest$1 = {
1472
1473
  temp_file_id: number;
1473
1474
  file_name: string;
1474
1475
  url: string;
1475
1476
  };
1476
- declare type ImageModel = {
1477
+ declare type ImageModel$1 = {
1477
1478
  id: number;
1478
1479
  image_name?: string;
1479
1480
  image_url?: string;
@@ -1482,23 +1483,23 @@ declare type ImageModel = {
1482
1483
  image_large_url: string;
1483
1484
  size: number;
1484
1485
  };
1485
- declare type FileModel = {
1486
+ declare type FileModel$1 = {
1486
1487
  id: number;
1487
1488
  name: string;
1488
1489
  size: number;
1489
1490
  url: string;
1490
1491
  };
1491
- declare type DocumentModel = {
1492
+ declare type DocumentModel$1 = {
1492
1493
  pk: number;
1493
1494
  name: string;
1494
1495
  created?: string;
1495
1496
  attachment: string;
1496
1497
  size: number;
1497
1498
  uploaded_by?: string | null;
1498
- visibility?: DocumentVisibilityAPIVariants;
1499
+ visibility?: DocumentVisibilityAPIVariants$1;
1499
1500
  };
1500
1501
 
1501
- type FileWithVisibility = {
1502
+ type FileWithVisibility$1 = {
1502
1503
  file: File | null
1503
1504
  tenant: boolean
1504
1505
  landlord: boolean
@@ -1506,19 +1507,19 @@ type FileWithVisibility = {
1506
1507
  url: string
1507
1508
  }
1508
1509
 
1509
- type InputFileWithVisibilityFields =
1510
- | FileWithVisibility
1510
+ type InputFileWithVisibilityFields$1 =
1511
+ | FileWithVisibility$1
1511
1512
  | DocumentWithVisibility$1
1512
1513
  | null
1513
1514
  | undefined
1514
1515
 
1515
- type CompanyAutocompleteFields = {
1516
+ type CompanyAutocompleteFields$1 = {
1516
1517
  id: number
1517
1518
  name: string
1518
1519
  logo?: string | null
1519
1520
  }
1520
1521
 
1521
- declare class FileStore implements FileStoreInterface$1 {
1522
+ declare class FileStore$1 implements FileStoreInterface$1 {
1522
1523
  id: number | null;
1523
1524
  index?: number | null;
1524
1525
  name: string;
@@ -1549,21 +1550,21 @@ declare class FileStore implements FileStoreInterface$1 {
1549
1550
  setIndex: (index: number) => void;
1550
1551
  get title(): string;
1551
1552
  static createPreviewUrl: (file: File) => Promise<string>;
1552
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1553
- static initFromFileModel: (file: FileModel) => FileStore;
1554
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1555
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1556
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1557
- static initFromFileStore: (file: FileStore) => FileStore;
1553
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1554
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1555
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1556
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1557
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1558
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1558
1559
  }
1559
1560
 
1560
1561
  type PartialPayerFields$1 = {
1561
- payer?: ResourcePaymentRoles | "partial"
1562
- mainPayer?: ResourcePaymentRoles
1563
- refundFrom?: ResourcePaymentRoles
1564
- partType?: UnitOfPaymentTypes | null
1562
+ payer?: ResourcePaymentRoles$1 | "partial"
1563
+ mainPayer?: ResourcePaymentRoles$1
1564
+ refundFrom?: ResourcePaymentRoles$1
1565
+ partType?: UnitOfPaymentTypes$1 | null
1565
1566
  refundValue?: number | string | null
1566
- utilityType: UtilityTypes
1567
+ utilityType: UtilityTypes$1
1567
1568
  }
1568
1569
 
1569
1570
  declare type FilesStoreInterface$1 = {
@@ -1595,13 +1596,13 @@ declare type DocumentWithVisibility$1 = {
1595
1596
  visibility?: DocumentVisibilityVariants$1;
1596
1597
  extension: string;
1597
1598
  };
1598
- declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1599
+ declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1599
1600
  declare type FileStoreParams$1 = {
1600
1601
  id?: number | null;
1601
1602
  url?: string;
1602
1603
  index?: number | string | null;
1603
1604
  createdBy?: string | null;
1604
- visibility?: DocumentVisibilityAPIVariants;
1605
+ visibility?: DocumentVisibilityAPIVariants$1;
1605
1606
  name?: string;
1606
1607
  date?: string | null;
1607
1608
  size?: number | null;
@@ -1629,14 +1630,14 @@ type BasicMeterFeaturesFormFields$1 = {
1629
1630
  initialValueT1?: number
1630
1631
  initialValueT2?: number
1631
1632
  initialValueT3?: number
1632
- type?: MeterTypes
1633
- resource?: ResourceTypes
1633
+ type?: MeterTypes$1
1634
+ resource?: ResourceTypes$1
1634
1635
  withAutoSending?: boolean
1635
1636
  }
1636
1637
 
1637
1638
  type MeterFeaturesFormFields$1 = {
1638
1639
  tariff: TariffGroupAutocompleteFields$1 | null
1639
- company: CompanyAutocompleteFields | null
1640
+ company: CompanyAutocompleteFields$1 | null
1640
1641
  nextCheck: DateTime | null
1641
1642
  lastValue?: number
1642
1643
  lastValueT1?: number
@@ -1660,9 +1661,9 @@ declare type ApartmentMeterValues = {
1660
1661
  } & MeterValues;
1661
1662
  declare type InspectionMeterFields = {
1662
1663
  id?: number;
1663
- resource: ResourceTypes;
1664
- passportFile?: InputFileWithVisibilityFields;
1665
- images: FileStore[];
1664
+ resource: ResourceTypes$1;
1665
+ passportFile?: InputFileWithVisibilityFields$1;
1666
+ images: FileStore$1[];
1666
1667
  } & MeterFeaturesFormFields$1;
1667
1668
 
1668
1669
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1677,7 +1678,7 @@ type PartialPayerProps<T> = {
1677
1678
  title: string
1678
1679
  name: string
1679
1680
  form: UseFormReturn<T>
1680
- utilityType: UtilityTypes$1
1681
+ utilityType: UtilityTypes
1681
1682
  fieldsVariant?: PartialPayerVariants
1682
1683
  settings?: ObjectType
1683
1684
  disabled?: boolean
@@ -1685,12 +1686,12 @@ type PartialPayerProps<T> = {
1685
1686
  }
1686
1687
 
1687
1688
  type PartialPayerFields = {
1688
- payer?: ResourcePaymentRoles$1 | "partial"
1689
- mainPayer?: ResourcePaymentRoles$1
1690
- refundFrom?: ResourcePaymentRoles$1
1691
- partType?: UnitOfPaymentTypes$1 | null
1689
+ payer?: ResourcePaymentRoles | "partial"
1690
+ mainPayer?: ResourcePaymentRoles
1691
+ refundFrom?: ResourcePaymentRoles
1692
+ partType?: UnitOfPaymentTypes | null
1692
1693
  refundValue?: number | string | null
1693
- utilityType: UtilityTypes$1
1694
+ utilityType: UtilityTypes
1694
1695
  }
1695
1696
 
1696
1697
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1774,15 +1775,15 @@ declare type ResourceAccessParams = {
1774
1775
  password?: string;
1775
1776
  description?: string;
1776
1777
  };
1777
- declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1778
+ declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1778
1779
  declare type ApartmentResourceCompanyDetails = {
1779
- company: CompanyAutocompleteFields$1 | null;
1780
+ company: CompanyAutocompleteFields | null;
1780
1781
  operationalAccountNumber: string;
1781
1782
  payerCode: string;
1782
1783
  dataSubmissionDays: DataSubmissionDaysParams;
1783
1784
  access: ResourceAccessParams;
1784
1785
  sampleReceiptLink: string;
1785
- sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1786
+ sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1786
1787
  };
1787
1788
  declare type ApartmentResourceInterface = {
1788
1789
  type: ApartmentResourceTypes;
@@ -1819,15 +1820,15 @@ declare type DocumentsStoreInterface = {
1819
1820
  loader: Loader;
1820
1821
  };
1821
1822
  declare type PostDocumentsResponse = {
1822
- documents: DocumentModel$1[];
1823
+ documents: DocumentModel[];
1823
1824
  };
1824
1825
  declare type DocumentAgentInterface = {
1825
1826
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1826
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1827
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1827
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1828
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1828
1829
  };
1829
1830
  declare type DocumentsAgentInterface = {
1830
- getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1831
+ getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1831
1832
  } & DocumentAgentInterface;
1832
1833
 
1833
1834
  declare type MetroLineParams = {
@@ -1898,7 +1899,7 @@ declare type ApartmentFeatureModel = {
1898
1899
  };
1899
1900
  declare type ApartmentDocumentModel = {
1900
1901
  id: number;
1901
- document: DocumentModel$1;
1902
+ document: DocumentModel;
1902
1903
  expiration_date: string;
1903
1904
  start_date: string;
1904
1905
  number: string;
@@ -1910,7 +1911,7 @@ declare type MeterCommonInfoModel = {
1910
1911
  tariff?: TariffLinkModel;
1911
1912
  activation_date?: string;
1912
1913
  check_date?: string;
1913
- type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1914
+ type?: ElectricityMeterTypes | WaterMeterTypes;
1914
1915
  apartment: ApartmentLinkModel;
1915
1916
  company: CompanyLiteParams;
1916
1917
  operating_account_number?: string | null;
@@ -2031,7 +2032,7 @@ declare type ApartmentModel = {
2031
2032
  owner_id: number;
2032
2033
  metro_stations: ApartmentMetroParams[];
2033
2034
  rental_status: RentalStatuses;
2034
- main_image: ImageModel$1;
2035
+ main_image: ImageModel;
2035
2036
  tv_type: TVTypes | null;
2036
2037
  inspection: ApartmentInspectionModel;
2037
2038
  distance_to_center_kilometers: number | null;
@@ -2058,7 +2059,7 @@ declare type ApartmentLiteModel = {
2058
2059
  renter: LiteUserModel | null;
2059
2060
  rental_status: RentalStatuses;
2060
2061
  renter_payment_status: RentalPaymentStatuses;
2061
- main_image: ImageModel$1;
2062
+ main_image: ImageModel;
2062
2063
  service_contract?: ServiceContractLiteModel;
2063
2064
  is_imported_from_old_crm?: boolean;
2064
2065
  max_electricity_counters?: number | null;
@@ -2104,7 +2105,7 @@ declare type ObjectForMapModel = {
2104
2105
  apartment_number: string;
2105
2106
  address: string;
2106
2107
  geolocation: LatLonParams;
2107
- main_image: ImageModel$1;
2108
+ main_image: ImageModel;
2108
2109
  renter: ClientLiteModel | null;
2109
2110
  owner: ClientLiteModel;
2110
2111
  metro_stations: ApartmentMetroStationModel[];
@@ -2136,13 +2137,13 @@ declare class DocumentStore implements FileStoreInterface {
2136
2137
  agent: DocumentAgentInterface;
2137
2138
  loader: Loader;
2138
2139
  settings?: any;
2139
- constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2140
+ constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2140
2141
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2141
- updateDocument: (res: DocumentModel$1) => void;
2142
+ updateDocument: (res: DocumentModel) => void;
2142
2143
  deleteDocument: (...params: any) => Promise<void>;
2143
2144
  get extension(): string;
2144
2145
  get title(): string;
2145
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2146
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2146
2147
  }
2147
2148
 
2148
2149
  type InputTypes =
@@ -2202,13 +2203,13 @@ declare type FileParams = {
2202
2203
  size?: number | null;
2203
2204
  file: File;
2204
2205
  };
2205
- declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2206
+ declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2206
2207
  declare type FileStoreParams = {
2207
2208
  id?: number | null;
2208
2209
  url?: string;
2209
2210
  index?: number | string | null;
2210
2211
  createdBy?: string | null;
2211
- visibility?: DocumentVisibilityAPIVariants$1;
2212
+ visibility?: DocumentVisibilityAPIVariants;
2212
2213
  name?: string;
2213
2214
  date?: string | null;
2214
2215
  size?: number | null;
@@ -2359,8 +2360,8 @@ declare const FillingTagsAgent: {
2359
2360
  };
2360
2361
 
2361
2362
  declare const TariffsAgent: {
2362
- all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2363
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2363
+ all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2364
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2364
2365
  };
2365
2366
 
2366
2367
  type SignInFormFields = {
@@ -2379,8 +2380,8 @@ declare const ApartmentsAgent: {
2379
2380
  };
2380
2381
 
2381
2382
  declare const ApartmentMetersAgent: {
2382
- getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2383
- getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2383
+ getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2384
+ getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2384
2385
  };
2385
2386
 
2386
2387
  declare const requests: {
@@ -2404,7 +2405,7 @@ declare const meterUnitLabel: {
2404
2405
  electricity: string;
2405
2406
  };
2406
2407
 
2407
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2408
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2408
2409
 
2409
2410
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2410
2411
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2420,34 +2421,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2420
2421
  }, "">;
2421
2422
 
2422
2423
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2423
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2424
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2424
2425
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2425
- declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2426
+ declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2426
2427
  temp_file_id: number;
2427
2428
  name: string;
2428
- visibility: DocumentVisibilityAPIVariants$1;
2429
+ visibility: DocumentVisibilityAPIVariants;
2429
2430
  url: string;
2430
2431
  } | null;
2431
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2432
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2433
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2432
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2433
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2434
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2434
2435
  name: string;
2435
- visibility: DocumentVisibilityAPIVariants$1;
2436
+ visibility: DocumentVisibilityAPIVariants;
2436
2437
  } | null;
2437
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2438
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2438
2439
  name: string;
2439
- visibility: DocumentVisibilityAPIVariants$1;
2440
+ visibility: DocumentVisibilityAPIVariants;
2440
2441
  } | null>;
2441
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2442
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2443
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2444
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2445
- declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2446
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2447
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2448
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2449
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2450
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2442
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2443
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2444
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2445
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2446
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2447
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2448
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2449
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2450
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2451
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2451
2452
 
2452
2453
  declare const matchesAPISubjectRoles: {
2453
2454
  maroom: string;
@@ -2540,16 +2541,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2540
2541
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2541
2542
 
2542
2543
  declare class FilesStore {
2543
- files: FileStore$1[];
2544
+ files: FileStore[];
2544
2545
  variant: FileVariant;
2545
2546
  constructor(variant: FileVariant);
2546
- addFile: (newFile: FileStore$1) => void;
2547
+ addFile: (newFile: FileStore) => void;
2547
2548
  removeFile: (index: number) => void;
2548
- setFiles: (files: FileStore$1[]) => void;
2549
+ setFiles: (files: FileStore[]) => void;
2549
2550
  uploadFiles: () => Promise<void>;
2550
- get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2551
+ get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2551
2552
  get uploadedAllFiles(): boolean;
2552
- get notUploadedFiles(): FileStore$1[];
2553
+ get notUploadedFiles(): FileStore[];
2553
2554
  get isUploading(): boolean;
2554
2555
  get videoLength(): number;
2555
2556
  get nonVideoLength(): number;
@@ -2571,7 +2572,7 @@ declare type UploadMediaToStoreSettings = {
2571
2572
  messages?: UploadMediaMessages;
2572
2573
  withoutFilesStore?: boolean;
2573
2574
  };
2574
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2575
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2575
2576
 
2576
2577
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2577
2578
  onSearchItem: (value: string) => void;
@@ -2743,11 +2744,11 @@ type DistrictAutocompleteFields = {
2743
2744
  type ReplaceableTariffFields = {
2744
2745
  name: string
2745
2746
  id?: number
2746
- type?: ResourceTypes$1
2747
+ type?: ResourceTypes
2747
2748
  }
2748
2749
 
2749
2750
  type TariffCommonFields = {
2750
- resourceType: ResourceTypes$1
2751
+ resourceType: ResourceTypes
2751
2752
  name: string
2752
2753
  startDate: DateTime
2753
2754
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2759,7 +2760,7 @@ type TariffCommonFields = {
2759
2760
  }
2760
2761
 
2761
2762
  type ElectricityTariffCreationFormFields = {
2762
- type: ElectricityMeterTypes$1
2763
+ type: ElectricityMeterTypes
2763
2764
  isOverallConsumption: boolean
2764
2765
  T1?: number
2765
2766
  T2?: number
@@ -2780,7 +2781,7 @@ type TariffCreationFormProps = {
2780
2781
  handleClose: () => void
2781
2782
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2782
2783
  creationForm: MultistepForm$1<TariffCreationFormFields>
2783
- defaultResource: ResourceTypes$1
2784
+ defaultResource: ResourceTypes
2784
2785
  settings?: any
2785
2786
  }
2786
2787
 
@@ -2825,7 +2826,7 @@ declare class TariffsLiteStore {
2825
2826
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2826
2827
  settings?: any;
2827
2828
  constructor(settings?: any);
2828
- fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2829
+ fetchAll: (resource: ResourceTypes) => Promise<void>;
2829
2830
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2830
2831
  static getTariffParams: (tariff: CommonTariffModel) => {
2831
2832
  id: number;
@@ -2833,7 +2834,7 @@ declare class TariffsLiteStore {
2833
2834
  };
2834
2835
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2835
2836
  static getTariffValues: (data: TariffCreationFormFields) => {
2836
- type: ElectricityMeterTypes$1;
2837
+ type: ElectricityMeterTypes;
2837
2838
  T1: string | undefined;
2838
2839
  T2: string | undefined;
2839
2840
  T3: string | undefined;
@@ -3126,7 +3127,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3126
3127
  name?: string
3127
3128
  label?: string
3128
3129
  hideName?: string
3129
- resource: ResourceTypes$1
3130
+ resource: ResourceTypes
3130
3131
  filter?: string
3131
3132
  filterRequired?: boolean
3132
3133
  settings?: any
@@ -3139,7 +3140,7 @@ type TariffGroupAutocompleteFields = {
3139
3140
  }
3140
3141
 
3141
3142
  type MeterFeaturesFieldsProps = {
3142
- resource?: ResourceTypes$1
3143
+ resource?: ResourceTypes
3143
3144
  replacements?: LiteMeterInterface[]
3144
3145
  isNewResource?: boolean
3145
3146
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3153,7 +3154,7 @@ type MeterFeaturesFieldsProps = {
3153
3154
  withNextCheck?: boolean
3154
3155
  defaultValues?: Partial<MeterFeaturesFormFields>
3155
3156
  handleMeterTypeChange?: (
3156
- meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3157
+ meterType: ElectricityMeterTypes | WaterMeterTypes | null
3157
3158
  ) => void
3158
3159
  settings?: any
3159
3160
  }
@@ -3165,14 +3166,14 @@ type BasicMeterFeaturesFormFields = {
3165
3166
  initialValueT1?: number
3166
3167
  initialValueT2?: number
3167
3168
  initialValueT3?: number
3168
- type?: MeterTypes$1
3169
- resource?: ResourceTypes$1
3169
+ type?: MeterTypes
3170
+ resource?: ResourceTypes
3170
3171
  withAutoSending?: boolean
3171
3172
  }
3172
3173
 
3173
3174
  type MeterFeaturesFormFields = {
3174
3175
  tariff: TariffGroupAutocompleteFields | null
3175
- company: CompanyAutocompleteFields$1 | null
3176
+ company: CompanyAutocompleteFields | null
3176
3177
  nextCheck: DateTime | null
3177
3178
  lastValue?: number
3178
3179
  lastValueT1?: number
@@ -3186,8 +3187,8 @@ type MeterFeaturesFormFields = {
3186
3187
  } & BasicMeterFeaturesFormFields
3187
3188
 
3188
3189
  type BasicMeterFieldsSettings = {
3189
- resource?: ResourceTypes$1
3190
- meterType?: MeterTypes$1
3190
+ resource?: ResourceTypes
3191
+ meterType?: MeterTypes
3191
3192
  }
3192
3193
 
3193
3194
  type RenderMeterFieldsSettings = {
@@ -3217,10 +3218,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3217
3218
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3218
3219
 
3219
3220
  type MeterTypeRadioGroupProps = {
3220
- resource?: ResourceTypes$1
3221
+ resource?: ResourceTypes
3221
3222
  form: UseFormReturn<any>
3222
3223
  handleChange: (
3223
- meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3224
+ meterType: ElectricityMeterTypes | WaterMeterTypes | null
3224
3225
  ) => void
3225
3226
  disabled?: boolean
3226
3227
  waterOptions?: OptionParams[]
@@ -3232,7 +3233,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3232
3233
  type MeterFeaturesFormProps = {
3233
3234
  formStore?: MultistepForm$1<any>
3234
3235
  handleMeterTypeChange?: (
3235
- meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3236
+ meterType: ElectricityMeterTypes | WaterMeterTypes | null
3236
3237
  ) => void
3237
3238
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3238
3239
 
@@ -3300,7 +3301,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3300
3301
  startDate: undefined;
3301
3302
  }, "">;
3302
3303
 
3303
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3304
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3304
3305
 
3305
3306
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3306
3307
 
@@ -3316,7 +3317,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3316
3317
 
3317
3318
  type TariffReplacementFieldsProps = {
3318
3319
  form: UseFormReturn<TariffCommonFields>
3319
- resource: ResourceTypes$1
3320
+ resource: ResourceTypes
3320
3321
  setReplaceable: (value: boolean) => void
3321
3322
  settings?: any
3322
3323
  }
@@ -3731,7 +3732,7 @@ type UploadPhotosButtonProps = {
3731
3732
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3732
3733
 
3733
3734
  type UploadedImageProps = {
3734
- image: FileStore$1
3735
+ image: FileStore
3735
3736
  index: number
3736
3737
  onClick: (index: number) => void
3737
3738
  onDelete: (index: number) => void
@@ -3764,14 +3765,14 @@ declare type PartialMeterValuesFields = {
3764
3765
  };
3765
3766
  declare type PartialMeterInfoFields = {
3766
3767
  id: number;
3767
- resource: ResourceTypes$1;
3768
- type?: MeterTypes$1;
3768
+ resource: ResourceTypes;
3769
+ type?: MeterTypes;
3769
3770
  number: string;
3770
- images: FileStore$1[];
3771
+ images: FileStore[];
3771
3772
  maxValue?: PartialMeterValuesFields;
3772
3773
  values: PartialMeterValuesFields;
3773
3774
  } & PartialMeterValuesFields;
3774
- declare const getPartialMeterInfoFields: (resource: ResourceTypes$1, type?: MeterTypes$1 | undefined, meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | null | undefined, settings?: any | null, required?: boolean | undefined) => InputParams<any>[];
3775
+ 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>[];
3775
3776
 
3776
3777
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3777
3778
  type: string | undefined;
@@ -3798,4 +3799,4 @@ type SignInPageProps = {
3798
3799
 
3799
3800
  declare const _default: (props: SignInPageProps) => JSX.Element;
3800
3801
 
3801
- 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, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, 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, _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, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, 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, 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, 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 };
3802
+ 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, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, 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, _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, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, 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, 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 };