kui-crm 0.0.568 → 0.0.569

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 +189 -188
  2. package/package.json +1 -1
  3. package/types/index.d.ts +134 -133
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;
@@ -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;
@@ -534,7 +534,7 @@ declare type RegularInspectionFields = {
534
534
  declare type ComparableObjectModel = {
535
535
  id: number;
536
536
  advertisement_link: string;
537
- advertisement_screenshot: ImageModel | null;
537
+ advertisement_screenshot: ImageModel$1 | null;
538
538
  object_price: string;
539
539
  key_object_differences: string;
540
540
  };
@@ -542,7 +542,7 @@ declare type StatisticalEvaluationModel = {
542
542
  id: number;
543
543
  source_name: string;
544
544
  link: string;
545
- screenshot: ImageModel | null;
545
+ screenshot: ImageModel$1 | null;
546
546
  min_price: string;
547
547
  max_price: string;
548
548
  };
@@ -585,11 +585,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
585
585
  declare type ImpairmentModel = {
586
586
  id: number;
587
587
  impairment_type: ImpairmentType;
588
- proof_file: DocumentModel | null;
588
+ proof_file: DocumentModel$1 | null;
589
589
  price: number;
590
590
  solution: string;
591
591
  description: string;
592
- photos: ImageModel[];
592
+ photos: ImageModel$1[];
593
593
  item_link: string;
594
594
  };
595
595
  declare type MetroStationsFields = {
@@ -599,7 +599,7 @@ declare type InitialInspectionModelFields = {
599
599
  used_resources: UsedResourcesModel;
600
600
  } & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
601
601
  declare type AppraisalRequestModelFields = {
602
- floor_plan: DocumentModel | null;
602
+ floor_plan: DocumentModel$1 | null;
603
603
  };
604
604
  declare type InspectionModel = {
605
605
  initial?: InitialInspectionModelFields;
@@ -607,6 +607,7 @@ declare type InspectionModel = {
607
607
  transfer?: TransferInspectionFields;
608
608
  regular?: RegularInspectionFields;
609
609
  appraisal?: AppraisalInspectionFields;
610
+ pre_initial_appraisal?: AppraisalInspectionFields;
610
611
  impairments?: ImpairmentModel[];
611
612
  appraisal_request?: AppraisalRequestModelFields;
612
613
  } & InspectionCommonFields;
@@ -676,10 +677,10 @@ declare type InspectionFeedbackInterface = {
676
677
  };
677
678
  declare type PatchInspectionImageParams = {
678
679
  id?: number;
679
- } & Partial<ImageBodyRequest>;
680
+ } & Partial<ImageBodyRequest$1>;
680
681
  declare type PatchInspectionVideoParams = {
681
682
  id?: number;
682
- } & Partial<VideoBodyRequest>;
683
+ } & Partial<VideoBodyRequest$1>;
683
684
  declare type PatchRoomImagesParams = {
684
685
  type: InspectionRoomPhotoTypes;
685
686
  comment?: string;
@@ -719,8 +720,8 @@ declare type InspectionFillingModel = {
719
720
  description: string;
720
721
  serial_code: string;
721
722
  amount: number;
722
- photos: ImageModel[];
723
- instruction: DocumentModel;
723
+ photos: ImageModel$1[];
724
+ instruction: DocumentModel$1;
724
725
  is_absent: boolean;
725
726
  previously_absent: boolean;
726
727
  model: string;
@@ -802,7 +803,7 @@ declare type CommonMeterParams = {
802
803
  company: CompanyLiteParams;
803
804
  operating_account_number?: string | null;
804
805
  company_is_administrative: boolean;
805
- photos?: ImageModel[];
806
+ photos?: ImageModel$1[];
806
807
  auto_sending: boolean;
807
808
  no_tariff: boolean;
808
809
  is_avg: boolean;
@@ -814,15 +815,15 @@ declare type ElectricityMeterValues = {
814
815
  T3?: MeterTariffModel;
815
816
  };
816
817
  declare type WaterMeterParams = {
817
- type: WaterMeterTypes;
818
+ type: WaterMeterTypes$1;
818
819
  tariff: SingleCounterTariffModel;
819
820
  } & CommonMeterParams & MeterTariffModel;
820
821
  declare type SingleMeterParams = {
821
- type?: WaterMeterTypes;
822
+ type?: WaterMeterTypes$1;
822
823
  tariff: SingleCounterTariffModel;
823
824
  } & CommonMeterParams & MeterTariffModel;
824
825
  declare type ElectricityMeterParams = {
825
- type: ElectricityMeterTypes;
826
+ type: ElectricityMeterTypes$1;
826
827
  values: ElectricityMeterValues;
827
828
  tariff: ElectricityMeterTariffModel;
828
829
  overall_value?: number;
@@ -1064,7 +1065,7 @@ declare type CountryParams = {
1064
1065
  code: string;
1065
1066
  } & CatalogItemParams;
1066
1067
 
1067
- type FileWithVisibility = {
1068
+ type FileWithVisibility$1 = {
1068
1069
  file: File | null
1069
1070
  tenant: boolean
1070
1071
  landlord: boolean
@@ -1072,8 +1073,8 @@ type FileWithVisibility = {
1072
1073
  url: string
1073
1074
  }
1074
1075
 
1075
- type InputFileWithVisibilityFields =
1076
- | FileWithVisibility
1076
+ type InputFileWithVisibilityFields$1 =
1077
+ | FileWithVisibility$1
1077
1078
  | DocumentWithVisibility
1078
1079
  | null
1079
1080
  | undefined
@@ -1103,7 +1104,7 @@ type ChangeReasonFieldsProps<T> = {
1103
1104
  }
1104
1105
 
1105
1106
  type ChangeReasonFormFields = {
1106
- reason: InputFileWithVisibilityFields
1107
+ reason: InputFileWithVisibilityFields$1
1107
1108
  comment?: string
1108
1109
  }
1109
1110
 
@@ -1118,13 +1119,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1118
1119
  settings?: any
1119
1120
  } & InputWithControllerProps<TFormValues>
1120
1121
 
1121
- type CompanyAutocompleteFields = {
1122
+ type CompanyAutocompleteFields$1 = {
1122
1123
  id: number
1123
1124
  name: string
1124
1125
  logo?: string | null
1125
1126
  }
1126
1127
 
1127
- declare class FileStore implements FileStoreInterface {
1128
+ declare class FileStore$1 implements FileStoreInterface {
1128
1129
  id: number | null;
1129
1130
  index?: number | null;
1130
1131
  name: string;
@@ -1155,12 +1156,12 @@ declare class FileStore implements FileStoreInterface {
1155
1156
  setIndex: (index: number) => void;
1156
1157
  get title(): string;
1157
1158
  static createPreviewUrl: (file: File) => Promise<string>;
1158
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1159
- static initFromFileModel: (file: FileModel) => FileStore;
1160
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1161
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1162
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1163
- static initFromFileStore: (file: FileStore) => FileStore;
1159
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1160
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1161
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1162
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1163
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1164
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1164
1165
  }
1165
1166
 
1166
1167
  declare type ImageParams = {
@@ -1195,7 +1196,7 @@ declare class ImageStore implements ImageStoreInterface {
1195
1196
  delete: () => Promise<void>;
1196
1197
  get extension(): string;
1197
1198
  get title(): string;
1198
- static initFromImageModel: (image: ImageModel) => ImageStore;
1199
+ static initFromImageModel: (image: ImageModel$1) => ImageStore;
1199
1200
  static initFromVideoModel: (image: VideoModel) => ImageStore;
1200
1201
  }
1201
1202
 
@@ -1321,7 +1322,7 @@ declare type LockerAutocompleteFields = {
1321
1322
  declare type ApartmentOverviewPaymentInfoFields = {
1322
1323
  payerCode?: string;
1323
1324
  communalServicesAccount?: string;
1324
- company?: CompanyAutocompleteFields | null;
1325
+ company?: CompanyAutocompleteFields$1 | null;
1325
1326
  } & ChangeReasonFormFields;
1326
1327
  declare type ApartmentOverviewInfoFields = {
1327
1328
  locker?: LockerAutocompleteFields | null;
@@ -1344,14 +1345,14 @@ declare type InspectionPaymentInfoParams = {
1344
1345
  } & ApartmentPaymentInfoParams;
1345
1346
  declare type InspectionMeterInfoParams = {
1346
1347
  id: number;
1347
- resource: ResourceTypes;
1348
- type?: MeterTypes;
1348
+ resource: ResourceTypes$1;
1349
+ type?: MeterTypes$1;
1349
1350
  number: string;
1350
1351
  startDate: DateTime | null;
1351
1352
  company: CompanyLiteParams;
1352
1353
  operationalAccountNumber?: string | null;
1353
1354
  tariff: EntityLinkParams | null;
1354
- passportFile: FileStore | null;
1355
+ passportFile: FileStore$1 | null;
1355
1356
  initialValue?: number;
1356
1357
  lastValue?: number;
1357
1358
  initialValueT1?: number;
@@ -1373,8 +1374,8 @@ declare type ValuesParams = {
1373
1374
  };
1374
1375
  declare type PartialMeterInfoParams = {
1375
1376
  id: number;
1376
- type: MeterTypes;
1377
- resource: ResourceTypes;
1377
+ type: MeterTypes$1;
1378
+ resource: ResourceTypes$1;
1378
1379
  number: string;
1379
1380
  values: ValuesParams;
1380
1381
  images?: (ImageStore | UploadImageParams)[];
@@ -1386,7 +1387,7 @@ declare type InspectionPartialMetersInfoParams = {
1386
1387
  declare type ComparableObjectParams = {
1387
1388
  id: number;
1388
1389
  link: string;
1389
- screenshot: FileStore | null;
1390
+ screenshot: FileStore$1 | null;
1390
1391
  price: number;
1391
1392
  differences: string;
1392
1393
  };
@@ -1394,7 +1395,7 @@ declare type StatisticalEvaluationParams = {
1394
1395
  id: number;
1395
1396
  dataSourceName: string;
1396
1397
  link: string;
1397
- screenshot: FileStore | null;
1398
+ screenshot: FileStore$1 | null;
1398
1399
  minPrice: number;
1399
1400
  maxPrice: number;
1400
1401
  };
@@ -1419,8 +1420,8 @@ declare type FillingInfoFormFields = {
1419
1420
  name?: string;
1420
1421
  description?: string;
1421
1422
  type?: ApartmentFillingVariants | null;
1422
- instruction?: InputFileWithVisibilityFields;
1423
- tempImages?: ImageBodyRequest[];
1423
+ instruction?: InputFileWithVisibilityFields$1;
1424
+ tempImages?: ImageBodyRequest$1[];
1424
1425
  };
1425
1426
 
1426
1427
  declare type FillingTagParams = {
@@ -1435,7 +1436,7 @@ declare type FillingParams = {
1435
1436
  images?: (ImageStore | UploadFileParams)[];
1436
1437
  serialNumber?: string;
1437
1438
  numberOfSubjects?: number | string | null;
1438
- instruction?: InputFileWithVisibilityFields | null;
1439
+ instruction?: InputFileWithVisibilityFields$1 | null;
1439
1440
  type?: ApartmentFillingVariants;
1440
1441
  loader?: Loader;
1441
1442
  };
@@ -1447,7 +1448,7 @@ declare type FillingFullParams = {
1447
1448
  images?: (ImageStore | UploadFileParams)[];
1448
1449
  serialNumber?: string;
1449
1450
  numberOfSubjects?: number | string | null;
1450
- instruction?: InputFileWithVisibilityFields | null;
1451
+ instruction?: InputFileWithVisibilityFields$1 | null;
1451
1452
  type?: ApartmentFillingVariants;
1452
1453
  loader?: Loader;
1453
1454
  check?: boolean | null;
@@ -1466,31 +1467,31 @@ declare type TariffGroupLiteParams = {
1466
1467
  name: string;
1467
1468
  };
1468
1469
 
1469
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1470
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
1471
- declare type WaterMeterTypes$1 = "cold" | "hot";
1472
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1473
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1474
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1475
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1476
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1477
- declare type FileBodyRequest$1 = {
1470
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1471
+ declare type UnitOfPaymentTypes = "percent" | "value";
1472
+ declare type WaterMeterTypes = "cold" | "hot";
1473
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1474
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1475
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1476
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1477
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1478
+ declare type FileBodyRequest = {
1478
1479
  temp_file_id?: number;
1479
1480
  name: string;
1480
- visibility?: DocumentVisibilityAPIVariants$1;
1481
+ visibility?: DocumentVisibilityAPIVariants;
1481
1482
  url?: string;
1482
1483
  };
1483
- declare type ImageBodyRequest$1 = {
1484
+ declare type ImageBodyRequest = {
1484
1485
  temp_file_id: number;
1485
1486
  image_name: string;
1486
1487
  url: string;
1487
1488
  };
1488
- declare type VideoBodyRequest$1 = {
1489
+ declare type VideoBodyRequest = {
1489
1490
  temp_file_id: number;
1490
1491
  file_name: string;
1491
1492
  url: string;
1492
1493
  };
1493
- declare type ImageModel$1 = {
1494
+ declare type ImageModel = {
1494
1495
  id: number;
1495
1496
  image_name?: string;
1496
1497
  image_url?: string;
@@ -1499,23 +1500,23 @@ declare type ImageModel$1 = {
1499
1500
  image_large_url: string;
1500
1501
  size: number;
1501
1502
  };
1502
- declare type FileModel$1 = {
1503
+ declare type FileModel = {
1503
1504
  id: number;
1504
1505
  name: string;
1505
1506
  size: number;
1506
1507
  url: string;
1507
1508
  };
1508
- declare type DocumentModel$1 = {
1509
+ declare type DocumentModel = {
1509
1510
  pk: number;
1510
1511
  name: string;
1511
1512
  created?: string;
1512
1513
  attachment: string;
1513
1514
  size: number;
1514
1515
  uploaded_by?: string | null;
1515
- visibility?: DocumentVisibilityAPIVariants$1;
1516
+ visibility?: DocumentVisibilityAPIVariants;
1516
1517
  };
1517
1518
 
1518
- type FileWithVisibility$1 = {
1519
+ type FileWithVisibility = {
1519
1520
  file: File | null
1520
1521
  tenant: boolean
1521
1522
  landlord: boolean
@@ -1523,19 +1524,19 @@ type FileWithVisibility$1 = {
1523
1524
  url: string
1524
1525
  }
1525
1526
 
1526
- type InputFileWithVisibilityFields$1 =
1527
- | FileWithVisibility$1
1527
+ type InputFileWithVisibilityFields =
1528
+ | FileWithVisibility
1528
1529
  | DocumentWithVisibility$1
1529
1530
  | null
1530
1531
  | undefined
1531
1532
 
1532
- type CompanyAutocompleteFields$1 = {
1533
+ type CompanyAutocompleteFields = {
1533
1534
  id: number
1534
1535
  name: string
1535
1536
  logo?: string | null
1536
1537
  }
1537
1538
 
1538
- declare class FileStore$1 implements FileStoreInterface$1 {
1539
+ declare class FileStore implements FileStoreInterface$1 {
1539
1540
  id: number | null;
1540
1541
  index?: number | null;
1541
1542
  name: string;
@@ -1566,21 +1567,21 @@ declare class FileStore$1 implements FileStoreInterface$1 {
1566
1567
  setIndex: (index: number) => void;
1567
1568
  get title(): string;
1568
1569
  static createPreviewUrl: (file: File) => Promise<string>;
1569
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1570
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1571
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1572
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1573
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1574
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1570
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1571
+ static initFromFileModel: (file: FileModel) => FileStore;
1572
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1573
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1574
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1575
+ static initFromFileStore: (file: FileStore) => FileStore;
1575
1576
  }
1576
1577
 
1577
1578
  type PartialPayerFields$1 = {
1578
- payer?: ResourcePaymentRoles$1 | "partial"
1579
- mainPayer?: ResourcePaymentRoles$1
1580
- refundFrom?: ResourcePaymentRoles$1
1581
- partType?: UnitOfPaymentTypes$1 | null
1579
+ payer?: ResourcePaymentRoles | "partial"
1580
+ mainPayer?: ResourcePaymentRoles
1581
+ refundFrom?: ResourcePaymentRoles
1582
+ partType?: UnitOfPaymentTypes | null
1582
1583
  refundValue?: number | string | null
1583
- utilityType: UtilityTypes$1
1584
+ utilityType: UtilityTypes
1584
1585
  }
1585
1586
 
1586
1587
  declare type FilesStoreInterface$1 = {
@@ -1612,13 +1613,13 @@ declare type DocumentWithVisibility$1 = {
1612
1613
  visibility?: DocumentVisibilityVariants$1;
1613
1614
  extension: string;
1614
1615
  };
1615
- declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1616
+ declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1616
1617
  declare type FileStoreParams$1 = {
1617
1618
  id?: number | null;
1618
1619
  url?: string;
1619
1620
  index?: number | string | null;
1620
1621
  createdBy?: string | null;
1621
- visibility?: DocumentVisibilityAPIVariants$1;
1622
+ visibility?: DocumentVisibilityAPIVariants;
1622
1623
  name?: string;
1623
1624
  date?: string | null;
1624
1625
  size?: number | null;
@@ -1646,14 +1647,14 @@ type BasicMeterFeaturesFormFields$1 = {
1646
1647
  initialValueT1?: number
1647
1648
  initialValueT2?: number
1648
1649
  initialValueT3?: number
1649
- type?: MeterTypes$1
1650
- resource?: ResourceTypes$1
1650
+ type?: MeterTypes
1651
+ resource?: ResourceTypes
1651
1652
  withAutoSending?: boolean
1652
1653
  }
1653
1654
 
1654
1655
  type MeterFeaturesFormFields$1 = {
1655
1656
  tariff: TariffGroupAutocompleteFields$1 | null
1656
- company: CompanyAutocompleteFields$1 | null
1657
+ company: CompanyAutocompleteFields | null
1657
1658
  nextCheck: DateTime | null
1658
1659
  lastValue?: number
1659
1660
  lastValueT1?: number
@@ -1677,9 +1678,9 @@ declare type ApartmentMeterValues = {
1677
1678
  } & MeterValues;
1678
1679
  declare type InspectionMeterFields = {
1679
1680
  id?: number;
1680
- resource: ResourceTypes$1;
1681
- passportFile?: InputFileWithVisibilityFields$1;
1682
- images: FileStore$1[];
1681
+ resource: ResourceTypes;
1682
+ passportFile?: InputFileWithVisibilityFields;
1683
+ images: FileStore[];
1683
1684
  } & MeterFeaturesFormFields$1;
1684
1685
 
1685
1686
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1694,7 +1695,7 @@ type PartialPayerProps<T> = {
1694
1695
  title: string
1695
1696
  name: string
1696
1697
  form: UseFormReturn<T>
1697
- utilityType: UtilityTypes
1698
+ utilityType: UtilityTypes$1
1698
1699
  fieldsVariant?: PartialPayerVariants
1699
1700
  settings?: ObjectType
1700
1701
  disabled?: boolean
@@ -1702,12 +1703,12 @@ type PartialPayerProps<T> = {
1702
1703
  }
1703
1704
 
1704
1705
  type PartialPayerFields = {
1705
- payer?: ResourcePaymentRoles | "partial"
1706
- mainPayer?: ResourcePaymentRoles
1707
- refundFrom?: ResourcePaymentRoles
1708
- partType?: UnitOfPaymentTypes | null
1706
+ payer?: ResourcePaymentRoles$1 | "partial"
1707
+ mainPayer?: ResourcePaymentRoles$1
1708
+ refundFrom?: ResourcePaymentRoles$1
1709
+ partType?: UnitOfPaymentTypes$1 | null
1709
1710
  refundValue?: number | string | null
1710
- utilityType: UtilityTypes
1711
+ utilityType: UtilityTypes$1
1711
1712
  }
1712
1713
 
1713
1714
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1791,15 +1792,15 @@ declare type ResourceAccessParams = {
1791
1792
  password?: string;
1792
1793
  description?: string;
1793
1794
  };
1794
- declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1795
+ declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1795
1796
  declare type ApartmentResourceCompanyDetails = {
1796
- company: CompanyAutocompleteFields | null;
1797
+ company: CompanyAutocompleteFields$1 | null;
1797
1798
  operationalAccountNumber: string;
1798
1799
  payerCode: string;
1799
1800
  dataSubmissionDays: DataSubmissionDaysParams;
1800
1801
  access: ResourceAccessParams;
1801
1802
  sampleReceiptLink: string;
1802
- sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1803
+ sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1803
1804
  };
1804
1805
  declare type ApartmentResourceInterface = {
1805
1806
  type: ApartmentResourceTypes;
@@ -1836,15 +1837,15 @@ declare type DocumentsStoreInterface = {
1836
1837
  loader: Loader;
1837
1838
  };
1838
1839
  declare type PostDocumentsResponse = {
1839
- documents: DocumentModel[];
1840
+ documents: DocumentModel$1[];
1840
1841
  };
1841
1842
  declare type DocumentAgentInterface = {
1842
1843
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1843
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1844
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1844
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1845
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1845
1846
  };
1846
1847
  declare type DocumentsAgentInterface = {
1847
- getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1848
+ getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1848
1849
  } & DocumentAgentInterface;
1849
1850
 
1850
1851
  declare type MetroLineParams = {
@@ -1915,7 +1916,7 @@ declare type ApartmentFeatureModel = {
1915
1916
  };
1916
1917
  declare type ApartmentDocumentModel = {
1917
1918
  id: number;
1918
- document: DocumentModel;
1919
+ document: DocumentModel$1;
1919
1920
  expiration_date: string;
1920
1921
  start_date: string;
1921
1922
  number: string;
@@ -1927,7 +1928,7 @@ declare type MeterCommonInfoModel = {
1927
1928
  tariff?: TariffLinkModel;
1928
1929
  activation_date?: string;
1929
1930
  check_date?: string;
1930
- type?: ElectricityMeterTypes | WaterMeterTypes;
1931
+ type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1931
1932
  apartment: ApartmentLinkModel;
1932
1933
  company: CompanyLiteParams;
1933
1934
  operating_account_number?: string | null;
@@ -2048,7 +2049,7 @@ declare type ApartmentModel = {
2048
2049
  owner_id: number;
2049
2050
  metro_stations: ApartmentMetroParams[];
2050
2051
  rental_status: RentalStatuses;
2051
- main_image: ImageModel;
2052
+ main_image: ImageModel$1;
2052
2053
  tv_type: TVTypes | null;
2053
2054
  inspection: ApartmentInspectionModel;
2054
2055
  distance_to_center_kilometers: number | null;
@@ -2075,7 +2076,7 @@ declare type ApartmentLiteModel = {
2075
2076
  renter: LiteUserModel | null;
2076
2077
  rental_status: RentalStatuses;
2077
2078
  renter_payment_status: RentalPaymentStatuses;
2078
- main_image: ImageModel;
2079
+ main_image: ImageModel$1;
2079
2080
  service_contract?: ServiceContractLiteModel;
2080
2081
  is_imported_from_old_crm?: boolean;
2081
2082
  max_electricity_counters?: number | null;
@@ -2121,7 +2122,7 @@ declare type ObjectForMapModel = {
2121
2122
  apartment_number: string;
2122
2123
  address: string;
2123
2124
  geolocation: LatLonParams;
2124
- main_image: ImageModel;
2125
+ main_image: ImageModel$1;
2125
2126
  renter: ClientLiteModel | null;
2126
2127
  owner: ClientLiteModel;
2127
2128
  metro_stations: ApartmentMetroStationModel[];
@@ -2153,13 +2154,13 @@ declare class DocumentStore implements FileStoreInterface {
2153
2154
  agent: DocumentAgentInterface;
2154
2155
  loader: Loader;
2155
2156
  settings?: any;
2156
- constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2157
+ constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2157
2158
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2158
- updateDocument: (res: DocumentModel) => void;
2159
+ updateDocument: (res: DocumentModel$1) => void;
2159
2160
  deleteDocument: (...params: any) => Promise<void>;
2160
2161
  get extension(): string;
2161
2162
  get title(): string;
2162
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2163
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2163
2164
  }
2164
2165
 
2165
2166
  type InputTypes =
@@ -2219,13 +2220,13 @@ declare type FileParams = {
2219
2220
  size?: number | null;
2220
2221
  file: File;
2221
2222
  };
2222
- declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2223
+ declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2223
2224
  declare type FileStoreParams = {
2224
2225
  id?: number | null;
2225
2226
  url?: string;
2226
2227
  index?: number | string | null;
2227
2228
  createdBy?: string | null;
2228
- visibility?: DocumentVisibilityAPIVariants;
2229
+ visibility?: DocumentVisibilityAPIVariants$1;
2229
2230
  name?: string;
2230
2231
  date?: string | null;
2231
2232
  size?: number | null;
@@ -2376,8 +2377,8 @@ declare const FillingTagsAgent: {
2376
2377
  };
2377
2378
 
2378
2379
  declare const TariffsAgent: {
2379
- all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2380
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2380
+ all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2381
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2381
2382
  };
2382
2383
 
2383
2384
  type SignInFormFields = {
@@ -2396,8 +2397,8 @@ declare const ApartmentsAgent: {
2396
2397
  };
2397
2398
 
2398
2399
  declare const ApartmentMetersAgent: {
2399
- getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2400
- getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2400
+ getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2401
+ getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2401
2402
  };
2402
2403
 
2403
2404
  declare const requests: {
@@ -2421,7 +2422,7 @@ declare const meterUnitLabel: {
2421
2422
  electricity: string;
2422
2423
  };
2423
2424
 
2424
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2425
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2425
2426
 
2426
2427
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2427
2428
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2437,34 +2438,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2437
2438
  }, "">;
2438
2439
 
2439
2440
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2440
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2441
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2441
2442
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2442
- declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2443
+ declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2443
2444
  temp_file_id: number;
2444
2445
  name: string;
2445
- visibility: DocumentVisibilityAPIVariants;
2446
+ visibility: DocumentVisibilityAPIVariants$1;
2446
2447
  url: string;
2447
2448
  } | null;
2448
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2449
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2450
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2449
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2450
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2451
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2451
2452
  name: string;
2452
- visibility: DocumentVisibilityAPIVariants;
2453
+ visibility: DocumentVisibilityAPIVariants$1;
2453
2454
  } | null;
2454
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2455
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2455
2456
  name: string;
2456
- visibility: DocumentVisibilityAPIVariants;
2457
+ visibility: DocumentVisibilityAPIVariants$1;
2457
2458
  } | null>;
2458
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2459
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2460
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2461
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2462
- declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2463
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2464
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2465
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2466
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2467
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2459
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2460
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2461
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2462
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2463
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2464
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2465
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2466
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2467
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2468
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2468
2469
 
2469
2470
  declare const matchesAPISubjectRoles: {
2470
2471
  maroom: string;
@@ -2557,16 +2558,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2557
2558
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2558
2559
 
2559
2560
  declare class FilesStore {
2560
- files: FileStore[];
2561
+ files: FileStore$1[];
2561
2562
  variant: FileVariant;
2562
2563
  constructor(variant: FileVariant);
2563
- addFile: (newFile: FileStore) => void;
2564
+ addFile: (newFile: FileStore$1) => void;
2564
2565
  removeFile: (index: number) => void;
2565
- setFiles: (files: FileStore[]) => void;
2566
+ setFiles: (files: FileStore$1[]) => void;
2566
2567
  uploadFiles: () => Promise<void>;
2567
- get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2568
+ get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2568
2569
  get uploadedAllFiles(): boolean;
2569
- get notUploadedFiles(): FileStore[];
2570
+ get notUploadedFiles(): FileStore$1[];
2570
2571
  get isUploading(): boolean;
2571
2572
  get videoLength(): number;
2572
2573
  get nonVideoLength(): number;
@@ -2588,7 +2589,7 @@ declare type UploadMediaToStoreSettings = {
2588
2589
  messages?: UploadMediaMessages;
2589
2590
  withoutFilesStore?: boolean;
2590
2591
  };
2591
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2592
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2592
2593
 
2593
2594
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2594
2595
  onSearchItem: (value: string) => void;
@@ -2760,11 +2761,11 @@ type DistrictAutocompleteFields = {
2760
2761
  type ReplaceableTariffFields = {
2761
2762
  name: string
2762
2763
  id?: number
2763
- type?: ResourceTypes
2764
+ type?: ResourceTypes$1
2764
2765
  }
2765
2766
 
2766
2767
  type TariffCommonFields = {
2767
- resourceType: ResourceTypes
2768
+ resourceType: ResourceTypes$1
2768
2769
  name: string
2769
2770
  startDate: DateTime
2770
2771
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2776,7 +2777,7 @@ type TariffCommonFields = {
2776
2777
  }
2777
2778
 
2778
2779
  type ElectricityTariffCreationFormFields = {
2779
- type: ElectricityMeterTypes
2780
+ type: ElectricityMeterTypes$1
2780
2781
  isOverallConsumption: boolean
2781
2782
  T1?: number
2782
2783
  T2?: number
@@ -2797,7 +2798,7 @@ type TariffCreationFormProps = {
2797
2798
  handleClose: () => void
2798
2799
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2799
2800
  creationForm: MultistepForm$1<TariffCreationFormFields>
2800
- defaultResource: ResourceTypes
2801
+ defaultResource: ResourceTypes$1
2801
2802
  settings?: any
2802
2803
  }
2803
2804
 
@@ -2842,7 +2843,7 @@ declare class TariffsLiteStore {
2842
2843
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2843
2844
  settings?: any;
2844
2845
  constructor(settings?: any);
2845
- fetchAll: (resource: ResourceTypes) => Promise<void>;
2846
+ fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2846
2847
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2847
2848
  static getTariffParams: (tariff: CommonTariffModel) => {
2848
2849
  id: number;
@@ -2850,7 +2851,7 @@ declare class TariffsLiteStore {
2850
2851
  };
2851
2852
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2852
2853
  static getTariffValues: (data: TariffCreationFormFields) => {
2853
- type: ElectricityMeterTypes;
2854
+ type: ElectricityMeterTypes$1;
2854
2855
  T1: string | undefined;
2855
2856
  T2: string | undefined;
2856
2857
  T3: string | undefined;
@@ -3143,7 +3144,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3143
3144
  name?: string
3144
3145
  label?: string
3145
3146
  hideName?: string
3146
- resource: ResourceTypes
3147
+ resource: ResourceTypes$1
3147
3148
  filter?: string
3148
3149
  filterRequired?: boolean
3149
3150
  settings?: any
@@ -3156,7 +3157,7 @@ type TariffGroupAutocompleteFields = {
3156
3157
  }
3157
3158
 
3158
3159
  type MeterFeaturesFieldsProps = {
3159
- resource?: ResourceTypes
3160
+ resource?: ResourceTypes$1
3160
3161
  replacements?: LiteMeterInterface[]
3161
3162
  isNewResource?: boolean
3162
3163
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3170,7 +3171,7 @@ type MeterFeaturesFieldsProps = {
3170
3171
  withNextCheck?: boolean
3171
3172
  defaultValues?: Partial<MeterFeaturesFormFields>
3172
3173
  handleMeterTypeChange?: (
3173
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3174
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3174
3175
  ) => void
3175
3176
  settings?: any
3176
3177
  disabledInitial?: boolean
@@ -3183,14 +3184,14 @@ type BasicMeterFeaturesFormFields = {
3183
3184
  initialValueT1?: number
3184
3185
  initialValueT2?: number
3185
3186
  initialValueT3?: number
3186
- type?: MeterTypes
3187
- resource?: ResourceTypes
3187
+ type?: MeterTypes$1
3188
+ resource?: ResourceTypes$1
3188
3189
  withAutoSending?: boolean
3189
3190
  }
3190
3191
 
3191
3192
  type MeterFeaturesFormFields = {
3192
3193
  tariff: TariffGroupAutocompleteFields | null
3193
- company: CompanyAutocompleteFields | null
3194
+ company: CompanyAutocompleteFields$1 | null
3194
3195
  nextCheck: DateTime | null
3195
3196
  lastValue?: number
3196
3197
  lastValueT1?: number
@@ -3204,8 +3205,8 @@ type MeterFeaturesFormFields = {
3204
3205
  } & BasicMeterFeaturesFormFields
3205
3206
 
3206
3207
  type BasicMeterFieldsSettings = {
3207
- resource?: ResourceTypes
3208
- meterType?: MeterTypes
3208
+ resource?: ResourceTypes$1
3209
+ meterType?: MeterTypes$1
3209
3210
  disabledInitial?: boolean
3210
3211
  }
3211
3212
 
@@ -3237,10 +3238,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3237
3238
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3238
3239
 
3239
3240
  type MeterTypeRadioGroupProps = {
3240
- resource?: ResourceTypes
3241
+ resource?: ResourceTypes$1
3241
3242
  form: UseFormReturn<any>
3242
3243
  handleChange: (
3243
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3244
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3244
3245
  ) => void
3245
3246
  disabled?: boolean
3246
3247
  waterOptions?: OptionParams[]
@@ -3252,7 +3253,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3252
3253
  type MeterFeaturesFormProps = {
3253
3254
  formStore?: MultistepForm$1<any>
3254
3255
  handleMeterTypeChange?: (
3255
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3256
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3256
3257
  ) => void
3257
3258
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3258
3259
 
@@ -3320,7 +3321,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3320
3321
  startDate: undefined;
3321
3322
  }, "">;
3322
3323
 
3323
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3324
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3324
3325
 
3325
3326
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3326
3327
 
@@ -3336,7 +3337,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3336
3337
 
3337
3338
  type TariffReplacementFieldsProps = {
3338
3339
  form: UseFormReturn<TariffCommonFields>
3339
- resource: ResourceTypes
3340
+ resource: ResourceTypes$1
3340
3341
  setReplaceable: (value: boolean) => void
3341
3342
  settings?: any
3342
3343
  }
@@ -3752,7 +3753,7 @@ type UploadPhotosButtonProps = {
3752
3753
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3753
3754
 
3754
3755
  type UploadedImageProps = {
3755
- image: FileStore
3756
+ image: FileStore$1
3756
3757
  index: number
3757
3758
  onClick: (index: number) => void
3758
3759
  onDelete: (index: number) => void
@@ -3785,14 +3786,14 @@ declare type PartialMeterValuesFields = {
3785
3786
  };
3786
3787
  declare type PartialMeterInfoFields = {
3787
3788
  id: number;
3788
- resource: ResourceTypes;
3789
- type?: MeterTypes;
3789
+ resource: ResourceTypes$1;
3790
+ type?: MeterTypes$1;
3790
3791
  number: string;
3791
- images: FileStore[];
3792
+ images: FileStore$1[];
3792
3793
  maxValue?: PartialMeterValuesFields;
3793
3794
  values: PartialMeterValuesFields;
3794
3795
  } & PartialMeterValuesFields;
3795
- 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>[];
3796
+ 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>[];
3796
3797
 
3797
3798
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3798
3799
  type: string | undefined;
@@ -3819,4 +3820,4 @@ type SignInPageProps = {
3819
3820
 
3820
3821
  declare const _default: (props: SignInPageProps) => JSX.Element;
3821
3822
 
3822
- 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 };
3823
+ 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 };