kui-crm 0.0.577 → 0.0.578

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
186
186
 
187
187
  declare type GenderAPIVariants = "M" | "F";
188
188
  declare type APISubjectRoles = "maroom" | "owner" | "renter";
189
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
190
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
191
- declare type WaterMeterTypes$1 = "cold" | "hot";
192
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
193
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
194
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
195
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
189
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
190
+ declare type UnitOfPaymentTypes = "percent" | "value";
191
+ declare type WaterMeterTypes = "cold" | "hot";
192
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
193
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
194
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
195
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
196
196
  declare type ClientTypes = "personal" | "company";
197
197
  declare type RentalStatuses = "Rented out" | "Closed" | "Open";
198
198
  declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
200
200
  declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
201
201
  declare type TaxResidenceType = "resident" | "not_resident";
202
202
  declare type RentalTypes = "short" | "medium" | "long" | "any";
203
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
203
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
204
204
  declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
205
205
  declare type ContractLinkModel = {
206
206
  id: number;
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
239
239
  address: string;
240
240
  object_name?: string;
241
241
  apartment_number?: string;
242
- main_image: ImageModel$1 | null;
242
+ main_image: ImageModel | null;
243
243
  folder_number?: string;
244
244
  };
245
245
  declare type ApartmentSimpleModel = {
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
249
249
  id: number;
250
250
  address: string;
251
251
  object_name?: string;
252
- main_image: ImageModel$1 | null;
252
+ main_image: ImageModel | null;
253
253
  };
254
254
  declare type AdministrativeCompanyModel = {
255
255
  id: number;
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
262
262
  code_name: string;
263
263
  };
264
264
  declare type UtilityPayerModel = {
265
- utility_type: UtilityTypes$1;
266
- payment_made_by?: ResourcePaymentRoles$1;
267
- refund_from: ResourcePaymentRoles$1;
265
+ utility_type: UtilityTypes;
266
+ payment_made_by?: ResourcePaymentRoles;
267
+ refund_from: ResourcePaymentRoles;
268
268
  refund_value?: number | string;
269
- value_type?: UnitOfPaymentTypes$1;
269
+ value_type?: UnitOfPaymentTypes;
270
270
  };
