kui-crm 0.0.580 → 0.0.581

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 +199 -198
  2. package/package.json +1 -1
  3. package/types/index.d.ts +144 -143
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 = {
@@ -460,7 +460,7 @@ declare type InspectionBasedOnModel = {
460
460
  id: number;
461
461
  inspection_type: InspectionTypes;
462
462
  };
463
- declare type VideoModel = {
463
+ declare type VideoModel$1 = {
464
464
  id: number;
465
465
  video_url: string;
466
466
  file_name?: string;
@@ -475,8 +475,8 @@ declare type InspectionRoomPhotoModel = {
475
475
  uploaded: boolean;
476
476
  purpose: InspectionRoomPhotoTypes;
477
477
  comment?: string;
478
- photos: ImageModel[];
479
- videos: VideoModel[];
478
+ photos: ImageModel$1[];
479
+ videos: VideoModel$1[];
480
480
  room_order_number?: number | null;
481
481
  };
482
482
  declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
@@ -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;
@@ -678,6 +678,7 @@ declare type ApartmentInspectionListModel = {
678
678
  renter_feedback: InspectionFeedbackModel | null;
679
679
  conclusion: AppraisalTenantOfferModel | null;
680
680
  status: InspectionStatus;
681
+ can_resume: boolean;
681
682
  };
682
683
  declare type InspectionFeedbackInterface = {
683
684
  agree: boolean;
@@ -687,10 +688,10 @@ declare type InspectionFeedbackInterface = {
687
688
  declare type PatchInspectionImageParams = {
688
689
  id?: number;
689
690
  order?: number;
690
- } & Partial<ImageBodyRequest>;
691
+ } & Partial<ImageBodyRequest$1>;
691
692
  declare type PatchInspectionVideoParams = {
692
693
  id?: number;
693
- } & Partial<VideoBodyRequest>;
694
+ } & Partial<VideoBodyRequest$1>;
694
695
  declare type PatchRoomImagesParams = {
695
696
  id?: number | null;
696
697
  purpose: InspectionRoomPhotoTypes;
@@ -731,8 +732,8 @@ declare type InspectionFillingModel = {
731
732
  description: string;
732
733
  serial_code: string;
733
734
  amount: number;
734
- photos: ImageModel[];
735
- instruction: DocumentModel;
735
+ photos: ImageModel$1[];
736
+ instruction: DocumentModel$1;
736
737
  is_absent: boolean;
737
738
  previously_absent: boolean;
738
739
  model: string;
@@ -814,7 +815,7 @@ declare type CommonMeterParams = {
814
815
  company: CompanyLiteParams;
815
816
  operating_account_number?: string | null;
816
817
  company_is_administrative: boolean;
817
- photos?: ImageModel[];
818
+ photos?: ImageModel$1[];
818
819
  auto_sending: boolean;
819
820
  no_tariff: boolean;
820
821
  is_avg: boolean;
@@ -826,15 +827,15 @@ declare type ElectricityMeterValues = {
826
827
  T3?: MeterTariffModel;
827
828
  };
828
829
  declare type WaterMeterParams = {
829
- type: WaterMeterTypes;
830
+ type: WaterMeterTypes$1;
830
831
  tariff: SingleCounterTariffModel;
831
832
  } & CommonMeterParams & MeterTariffModel;
832
833
  declare type SingleMeterParams = {
833
- type?: WaterMeterTypes;
834
+ type?: WaterMeterTypes$1;
834
835
  tariff: SingleCounterTariffModel;
835
836
  } & CommonMeterParams & MeterTariffModel;
836
837
  declare type ElectricityMeterParams = {
837
- type: ElectricityMeterTypes;
838
+ type: ElectricityMeterTypes$1;
838
839
  values: ElectricityMeterValues;
839
840
  tariff: ElectricityMeterTariffModel;
840
841
  overall_value?: number;
@@ -1077,7 +1078,7 @@ declare type CountryParams = {
1077
1078
  code: string;
1078
1079
  } & CatalogItemParams;
1079
1080
 
1080
- type FileWithVisibility = {
1081
+ type FileWithVisibility$1 = {
1081
1082
  id?: number
1082
1083
  file: File | null
1083
1084
  tenant: boolean
@@ -1086,8 +1087,8 @@ type FileWithVisibility = {
1086
1087
  url: string
1087
1088
  }
1088
1089
 
1089
- type InputFileWithVisibilityFields =
1090
- | FileWithVisibility
1090
+ type InputFileWithVisibilityFields$1 =
1091
+ | FileWithVisibility$1
1091
1092
  | DocumentWithVisibility
1092
1093
  | null
1093
1094
  | undefined
@@ -1117,7 +1118,7 @@ type ChangeReasonFieldsProps<T> = {
1117
1118
  }
1118
1119
 
1119
1120
  type ChangeReasonFormFields = {
1120
- reason: InputFileWithVisibilityFields
1121
+ reason: InputFileWithVisibilityFields$1
1121
1122
  comment?: string
1122
1123
  }
1123
1124
 
@@ -1132,13 +1133,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1132
1133
  settings?: any
1133
1134
  } & InputWithControllerProps<TFormValues>
1134
1135
 
1135
- type CompanyAutocompleteFields = {
1136
+ type CompanyAutocompleteFields$1 = {
1136
1137
  id: number
1137
1138
  name: string
1138
1139
  logo?: string | null
1139
1140
  }
1140
1141
 
1141
- declare class FileStore implements FileStoreInterface {
1142
+ declare class FileStore$1 implements FileStoreInterface {
1142
1143
  id: number | null;
1143
1144
  index?: number | null;
1144
1145
  name: string;
@@ -1169,13 +1170,13 @@ declare class FileStore implements FileStoreInterface {
1169
1170
  setIndex: (index: number) => void;
1170
1171
  get title(): string;
1171
1172
  static createPreviewUrl: (file: File) => Promise<string>;
1172
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1173
- static initFromFileModel: (file: FileModel) => FileStore;
1174
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1175
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1176
- static initFromVideoModel: (image: VideoModel) => FileStore;
1177
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1178
- static initFromFileStore: (file: FileStore) => FileStore;
1173
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1174
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1175
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1176
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1177
+ static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1178
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1179
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1179
1180
  }
1180
1181
 
1181
1182
  declare type ImageParams = {
@@ -1210,8 +1211,8 @@ declare class ImageStore implements ImageStoreInterface {
1210
1211
  delete: () => Promise<void>;
1211
1212
  get extension(): string;
1212
1213
  get title(): string;
1213
- static initFromImageModel: (image: ImageModel) => ImageStore;
1214
- static initFromVideoModel: (image: VideoModel) => ImageStore;
1214
+ static initFromImageModel: (image: ImageModel$1) => ImageStore;
1215
+ static initFromVideoModel: (image: VideoModel$1) => ImageStore;
1215
1216
  }
1216
1217
 
1217
1218
  declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
@@ -1336,7 +1337,7 @@ declare type LockerAutocompleteFields = {
1336
1337
  declare type ApartmentOverviewPaymentInfoFields = {
1337
1338
  payerCode?: string;
1338
1339
  communalServicesAccount?: string;
1339
- company?: CompanyAutocompleteFields | null;
1340
+ company?: CompanyAutocompleteFields$1 | null;
1340
1341
  } & ChangeReasonFormFields;
1341
1342
  declare type ApartmentOverviewInfoFields = {
1342
1343
  locker?: LockerAutocompleteFields | null;
@@ -1359,14 +1360,14 @@ declare type InspectionPaymentInfoParams = {
1359
1360
  } & ApartmentPaymentInfoParams;
1360
1361
  declare type InspectionMeterInfoParams = {
1361
1362
  id: number;
1362
- resource: ResourceTypes;
1363
- type?: MeterTypes;
1363
+ resource: ResourceTypes$1;
1364
+ type?: MeterTypes$1;
1364
1365
  number: string;
1365
1366
  startDate: DateTime | null;
1366
1367
  company: CompanyLiteParams;
1367
1368
  operationalAccountNumber?: string | null;
1368
1369
  tariff: EntityLinkParams | null;
1369
- passportFile: FileStore | null;
1370
+ passportFile: FileStore$1 | null;
1370
1371
  initialValue?: number;
1371
1372
  lastValue?: number;
1372
1373
  initialValueT1?: number;
@@ -1388,8 +1389,8 @@ declare type ValuesParams = {
1388
1389
  };
1389
1390
  declare type PartialMeterInfoParams = {
1390
1391
  id: number;
1391
- type: MeterTypes;
1392
- resource: ResourceTypes;
1392
+ type: MeterTypes$1;
1393
+ resource: ResourceTypes$1;
1393
1394
  number: string;
1394
1395
  values: ValuesParams;
1395
1396
  images?: (ImageStore | UploadImageParams)[];
@@ -1401,7 +1402,7 @@ declare type InspectionPartialMetersInfoParams = {
1401
1402
  declare type ComparableObjectParams = {
1402
1403
  id: number;
1403
1404
  link: string;
1404
- screenshot: FileStore | null;
1405
+ screenshot: FileStore$1 | null;
1405
1406
  price: number;
1406
1407
  differences: string;
1407
1408
  };
@@ -1409,7 +1410,7 @@ declare type StatisticalEvaluationParams = {
1409
1410
  id: number;
1410
1411
  dataSourceName: string;
1411
1412
  link: string;
1412
- screenshot: FileStore | null;
1413
+ screenshot: FileStore$1 | null;
1413
1414
  minPrice: number;
1414
1415
  maxPrice: number;
1415
1416
  };
@@ -1434,8 +1435,8 @@ declare type FillingInfoFormFields = {
1434
1435
  name?: string;
1435
1436
  description?: string;
1436
1437
  type?: ApartmentFillingVariants | null;
1437
- instruction?: InputFileWithVisibilityFields;
1438
- tempImages?: ImageBodyRequest[];
1438
+ instruction?: InputFileWithVisibilityFields$1;
1439
+ tempImages?: ImageBodyRequest$1[];
1439
1440
  };
1440
1441
 
1441
1442
  declare type FillingTagParams = {
@@ -1450,7 +1451,7 @@ declare type FillingParams = {
1450
1451
  images?: (ImageStore | UploadFileParams)[];
1451
1452
  serialNumber?: string;
1452
1453
  numberOfSubjects?: number | string | null;
1453
- instruction?: InputFileWithVisibilityFields | null;
1454
+ instruction?: InputFileWithVisibilityFields$1 | null;
1454
1455
  type?: ApartmentFillingVariants;
1455
1456
  loader?: Loader;
1456
1457
  };
@@ -1462,7 +1463,7 @@ declare type FillingFullParams = {
1462
1463
  images?: (ImageStore | UploadFileParams)[];
1463
1464
  serialNumber?: string;
1464
1465
  numberOfSubjects?: number | string | null;
1465
- instruction?: InputFileWithVisibilityFields | null;
1466
+ instruction?: InputFileWithVisibilityFields$1 | null;
1466
1467
  type?: ApartmentFillingVariants;
1467
1468
  loader?: Loader;
1468
1469
  check?: boolean | null;
@@ -1481,31 +1482,31 @@ declare type TariffGroupLiteParams = {
1481
1482
  name: string;
1482
1483
  };
1483
1484
 
1484
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1485
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
1486
- declare type WaterMeterTypes$1 = "cold" | "hot";
1487
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1488
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1489
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1490
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1491
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1492
- declare type FileBodyRequest$1 = {
1485
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1486
+ declare type UnitOfPaymentTypes = "percent" | "value";
1487
+ declare type WaterMeterTypes = "cold" | "hot";
1488
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1489
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1490
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1491
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1492
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1493
+ declare type FileBodyRequest = {
1493
1494
  temp_file_id?: number;
1494
1495
  name: string;
1495
- visibility?: DocumentVisibilityAPIVariants$1;
1496
+ visibility?: DocumentVisibilityAPIVariants;
1496
1497
  url?: string;
1497
1498
  };
1498
- declare type ImageBodyRequest$1 = {
1499
+ declare type ImageBodyRequest = {
1499
1500
  temp_file_id: number;
1500
1501
  image_name: string;
1501
1502
  url: string;
1502
1503
  };
1503
- declare type VideoBodyRequest$1 = {
1504
+ declare type VideoBodyRequest = {
1504
1505
  temp_file_id: number;
1505
1506
  file_name: string;
1506
1507
  url: string;
1507
1508
  };
1508
- declare type ImageModel$1 = {
1509
+ declare type ImageModel = {
1509
1510
  id: number;
1510
1511
  image_name?: string;
1511
1512
  image_url?: string;
@@ -1514,22 +1515,22 @@ declare type ImageModel$1 = {
1514
1515
  image_large_url: string;
1515
1516
  size: number;
1516
1517
  };
1517
- declare type FileModel$1 = {
1518
+ declare type FileModel = {
1518
1519
  id: number;
1519
1520
  name: string;
1520
1521
  size: number;
1521
1522
  url: string;
1522
1523
  };
1523
- declare type DocumentModel$1 = {
1524
+ declare type DocumentModel = {
1524
1525
  pk: number;
1525
1526
  name: string;
1526
1527
  created?: string;
1527
1528
  attachment: string;
1528
1529
  size: number;
1529
1530
  uploaded_by?: string | null;
1530
- visibility?: DocumentVisibilityAPIVariants$1;
1531
+ visibility?: DocumentVisibilityAPIVariants;
1531
1532
  };
1532
- declare type VideoModel$1 = {
1533
+ declare type VideoModel = {
1533
1534
  id: number;
1534
1535
  video_url: string;
1535
1536
  file_name?: string;
@@ -1540,7 +1541,7 @@ declare type VideoModel$1 = {
1540
1541
  resolution?: string;
1541
1542
  };
1542
1543
 
1543
- type FileWithVisibility$1 = {
1544
+ type FileWithVisibility = {
1544
1545
  id?: number
1545
1546
  file: File | null
1546
1547
  tenant: boolean
@@ -1549,19 +1550,19 @@ type FileWithVisibility$1 = {
1549
1550
  url: string
1550
1551
  }
1551
1552
 
1552
- type InputFileWithVisibilityFields$1 =
1553
- | FileWithVisibility$1
1553
+ type InputFileWithVisibilityFields =
1554
+ | FileWithVisibility
1554
1555
  | DocumentWithVisibility$1
1555
1556
  | null
1556
1557
  | undefined
1557
1558
 
1558
- type CompanyAutocompleteFields$1 = {
1559
+ type CompanyAutocompleteFields = {
1559
1560
  id: number
1560
1561
  name: string
1561
1562
  logo?: string | null
1562
1563
  }
1563
1564
 
1564
- declare class FileStore$1 implements FileStoreInterface$1 {
1565
+ declare class FileStore implements FileStoreInterface$1 {
1565
1566
  id: number | null;
1566
1567
  index?: number | null;
1567
1568
  name: string;
@@ -1592,22 +1593,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
1592
1593
  setIndex: (index: number) => void;
1593
1594
  get title(): string;
1594
1595
  static createPreviewUrl: (file: File) => Promise<string>;
1595
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1596
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1597
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1598
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1599
- static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1600
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1601
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1596
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1597
+ static initFromFileModel: (file: FileModel) => FileStore;
1598
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1599
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1600
+ static initFromVideoModel: (image: VideoModel) => FileStore;
1601
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1602
+ static initFromFileStore: (file: FileStore) => FileStore;
1602
1603
  }
1603
1604
 
1604
1605
  type PartialPayerFields$1 = {
1605
- payer?: ResourcePaymentRoles$1 | "partial"
1606
- mainPayer?: ResourcePaymentRoles$1
1607
- refundFrom?: ResourcePaymentRoles$1
1608
- partType?: UnitOfPaymentTypes$1 | null
1606
+ payer?: ResourcePaymentRoles | "partial"
1607
+ mainPayer?: ResourcePaymentRoles
1608
+ refundFrom?: ResourcePaymentRoles
1609
+ partType?: UnitOfPaymentTypes | null
1609
1610
  refundValue?: number | string | null
1610
- utilityType: UtilityTypes$1
1611
+ utilityType: UtilityTypes
1611
1612
  }
1612
1613
 
1613
1614
  declare type FilesStoreInterface$1 = {
@@ -1639,13 +1640,13 @@ declare type DocumentWithVisibility$1 = {
1639
1640
  visibility?: DocumentVisibilityVariants$1;
1640
1641
  extension: string;
1641
1642
  };
1642
- declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1643
+ declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1643
1644
  declare type FileStoreParams$1 = {
1644
1645
  id?: number | null;
1645
1646
  url?: string;
1646
1647
  index?: number | string | null;
1647
1648
  createdBy?: string | null;
1648
- visibility?: DocumentVisibilityAPIVariants$1;
1649
+ visibility?: DocumentVisibilityAPIVariants;
1649
1650
  name?: string;
1650
1651
  date?: string | null;
1651
1652
  size?: number | null;
@@ -1673,14 +1674,14 @@ type BasicMeterFeaturesFormFields$1 = {
1673
1674
  initialValueT1?: number
1674
1675
  initialValueT2?: number
1675
1676
  initialValueT3?: number
1676
- type?: MeterTypes$1
1677
- resource?: ResourceTypes$1
1677
+ type?: MeterTypes
1678
+ resource?: ResourceTypes
1678
1679
  withAutoSending?: boolean
1679
1680
  }
1680
1681
 
1681
1682
  type MeterFeaturesFormFields$1 = {
1682
1683
  tariff: TariffGroupAutocompleteFields$1 | null
1683
- company: CompanyAutocompleteFields$1 | null
1684
+ company: CompanyAutocompleteFields | null
1684
1685
  nextCheck: DateTime | null
1685
1686
  lastValue?: number
1686
1687
  lastValueT1?: number
@@ -1704,9 +1705,9 @@ declare type ApartmentMeterValues = {
1704
1705
  } & MeterValues;
1705
1706
  declare type InspectionMeterFields = {
1706
1707
  id?: number;
1707
- resource: ResourceTypes$1;
1708
- passportFile?: InputFileWithVisibilityFields$1;
1709
- images: FileStore$1[];
1708
+ resource: ResourceTypes;
1709
+ passportFile?: InputFileWithVisibilityFields;
1710
+ images: FileStore[];
1710
1711
  } & MeterFeaturesFormFields$1;
1711
1712
 
1712
1713
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1721,7 +1722,7 @@ type PartialPayerProps<T> = {
1721
1722
  title: string
1722
1723
  name: string
1723
1724
  form: UseFormReturn<T>
1724
- utilityType: UtilityTypes
1725
+ utilityType: UtilityTypes$1
1725
1726
  fieldsVariant?: PartialPayerVariants
1726
1727
  settings?: ObjectType
1727
1728
  disabled?: boolean
@@ -1729,12 +1730,12 @@ type PartialPayerProps<T> = {
1729
1730
  }
1730
1731
 
1731
1732
  type PartialPayerFields = {
1732
- payer?: ResourcePaymentRoles | "partial"
1733
- mainPayer?: ResourcePaymentRoles
1734
- refundFrom?: ResourcePaymentRoles
1735
- partType?: UnitOfPaymentTypes | null
1733
+ payer?: ResourcePaymentRoles$1 | "partial"
1734
+ mainPayer?: ResourcePaymentRoles$1
1735
+ refundFrom?: ResourcePaymentRoles$1
1736
+ partType?: UnitOfPaymentTypes$1 | null
1736
1737
  refundValue?: number | string | null
1737
- utilityType: UtilityTypes
1738
+ utilityType: UtilityTypes$1
1738
1739
  }
1739
1740
 
1740
1741
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1818,15 +1819,15 @@ declare type ResourceAccessParams = {
1818
1819
  password?: string;
1819
1820
  description?: string;
1820
1821
  };
1821
- declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1822
+ declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1822
1823
  declare type ApartmentResourceCompanyDetails = {
1823
- company: CompanyAutocompleteFields | null;
1824
+ company: CompanyAutocompleteFields$1 | null;
1824
1825
  operationalAccountNumber: string;
1825
1826
  payerCode: string;
1826
1827
  dataSubmissionDays: DataSubmissionDaysParams;
1827
1828
  access: ResourceAccessParams;
1828
1829
  sampleReceiptLink: string;
1829
- sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1830
+ sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1830
1831
  };
1831
1832
  declare type ApartmentResourceInterface = {
1832
1833
  type: ApartmentResourceTypes;
@@ -1863,15 +1864,15 @@ declare type DocumentsStoreInterface = {
1863
1864
  loader: Loader;
1864
1865
  };
1865
1866
  declare type PostDocumentsResponse = {
1866
- documents: DocumentModel[];
1867
+ documents: DocumentModel$1[];
1867
1868
  };
1868
1869
  declare type DocumentAgentInterface = {
1869
1870
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1870
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1871
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1871
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1872
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1872
1873
  };
1873
1874
  declare type DocumentsAgentInterface = {
1874
- getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1875
+ getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1875
1876
  } & DocumentAgentInterface;
1876
1877
 
1877
1878
  declare type MetroLineParams = {
@@ -1942,7 +1943,7 @@ declare type ApartmentFeatureModel = {
1942
1943
  };
1943
1944
  declare type ApartmentDocumentModel = {
1944
1945
  id: number;
1945
- document: DocumentModel;
1946
+ document: DocumentModel$1;
1946
1947
  expiration_date: string;
1947
1948
  start_date: string;
1948
1949
  number: string;
@@ -1954,7 +1955,7 @@ declare type MeterCommonInfoModel = {
1954
1955
  tariff?: TariffLinkModel;
1955
1956
  activation_date?: string;
1956
1957
  check_date?: string;
1957
- type?: ElectricityMeterTypes | WaterMeterTypes;
1958
+ type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1958
1959
  apartment: ApartmentLinkModel;
1959
1960
  company: CompanyLiteParams;
1960
1961
  operating_account_number?: string | null;
@@ -2075,7 +2076,7 @@ declare type ApartmentModel = {
2075
2076
  owner_id: number;
2076
2077
  metro_stations: ApartmentMetroParams[];
2077
2078
  rental_status: RentalStatuses;
2078
- main_image: ImageModel;
2079
+ main_image: ImageModel$1;
2079
2080
  tv_type: TVTypes | null;
2080
2081
  inspection: ApartmentInspectionModel;
2081
2082
  distance_to_center_kilometers: number | null;
@@ -2102,7 +2103,7 @@ declare type ApartmentLiteModel = {
2102
2103
  renter: LiteUserModel | null;
2103
2104
  rental_status: RentalStatuses;
2104
2105
  renter_payment_status: RentalPaymentStatuses;
2105
- main_image: ImageModel;
2106
+ main_image: ImageModel$1;
2106
2107
  service_contract?: ServiceContractLiteModel;
2107
2108
  is_imported_from_old_crm?: boolean;
2108
2109
  max_electricity_counters?: number | null;
@@ -2148,7 +2149,7 @@ declare type ObjectForMapModel = {
2148
2149
  apartment_number: string;
2149
2150
  address: string;
2150
2151
  geolocation: LatLonParams;
2151
- main_image: ImageModel;
2152
+ main_image: ImageModel$1;
2152
2153
  renter: ClientLiteModel | null;
2153
2154
  owner: ClientLiteModel;
2154
2155
  metro_stations: ApartmentMetroStationModel[];
@@ -2180,13 +2181,13 @@ declare class DocumentStore implements FileStoreInterface {
2180
2181
  agent: DocumentAgentInterface;
2181
2182
  loader: Loader;
2182
2183
  settings?: any;
2183
- constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2184
+ constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2184
2185
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2185
- updateDocument: (res: DocumentModel) => void;
2186
+ updateDocument: (res: DocumentModel$1) => void;
2186
2187
  deleteDocument: (...params: any) => Promise<void>;
2187
2188
  get extension(): string;
2188
2189
  get title(): string;
2189
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2190
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2190
2191
  }
2191
2192
 
2192
2193
  type InputTypes =
@@ -2246,13 +2247,13 @@ declare type FileParams = {
2246
2247
  size?: number | null;
2247
2248
  file: File;
2248
2249
  };
2249
- declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2250
+ declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2250
2251
  declare type FileStoreParams = {
2251
2252
  id?: number | null;
2252
2253
  url?: string;
2253
2254
  index?: number | string | null;
2254
2255
  createdBy?: string | null;
2255
- visibility?: DocumentVisibilityAPIVariants;
2256
+ visibility?: DocumentVisibilityAPIVariants$1;
2256
2257
  name?: string;
2257
2258
  date?: string | null;
2258
2259
  size?: number | null;
@@ -2403,8 +2404,8 @@ declare const FillingTagsAgent: {
2403
2404
  };
2404
2405
 
2405
2406
  declare const TariffsAgent: {
2406
- all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2407
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2407
+ all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2408
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2408
2409
  };
2409
2410
 
2410
2411
  type SignInFormFields = {
@@ -2423,8 +2424,8 @@ declare const ApartmentsAgent: {
2423
2424
  };
2424
2425
 
2425
2426
  declare const ApartmentMetersAgent: {
2426
- getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2427
- getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2427
+ getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2428
+ getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2428
2429
  };
2429
2430
 
2430
2431
  declare const requests: {
@@ -2448,7 +2449,7 @@ declare const meterUnitLabel: {
2448
2449
  electricity: string;
2449
2450
  };
2450
2451
 
2451
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2452
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2452
2453
 
2453
2454
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2454
2455
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2464,34 +2465,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2464
2465
  }, "">;
2465
2466
 
2466
2467
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2467
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2468
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2468
2469
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2469
- declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2470
+ declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2470
2471
  temp_file_id: number;
2471
2472
  name: string;
2472
- visibility: DocumentVisibilityAPIVariants;
2473
+ visibility: DocumentVisibilityAPIVariants$1;
2473
2474
  url: string;
2474
2475
  } | null;
2475
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2476
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2477
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2476
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2477
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2478
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2478
2479
  name: string;
2479
- visibility: DocumentVisibilityAPIVariants;
2480
+ visibility: DocumentVisibilityAPIVariants$1;
2480
2481
  } | null;
2481
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2482
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2482
2483
  name: string;
2483
- visibility: DocumentVisibilityAPIVariants;
2484
+ visibility: DocumentVisibilityAPIVariants$1;
2484
2485
  } | null>;
2485
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2486
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2487
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2488
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2489
- declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2490
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2491
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2492
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2493
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2494
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2486
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2487
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2488
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2489
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2490
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2491
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2492
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2493
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2494
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2495
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2495
2496
 
2496
2497
  declare const matchesAPISubjectRoles: {
2497
2498
  maroom: string;
@@ -2584,16 +2585,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2584
2585
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2585
2586
 
2586
2587
  declare class FilesStore {
2587
- files: FileStore[];
2588
+ files: FileStore$1[];
2588
2589
  variant: FileVariant;
2589
2590
  constructor(variant: FileVariant);
2590
- addFile: (newFile: FileStore) => void;
2591
+ addFile: (newFile: FileStore$1) => void;
2591
2592
  removeFile: (index: number) => void;
2592
- setFiles: (files: FileStore[]) => void;
2593
+ setFiles: (files: FileStore$1[]) => void;
2593
2594
  uploadFiles: () => Promise<void>;
2594
- get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2595
+ get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2595
2596
  get uploadedAllFiles(): boolean;
2596
- get notUploadedFiles(): FileStore[];
2597
+ get notUploadedFiles(): FileStore$1[];
2597
2598
  get isUploading(): boolean;
2598
2599
  get videoLength(): number;
2599
2600
  get nonVideoLength(): number;
@@ -2615,7 +2616,7 @@ declare type UploadMediaToStoreSettings = {
2615
2616
  messages?: UploadMediaMessages;
2616
2617
  withoutFilesStore?: boolean;
2617
2618
  };
2618
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2619
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2619
2620
 
2620
2621
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2621
2622
  onSearchItem: (value: string) => void;
@@ -2787,11 +2788,11 @@ type DistrictAutocompleteFields = {
2787
2788
  type ReplaceableTariffFields = {
2788
2789
  name: string
2789
2790
  id?: number
2790
- type?: ResourceTypes
2791
+ type?: ResourceTypes$1
2791
2792
  }
2792
2793
 
2793
2794
  type TariffCommonFields = {
2794
- resourceType: ResourceTypes
2795
+ resourceType: ResourceTypes$1
2795
2796
  name: string
2796
2797
  startDate: DateTime
2797
2798
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2803,7 +2804,7 @@ type TariffCommonFields = {
2803
2804
  }
2804
2805
 
2805
2806
  type ElectricityTariffCreationFormFields = {
2806
- type: ElectricityMeterTypes
2807
+ type: ElectricityMeterTypes$1
2807
2808
  isOverallConsumption: boolean
2808
2809
  T1?: number
2809
2810
  T2?: number
@@ -2824,7 +2825,7 @@ type TariffCreationFormProps = {
2824
2825
  handleClose: () => void
2825
2826
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2826
2827
  creationForm: MultistepForm$1<TariffCreationFormFields>
2827
- defaultResource: ResourceTypes
2828
+ defaultResource: ResourceTypes$1
2828
2829
  settings?: any
2829
2830
  }
2830
2831
 
@@ -2869,7 +2870,7 @@ declare class TariffsLiteStore {
2869
2870
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2870
2871
  settings?: any;
2871
2872
  constructor(settings?: any);
2872
- fetchAll: (resource: ResourceTypes) => Promise<void>;
2873
+ fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2873
2874
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2874
2875
  static getTariffParams: (tariff: CommonTariffModel) => {
2875
2876
  id: number;
@@ -2877,7 +2878,7 @@ declare class TariffsLiteStore {
2877
2878
  };
2878
2879
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2879
2880
  static getTariffValues: (data: TariffCreationFormFields) => {
2880
- type: ElectricityMeterTypes;
2881
+ type: ElectricityMeterTypes$1;
2881
2882
  T1: string | undefined;
2882
2883
  T2: string | undefined;
2883
2884
  T3: string | undefined;
@@ -3171,7 +3172,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3171
3172
  name?: string
3172
3173
  label?: string
3173
3174
  hideName?: string
3174
- resource: ResourceTypes
3175
+ resource: ResourceTypes$1
3175
3176
  filter?: string
3176
3177
  filterRequired?: boolean
3177
3178
  settings?: any
@@ -3184,7 +3185,7 @@ type TariffGroupAutocompleteFields = {
3184
3185
  }
3185
3186
 
3186
3187
  type MeterFeaturesFieldsProps = {
3187
- resource?: ResourceTypes
3188
+ resource?: ResourceTypes$1
3188
3189
  replacements?: LiteMeterInterface[]
3189
3190
  isNewResource?: boolean
3190
3191
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3198,7 +3199,7 @@ type MeterFeaturesFieldsProps = {
3198
3199
  withNextCheck?: boolean
3199
3200
  defaultValues?: Partial<MeterFeaturesFormFields>
3200
3201
  handleMeterTypeChange?: (
3201
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3202
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3202
3203
  ) => void
3203
3204
  settings?: any
3204
3205
  disabledInitial?: boolean
@@ -3211,14 +3212,14 @@ type BasicMeterFeaturesFormFields = {
3211
3212
  initialValueT1?: number
3212
3213
  initialValueT2?: number
3213
3214
  initialValueT3?: number
3214
- type?: MeterTypes
3215
- resource?: ResourceTypes
3215
+ type?: MeterTypes$1
3216
+ resource?: ResourceTypes$1
3216
3217
  withAutoSending?: boolean
3217
3218
  }
3218
3219
 
3219
3220
  type MeterFeaturesFormFields = {
3220
3221
  tariff: TariffGroupAutocompleteFields | null
3221
- company: CompanyAutocompleteFields | null
3222
+ company: CompanyAutocompleteFields$1 | null
3222
3223
  nextCheck: DateTime | null
3223
3224
  lastValue?: number
3224
3225
  lastValueT1?: number
@@ -3232,8 +3233,8 @@ type MeterFeaturesFormFields = {
3232
3233
  } & BasicMeterFeaturesFormFields
3233
3234
 
3234
3235
  type BasicMeterFieldsSettings = {
3235
- resource?: ResourceTypes
3236
- meterType?: MeterTypes
3236
+ resource?: ResourceTypes$1
3237
+ meterType?: MeterTypes$1
3237
3238
  disabledInitial?: boolean
3238
3239
  }
3239
3240
 
@@ -3265,10 +3266,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3265
3266
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3266
3267
 
3267
3268
  type MeterTypeRadioGroupProps = {
3268
- resource?: ResourceTypes
3269
+ resource?: ResourceTypes$1
3269
3270
  form: UseFormReturn<any>
3270
3271
  handleChange: (
3271
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3272
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3272
3273
  ) => void
3273
3274
  disabled?: boolean
3274
3275
  waterOptions?: OptionParams[]
@@ -3280,7 +3281,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3280
3281
  type MeterFeaturesFormProps = {
3281
3282
  formStore?: MultistepForm$1<any>
3282
3283
  handleMeterTypeChange?: (
3283
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3284
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3284
3285
  ) => void
3285
3286
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3286
3287
 
@@ -3348,7 +3349,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3348
3349
  startDate: undefined;
3349
3350
  }, "">;
3350
3351
 
3351
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3352
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3352
3353
 
3353
3354
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3354
3355
 
@@ -3364,7 +3365,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3364
3365
 
3365
3366
  type TariffReplacementFieldsProps = {
3366
3367
  form: UseFormReturn<TariffCommonFields>
3367
- resource: ResourceTypes
3368
+ resource: ResourceTypes$1
3368
3369
  setReplaceable: (value: boolean) => void
3369
3370
  settings?: any
3370
3371
  }
@@ -3780,7 +3781,7 @@ type UploadPhotosButtonProps = {
3780
3781
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3781
3782
 
3782
3783
  type UploadedImageProps = {
3783
- image: FileStore
3784
+ image: FileStore$1
3784
3785
  index: number
3785
3786
  onClick: (index: number) => void
3786
3787
  onDelete: (index: number) => void
@@ -3813,14 +3814,14 @@ declare type PartialMeterValuesFields = {
3813
3814
  };
3814
3815
  declare type PartialMeterInfoFields = {
3815
3816
  id: number;
3816
- resource: ResourceTypes;
3817
- type?: MeterTypes;
3817
+ resource: ResourceTypes$1;
3818
+ type?: MeterTypes$1;
3818
3819
  number: string;
3819
- images: FileStore[];
3820
+ images: FileStore$1[];
3820
3821
  maxValue?: PartialMeterValuesFields;
3821
3822
  values: PartialMeterValuesFields;
3822
3823
  } & PartialMeterValuesFields;
3823
- 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>[];
3824
+ 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>[];
3824
3825
 
3825
3826
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3826
3827
  type: string | undefined;
@@ -3847,4 +3848,4 @@ type SignInPageProps = {
3847
3848
 
3848
3849
  declare const _default: (props: SignInPageProps) => JSX.Element;
3849
3850
 
3850
- export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _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 };
3851
+ export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields$1 as CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes$1 as ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest$1 as FileBodyRequest, FileModel$1 as FileModel, FileParams, FileStore$1 as FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility$1 as FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest$1 as ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel$1 as ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields$1 as InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _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$1 as VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes$1 as WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };