kui-crm 0.0.570 → 0.0.572

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.
Files changed (3) hide show
  1. package/index.d.ts +195 -195
  2. package/package.json +1 -1
  3. package/types/index.d.ts +140 -140
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 = "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";
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";
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 = "everybody" | "renter" | "owner" | "nobody";
203
+ declare type DocumentVisibilityAPIVariants$1 = "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 | null;
242
+ main_image: ImageModel$1 | 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 | null;
252
+ main_image: ImageModel$1 | 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$1;
266
+ payment_made_by?: ResourcePaymentRoles$1;
267
+ refund_from: ResourcePaymentRoles$1;
268
268
  refund_value?: number | string;
269
- value_type?: UnitOfPaymentTypes;
269
+ value_type?: UnitOfPaymentTypes$1;
270
270
  };
271
- declare type FileBodyRequest = {
271
+ declare type FileBodyRequest$1 = {
272
272
  temp_file_id?: number;
273
273
  name: string;
274
- visibility?: DocumentVisibilityAPIVariants;
274
+ visibility?: DocumentVisibilityAPIVariants$1;
275
275
  url?: string;
276
276
  };
277
- declare type ImageBodyRequest = {
277
+ declare type ImageBodyRequest$1 = {
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$1 = {
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$1 = {
292
292
  id: number;
293
293
  image_name?: string;
294
294
  image_url?: string;
@@ -297,20 +297,20 @@ declare type ImageModel = {
297
297
  image_large_url: string;
298
298
  size: number;
299
299
  };
300
- declare type FileModel = {
300
+ declare type FileModel$1 = {
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$1 = {
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$1;
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$1;
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 | "other";
412
+ declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "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$1;
422
422
  provider_auth_login?: string;
423
423
  provider_auth_password?: string;
424
424
  provider_url?: string;
@@ -433,8 +433,8 @@ declare type ApartmentResourceModel = {
433
433
  declare type ApartmentResourcesResponse = ApartmentResourceModel[];
434
434
 
435
435
  declare type InspectionSignersModel = {
436
- tenant?: number | null;
437
- landlord?: number | null;
436
+ tenant?: ClientLiteModel | null;
437
+ landlord?: ClientLiteModel | null;
438
438
  };
439
439
  declare type InspectionRoomPhotoTypes = "kitchen" | "bathroom" | "room" | "bedroom" | "entrance" | "others" | "toilet" | "combined_bathroom" | "keys" | "additional" | "parking";
440
440
  declare type TransferInspectionTypes = "maroom_tenant" | "tenant_maroom" | "maroom_landlord" | "tenant_landlord";
@@ -443,8 +443,8 @@ declare type InspectionFillingParams = {
443
443
  description?: string;
444
444
  serial_code?: string;
445
445
  amount?: number | string | null;
446
- photos: ImageBodyRequest[];
447
- instruction?: FileBodyRequest | null;
446
+ photos: ImageBodyRequest$1[];
447
+ instruction?: FileBodyRequest$1 | null;
448
448
  was_missing?: boolean;
449
449
  };
450
450
  declare type InspectionMeterValueModel = {
@@ -475,7 +475,7 @@ declare type InspectionRoomPhotoModel = {
475
475
  uploaded: boolean;
476
476
  purpose: InspectionRoomPhotoTypes;
477
477
  comment?: string;
478
- photos: ImageModel[];
478
+ photos: ImageModel$1[];
479
479
  videos: VideoModel[];
480
480
  room_order_number?: number | null;
481
481
  };
@@ -514,11 +514,11 @@ declare type FullInspectionCommonFields = {
514
514
  filling: InspectionFillingModel[];
515
515
  } & ApartmentModel;
516
516
  declare type InspectionMeterCommonInfo = {
517
- resource_type: ResourceTypes;
518
- passport: FileModel | null;
519
- meter_type: MeterTypes;
517
+ resource_type: ResourceTypes$1;
518
+ passport: FileModel$1 | null;
519
+ meter_type: MeterTypes$1;
520
520
  operating_account: string;
521
- photos: ImageModel[];
521
+ photos: ImageModel$1[];
522
522
  } & Omit<MeterCommonInfoModel, "operating_account_number">;
523
523
  declare type TransferInspectionMeterModel = {
524
524
  values: InspectionMeterValueModel;
@@ -526,9 +526,9 @@ declare type TransferInspectionMeterModel = {
526
526
  declare type TransferInspectionFields = {
527
527
  transfer_type: TransferInspectionTypes;
528
528
  meters: TransferInspectionMeterModel[];
529
- inspection_document: DocumentModel | null;
530
- rental_contract_termination_document: DocumentModel | null;
531
- service_contract_termination_document: DocumentModel | null;
529
+ inspection_document: DocumentModel$1 | null;
530
+ rental_contract_termination_document: DocumentModel$1 | null;
531
+ service_contract_termination_document: DocumentModel$1 | null;
532
532
  } & FullInspectionCommonFields;
533
533
  declare type RegularInspectionFields = {
534
534
  meters: TransferInspectionMeterModel[];
@@ -537,7 +537,7 @@ declare type RegularInspectionFields = {
537
537
  declare type ComparableObjectModel = {
538
538
  id: number;
539
539
  advertisement_link: string;
540
- advertisement_screenshot: ImageModel | null;
540
+ advertisement_screenshot: ImageModel$1 | null;
541
541
  object_price: string;
542
542
  key_object_differences: string;
543
543
  };
@@ -545,7 +545,7 @@ declare type StatisticalEvaluationModel = {
545
545
  id: number;
546
546
  source_name: string;
547
547
  link: string;
548
- screenshot: ImageModel | null;
548
+ screenshot: ImageModel$1 | null;
549
549
  min_price: string;
550
550
  max_price: string;
551
551
  };
@@ -588,11 +588,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
588
588
  declare type ImpairmentModel = {
589
589
  id: number;
590
590
  impairment_type: ImpairmentType;
591
- proof_file: DocumentModel | null;
591
+ proof_file: DocumentModel$1 | null;
592
592
  price: number;
593
593
  solution: string;
594
594
  description: string;
595
- photos: ImageModel[];
595
+ photos: ImageModel$1[];
596
596
  item_link: string;
597
597
  bill_line_name: string;
598
598
  };
@@ -603,7 +603,7 @@ declare type InitialInspectionModelFields = {
603
603
  used_resources: UsedResourcesModel;
604
604
  } & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
605
605
  declare type AppraisalRequestModelFields = {
606
- floor_plan: DocumentModel | null;
606
+ floor_plan: DocumentModel$1 | null;
607
607
  };
608
608
  declare type InspectionModel = {
609
609
  initial?: InitialInspectionModelFields;
@@ -637,7 +637,7 @@ declare type InventoryInspectionFields = {
637
637
  allowed_smoking: boolean;
638
638
  additional_terms: string;
639
639
  resources: InspectionResourcesModel[];
640
- inspection_document: DocumentModel | null;
640
+ inspection_document: DocumentModel$1 | null;
641
641
  } & FullInspectionCommonFields;
642
642
  declare type InventoryInspectionModel = {
643
643
  inventory: InventoryInspectionFields;
@@ -683,12 +683,12 @@ declare type InspectionFeedbackInterface = {
683
683
  };
684
684
  declare type PatchInspectionImageParams = {
685
685
  id?: number;
686
- } & Partial<ImageBodyRequest>;
686
+ } & Partial<ImageBodyRequest$1>;
687
687
  declare type PatchInspectionVideoParams = {
688
688
  id?: number;
689
- } & Partial<VideoBodyRequest>;
689
+ } & Partial<VideoBodyRequest$1>;
690
690
  declare type PatchRoomImagesParams = {
691
- type: InspectionRoomPhotoTypes;
691
+ purpose: InspectionRoomPhotoTypes;
692
692
  comment?: string;
693
693
  photos: PatchInspectionImageParams[];
694
694
  videos: PatchInspectionVideoParams[];
@@ -726,8 +726,8 @@ declare type InspectionFillingModel = {
726
726
  description: string;
727
727
  serial_code: string;
728
728
  amount: number;
729
- photos: ImageModel[];
730
- instruction: DocumentModel;
729
+ photos: ImageModel$1[];
730
+ instruction: DocumentModel$1;
731
731
  is_absent: boolean;
732
732
  previously_absent: boolean;
733
733
  model: string;
@@ -809,7 +809,7 @@ declare type CommonMeterParams = {
809
809
  company: CompanyLiteParams;
810
810
  operating_account_number?: string | null;
811
811
  company_is_administrative: boolean;
812
- photos?: ImageModel[];
812
+ photos?: ImageModel$1[];
813
813
  auto_sending: boolean;
814
814
  no_tariff: boolean;
815
815
  is_avg: boolean;
@@ -821,15 +821,15 @@ declare type ElectricityMeterValues = {
821
821
  T3?: MeterTariffModel;
822
822
  };
823
823
  declare type WaterMeterParams = {
824
- type: WaterMeterTypes;
824
+ type: WaterMeterTypes$1;
825
825
  tariff: SingleCounterTariffModel;
826
826
  } & CommonMeterParams & MeterTariffModel;
827
827
  declare type SingleMeterParams = {
828
- type?: WaterMeterTypes;
828
+ type?: WaterMeterTypes$1;
829
829
  tariff: SingleCounterTariffModel;
830
830
  } & CommonMeterParams & MeterTariffModel;
831
831
  declare type ElectricityMeterParams = {
832
- type: ElectricityMeterTypes;
832
+ type: ElectricityMeterTypes$1;
833
833
  values: ElectricityMeterValues;
834
834
  tariff: ElectricityMeterTariffModel;
835
835
  overall_value?: number;
@@ -1071,7 +1071,7 @@ declare type CountryParams = {
1071
1071
  code: string;
1072
1072
  } & CatalogItemParams;
1073
1073
 
1074
- type FileWithVisibility = {
1074
+ type FileWithVisibility$1 = {
1075
1075
  file: File | null
1076
1076
  tenant: boolean
1077
1077
  landlord: boolean
@@ -1079,8 +1079,8 @@ type FileWithVisibility = {
1079
1079
  url: string
1080
1080
  }
1081
1081
 
1082
- type InputFileWithVisibilityFields =
1083
- | FileWithVisibility
1082
+ type InputFileWithVisibilityFields$1 =
1083
+ | FileWithVisibility$1
1084
1084
  | DocumentWithVisibility
1085
1085
  | null
1086
1086
  | undefined
@@ -1110,7 +1110,7 @@ type ChangeReasonFieldsProps<T> = {
1110
1110
  }
1111
1111
 
1112
1112
  type ChangeReasonFormFields = {
1113
- reason: InputFileWithVisibilityFields
1113
+ reason: InputFileWithVisibilityFields$1
1114
1114
  comment?: string
1115
1115
  }
1116
1116
 
@@ -1125,13 +1125,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1125
1125
  settings?: any
1126
1126
  } & InputWithControllerProps<TFormValues>
1127
1127
 
1128
- type CompanyAutocompleteFields = {
1128
+ type CompanyAutocompleteFields$1 = {
1129
1129
  id: number
1130
1130
  name: string
1131
1131
  logo?: string | null
1132
1132
  }
1133
1133
 
1134
- declare class FileStore implements FileStoreInterface {
1134
+ declare class FileStore$1 implements FileStoreInterface {
1135
1135
  id: number | null;
1136
1136
  index?: number | null;
1137
1137
  name: string;
@@ -1162,12 +1162,12 @@ declare class FileStore implements FileStoreInterface {
1162
1162
  setIndex: (index: number) => void;
1163
1163
  get title(): string;
1164
1164
  static createPreviewUrl: (file: File) => Promise<string>;
1165
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1166
- static initFromFileModel: (file: FileModel) => FileStore;
1167
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1168
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1169
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1170
- static initFromFileStore: (file: FileStore) => FileStore;
1165
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1166
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1167
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1168
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1169
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1170
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1171
1171
  }
1172
1172
 
1173
1173
  declare type ImageParams = {
@@ -1202,7 +1202,7 @@ declare class ImageStore implements ImageStoreInterface {
1202
1202
  delete: () => Promise<void>;
1203
1203
  get extension(): string;
1204
1204
  get title(): string;
1205
- static initFromImageModel: (image: ImageModel) => ImageStore;
1205
+ static initFromImageModel: (image: ImageModel$1) => ImageStore;
1206
1206
  static initFromVideoModel: (image: VideoModel) => ImageStore;
1207
1207
  }
1208
1208
 
@@ -1328,7 +1328,7 @@ declare type LockerAutocompleteFields = {
1328
1328
  declare type ApartmentOverviewPaymentInfoFields = {
1329
1329
  payerCode?: string;
1330
1330
  communalServicesAccount?: string;
1331
- company?: CompanyAutocompleteFields | null;
1331
+ company?: CompanyAutocompleteFields$1 | null;
1332
1332
  } & ChangeReasonFormFields;
1333
1333
  declare type ApartmentOverviewInfoFields = {
1334
1334
  locker?: LockerAutocompleteFields | null;
@@ -1351,14 +1351,14 @@ declare type InspectionPaymentInfoParams = {
1351
1351
  } & ApartmentPaymentInfoParams;
1352
1352
  declare type InspectionMeterInfoParams = {
1353
1353
  id: number;
1354
- resource: ResourceTypes;
1355
- type?: MeterTypes;
1354
+ resource: ResourceTypes$1;
1355
+ type?: MeterTypes$1;
1356
1356
  number: string;
1357
1357
  startDate: DateTime | null;
1358
1358
  company: CompanyLiteParams;
1359
1359
  operationalAccountNumber?: string | null;
1360
1360
  tariff: EntityLinkParams | null;
1361
- passportFile: FileStore | null;
1361
+ passportFile: FileStore$1 | null;
1362
1362
  initialValue?: number;
1363
1363
  lastValue?: number;
1364
1364
  initialValueT1?: number;
@@ -1380,8 +1380,8 @@ declare type ValuesParams = {
1380
1380
  };
1381
1381
  declare type PartialMeterInfoParams = {
1382
1382
  id: number;
1383
- type: MeterTypes;
1384
- resource: ResourceTypes;
1383
+ type: MeterTypes$1;
1384
+ resource: ResourceTypes$1;
1385
1385
  number: string;
1386
1386
  values: ValuesParams;
1387
1387
  images?: (ImageStore | UploadImageParams)[];
@@ -1393,7 +1393,7 @@ declare type InspectionPartialMetersInfoParams = {
1393
1393
  declare type ComparableObjectParams = {
1394
1394
  id: number;
1395
1395
  link: string;
1396
- screenshot: FileStore | null;
1396
+ screenshot: FileStore$1 | null;
1397
1397
  price: number;
1398
1398
  differences: string;
1399
1399
  };
@@ -1401,7 +1401,7 @@ declare type StatisticalEvaluationParams = {
1401
1401
  id: number;
1402
1402
  dataSourceName: string;
1403
1403
  link: string;
1404
- screenshot: FileStore | null;
1404
+ screenshot: FileStore$1 | null;
1405
1405
  minPrice: number;
1406
1406
  maxPrice: number;
1407
1407
  };
@@ -1426,8 +1426,8 @@ declare type FillingInfoFormFields = {
1426
1426
  name?: string;
1427
1427
  description?: string;
1428
1428
  type?: ApartmentFillingVariants | null;
1429
- instruction?: InputFileWithVisibilityFields;
1430
- tempImages?: ImageBodyRequest[];
1429
+ instruction?: InputFileWithVisibilityFields$1;
1430
+ tempImages?: ImageBodyRequest$1[];
1431
1431
  };
1432
1432
 
1433
1433
  declare type FillingTagParams = {
@@ -1442,7 +1442,7 @@ declare type FillingParams = {
1442
1442
  images?: (ImageStore | UploadFileParams)[];
1443
1443
  serialNumber?: string;
1444
1444
  numberOfSubjects?: number | string | null;
1445
- instruction?: InputFileWithVisibilityFields | null;
1445
+ instruction?: InputFileWithVisibilityFields$1 | null;
1446
1446
  type?: ApartmentFillingVariants;
1447
1447
  loader?: Loader;
1448
1448
  };
@@ -1454,7 +1454,7 @@ declare type FillingFullParams = {
1454
1454
  images?: (ImageStore | UploadFileParams)[];
1455
1455
  serialNumber?: string;
1456
1456
  numberOfSubjects?: number | string | null;
1457
- instruction?: InputFileWithVisibilityFields | null;
1457
+ instruction?: InputFileWithVisibilityFields$1 | null;
1458
1458
  type?: ApartmentFillingVariants;
1459
1459
  loader?: Loader;
1460
1460
  check?: boolean | null;
@@ -1473,31 +1473,31 @@ declare type TariffGroupLiteParams = {
1473
1473
  name: string;
1474
1474
  };
1475
1475
 
1476
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1477
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
1478
- declare type WaterMeterTypes$1 = "cold" | "hot";
1479
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1480
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1481
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1482
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1483
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1484
- declare type FileBodyRequest$1 = {
1476
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1477
+ declare type UnitOfPaymentTypes = "percent" | "value";
1478
+ declare type WaterMeterTypes = "cold" | "hot";
1479
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1480
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1481
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1482
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1483
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1484
+ declare type FileBodyRequest = {
1485
1485
  temp_file_id?: number;
1486
1486
  name: string;
1487
- visibility?: DocumentVisibilityAPIVariants$1;
1487
+ visibility?: DocumentVisibilityAPIVariants;
1488
1488
  url?: string;
1489
1489
  };
1490
- declare type ImageBodyRequest$1 = {
1490
+ declare type ImageBodyRequest = {
1491
1491
  temp_file_id: number;
1492
1492
  image_name: string;
1493
1493
  url: string;
1494
1494
  };
1495
- declare type VideoBodyRequest$1 = {
1495
+ declare type VideoBodyRequest = {
1496
1496
  temp_file_id: number;
1497
1497
  file_name: string;
1498
1498
  url: string;
1499
1499
  };
1500
- declare type ImageModel$1 = {
1500
+ declare type ImageModel = {
1501
1501
  id: number;
1502
1502
  image_name?: string;
1503
1503
  image_url?: string;
@@ -1506,23 +1506,23 @@ declare type ImageModel$1 = {
1506
1506
  image_large_url: string;
1507
1507
  size: number;
1508
1508
  };
1509
- declare type FileModel$1 = {
1509
+ declare type FileModel = {
1510
1510
  id: number;
1511
1511
  name: string;
1512
1512
  size: number;
1513
1513
  url: string;
1514
1514
  };
1515
- declare type DocumentModel$1 = {
1515
+ declare type DocumentModel = {
1516
1516
  pk: number;
1517
1517
  name: string;
1518
1518
  created?: string;
1519
1519
  attachment: string;
1520
1520
  size: number;
1521
1521
  uploaded_by?: string | null;
1522
- visibility?: DocumentVisibilityAPIVariants$1;
1522
+ visibility?: DocumentVisibilityAPIVariants;
1523
1523
  };
1524
1524
 
1525
- type FileWithVisibility$1 = {
1525
+ type FileWithVisibility = {
1526
1526
  file: File | null
1527
1527
  tenant: boolean
1528
1528
  landlord: boolean
@@ -1530,19 +1530,19 @@ type FileWithVisibility$1 = {
1530
1530
  url: string
1531
1531
  }
1532
1532
 
1533
- type InputFileWithVisibilityFields$1 =
1534
- | FileWithVisibility$1
1533
+ type InputFileWithVisibilityFields =
1534
+ | FileWithVisibility
1535
1535
  | DocumentWithVisibility$1
1536
1536
  | null
1537
1537
  | undefined
1538
1538
 
1539
- type CompanyAutocompleteFields$1 = {
1539
+ type CompanyAutocompleteFields = {
1540
1540
  id: number
1541
1541
  name: string
1542
1542
  logo?: string | null
1543
1543
  }
1544
1544
 
1545
- declare class FileStore$1 implements FileStoreInterface$1 {
1545
+ declare class FileStore implements FileStoreInterface$1 {
1546
1546
  id: number | null;
1547
1547
  index?: number | null;
1548
1548
  name: string;
@@ -1573,21 +1573,21 @@ declare class FileStore$1 implements FileStoreInterface$1 {
1573
1573
  setIndex: (index: number) => void;
1574
1574
  get title(): string;
1575
1575
  static createPreviewUrl: (file: File) => Promise<string>;
1576
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1577
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1578
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1579
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1580
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1581
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1576
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1577
+ static initFromFileModel: (file: FileModel) => FileStore;
1578
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1579
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1580
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1581
+ static initFromFileStore: (file: FileStore) => FileStore;
1582
1582
  }
1583
1583
 
1584
1584
  type PartialPayerFields$1 = {
1585
- payer?: ResourcePaymentRoles$1 | "partial"
1586
- mainPayer?: ResourcePaymentRoles$1
1587
- refundFrom?: ResourcePaymentRoles$1
1588
- partType?: UnitOfPaymentTypes$1 | null
1585
+ payer?: ResourcePaymentRoles | "partial"
1586
+ mainPayer?: ResourcePaymentRoles
1587
+ refundFrom?: ResourcePaymentRoles
1588
+ partType?: UnitOfPaymentTypes | null
1589
1589
  refundValue?: number | string | null
1590
- utilityType: UtilityTypes$1
1590
+ utilityType: UtilityTypes
1591
1591
  }
1592
1592
 
1593
1593
  declare type FilesStoreInterface$1 = {
@@ -1619,13 +1619,13 @@ declare type DocumentWithVisibility$1 = {
1619
1619
  visibility?: DocumentVisibilityVariants$1;
1620
1620
  extension: string;
1621
1621
  };
1622
- declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1622
+ declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1623
1623
  declare type FileStoreParams$1 = {
1624
1624
  id?: number | null;
1625
1625
  url?: string;
1626
1626
  index?: number | string | null;
1627
1627
  createdBy?: string | null;
1628
- visibility?: DocumentVisibilityAPIVariants$1;
1628
+ visibility?: DocumentVisibilityAPIVariants;
1629
1629
  name?: string;
1630
1630
  date?: string | null;
1631
1631
  size?: number | null;
@@ -1653,14 +1653,14 @@ type BasicMeterFeaturesFormFields$1 = {
1653
1653
  initialValueT1?: number
1654
1654
  initialValueT2?: number
1655
1655
  initialValueT3?: number
1656
- type?: MeterTypes$1
1657
- resource?: ResourceTypes$1
1656
+ type?: MeterTypes
1657
+ resource?: ResourceTypes
1658
1658
  withAutoSending?: boolean
1659
1659
  }
1660
1660
 
1661
1661
  type MeterFeaturesFormFields$1 = {
1662
1662
  tariff: TariffGroupAutocompleteFields$1 | null
1663
- company: CompanyAutocompleteFields$1 | null
1663
+ company: CompanyAutocompleteFields | null
1664
1664
  nextCheck: DateTime | null
1665
1665
  lastValue?: number
1666
1666
  lastValueT1?: number
@@ -1684,9 +1684,9 @@ declare type ApartmentMeterValues = {
1684
1684
  } & MeterValues;
1685
1685
  declare type InspectionMeterFields = {
1686
1686
  id?: number;
1687
- resource: ResourceTypes$1;
1688
- passportFile?: InputFileWithVisibilityFields$1;
1689
- images: FileStore$1[];
1687
+ resource: ResourceTypes;
1688
+ passportFile?: InputFileWithVisibilityFields;
1689
+ images: FileStore[];
1690
1690
  } & MeterFeaturesFormFields$1;
1691
1691
 
1692
1692
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1701,7 +1701,7 @@ type PartialPayerProps<T> = {
1701
1701
  title: string
1702
1702
  name: string
1703
1703
  form: UseFormReturn<T>
1704
- utilityType: UtilityTypes
1704
+ utilityType: UtilityTypes$1
1705
1705
  fieldsVariant?: PartialPayerVariants
1706
1706
  settings?: ObjectType
1707
1707
  disabled?: boolean
@@ -1709,12 +1709,12 @@ type PartialPayerProps<T> = {
1709
1709
  }
1710
1710
 
1711
1711
  type PartialPayerFields = {
1712
- payer?: ResourcePaymentRoles | "partial"
1713
- mainPayer?: ResourcePaymentRoles
1714
- refundFrom?: ResourcePaymentRoles
1715
- partType?: UnitOfPaymentTypes | null
1712
+ payer?: ResourcePaymentRoles$1 | "partial"
1713
+ mainPayer?: ResourcePaymentRoles$1
1714
+ refundFrom?: ResourcePaymentRoles$1
1715
+ partType?: UnitOfPaymentTypes$1 | null
1716
1716
  refundValue?: number | string | null
1717
- utilityType: UtilityTypes
1717
+ utilityType: UtilityTypes$1
1718
1718
  }
1719
1719
 
1720
1720
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1798,15 +1798,15 @@ declare type ResourceAccessParams = {
1798
1798
  password?: string;
1799
1799
  description?: string;
1800
1800
  };
1801
- declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1801
+ declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1802
1802
  declare type ApartmentResourceCompanyDetails = {
1803
- company: CompanyAutocompleteFields | null;
1803
+ company: CompanyAutocompleteFields$1 | null;
1804
1804
  operationalAccountNumber: string;
1805
1805
  payerCode: string;
1806
1806
  dataSubmissionDays: DataSubmissionDaysParams;
1807
1807
  access: ResourceAccessParams;
1808
1808
  sampleReceiptLink: string;
1809
- sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1809
+ sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1810
1810
  };
1811
1811
  declare type ApartmentResourceInterface = {
1812
1812
  type: ApartmentResourceTypes;
@@ -1843,15 +1843,15 @@ declare type DocumentsStoreInterface = {
1843
1843
  loader: Loader;
1844
1844
  };
1845
1845
  declare type PostDocumentsResponse = {
1846
- documents: DocumentModel[];
1846
+ documents: DocumentModel$1[];
1847
1847
  };
1848
1848
  declare type DocumentAgentInterface = {
1849
1849
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1850
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1851
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1850
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1851
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1852
1852
  };
1853
1853
  declare type DocumentsAgentInterface = {
1854
- getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1854
+ getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1855
1855
  } & DocumentAgentInterface;
1856
1856
 
1857
1857
  declare type MetroLineParams = {
@@ -1922,7 +1922,7 @@ declare type ApartmentFeatureModel = {
1922
1922
  };
1923
1923
  declare type ApartmentDocumentModel = {
1924
1924
  id: number;
1925
- document: DocumentModel;
1925
+ document: DocumentModel$1;
1926
1926
  expiration_date: string;
1927
1927
  start_date: string;
1928
1928
  number: string;
@@ -1934,7 +1934,7 @@ declare type MeterCommonInfoModel = {
1934
1934
  tariff?: TariffLinkModel;
1935
1935
  activation_date?: string;
1936
1936
  check_date?: string;
1937
- type?: ElectricityMeterTypes | WaterMeterTypes;
1937
+ type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1938
1938
  apartment: ApartmentLinkModel;
1939
1939
  company: CompanyLiteParams;
1940
1940
  operating_account_number?: string | null;
@@ -2055,7 +2055,7 @@ declare type ApartmentModel = {
2055
2055
  owner_id: number;
2056
2056
  metro_stations: ApartmentMetroParams[];
2057
2057
  rental_status: RentalStatuses;
2058
- main_image: ImageModel;
2058
+ main_image: ImageModel$1;
2059
2059
  tv_type: TVTypes | null;
2060
2060
  inspection: ApartmentInspectionModel;
2061
2061
  distance_to_center_kilometers: number | null;
@@ -2082,7 +2082,7 @@ declare type ApartmentLiteModel = {
2082
2082
  renter: LiteUserModel | null;
2083
2083
  rental_status: RentalStatuses;
2084
2084
  renter_payment_status: RentalPaymentStatuses;
2085
- main_image: ImageModel;
2085
+ main_image: ImageModel$1;
2086
2086
  service_contract?: ServiceContractLiteModel;
2087
2087
  is_imported_from_old_crm?: boolean;
2088
2088
  max_electricity_counters?: number | null;
@@ -2128,7 +2128,7 @@ declare type ObjectForMapModel = {
2128
2128
  apartment_number: string;
2129
2129
  address: string;
2130
2130
  geolocation: LatLonParams;
2131
- main_image: ImageModel;
2131
+ main_image: ImageModel$1;
2132
2132
  renter: ClientLiteModel | null;
2133
2133
  owner: ClientLiteModel;
2134
2134
  metro_stations: ApartmentMetroStationModel[];
@@ -2160,13 +2160,13 @@ declare class DocumentStore implements FileStoreInterface {
2160
2160
  agent: DocumentAgentInterface;
2161
2161
  loader: Loader;
2162
2162
  settings?: any;
2163
- constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2163
+ constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2164
2164
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2165
- updateDocument: (res: DocumentModel) => void;
2165
+ updateDocument: (res: DocumentModel$1) => void;
2166
2166
  deleteDocument: (...params: any) => Promise<void>;
2167
2167
  get extension(): string;
2168
2168
  get title(): string;
2169
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2169
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2170
2170
  }
2171
2171
 
2172
2172
  type InputTypes =
@@ -2226,13 +2226,13 @@ declare type FileParams = {
2226
2226
  size?: number | null;
2227
2227
  file: File;
2228
2228
  };
2229
- declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2229
+ declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2230
2230
  declare type FileStoreParams = {
2231
2231
  id?: number | null;
2232
2232
  url?: string;
2233
2233
  index?: number | string | null;
2234
2234
  createdBy?: string | null;
2235
- visibility?: DocumentVisibilityAPIVariants;
2235
+ visibility?: DocumentVisibilityAPIVariants$1;
2236
2236
  name?: string;
2237
2237
  date?: string | null;
2238
2238
  size?: number | null;
@@ -2383,8 +2383,8 @@ declare const FillingTagsAgent: {
2383
2383
  };
2384
2384
 
2385
2385
  declare const TariffsAgent: {
2386
- all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2387
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2386
+ all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2387
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2388
2388
  };
2389
2389
 
2390
2390
  type SignInFormFields = {
@@ -2403,8 +2403,8 @@ declare const ApartmentsAgent: {
2403
2403
  };
2404
2404
 
2405
2405
  declare const ApartmentMetersAgent: {
2406
- getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2407
- getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2406
+ getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2407
+ getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2408
2408
  };
2409
2409
 
2410
2410
  declare const requests: {
@@ -2428,7 +2428,7 @@ declare const meterUnitLabel: {
2428
2428
  electricity: string;
2429
2429
  };
2430
2430
 
2431
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2431
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2432
2432
 
2433
2433
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2434
2434
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2444,34 +2444,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2444
2444
  }, "">;
2445
2445
 
2446
2446
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2447
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2447
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2448
2448
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2449
- declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2449
+ declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2450
2450
  temp_file_id: number;
2451
2451
  name: string;
2452
- visibility: DocumentVisibilityAPIVariants;
2452
+ visibility: DocumentVisibilityAPIVariants$1;
2453
2453
  url: string;
2454
2454
  } | null;
2455
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2456
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2457
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2455
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2456
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2457
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2458
2458
  name: string;
2459
- visibility: DocumentVisibilityAPIVariants;
2459
+ visibility: DocumentVisibilityAPIVariants$1;
2460
2460
  } | null;
2461
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2461
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2462
2462
  name: string;
2463
- visibility: DocumentVisibilityAPIVariants;
2463
+ visibility: DocumentVisibilityAPIVariants$1;
2464
2464
  } | null>;
2465
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2466
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2467
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2468
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2469
- declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2470
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2471
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2472
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2473
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2474
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2465
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2466
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2467
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2468
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2469
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2470
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2471
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2472
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2473
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2474
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2475
2475
 
2476
2476
  declare const matchesAPISubjectRoles: {
2477
2477
  maroom: string;
@@ -2564,16 +2564,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2564
2564
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2565
2565
 
2566
2566
  declare class FilesStore {
2567
- files: FileStore[];
2567
+ files: FileStore$1[];
2568
2568
  variant: FileVariant;
2569
2569
  constructor(variant: FileVariant);
2570
- addFile: (newFile: FileStore) => void;
2570
+ addFile: (newFile: FileStore$1) => void;
2571
2571
  removeFile: (index: number) => void;
2572
- setFiles: (files: FileStore[]) => void;
2572
+ setFiles: (files: FileStore$1[]) => void;
2573
2573
  uploadFiles: () => Promise<void>;
2574
- get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2574
+ get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2575
2575
  get uploadedAllFiles(): boolean;
2576
- get notUploadedFiles(): FileStore[];
2576
+ get notUploadedFiles(): FileStore$1[];
2577
2577
  get isUploading(): boolean;
2578
2578
  get videoLength(): number;
2579
2579
  get nonVideoLength(): number;
@@ -2595,7 +2595,7 @@ declare type UploadMediaToStoreSettings = {
2595
2595
  messages?: UploadMediaMessages;
2596
2596
  withoutFilesStore?: boolean;
2597
2597
  };
2598
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2598
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2599
2599
 
2600
2600
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2601
2601
  onSearchItem: (value: string) => void;
@@ -2767,11 +2767,11 @@ type DistrictAutocompleteFields = {
2767
2767
  type ReplaceableTariffFields = {
2768
2768
  name: string
2769
2769
  id?: number
2770
- type?: ResourceTypes
2770
+ type?: ResourceTypes$1
2771
2771
  }
2772
2772
 
2773
2773
  type TariffCommonFields = {
2774
- resourceType: ResourceTypes
2774
+ resourceType: ResourceTypes$1
2775
2775
  name: string
2776
2776
  startDate: DateTime
2777
2777
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2783,7 +2783,7 @@ type TariffCommonFields = {
2783
2783
  }
2784
2784
 
2785
2785
  type ElectricityTariffCreationFormFields = {
2786
- type: ElectricityMeterTypes
2786
+ type: ElectricityMeterTypes$1
2787
2787
  isOverallConsumption: boolean
2788
2788
  T1?: number
2789
2789
  T2?: number
@@ -2804,7 +2804,7 @@ type TariffCreationFormProps = {
2804
2804
  handleClose: () => void
2805
2805
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2806
2806
  creationForm: MultistepForm$1<TariffCreationFormFields>
2807
- defaultResource: ResourceTypes
2807
+ defaultResource: ResourceTypes$1
2808
2808
  settings?: any
2809
2809
  }
2810
2810
 
@@ -2849,7 +2849,7 @@ declare class TariffsLiteStore {
2849
2849
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2850
2850
  settings?: any;
2851
2851
  constructor(settings?: any);
2852
- fetchAll: (resource: ResourceTypes) => Promise<void>;
2852
+ fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2853
2853
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2854
2854
  static getTariffParams: (tariff: CommonTariffModel) => {
2855
2855
  id: number;
@@ -2857,7 +2857,7 @@ declare class TariffsLiteStore {
2857
2857
  };
2858
2858
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2859
2859
  static getTariffValues: (data: TariffCreationFormFields) => {
2860
- type: ElectricityMeterTypes;
2860
+ type: ElectricityMeterTypes$1;
2861
2861
  T1: string | undefined;
2862
2862
  T2: string | undefined;
2863
2863
  T3: string | undefined;
@@ -3150,7 +3150,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3150
3150
  name?: string
3151
3151
  label?: string
3152
3152
  hideName?: string
3153
- resource: ResourceTypes
3153
+ resource: ResourceTypes$1
3154
3154
  filter?: string
3155
3155
  filterRequired?: boolean
3156
3156
  settings?: any
@@ -3163,7 +3163,7 @@ type TariffGroupAutocompleteFields = {
3163
3163
  }
3164
3164
 
3165
3165
  type MeterFeaturesFieldsProps = {
3166
- resource?: ResourceTypes
3166
+ resource?: ResourceTypes$1
3167
3167
  replacements?: LiteMeterInterface[]
3168
3168
  isNewResource?: boolean
3169
3169
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3177,7 +3177,7 @@ type MeterFeaturesFieldsProps = {
3177
3177
  withNextCheck?: boolean
3178
3178
  defaultValues?: Partial<MeterFeaturesFormFields>
3179
3179
  handleMeterTypeChange?: (
3180
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3180
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3181
3181
  ) => void
3182
3182
  settings?: any
3183
3183
  disabledInitial?: boolean
@@ -3190,14 +3190,14 @@ type BasicMeterFeaturesFormFields = {
3190
3190
  initialValueT1?: number
3191
3191
  initialValueT2?: number
3192
3192
  initialValueT3?: number
3193
- type?: MeterTypes
3194
- resource?: ResourceTypes
3193
+ type?: MeterTypes$1
3194
+ resource?: ResourceTypes$1
3195
3195
  withAutoSending?: boolean
3196
3196
  }
3197
3197
 
3198
3198
  type MeterFeaturesFormFields = {
3199
3199
  tariff: TariffGroupAutocompleteFields | null
3200
- company: CompanyAutocompleteFields | null
3200
+ company: CompanyAutocompleteFields$1 | null
3201
3201
  nextCheck: DateTime | null
3202
3202
  lastValue?: number
3203
3203
  lastValueT1?: number
@@ -3211,8 +3211,8 @@ type MeterFeaturesFormFields = {
3211
3211
  } & BasicMeterFeaturesFormFields
3212
3212
 
3213
3213
  type BasicMeterFieldsSettings = {
3214
- resource?: ResourceTypes
3215
- meterType?: MeterTypes
3214
+ resource?: ResourceTypes$1
3215
+ meterType?: MeterTypes$1
3216
3216
  disabledInitial?: boolean
3217
3217
  }
3218
3218
 
@@ -3244,10 +3244,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3244
3244
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3245
3245
 
3246
3246
  type MeterTypeRadioGroupProps = {
3247
- resource?: ResourceTypes
3247
+ resource?: ResourceTypes$1
3248
3248
  form: UseFormReturn<any>
3249
3249
  handleChange: (
3250
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3250
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3251
3251
  ) => void
3252
3252
  disabled?: boolean
3253
3253
  waterOptions?: OptionParams[]
@@ -3259,7 +3259,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3259
3259
  type MeterFeaturesFormProps = {
3260
3260
  formStore?: MultistepForm$1<any>
3261
3261
  handleMeterTypeChange?: (
3262
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3262
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3263
3263
  ) => void
3264
3264
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3265
3265
 
@@ -3327,7 +3327,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3327
3327
  startDate: undefined;
3328
3328
  }, "">;
3329
3329
 
3330
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3330
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3331
3331
 
3332
3332
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3333
3333
 
@@ -3343,7 +3343,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3343
3343
 
3344
3344
  type TariffReplacementFieldsProps = {
3345
3345
  form: UseFormReturn<TariffCommonFields>
3346
- resource: ResourceTypes
3346
+ resource: ResourceTypes$1
3347
3347
  setReplaceable: (value: boolean) => void
3348
3348
  settings?: any
3349
3349
  }
@@ -3759,7 +3759,7 @@ type UploadPhotosButtonProps = {
3759
3759
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3760
3760
 
3761
3761
  type UploadedImageProps = {
3762
- image: FileStore
3762
+ image: FileStore$1
3763
3763
  index: number
3764
3764
  onClick: (index: number) => void
3765
3765
  onDelete: (index: number) => void
@@ -3792,14 +3792,14 @@ declare type PartialMeterValuesFields = {
3792
3792
  };
3793
3793
  declare type PartialMeterInfoFields = {
3794
3794
  id: number;
3795
- resource: ResourceTypes;
3796
- type?: MeterTypes;
3795
+ resource: ResourceTypes$1;
3796
+ type?: MeterTypes$1;
3797
3797
  number: string;
3798
- images: FileStore[];
3798
+ images: FileStore$1[];
3799
3799
  maxValue?: PartialMeterValuesFields;
3800
3800
  values: PartialMeterValuesFields;
3801
3801
  } & PartialMeterValuesFields;
3802
- 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>[];
3802
+ 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>[];
3803
3803
 
3804
3804
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3805
3805
  type: string | undefined;
@@ -3826,4 +3826,4 @@ type SignInPageProps = {
3826
3826
 
3827
3827
  declare const _default: (props: SignInPageProps) => JSX.Element;
3828
3828
 
3829
- 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, 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, _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, 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 };
3829
+ 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, 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, _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, 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 };