271
- declare type FileBodyRequest$1 = {
271
+ declare type FileBodyRequest = {
272
272
  temp_file_id?: number;
273
273
  name: string;
274
- visibility?: DocumentVisibilityAPIVariants$1;
274
+ visibility?: DocumentVisibilityAPIVariants;
275
275
  url?: string;
276
276
  };
277
- declare type ImageBodyRequest$1 = {
277
+ declare type ImageBodyRequest = {
278
278
  temp_file_id: number;
279
279
  image_name: string;
280
280
  url: string;
281
281
  };
282
- declare type VideoBodyRequest$1 = {
282
+ declare type VideoBodyRequest = {
283
283
  temp_file_id: number;
284
284
  file_name: string;
285
285
  url: string;
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
288
288
  id: number;
289
289
  upload: string;
290
290
  };
291
- declare type ImageModel$1 = {
291
+ declare type ImageModel = {
292
292
  id: number;
293
293
  image_name?: string;
294
294
  image_url?: string;
@@ -297,20 +297,20 @@ declare type ImageModel$1 = {
297
297
  image_large_url: string;
298
298
  size: number;
299
299
  };
300
- declare type FileModel$1 = {
300
+ declare type FileModel = {
301
301
  id: number;
302
302
  name: string;
303
303
  size: number;
304
304
  url: string;
305
305
  };
306
- declare type DocumentModel$1 = {
306
+ declare type DocumentModel = {
307
307
  pk: number;
308
308
  name: string;
309
309
  created?: string;
310
310
  attachment: string;
311
311
  size: number;
312
312
  uploaded_by?: string | null;
313
- visibility?: DocumentVisibilityAPIVariants$1;
313
+ visibility?: DocumentVisibilityAPIVariants;
314
314
  };
315
315
  declare type PatchDocumentRequest = {
316
316
  name: string;
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
318
318
  declare type PatchFileParams = {
319
319
  id: number;
320
320
  name: string;
321
- visibility: DocumentVisibilityAPIVariants$1;
321
+ visibility: DocumentVisibilityAPIVariants;
322
322
  };
323
323
  declare type PaginationRes<T> = {
324
324
  count: number;
@@ -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$1 | "other";
412
+ declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
413
413
  declare type ApartmentResourceModel = {
414
414
  id: number;
415
415
  company: ApartmentResourceCompanyModel | null;
@@ -418,7 +418,7 @@ declare type ApartmentResourceModel = {
418
418
  payer_code?: string;
419
419
  meter_readings_day_from?: number;
420
420
  meter_readings_day_to?: number;
421
- receipt_example?: DocumentModel$1;
421
+ receipt_example?: DocumentModel;
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$1[];
447
- instruction?: FileBodyRequest$1 | null;
446
+ photos: ImageBodyRequest[];
447
+ instruction?: FileBodyRequest | 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$1 = {
463
+ declare type VideoModel = {
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$1[];
479
- videos: VideoModel$1[];
478
+ photos: ImageModel[];
479
+ videos: VideoModel[];
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$1;
518
- passport: FileModel$1 | null;
519
- meter_type: MeterTypes$1;
517
+ resource_type: ResourceTypes;
518
+ passport: FileModel | null;
519
+ meter_type: MeterTypes;
520
520
  operating_account: string;
521
- photos: ImageModel$1[];
521
+ photos: ImageModel[];
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$1 | null;
530
- rental_contract_termination_document: DocumentModel$1 | null;
531
- service_contract_termination_document: DocumentModel$1 | null;
529
+ inspection_document: DocumentModel | null;
530
+ rental_contract_termination_document: DocumentModel | null;
531
+ service_contract_termination_document: DocumentModel | 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$1 | null;
540
+ advertisement_screenshot: ImageModel | 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$1 | null;
548
+ screenshot: ImageModel | 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$1 | null;
591
+ proof_file: DocumentModel | null;
592
592
  price: number;
593
593
  solution: string;
594
594
  description: string;
595
- photos: ImageModel$1[];
595
+ photos: ImageModel[];
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$1 | null;
606
+ floor_plan: DocumentModel | 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$1 | null;
640
+ inspection_document: DocumentModel | null;
641
641
  } & FullInspectionCommonFields;
642
642
  declare type InventoryInspectionModel = {
643
643
  inventory: InventoryInspectionFields;
@@ -686,10 +686,10 @@ declare type InspectionFeedbackInterface = {
686
686
  declare type PatchInspectionImageParams = {
687
687
  id?: number;
688
688
  order?: number;
689
- } & Partial<ImageBodyRequest$1>;
689
+ } & Partial<ImageBodyRequest>;
690
690
  declare type PatchInspectionVideoParams = {
691
691
  id?: number;
692
- } & Partial<VideoBodyRequest$1>;
692
+ } & Partial<VideoBodyRequest>;
693
693
  declare type PatchRoomImagesParams = {
694
694
  id?: number | null;
695
695
  purpose: InspectionRoomPhotoTypes;
@@ -730,8 +730,8 @@ declare type InspectionFillingModel = {
730
730
  description: string;
731
731
  serial_code: string;
732
732
  amount: number;
733
- photos: ImageModel$1[];
734
- instruction: DocumentModel$1;
733
+ photos: ImageModel[];
734
+ instruction: DocumentModel;
735
735
  is_absent: boolean;
736
736
  previously_absent: boolean;
737
737
  model: string;
@@ -813,7 +813,7 @@ declare type CommonMeterParams = {
813
813
  company: CompanyLiteParams;
814
814
  operating_account_number?: string | null;
815
815
  company_is_administrative: boolean;
816
- photos?: ImageModel$1[];
816
+ photos?: ImageModel[];
817
817
  auto_sending: boolean;
818
818
  no_tariff: boolean;
819
819
  is_avg: boolean;
@@ -825,15 +825,15 @@ declare type ElectricityMeterValues = {
825
825
  T3?: MeterTariffModel;
826
826
  };
827
827
  declare type WaterMeterParams = {
828
- type: WaterMeterTypes$1;
828
+ type: WaterMeterTypes;
829
829
  tariff: SingleCounterTariffModel;
830
830
  } & CommonMeterParams & MeterTariffModel;
831
831
  declare type SingleMeterParams = {
832
- type?: WaterMeterTypes$1;
832
+ type?: WaterMeterTypes;
833
833
  tariff: SingleCounterTariffModel;
834
834
  } & CommonMeterParams & MeterTariffModel;
835
835
  declare type ElectricityMeterParams = {
836
- type: ElectricityMeterTypes$1;
836
+ type: ElectricityMeterTypes;
837
837
  values: ElectricityMeterValues;
838
838
  tariff: ElectricityMeterTariffModel;
839
839
  overall_value?: number;
@@ -920,6 +920,7 @@ declare type RentalContractModel = {
920
920
  public_offer_status?: OfferSignStatuses;
921
921
  terms_acceptation?: ContractTermAcceptationModel;
922
922
  representative?: ClientLinkModel | null;
923
+ is_transferred_by_tenant?: boolean;
923
924
  };
924
925
 
925
926
  declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
@@ -1075,7 +1076,7 @@ declare type CountryParams = {
1075
1076
  code: string;
1076
1077
  } & CatalogItemParams;
1077
1078
 
1078
- type FileWithVisibility$1 = {
1079
+ type FileWithVisibility = {
1079
1080
  id?: number
1080
1081
  file: File | null
1081
1082
  tenant: boolean
@@ -1084,8 +1085,8 @@ type FileWithVisibility$1 = {
1084
1085
  url: string
1085
1086
  }
1086
1087
 
1087
- type InputFileWithVisibilityFields$1 =
1088
- | FileWithVisibility$1
1088
+ type InputFileWithVisibilityFields =
1089
+ | FileWithVisibility
1089
1090
  | DocumentWithVisibility
1090
1091
  | null
1091
1092
  | undefined
@@ -1115,7 +1116,7 @@ type ChangeReasonFieldsProps<T> = {
1115
1116
  }
1116
1117
 
1117
1118
  type ChangeReasonFormFields = {
1118
- reason: InputFileWithVisibilityFields$1
1119
+ reason: InputFileWithVisibilityFields
1119
1120
  comment?: string
1120
1121
  }
1121
1122
 
@@ -1130,13 +1131,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1130
1131
  settings?: any
1131
1132
  } & InputWithControllerProps<TFormValues>
1132
1133
 
1133
- type CompanyAutocompleteFields$1 = {
1134
+ type CompanyAutocompleteFields = {
1134
1135
  id: number
1135
1136
  name: string
1136
1137
  logo?: string | null
1137
1138
  }
1138
1139
 
1139
- declare class FileStore$1 implements FileStoreInterface {
1140
+ declare class FileStore implements FileStoreInterface {
1140
1141
  id: number | null;
1141
1142
  index?: number | null;
1142
1143
  name: string;
@@ -1167,13 +1168,13 @@ declare class FileStore$1 implements FileStoreInterface {
1167
1168
  setIndex: (index: number) => void;
1168
1169
  get title(): string;
1169
1170
  static createPreviewUrl: (file: File) => Promise<string>;
1170
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1171
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1172
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1173
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1174
- static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1175
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1176
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1171
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1172
+ static initFromFileModel: (file: FileModel) => FileStore;
1173
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1174
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1175
+ static initFromVideoModel: (image: VideoModel) => FileStore;
1176
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1177
+ static initFromFileStore: (file: FileStore) => FileStore;
1177
1178
  }
1178
1179
 
1179
1180
  declare type ImageParams = {
@@ -1208,8 +1209,8 @@ declare class ImageStore implements ImageStoreInterface {
1208
1209
  delete: () => Promise<void>;
1209
1210
  get extension(): string;
1210
1211
  get title(): string;
1211
- static initFromImageModel: (image: ImageModel$1) => ImageStore;
1212
- static initFromVideoModel: (image: VideoModel$1) => ImageStore;
1212
+ static initFromImageModel: (image: ImageModel) => ImageStore;
1213
+ static initFromVideoModel: (image: VideoModel) => ImageStore;
1213
1214
  }
1214
1215
 
1215
1216
  declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
@@ -1334,7 +1335,7 @@ declare type LockerAutocompleteFields = {
1334
1335
  declare type ApartmentOverviewPaymentInfoFields = {
1335
1336
  payerCode?: string;
1336
1337
  communalServicesAccount?: string;
1337
- company?: CompanyAutocompleteFields$1 | null;
1338
+ company?: CompanyAutocompleteFields | null;
1338
1339
  } & ChangeReasonFormFields;
1339
1340
  declare type ApartmentOverviewInfoFields = {
1340
1341
  locker?: LockerAutocompleteFields | null;
@@ -1357,14 +1358,14 @@ declare type InspectionPaymentInfoParams = {
1357
1358
  } & ApartmentPaymentInfoParams;
1358
1359
  declare type InspectionMeterInfoParams = {
1359
1360
  id: number;
1360
- resource: ResourceTypes$1;
1361
- type?: MeterTypes$1;
1361
+ resource: ResourceTypes;
1362
+ type?: MeterTypes;
1362
1363
  number: string;
1363
1364
  startDate: DateTime | null;
1364
1365
  company: CompanyLiteParams;
1365
1366
  operationalAccountNumber?: string | null;
1366
1367
  tariff: EntityLinkParams | null;
1367
- passportFile: FileStore$1 | null;
1368
+ passportFile: FileStore | null;
1368
1369
  initialValue?: number;
1369
1370
  lastValue?: number;
1370
1371
  initialValueT1?: number;
@@ -1386,8 +1387,8 @@ declare type ValuesParams = {
1386
1387
  };
1387
1388
  declare type PartialMeterInfoParams = {
1388
1389
  id: number;
1389
- type: MeterTypes$1;
1390
- resource: ResourceTypes$1;
1390
+ type: MeterTypes;
1391
+ resource: ResourceTypes;
1391
1392
  number: string;
1392
1393
  values: ValuesParams;
1393
1394
  images?: (ImageStore | UploadImageParams)[];
@@ -1399,7 +1400,7 @@ declare type InspectionPartialMetersInfoParams = {
1399
1400
  declare type ComparableObjectParams = {
1400
1401
  id: number;
1401
1402
  link: string;
1402
- screenshot: FileStore$1 | null;
1403
+ screenshot: FileStore | null;
1403
1404
  price: number;
1404
1405
  differences: string;
1405
1406
  };
@@ -1407,7 +1408,7 @@ declare type StatisticalEvaluationParams = {
1407
1408
  id: number;
1408
1409
  dataSourceName: string;
1409
1410
  link: string;
1410
- screenshot: FileStore$1 | null;
1411
+ screenshot: FileStore | null;
1411
1412
  minPrice: number;
1412
1413
  maxPrice: number;
1413
1414
  };
@@ -1432,8 +1433,8 @@ declare type FillingInfoFormFields = {
1432
1433
  name?: string;
1433
1434
  description?: string;
1434
1435
  type?: ApartmentFillingVariants | null;
1435
- instruction?: InputFileWithVisibilityFields$1;
1436
- tempImages?: ImageBodyRequest$1[];
1436
+ instruction?: InputFileWithVisibilityFields;
1437
+ tempImages?: ImageBodyRequest[];
1437
1438
  };
1438
1439
 
1439
1440
  declare type FillingTagParams = {
@@ -1448,7 +1449,7 @@ declare type FillingParams = {
1448
1449
  images?: (ImageStore | UploadFileParams)[];
1449
1450
  serialNumber?: string;
1450
1451
  numberOfSubjects?: number | string | null;
1451
- instruction?: InputFileWithVisibilityFields$1 | null;
1452
+ instruction?: InputFileWithVisibilityFields | null;
1452
1453
  type?: ApartmentFillingVariants;
1453
1454
  loader?: Loader;
1454
1455
  };
@@ -1460,7 +1461,7 @@ declare type FillingFullParams = {
1460
1461
  images?: (ImageStore | UploadFileParams)[];
1461
1462
  serialNumber?: string;
1462
1463
  numberOfSubjects?: number | string | null;
1463
- instruction?: InputFileWithVisibilityFields$1 | null;
1464
+ instruction?: InputFileWithVisibilityFields | null;
1464
1465
  type?: ApartmentFillingVariants;
1465
1466
  loader?: Loader;
1466
1467
  check?: boolean | null;
@@ -1479,31 +1480,31 @@ declare type TariffGroupLiteParams = {
1479
1480
  name: string;
1480
1481
  };
1481
1482
 
1482
- declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1483
- declare type UnitOfPaymentTypes = "percent" | "value";
1484
- declare type WaterMeterTypes = "cold" | "hot";
1485
- declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1486
- declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1487
- declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1488
- declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1489
- declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1490
- declare type FileBodyRequest = {
1483
+ declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1484
+ declare type UnitOfPaymentTypes$1 = "percent" | "value";
1485
+ declare type WaterMeterTypes$1 = "cold" | "hot";
1486
+ declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1487
+ declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1488
+ declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1489
+ declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1490
+ declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1491
+ declare type FileBodyRequest$1 = {
1491
1492
  temp_file_id?: number;
1492
1493
  name: string;
1493
- visibility?: DocumentVisibilityAPIVariants;
1494
+ visibility?: DocumentVisibilityAPIVariants$1;
1494
1495
  url?: string;
1495
1496
  };
1496
- declare type ImageBodyRequest = {
1497
+ declare type ImageBodyRequest$1 = {
1497
1498
  temp_file_id: number;
1498
1499
  image_name: string;
1499
1500
  url: string;
1500
1501
  };
1501
- declare type VideoBodyRequest = {
1502
+ declare type VideoBodyRequest$1 = {
1502
1503
  temp_file_id: number;
1503
1504
  file_name: string;
1504
1505
  url: string;
1505
1506
  };
1506
- declare type ImageModel = {
1507
+ declare type ImageModel$1 = {
1507
1508
  id: number;
1508
1509
  image_name?: string;
1509
1510
  image_url?: string;
@@ -1512,22 +1513,22 @@ declare type ImageModel = {
1512
1513
  image_large_url: string;
1513
1514
  size: number;
1514
1515
  };
1515
- declare type FileModel = {
1516
+ declare type FileModel$1 = {
1516
1517
  id: number;
1517
1518
  name: string;
1518
1519
  size: number;
1519
1520
  url: string;
1520
1521
  };
1521
- declare type DocumentModel = {
1522
+ declare type DocumentModel$1 = {
1522
1523
  pk: number;
1523
1524
  name: string;
1524
1525
  created?: string;
1525
1526
  attachment: string;
1526
1527
  size: number;
1527
1528
  uploaded_by?: string | null;
1528
- visibility?: DocumentVisibilityAPIVariants;
1529
+ visibility?: DocumentVisibilityAPIVariants$1;
1529
1530
  };
1530
- declare type VideoModel = {
1531
+ declare type VideoModel$1 = {
1531
1532
  id: number;
1532
1533
  video_url: string;
1533
1534
  file_name?: string;
@@ -1538,7 +1539,8 @@ declare type VideoModel = {
1538
1539
  resolution?: string;
1539
1540
  };
1540
1541
 
1541
- type FileWithVisibility = {
1542
+ type FileWithVisibility$1 = {
1543
+ id?: number
1542
1544
  file: File | null
1543
1545
  tenant: boolean
1544
1546
  landlord: boolean
@@ -1546,19 +1548,19 @@ type FileWithVisibility = {
1546
1548
  url: string
1547
1549
  }
1548
1550
 
1549
- type InputFileWithVisibilityFields =
1550
- | FileWithVisibility
1551
+ type InputFileWithVisibilityFields$1 =
1552
+ | FileWithVisibility$1
1551
1553
  | DocumentWithVisibility$1
1552
1554
  | null
1553
1555
  | undefined
1554
1556
 
1555
- type CompanyAutocompleteFields = {
1557
+ type CompanyAutocompleteFields$1 = {
1556
1558
  id: number
1557
1559
  name: string
1558
1560
  logo?: string | null
1559
1561
  }
1560
1562
 
1561
- declare class FileStore implements FileStoreInterface$1 {
1563
+ declare class FileStore$1 implements FileStoreInterface$1 {
1562
1564
  id: number | null;
1563
1565
  index?: number | null;
1564
1566
  name: string;
@@ -1589,22 +1591,22 @@ declare class FileStore implements FileStoreInterface$1 {
1589
1591
  setIndex: (index: number) => void;
1590
1592
  get title(): string;
1591
1593
  static createPreviewUrl: (file: File) => Promise<string>;
1592
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1593
- static initFromFileModel: (file: FileModel) => FileStore;
1594
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1595
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1596
- static initFromVideoModel: (image: VideoModel) => FileStore;
1597
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1598
- static initFromFileStore: (file: FileStore) => FileStore;
1594
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1595
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1596
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1597
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1598
+ static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1599
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1600
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1599
1601
  }
1600
1602
 
1601
1603
  type PartialPayerFields$1 = {
1602
- payer?: ResourcePaymentRoles | "partial"
1603
- mainPayer?: ResourcePaymentRoles
1604
- refundFrom?: ResourcePaymentRoles
1605
- partType?: UnitOfPaymentTypes | null
1604
+ payer?: ResourcePaymentRoles$1 | "partial"
1605
+ mainPayer?: ResourcePaymentRoles$1
1606
+ refundFrom?: ResourcePaymentRoles$1
1607
+ partType?: UnitOfPaymentTypes$1 | null
1606
1608
  refundValue?: number | string | null
1607
- utilityType: UtilityTypes
1609
+ utilityType: UtilityTypes$1
1608
1610
  }
1609
1611
 
1610
1612
  declare type FilesStoreInterface$1 = {
@@ -1636,13 +1638,13 @@ declare type DocumentWithVisibility$1 = {
1636
1638
  visibility?: DocumentVisibilityVariants$1;
1637
1639
  extension: string;
1638
1640
  };
1639
- declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1641
+ declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1640
1642
  declare type FileStoreParams$1 = {
1641
1643
  id?: number | null;
1642
1644
  url?: string;
1643
1645
  index?: number | string | null;
1644
1646
  createdBy?: string | null;
1645
- visibility?: DocumentVisibilityAPIVariants;
1647
+ visibility?: DocumentVisibilityAPIVariants$1;
1646
1648
  name?: string;
1647
1649
  date?: string | null;
1648
1650
  size?: number | null;
@@ -1670,14 +1672,14 @@ type BasicMeterFeaturesFormFields$1 = {
1670
1672
  initialValueT1?: number
1671
1673
  initialValueT2?: number
1672
1674
  initialValueT3?: number
1673
- type?: MeterTypes
1674
- resource?: ResourceTypes
1675
+ type?: MeterTypes$1
1676
+ resource?: ResourceTypes$1
1675
1677
  withAutoSending?: boolean
1676
1678
  }
1677
1679
 
1678
1680
  type MeterFeaturesFormFields$1 = {
1679
1681
  tariff: TariffGroupAutocompleteFields$1 | null
1680
- company: CompanyAutocompleteFields | null
1682
+ company: CompanyAutocompleteFields$1 | null
1681
1683
  nextCheck: DateTime | null
1682
1684
  lastValue?: number
1683
1685
  lastValueT1?: number
@@ -1701,9 +1703,9 @@ declare type ApartmentMeterValues = {
1701
1703
  } & MeterValues;
1702
1704
  declare type InspectionMeterFields = {
1703
1705
  id?: number;
1704
- resource: ResourceTypes;
1705
- passportFile?: InputFileWithVisibilityFields;
1706
- images: FileStore[];
1706
+ resource: ResourceTypes$1;
1707
+ passportFile?: InputFileWithVisibilityFields$1;
1708
+ images: FileStore$1[];
1707
1709
  } & MeterFeaturesFormFields$1;
1708
1710
 
1709
1711
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1718,7 +1720,7 @@ type PartialPayerProps<T> = {
1718
1720
  title: string
1719
1721
  name: string
1720
1722
  form: UseFormReturn<T>
1721
- utilityType: UtilityTypes$1
1723
+ utilityType: UtilityTypes
1722
1724
  fieldsVariant?: PartialPayerVariants
1723
1725
  settings?: ObjectType
1724
1726
  disabled?: boolean
@@ -1726,12 +1728,12 @@ type PartialPayerProps<T> = {
1726
1728
  }
1727
1729
 
1728
1730
  type PartialPayerFields = {
1729
- payer?: ResourcePaymentRoles$1 | "partial"
1730
- mainPayer?: ResourcePaymentRoles$1
1731
- refundFrom?: ResourcePaymentRoles$1
1732
- partType?: UnitOfPaymentTypes$1 | null
1731
+ payer?: ResourcePaymentRoles | "partial"
1732
+ mainPayer?: ResourcePaymentRoles
1733
+ refundFrom?: ResourcePaymentRoles
1734
+ partType?: UnitOfPaymentTypes | null
1733
1735
  refundValue?: number | string | null
1734
- utilityType: UtilityTypes$1
1736
+ utilityType: UtilityTypes
1735
1737
  }
1736
1738
 
1737
1739
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1815,15 +1817,15 @@ declare type ResourceAccessParams = {
1815
1817
  password?: string;
1816
1818
  description?: string;
1817
1819
  };
1818
- declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1820
+ declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1819
1821
  declare type ApartmentResourceCompanyDetails = {
1820
- company: CompanyAutocompleteFields$1 | null;
1822
+ company: CompanyAutocompleteFields | null;
1821
1823
  operationalAccountNumber: string;
1822
1824
  payerCode: string;
1823
1825
  dataSubmissionDays: DataSubmissionDaysParams;
1824
1826
  access: ResourceAccessParams;
1825
1827
  sampleReceiptLink: string;
1826
- sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1828
+ sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1827
1829
  };
1828
1830
  declare type ApartmentResourceInterface = {
1829
1831
  type: ApartmentResourceTypes;
@@ -1860,15 +1862,15 @@ declare type DocumentsStoreInterface = {
1860
1862
  loader: Loader;
1861
1863
  };
1862
1864
  declare type PostDocumentsResponse = {
1863
- documents: DocumentModel$1[];
1865
+ documents: DocumentModel[];
1864
1866
  };
1865
1867
  declare type DocumentAgentInterface = {
1866
1868
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1867
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1868
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1869
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1870
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1869
1871
  };
1870
1872
  declare type DocumentsAgentInterface = {
1871
- getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1873
+ getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1872
1874
  } & DocumentAgentInterface;
1873
1875
 
1874
1876
  declare type MetroLineParams = {
@@ -1939,7 +1941,7 @@ declare type ApartmentFeatureModel = {
1939
1941
  };
1940
1942
  declare type ApartmentDocumentModel = {
1941
1943
  id: number;
1942
- document: DocumentModel$1;
1944
+ document: DocumentModel;
1943
1945
  expiration_date: string;
1944
1946
  start_date: string;
1945
1947
  number: string;
@@ -1951,7 +1953,7 @@ declare type MeterCommonInfoModel = {
1951
1953
  tariff?: TariffLinkModel;
1952
1954
  activation_date?: string;
1953
1955
  check_date?: string;
1954
- type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1956
+ type?: ElectricityMeterTypes | WaterMeterTypes;
1955
1957
  apartment: ApartmentLinkModel;
1956
1958
  company: CompanyLiteParams;
1957
1959
  operating_account_number?: string | null;
@@ -2072,7 +2074,7 @@ declare type ApartmentModel = {
2072
2074
  owner_id: number;
2073
2075
  metro_stations: ApartmentMetroParams[];
2074
2076
  rental_status: RentalStatuses;
2075
- main_image: ImageModel$1;
2077
+ main_image: ImageModel;
2076
2078
  tv_type: TVTypes | null;
2077
2079
  inspection: ApartmentInspectionModel;
2078
2080
  distance_to_center_kilometers: number | null;
@@ -2099,7 +2101,7 @@ declare type ApartmentLiteModel = {
2099
2101
  renter: LiteUserModel | null;
2100
2102
  rental_status: RentalStatuses;
2101
2103
  renter_payment_status: RentalPaymentStatuses;
2102
- main_image: ImageModel$1;
2104
+ main_image: ImageModel;
2103
2105
  service_contract?: ServiceContractLiteModel;
2104
2106
  is_imported_from_old_crm?: boolean;
2105
2107
  max_electricity_counters?: number | null;
@@ -2145,7 +2147,7 @@ declare type ObjectForMapModel = {
2145
2147
  apartment_number: string;
2146
2148
  address: string;
2147
2149
  geolocation: LatLonParams;
2148
- main_image: ImageModel$1;
2150
+ main_image: ImageModel;
2149
2151
  renter: ClientLiteModel | null;
2150
2152
  owner: ClientLiteModel;
2151
2153
  metro_stations: ApartmentMetroStationModel[];
@@ -2177,13 +2179,13 @@ declare class DocumentStore implements FileStoreInterface {
2177
2179
  agent: DocumentAgentInterface;
2178
2180
  loader: Loader;
2179
2181
  settings?: any;
2180
- constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2182
+ constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2181
2183
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2182
- updateDocument: (res: DocumentModel$1) => void;
2184
+ updateDocument: (res: DocumentModel) => void;
2183
2185
  deleteDocument: (...params: any) => Promise<void>;
2184
2186
  get extension(): string;
2185
2187
  get title(): string;
2186
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2188
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2187
2189
  }
2188
2190
 
2189
2191
  type InputTypes =
@@ -2243,13 +2245,13 @@ declare type FileParams = {
2243
2245
  size?: number | null;
2244
2246
  file: File;
2245
2247
  };
2246
- declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2248
+ declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2247
2249
  declare type FileStoreParams = {
2248
2250
  id?: number | null;
2249
2251
  url?: string;
2250
2252
  index?: number | string | null;
2251
2253
  createdBy?: string | null;
2252
- visibility?: DocumentVisibilityAPIVariants$1;
2254
+ visibility?: DocumentVisibilityAPIVariants;
2253
2255
  name?: string;
2254
2256
  date?: string | null;
2255
2257
  size?: number | null;
@@ -2400,8 +2402,8 @@ declare const FillingTagsAgent: {
2400
2402
  };
2401
2403
 
2402
2404
  declare const TariffsAgent: {
2403
- all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2404
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2405
+ all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2406
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2405
2407
  };
2406
2408
 
2407
2409
  type SignInFormFields = {
@@ -2420,8 +2422,8 @@ declare const ApartmentsAgent: {
2420
2422
  };
2421
2423
 
2422
2424
  declare const ApartmentMetersAgent: {
2423
- getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2424
- getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2425
+ getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2426
+ getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2425
2427
  };
2426
2428
 
2427
2429
  declare const requests: {
@@ -2445,7 +2447,7 @@ declare const meterUnitLabel: {
2445
2447
  electricity: string;
2446
2448
  };
2447
2449
 
2448
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2450
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2449
2451
 
2450
2452
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2451
2453
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2461,34 +2463,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2461
2463
  }, "">;
2462
2464
 
2463
2465
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2464
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2466
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2465
2467
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2466
- declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2468
+ declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2467
2469
  temp_file_id: number;
2468
2470
  name: string;
2469
- visibility: DocumentVisibilityAPIVariants$1;
2471
+ visibility: DocumentVisibilityAPIVariants;
2470
2472
  url: string;
2471
2473
  } | null;
2472
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2473
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2474
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2474
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2475
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2476
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2475
2477
  name: string;
2476
- visibility: DocumentVisibilityAPIVariants$1;
2478
+ visibility: DocumentVisibilityAPIVariants;
2477
2479
  } | null;
2478
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2480
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2479
2481
  name: string;
2480
- visibility: DocumentVisibilityAPIVariants$1;
2482
+ visibility: DocumentVisibilityAPIVariants;
2481
2483
  } | null>;
2482
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2483
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2484
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2485
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2486
- declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2487
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2488
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2489
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2490
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2491
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2484
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2485
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2486
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2487
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2488
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2489
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2490
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2491
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2492
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2493
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2492
2494
 
2493
2495
  declare const matchesAPISubjectRoles: {
2494
2496
  maroom: string;
@@ -2581,16 +2583,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2581
2583
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2582
2584
 
2583
2585
  declare class FilesStore {
2584
- files: FileStore$1[];
2586
+ files: FileStore[];
2585
2587
  variant: FileVariant;
2586
2588
  constructor(variant: FileVariant);
2587
- addFile: (newFile: FileStore$1) => void;
2589
+ addFile: (newFile: FileStore) => void;
2588
2590
  removeFile: (index: number) => void;
2589
- setFiles: (files: FileStore$1[]) => void;
2591
+ setFiles: (files: FileStore[]) => void;
2590
2592
  uploadFiles: () => Promise<void>;
2591
- get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2593
+ get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2592
2594
  get uploadedAllFiles(): boolean;
2593
- get notUploadedFiles(): FileStore$1[];
2595
+ get notUploadedFiles(): FileStore[];
2594
2596
  get isUploading(): boolean;
2595
2597
  get videoLength(): number;
2596
2598
  get nonVideoLength(): number;
@@ -2612,7 +2614,7 @@ declare type UploadMediaToStoreSettings = {
2612
2614
  messages?: UploadMediaMessages;
2613
2615
  withoutFilesStore?: boolean;
2614
2616
  };
2615
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2617
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2616
2618
 
2617
2619
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2618
2620
  onSearchItem: (value: string) => void;
@@ -2784,11 +2786,11 @@ type DistrictAutocompleteFields = {
2784
2786
  type ReplaceableTariffFields = {
2785
2787
  name: string
2786
2788
  id?: number
2787
- type?: ResourceTypes$1
2789
+ type?: ResourceTypes
2788
2790
  }
2789
2791
 
2790
2792
  type TariffCommonFields = {
2791
- resourceType: ResourceTypes$1
2793
+ resourceType: ResourceTypes
2792
2794
  name: string
2793
2795
  startDate: DateTime
2794
2796
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2800,7 +2802,7 @@ type TariffCommonFields = {
2800
2802
  }
2801
2803
 
2802
2804
  type ElectricityTariffCreationFormFields = {
2803
- type: ElectricityMeterTypes$1
2805
+ type: ElectricityMeterTypes
2804
2806
  isOverallConsumption: boolean
2805
2807
  T1?: number
2806
2808
  T2?: number
@@ -2821,7 +2823,7 @@ type TariffCreationFormProps = {
2821
2823
  handleClose: () => void
2822
2824
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2823
2825
  creationForm: MultistepForm$1<TariffCreationFormFields>
2824
- defaultResource: ResourceTypes$1
2826
+ defaultResource: ResourceTypes
2825
2827
  settings?: any
2826
2828
  }
2827
2829
 
@@ -2866,7 +2868,7 @@ declare class TariffsLiteStore {
2866
2868
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2867
2869
  settings?: any;
2868
2870
  constructor(settings?: any);
2869
- fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2871
+ fetchAll: (resource: ResourceTypes) => Promise<void>;
2870
2872
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2871
2873
  static getTariffParams: (tariff: CommonTariffModel) => {
2872
2874
  id: number;
@@ -2874,7 +2876,7 @@ declare class TariffsLiteStore {
2874
2876
  };
2875
2877
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2876
2878
  static getTariffValues: (data: TariffCreationFormFields) => {
2877
- type: ElectricityMeterTypes$1;
2879
+ type: ElectricityMeterTypes;
2878
2880
  T1: string | undefined;
2879
2881
  T2: string | undefined;
2880
2882
  T3: string | undefined;
@@ -3167,7 +3169,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3167
3169
  name?: string
3168
3170
  label?: string
3169
3171
  hideName?: string
3170
- resource: ResourceTypes$1
3172
+ resource: ResourceTypes
3171
3173
  filter?: string
3172
3174
  filterRequired?: boolean
3173
3175
  settings?: any
@@ -3180,7 +3182,7 @@ type TariffGroupAutocompleteFields = {
3180
3182
  }
3181
3183
 
3182
3184
  type MeterFeaturesFieldsProps = {
3183
- resource?: ResourceTypes$1
3185
+ resource?: ResourceTypes
3184
3186
  replacements?: LiteMeterInterface[]
3185
3187
  isNewResource?: boolean
3186
3188
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3194,7 +3196,7 @@ type MeterFeaturesFieldsProps = {
3194
3196
  withNextCheck?: boolean
3195
3197
  defaultValues?: Partial<MeterFeaturesFormFields>
3196
3198
  handleMeterTypeChange?: (
3197
- meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3199
+ meterType: ElectricityMeterTypes | WaterMeterTypes | null
3198
3200
  ) => void
3199
3201
  settings?: any
3200
3202
  disabledInitial?: boolean
@@ -3207,14 +3209,14 @@ type BasicMeterFeaturesFormFields = {
3207
3209
  initialValueT1?: number
3208
3210
  initialValueT2?: number
3209
3211
  initialValueT3?: number
3210
- type?: MeterTypes$1
3211
- resource?: ResourceTypes$1
3212
+ type?: MeterTypes
3213
+ resource?: ResourceTypes
3212
3214
  withAutoSending?: boolean
3213
3215
  }
3214
3216
 
3215
3217
  type MeterFeaturesFormFields = {
3216
3218
  tariff: TariffGroupAutocompleteFields | null
3217
- company: CompanyAutocompleteFields$1 | null
3219
+ company: CompanyAutocompleteFields | null
3218
3220
  nextCheck: DateTime | null
3219
3221
  lastValue?: number
3220
3222
  lastValueT1?: number
@@ -3228,8 +3230,8 @@ type MeterFeaturesFormFields = {
3228
3230
  } & BasicMeterFeaturesFormFields
3229
3231
 
3230
3232
  type BasicMeterFieldsSettings = {
3231
- resource?: ResourceTypes$1
3232
- meterType?: MeterTypes$1
3233
+ resource?: ResourceTypes
3234
+ meterType?: MeterTypes
3233
3235
  disabledInitial?: boolean
3234
3236
  }
3235
3237
 
@@ -3261,10 +3263,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3261
3263
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3262
3264
 
3263
3265
  type MeterTypeRadioGroupProps = {
3264
- resource?: ResourceTypes$1
3266
+ resource?: ResourceTypes
3265
3267
  form: UseFormReturn<any>
3266
3268
  handleChange: (
3267
- meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3269
+ meterType: ElectricityMeterTypes | WaterMeterTypes | null
3268
3270
  ) => void
3269
3271
  disabled?: boolean
3270
3272
  waterOptions?: OptionParams[]
@@ -3276,7 +3278,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3276
3278
  type MeterFeaturesFormProps = {
3277
3279
  formStore?: MultistepForm$1<any>
3278
3280
  handleMeterTypeChange?: (
3279
- meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3281
+ meterType: ElectricityMeterTypes | WaterMeterTypes | null
3280
3282
  ) => void
3281
3283
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3282
3284
 
@@ -3344,7 +3346,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3344
3346
  startDate: undefined;
3345
3347
  }, "">;
3346
3348
 
3347
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3349
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3348
3350
 
3349
3351
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3350
3352
 
@@ -3360,7 +3362,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3360
3362
 
3361
3363
  type TariffReplacementFieldsProps = {
3362
3364
  form: UseFormReturn<TariffCommonFields>
3363
- resource: ResourceTypes$1
3365
+ resource: ResourceTypes
3364
3366
  setReplaceable: (value: boolean) => void
3365
3367
  settings?: any
3366
3368
  }
@@ -3776,7 +3778,7 @@ type UploadPhotosButtonProps = {
3776
3778
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3777
3779
 
3778
3780
  type UploadedImageProps = {
3779
- image: FileStore$1
3781
+ image: FileStore
3780
3782
  index: number
3781
3783
  onClick: (index: number) => void
3782
3784
  onDelete: (index: number) => void
@@ -3809,14 +3811,14 @@ declare type PartialMeterValuesFields = {
3809
3811
  };
3810
3812
  declare type PartialMeterInfoFields = {
3811
3813
  id: number;
3812
- resource: ResourceTypes$1;
3813
- type?: MeterTypes$1;
3814
+ resource: ResourceTypes;
3815
+ type?: MeterTypes;
3814
3816
  number: string;
3815
- images: FileStore$1[];
3817
+ images: FileStore[];
3816
3818
  maxValue?: PartialMeterValuesFields;
3817
3819
  values: PartialMeterValuesFields;
3818
3820
  } & PartialMeterValuesFields;
3819
- 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>[];
3821
+ 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>[];
3820
3822
 
3821
3823
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3822
3824
  type: string | undefined;
@@ -3843,4 +3845,4 @@ type SignInPageProps = {
3843
3845
 
3844
3846
  declare const _default: (props: SignInPageProps) => JSX.Element;
3845
3847
 
3846
- 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 };
3848
+ 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 };