kui-crm 0.0.588 → 0.0.589

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 = "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;
@@ -528,9 +528,9 @@ declare type TransferInspectionMeterModel = {
528
528
  declare type TransferInspectionFields = {
529
529
  transfer_type: TransferInspectionTypes;
530
530
  meters: TransferInspectionMeterModel[];
531
- inspection_document: DocumentModel | null;
532
- rental_contract_termination_document: DocumentModel | null;
533
- service_contract_termination_document: DocumentModel | null;
531
+ inspection_document: DocumentModel$1 | null;
532
+ rental_contract_termination_document: DocumentModel$1 | null;
533
+ service_contract_termination_document: DocumentModel$1 | null;
534
534
  } & FullInspectionCommonFields;
535
535
  declare type RegularInspectionFields = {
536
536
  meters: TransferInspectionMeterModel[];
@@ -539,7 +539,7 @@ declare type RegularInspectionFields = {
539
539
  declare type ComparableObjectModel = {
540
540
  id: number;
541
541
  advertisement_link: string;
542
- advertisement_screenshot: ImageModel | null;
542
+ advertisement_screenshot: ImageModel$1 | null;
543
543
  object_price: string;
544
544
  key_object_differences: string;
545
545
  };
@@ -547,7 +547,7 @@ declare type StatisticalEvaluationModel = {
547
547
  id: number;
548
548
  source_name: string;
549
549
  link: string;
550
- screenshot: ImageModel | null;
550
+ screenshot: ImageModel$1 | null;
551
551
  min_price: string;
552
552
  max_price: string;
553
553
  };
@@ -590,11 +590,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
590
590
  declare type ImpairmentModel = {
591
591
  id: number;
592
592
  impairment_type: ImpairmentType;
593
- proof_file: DocumentModel | null;
593
+ proof_file: DocumentModel$1 | null;
594
594
  price: number;
595
595
  solution: string;
596
596
  description: string;
597
- photos: ImageModel[];
597
+ photos: ImageModel$1[];
598
598
  item_link: string;
599
599
  bill_line_name: string;
600
600
  };
@@ -605,7 +605,7 @@ declare type InitialInspectionModelFields = {
605
605
  used_resources: UsedResourcesModel;
606
606
  } & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
607
607
  declare type AppraisalRequestModelFields = {
608
- floor_plan: DocumentModel | null;
608
+ floor_plan: DocumentModel$1 | null;
609
609
  };
610
610
  declare type InspectionModel = {
611
611
  initial?: InitialInspectionModelFields;
@@ -639,7 +639,7 @@ declare type InventoryInspectionFields = {
639
639
  allowed_smoking: boolean;
640
640
  additional_terms: string;
641
641
  resources: InspectionResourcesModel[];
642
- inspection_document: DocumentModel | null;
642
+ inspection_document: DocumentModel$1 | null;
643
643
  } & FullInspectionCommonFields;
644
644
  declare type InventoryInspectionModel = {
645
645
  inventory: InventoryInspectionFields;
@@ -691,10 +691,10 @@ declare type InspectionFeedbackInterface = {
691
691
  declare type PatchInspectionImageParams = {
692
692
  id?: number;
693
693
  order?: number;
694
- } & Partial<ImageBodyRequest>;
694
+ } & Partial<ImageBodyRequest$1>;
695
695
  declare type PatchInspectionVideoParams = {
696
696
  id?: number;
697
- } & Partial<VideoBodyRequest>;
697
+ } & Partial<VideoBodyRequest$1>;
698
698
  declare type PatchRoomImagesParams = {
699
699
  id?: number | null;
700
700
  purpose: InspectionRoomPhotoTypes;
@@ -735,8 +735,8 @@ declare type InspectionFillingModel = {
735
735
  description: string;
736
736
  serial_code: string;
737
737
  amount: number;
738
- photos: ImageModel[];
739
- instruction: DocumentModel;
738
+ photos: ImageModel$1[];
739
+ instruction: DocumentModel$1;
740
740
  is_absent: boolean;
741
741
  previously_absent: boolean;
742
742
  model: string;
@@ -818,7 +818,7 @@ declare type CommonMeterParams = {
818
818
  company: CompanyLiteParams;
819
819
  operating_account_number?: string | null;
820
820
  company_is_administrative: boolean;
821
- photos?: ImageModel[];
821
+ photos?: ImageModel$1[];
822
822
  auto_sending: boolean;
823
823
  no_tariff: boolean;
824
824
  is_avg: boolean;
@@ -830,15 +830,15 @@ declare type ElectricityMeterValues = {
830
830
  T3?: MeterTariffModel;
831
831
  };
832
832
  declare type WaterMeterParams = {
833
- type: WaterMeterTypes;
833
+ type: WaterMeterTypes$1;
834
834
  tariff: SingleCounterTariffModel;
835
835
  } & CommonMeterParams & MeterTariffModel;
836
836
  declare type SingleMeterParams = {
837
- type?: WaterMeterTypes;
837
+ type?: WaterMeterTypes$1;
838
838
  tariff: SingleCounterTariffModel;
839
839
  } & CommonMeterParams & MeterTariffModel;
840
840
  declare type ElectricityMeterParams = {
841
- type: ElectricityMeterTypes;
841
+ type: ElectricityMeterTypes$1;
842
842
  values: ElectricityMeterValues;
843
843
  tariff: ElectricityMeterTariffModel;
844
844
  overall_value?: number;
@@ -1081,7 +1081,7 @@ declare type CountryParams = {
1081
1081
  code: string;
1082
1082
  } & CatalogItemParams;
1083
1083
 
1084
- type FileWithVisibility = {
1084
+ type FileWithVisibility$1 = {
1085
1085
  id?: number
1086
1086
  file: File | null
1087
1087
  tenant: boolean
@@ -1090,8 +1090,8 @@ type FileWithVisibility = {
1090
1090
  url: string
1091
1091
  }
1092
1092
 
1093
- type InputFileWithVisibilityFields =
1094
- | FileWithVisibility
1093
+ type InputFileWithVisibilityFields$1 =
1094
+ | FileWithVisibility$1
1095
1095
  | DocumentWithVisibility
1096
1096
  | null
1097
1097
  | undefined
@@ -1121,7 +1121,7 @@ type ChangeReasonFieldsProps<T> = {
1121
1121
  }
1122
1122
 
1123
1123
  type ChangeReasonFormFields = {
1124
- reason: InputFileWithVisibilityFields
1124
+ reason: InputFileWithVisibilityFields$1
1125
1125
  comment?: string
1126
1126
  }
1127
1127
 
@@ -1136,13 +1136,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1136
1136
  settings?: any
1137
1137
  } & InputWithControllerProps<TFormValues>
1138
1138
 
1139
- type CompanyAutocompleteFields = {
1139
+ type CompanyAutocompleteFields$1 = {
1140
1140
  id: number
1141
1141
  name: string
1142
1142
  logo?: string | null
1143
1143
  }
1144
1144
 
1145
- declare class FileStore implements FileStoreInterface {
1145
+ declare class FileStore$1 implements FileStoreInterface {
1146
1146
  id: number | null;
1147
1147
  index?: number | null;
1148
1148
  name: string;
@@ -1173,13 +1173,13 @@ declare class FileStore implements FileStoreInterface {
1173
1173
  setIndex: (index: number) => void;
1174
1174
  get title(): string;
1175
1175
  static createPreviewUrl: (file: File) => Promise<string>;
1176
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1177
- static initFromFileModel: (file: FileModel) => FileStore;
1178
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1179
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1180
- static initFromVideoModel: (image: VideoModel) => FileStore;
1181
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1182
- static initFromFileStore: (file: FileStore) => FileStore;
1176
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1177
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1178
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1179
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1180
+ static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1181
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1182
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1183
1183
  }
1184
1184
 
1185
1185
  declare type ImageParams = {
@@ -1214,8 +1214,8 @@ declare class ImageStore implements ImageStoreInterface {
1214
1214
  delete: () => Promise<void>;
1215
1215
  get extension(): string;
1216
1216
  get title(): string;
1217
- static initFromImageModel: (image: ImageModel) => ImageStore;
1218
- static initFromVideoModel: (image: VideoModel) => ImageStore;
1217
+ static initFromImageModel: (image: ImageModel$1) => ImageStore;
1218
+ static initFromVideoModel: (image: VideoModel$1) => ImageStore;
1219
1219
  }
1220
1220
 
1221
1221
  declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
@@ -1340,7 +1340,7 @@ declare type LockerAutocompleteFields = {
1340
1340
  declare type ApartmentOverviewPaymentInfoFields = {
1341
1341
  payerCode?: string;
1342
1342
  communalServicesAccount?: string;
1343
- company?: CompanyAutocompleteFields | null;
1343
+ company?: CompanyAutocompleteFields$1 | null;
1344
1344
  } & ChangeReasonFormFields;
1345
1345
  declare type ApartmentOverviewInfoFields = {
1346
1346
  locker?: LockerAutocompleteFields | null;
@@ -1363,14 +1363,14 @@ declare type InspectionPaymentInfoParams = {
1363
1363
  } & ApartmentPaymentInfoParams;
1364
1364
  declare type InspectionMeterInfoParams = {
1365
1365
  id: number;
1366
- resource: ResourceTypes;
1367
- type?: MeterTypes;
1366
+ resource: ResourceTypes$1;
1367
+ type?: MeterTypes$1;
1368
1368
  number: string;
1369
1369
  startDate: DateTime | null;
1370
1370
  company: CompanyLiteParams;
1371
1371
  operationalAccountNumber?: string | null;
1372
1372
  tariff: EntityLinkParams | null;
1373
- passportFile: FileStore | null;
1373
+ passportFile: FileStore$1 | null;
1374
1374
  initialValue?: number;
1375
1375
  lastValue?: number;
1376
1376
  initialValueT1?: number;
@@ -1392,8 +1392,8 @@ declare type ValuesParams = {
1392
1392
  };
1393
1393
  declare type PartialMeterInfoParams = {
1394
1394
  id: number;
1395
- type: MeterTypes;
1396
- resource: ResourceTypes;
1395
+ type: MeterTypes$1;
1396
+ resource: ResourceTypes$1;
1397
1397
  number: string;
1398
1398
  values: ValuesParams;
1399
1399
  images?: (ImageStore | UploadImageParams)[];
@@ -1407,7 +1407,7 @@ declare type InspectionPartialMetersInfoParams = {
1407
1407
  declare type ComparableObjectParams = {
1408
1408
  id: number;
1409
1409
  link: string;
1410
- screenshot: FileStore | null;
1410
+ screenshot: FileStore$1 | null;
1411
1411
  price: number;
1412
1412
  differences: string;
1413
1413
  };
@@ -1415,7 +1415,7 @@ declare type StatisticalEvaluationParams = {
1415
1415
  id: number;
1416
1416
  dataSourceName: string;
1417
1417
  link: string;
1418
- screenshot: FileStore | null;
1418
+ screenshot: FileStore$1 | null;
1419
1419
  minPrice: number;
1420
1420
  maxPrice: number;
1421
1421
  };
@@ -1440,8 +1440,8 @@ declare type FillingInfoFormFields = {
1440
1440
  name?: string;
1441
1441
  description?: string;
1442
1442
  type?: ApartmentFillingVariants | null;
1443
- instruction?: InputFileWithVisibilityFields;
1444
- tempImages?: ImageBodyRequest[];
1443
+ instruction?: InputFileWithVisibilityFields$1;
1444
+ tempImages?: ImageBodyRequest$1[];
1445
1445
  };
1446
1446
 
1447
1447
  declare type FillingTagParams = {
@@ -1456,7 +1456,7 @@ declare type FillingParams = {
1456
1456
  images?: (ImageStore | UploadFileParams)[];
1457
1457
  serialNumber?: string;
1458
1458
  numberOfSubjects?: number | string | null;
1459
- instruction?: InputFileWithVisibilityFields | null;
1459
+ instruction?: InputFileWithVisibilityFields$1 | null;
1460
1460
  type?: ApartmentFillingVariants;
1461
1461
  loader?: Loader;
1462
1462
  };
@@ -1468,7 +1468,7 @@ declare type FillingFullParams = {
1468
1468
  images?: (ImageStore | UploadFileParams)[];
1469
1469
  serialNumber?: string;
1470
1470
  numberOfSubjects?: number | string | null;
1471
- instruction?: InputFileWithVisibilityFields | null;
1471
+ instruction?: InputFileWithVisibilityFields$1 | null;
1472
1472
  type?: ApartmentFillingVariants;
1473
1473
  loader?: Loader;
1474
1474
  check?: boolean | null;
@@ -1487,31 +1487,31 @@ declare type TariffGroupLiteParams = {
1487
1487
  name: string;
1488
1488
  };
1489
1489
 
1490
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1491
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
1492
- declare type WaterMeterTypes$1 = "cold" | "hot";
1493
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1494
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1495
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1496
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1497
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1498
- declare type FileBodyRequest$1 = {
1490
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1491
+ declare type UnitOfPaymentTypes = "percent" | "value";
1492
+ declare type WaterMeterTypes = "cold" | "hot";
1493
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1494
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1495
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1496
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1497
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1498
+ declare type FileBodyRequest = {
1499
1499
  temp_file_id?: number;
1500
1500
  name: string;
1501
- visibility?: DocumentVisibilityAPIVariants$1;
1501
+ visibility?: DocumentVisibilityAPIVariants;
1502
1502
  url?: string;
1503
1503
  };
1504
- declare type ImageBodyRequest$1 = {
1504
+ declare type ImageBodyRequest = {
1505
1505
  temp_file_id: number;
1506
1506
  image_name: string;
1507
1507
  url: string;
1508
1508
  };
1509
- declare type VideoBodyRequest$1 = {
1509
+ declare type VideoBodyRequest = {
1510
1510
  temp_file_id: number;
1511
1511
  file_name: string;
1512
1512
  url: string;
1513
1513
  };
1514
- declare type ImageModel$1 = {
1514
+ declare type ImageModel = {
1515
1515
  id: number;
1516
1516
  image_name?: string;
1517
1517
  image_url?: string;
@@ -1520,22 +1520,22 @@ declare type ImageModel$1 = {
1520
1520
  image_large_url: string;
1521
1521
  size: number;
1522
1522
  };
1523
- declare type FileModel$1 = {
1523
+ declare type FileModel = {
1524
1524
  id: number;
1525
1525
  name: string;
1526
1526
  size: number;
1527
1527
  url: string;
1528
1528
  };
1529
- declare type DocumentModel$1 = {
1529
+ declare type DocumentModel = {
1530
1530
  pk: number;
1531
1531
  name: string;
1532
1532
  created?: string;
1533
1533
  attachment: string;
1534
1534
  size: number;
1535
1535
  uploaded_by?: string | null;
1536
- visibility?: DocumentVisibilityAPIVariants$1;
1536
+ visibility?: DocumentVisibilityAPIVariants;
1537
1537
  };
1538
- declare type VideoModel$1 = {
1538
+ declare type VideoModel = {
1539
1539
  id: number;
1540
1540
  video_url: string;
1541
1541
  file_name?: string;
@@ -1546,7 +1546,7 @@ declare type VideoModel$1 = {
1546
1546
  resolution?: string;
1547
1547
  };
1548
1548
 
1549
- type FileWithVisibility$1 = {
1549
+ type FileWithVisibility = {
1550
1550
  id?: number
1551
1551
  file: File | null
1552
1552
  tenant: boolean
@@ -1555,19 +1555,19 @@ type FileWithVisibility$1 = {
1555
1555
  url: string
1556
1556
  }
1557
1557
 
1558
- type InputFileWithVisibilityFields$1 =
1559
- | FileWithVisibility$1
1558
+ type InputFileWithVisibilityFields =
1559
+ | FileWithVisibility
1560
1560
  | DocumentWithVisibility$1
1561
1561
  | null
1562
1562
  | undefined
1563
1563
 
1564
- type CompanyAutocompleteFields$1 = {
1564
+ type CompanyAutocompleteFields = {
1565
1565
  id: number
1566
1566
  name: string
1567
1567
  logo?: string | null
1568
1568
  }
1569
1569
 
1570
- declare class FileStore$1 implements FileStoreInterface$1 {
1570
+ declare class FileStore implements FileStoreInterface$1 {
1571
1571
  id: number | null;
1572
1572
  index?: number | null;
1573
1573
  name: string;
@@ -1598,22 +1598,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
1598
1598
  setIndex: (index: number) => void;
1599
1599
  get title(): string;
1600
1600
  static createPreviewUrl: (file: File) => Promise<string>;
1601
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1602
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1603
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1604
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1605
- static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1606
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1607
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1601
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1602
+ static initFromFileModel: (file: FileModel) => FileStore;
1603
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1604
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1605
+ static initFromVideoModel: (image: VideoModel) => FileStore;
1606
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1607
+ static initFromFileStore: (file: FileStore) => FileStore;
1608
1608
  }
1609
1609
 
1610
1610
  type PartialPayerFields$1 = {
1611
- payer?: ResourcePaymentRoles$1 | "partial"
1612
- mainPayer?: ResourcePaymentRoles$1
1613
- refundFrom?: ResourcePaymentRoles$1
1614
- partType?: UnitOfPaymentTypes$1 | null
1611
+ payer?: ResourcePaymentRoles | "partial"
1612
+ mainPayer?: ResourcePaymentRoles
1613
+ refundFrom?: ResourcePaymentRoles
1614
+ partType?: UnitOfPaymentTypes | null
1615
1615
  refundValue?: number | string | null
1616
- utilityType: UtilityTypes$1
1616
+ utilityType: UtilityTypes
1617
1617
  }
1618
1618
 
1619
1619
  declare type FilesStoreInterface$1 = {
@@ -1645,13 +1645,13 @@ declare type DocumentWithVisibility$1 = {
1645
1645
  visibility?: DocumentVisibilityVariants$1;
1646
1646
  extension: string;
1647
1647
  };
1648
- declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1648
+ declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1649
1649
  declare type FileStoreParams$1 = {
1650
1650
  id?: number | null;
1651
1651
  url?: string;
1652
1652
  index?: number | string | null;
1653
1653
  createdBy?: string | null;
1654
- visibility?: DocumentVisibilityAPIVariants$1;
1654
+ visibility?: DocumentVisibilityAPIVariants;
1655
1655
  name?: string;
1656
1656
  date?: string | null;
1657
1657
  size?: number | null;
@@ -1679,14 +1679,14 @@ type BasicMeterFeaturesFormFields$1 = {
1679
1679
  initialValueT1?: number
1680
1680
  initialValueT2?: number
1681
1681
  initialValueT3?: number
1682
- type?: MeterTypes$1
1683
- resource?: ResourceTypes$1
1682
+ type?: MeterTypes
1683
+ resource?: ResourceTypes
1684
1684
  withAutoSending?: boolean
1685
1685
  }
1686
1686
 
1687
1687
  type MeterFeaturesFormFields$1 = {
1688
1688
  tariff: TariffGroupAutocompleteFields$1 | null
1689
- company: CompanyAutocompleteFields$1 | null
1689
+ company: CompanyAutocompleteFields | null
1690
1690
  nextCheck: DateTime | null
1691
1691
  lastValue?: number
1692
1692
  lastValueT1?: number
@@ -1710,9 +1710,9 @@ declare type ApartmentMeterValues = {
1710
1710
  } & MeterValues;
1711
1711
  declare type InspectionMeterFields = {
1712
1712
  id?: number;
1713
- resource: ResourceTypes$1;
1714
- passportFile?: InputFileWithVisibilityFields$1;
1715
- images: FileStore$1[];
1713
+ resource: ResourceTypes;
1714
+ passportFile?: InputFileWithVisibilityFields;
1715
+ images: FileStore[];
1716
1716
  } & MeterFeaturesFormFields$1;
1717
1717
 
1718
1718
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1727,7 +1727,7 @@ type PartialPayerProps<T> = {
1727
1727
  title: string
1728
1728
  name: string
1729
1729
  form: UseFormReturn<T>
1730
- utilityType: UtilityTypes
1730
+ utilityType: UtilityTypes$1
1731
1731
  fieldsVariant?: PartialPayerVariants
1732
1732
  settings?: ObjectType
1733
1733
  disabled?: boolean
@@ -1735,12 +1735,12 @@ type PartialPayerProps<T> = {
1735
1735
  }
1736
1736
 
1737
1737
  type PartialPayerFields = {
1738
- payer?: ResourcePaymentRoles | "partial"
1739
- mainPayer?: ResourcePaymentRoles
1740
- refundFrom?: ResourcePaymentRoles
1741
- partType?: UnitOfPaymentTypes | null
1738
+ payer?: ResourcePaymentRoles$1 | "partial"
1739
+ mainPayer?: ResourcePaymentRoles$1
1740
+ refundFrom?: ResourcePaymentRoles$1
1741
+ partType?: UnitOfPaymentTypes$1 | null
1742
1742
  refundValue?: number | string | null
1743
- utilityType: UtilityTypes
1743
+ utilityType: UtilityTypes$1
1744
1744
  }
1745
1745
 
1746
1746
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1824,15 +1824,15 @@ declare type ResourceAccessParams = {
1824
1824
  password?: string;
1825
1825
  description?: string;
1826
1826
  };
1827
- declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1827
+ declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1828
1828
  declare type ApartmentResourceCompanyDetails = {
1829
- company: CompanyAutocompleteFields | null;
1829
+ company: CompanyAutocompleteFields$1 | null;
1830
1830
  operationalAccountNumber: string;
1831
1831
  payerCode: string;
1832
1832
  dataSubmissionDays: DataSubmissionDaysParams;
1833
1833
  access: ResourceAccessParams;
1834
1834
  sampleReceiptLink: string;
1835
- sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1835
+ sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1836
1836
  };
1837
1837
  declare type ApartmentResourceInterface = {
1838
1838
  type: ApartmentResourceTypes;
@@ -1869,15 +1869,15 @@ declare type DocumentsStoreInterface = {
1869
1869
  loader: Loader;
1870
1870
  };
1871
1871
  declare type PostDocumentsResponse = {
1872
- documents: DocumentModel[];
1872
+ documents: DocumentModel$1[];
1873
1873
  };
1874
1874
  declare type DocumentAgentInterface = {
1875
1875
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1876
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1877
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1876
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1877
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1878
1878
  };
1879
1879
  declare type DocumentsAgentInterface = {
1880
- getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1880
+ getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1881
1881
  } & DocumentAgentInterface;
1882
1882
 
1883
1883
  declare type MetroLineParams = {
@@ -1948,12 +1948,12 @@ declare type ApartmentFeatureModel = {
1948
1948
  };
1949
1949
  declare type ApartmentDocumentModel = {
1950
1950
  id: number;
1951
- document: DocumentModel;
1951
+ document: DocumentModel$1;
1952
1952
  expiration_date: string;
1953
1953
  start_date: string;
1954
1954
  number: string;
1955
1955
  amount: string;
1956
- beneficiary: LiteUserModel;
1956
+ beneficiary?: LiteUserModel | null;
1957
1957
  };
1958
1958
  declare type MeterCommonInfoModel = {
1959
1959
  id: number;
@@ -1961,7 +1961,7 @@ declare type MeterCommonInfoModel = {
1961
1961
  tariff?: TariffLinkModel;
1962
1962
  activation_date?: string;
1963
1963
  check_date?: string;
1964
- type?: ElectricityMeterTypes | WaterMeterTypes;
1964
+ type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1965
1965
  apartment: ApartmentLinkModel;
1966
1966
  company: CompanyLiteParams;
1967
1967
  operating_account_number?: string | null;
@@ -2082,7 +2082,7 @@ declare type ApartmentModel = {
2082
2082
  owner_id: number;
2083
2083
  metro_stations: ApartmentMetroParams[];
2084
2084
  rental_status: RentalStatuses;
2085
- main_image: ImageModel;
2085
+ main_image: ImageModel$1;
2086
2086
  tv_type: TVTypes | null;
2087
2087
  inspection: ApartmentInspectionModel;
2088
2088
  distance_to_center_kilometers: number | null;
@@ -2109,7 +2109,7 @@ declare type ApartmentLiteModel = {
2109
2109
  renter: LiteUserModel | null;
2110
2110
  rental_status: RentalStatuses;
2111
2111
  renter_payment_status: RentalPaymentStatuses;
2112
- main_image: ImageModel;
2112
+ main_image: ImageModel$1;
2113
2113
  service_contract?: ServiceContractLiteModel;
2114
2114
  is_imported_from_old_crm?: boolean;
2115
2115
  max_electricity_counters?: number | null;
@@ -2155,7 +2155,7 @@ declare type ObjectForMapModel = {
2155
2155
  apartment_number: string;
2156
2156
  address: string;
2157
2157
  geolocation: LatLonParams;
2158
- main_image: ImageModel;
2158
+ main_image: ImageModel$1;
2159
2159
  renter: ClientLiteModel | null;
2160
2160
  owner: ClientLiteModel;
2161
2161
  metro_stations: ApartmentMetroStationModel[];
@@ -2187,13 +2187,13 @@ declare class DocumentStore implements FileStoreInterface {
2187
2187
  agent: DocumentAgentInterface;
2188
2188
  loader: Loader;
2189
2189
  settings?: any;
2190
- constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2190
+ constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2191
2191
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2192
- updateDocument: (res: DocumentModel) => void;
2192
+ updateDocument: (res: DocumentModel$1) => void;
2193
2193
  deleteDocument: (...params: any) => Promise<void>;
2194
2194
  get extension(): string;
2195
2195
  get title(): string;
2196
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2196
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2197
2197
  }
2198
2198
 
2199
2199
  type InputTypes =
@@ -2253,13 +2253,13 @@ declare type FileParams = {
2253
2253
  size?: number | null;
2254
2254
  file: File;
2255
2255
  };
2256
- declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2256
+ declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2257
2257
  declare type FileStoreParams = {
2258
2258
  id?: number | null;
2259
2259
  url?: string;
2260
2260
  index?: number | string | null;
2261
2261
  createdBy?: string | null;
2262
- visibility?: DocumentVisibilityAPIVariants;
2262
+ visibility?: DocumentVisibilityAPIVariants$1;
2263
2263
  name?: string;
2264
2264
  date?: string | null;
2265
2265
  size?: number | null;
@@ -2424,8 +2424,8 @@ declare const FillingTagsAgent: {
2424
2424
  };
2425
2425
 
2426
2426
  declare const TariffsAgent: {
2427
- all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2428
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2427
+ all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2428
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2429
2429
  };
2430
2430
 
2431
2431
  type SignInFormFields = {
@@ -2444,8 +2444,8 @@ declare const ApartmentsAgent: {
2444
2444
  };
2445
2445
 
2446
2446
  declare const ApartmentMetersAgent: {
2447
- getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2448
- getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2447
+ getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2448
+ getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2449
2449
  };
2450
2450
 
2451
2451
  declare const requests: {
@@ -2469,7 +2469,7 @@ declare const meterUnitLabel: {
2469
2469
  electricity: string;
2470
2470
  };
2471
2471
 
2472
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2472
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2473
2473
 
2474
2474
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2475
2475
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2485,34 +2485,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2485
2485
  }, "">;
2486
2486
 
2487
2487
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2488
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2488
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2489
2489
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2490
- declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2490
+ declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2491
2491
  temp_file_id: number;
2492
2492
  name: string;
2493
- visibility: DocumentVisibilityAPIVariants;
2493
+ visibility: DocumentVisibilityAPIVariants$1;
2494
2494
  url: string;
2495
2495
  } | null;
2496
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2497
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2498
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2496
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2497
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2498
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2499
2499
  name: string;
2500
- visibility: DocumentVisibilityAPIVariants;
2500
+ visibility: DocumentVisibilityAPIVariants$1;
2501
2501
  } | null;
2502
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2502
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2503
2503
  name: string;
2504
- visibility: DocumentVisibilityAPIVariants;
2504
+ visibility: DocumentVisibilityAPIVariants$1;
2505
2505
  } | null>;
2506
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2507
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2508
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2509
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2510
- declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2511
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2512
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2513
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2514
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2515
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2506
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2507
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2508
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2509
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2510
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2511
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2512
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2513
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2514
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2515
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2516
2516
 
2517
2517
  declare const matchesAPISubjectRoles: {
2518
2518
  maroom: string;
@@ -2605,16 +2605,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2605
2605
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2606
2606
 
2607
2607
  declare class FilesStore {
2608
- files: FileStore[];
2608
+ files: FileStore$1[];
2609
2609
  variant: FileVariant;
2610
2610
  constructor(variant: FileVariant);
2611
- addFile: (newFile: FileStore) => void;
2611
+ addFile: (newFile: FileStore$1) => void;
2612
2612
  removeFile: (index: number) => void;
2613
- setFiles: (files: FileStore[]) => void;
2613
+ setFiles: (files: FileStore$1[]) => void;
2614
2614
  uploadFiles: () => Promise<void>;
2615
- get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2615
+ get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2616
2616
  get uploadedAllFiles(): boolean;
2617
- get notUploadedFiles(): FileStore[];
2617
+ get notUploadedFiles(): FileStore$1[];
2618
2618
  get isUploading(): boolean;
2619
2619
  get videoLength(): number;
2620
2620
  get nonVideoLength(): number;
@@ -2636,7 +2636,7 @@ declare type UploadMediaToStoreSettings = {
2636
2636
  messages?: UploadMediaMessages;
2637
2637
  withoutFilesStore?: boolean;
2638
2638
  };
2639
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2639
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2640
2640
 
2641
2641
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2642
2642
  onSearchItem: (value: string) => void;
@@ -2808,11 +2808,11 @@ type DistrictAutocompleteFields = {
2808
2808
  type ReplaceableTariffFields = {
2809
2809
  name: string
2810
2810
  id?: number
2811
- type?: ResourceTypes
2811
+ type?: ResourceTypes$1
2812
2812
  }
2813
2813
 
2814
2814
  type TariffCommonFields = {
2815
- resourceType: ResourceTypes
2815
+ resourceType: ResourceTypes$1
2816
2816
  name: string
2817
2817
  startDate: DateTime
2818
2818
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2824,7 +2824,7 @@ type TariffCommonFields = {
2824
2824
  }
2825
2825
 
2826
2826
  type ElectricityTariffCreationFormFields = {
2827
- type: ElectricityMeterTypes
2827
+ type: ElectricityMeterTypes$1
2828
2828
  isOverallConsumption: boolean
2829
2829
  T1?: number
2830
2830
  T2?: number
@@ -2845,7 +2845,7 @@ type TariffCreationFormProps = {
2845
2845
  handleClose: () => void
2846
2846
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2847
2847
  creationForm: MultistepForm$1<TariffCreationFormFields>
2848
- defaultResource: ResourceTypes
2848
+ defaultResource: ResourceTypes$1
2849
2849
  settings?: any
2850
2850
  }
2851
2851
 
@@ -2890,7 +2890,7 @@ declare class TariffsLiteStore {
2890
2890
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2891
2891
  settings?: any;
2892
2892
  constructor(settings?: any);
2893
- fetchAll: (resource: ResourceTypes) => Promise<void>;
2893
+ fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2894
2894
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2895
2895
  static getTariffParams: (tariff: CommonTariffModel) => {
2896
2896
  id: number;
@@ -2898,7 +2898,7 @@ declare class TariffsLiteStore {
2898
2898
  };
2899
2899
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2900
2900
  static getTariffValues: (data: TariffCreationFormFields) => {
2901
- type: ElectricityMeterTypes;
2901
+ type: ElectricityMeterTypes$1;
2902
2902
  T1: string | undefined;
2903
2903
  T2: string | undefined;
2904
2904
  T3: string | undefined;
@@ -3192,7 +3192,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3192
3192
  name?: string
3193
3193
  label?: string
3194
3194
  hideName?: string
3195
- resource: ResourceTypes
3195
+ resource: ResourceTypes$1
3196
3196
  filter?: string
3197
3197
  filterRequired?: boolean
3198
3198
  settings?: any
@@ -3205,7 +3205,7 @@ type TariffGroupAutocompleteFields = {
3205
3205
  }
3206
3206
 
3207
3207
  type MeterFeaturesFieldsProps = {
3208
- resource?: ResourceTypes
3208
+ resource?: ResourceTypes$1
3209
3209
  replacements?: LiteMeterInterface[]
3210
3210
  isNewResource?: boolean
3211
3211
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3219,7 +3219,7 @@ type MeterFeaturesFieldsProps = {
3219
3219
  withNextCheck?: boolean
3220
3220
  defaultValues?: Partial<MeterFeaturesFormFields>
3221
3221
  handleMeterTypeChange?: (
3222
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3222
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3223
3223
  ) => void
3224
3224
  settings?: any
3225
3225
  disabledInitial?: boolean
@@ -3232,14 +3232,14 @@ type BasicMeterFeaturesFormFields = {
3232
3232
  initialValueT1?: number
3233
3233
  initialValueT2?: number
3234
3234
  initialValueT3?: number
3235
- type?: MeterTypes
3236
- resource?: ResourceTypes
3235
+ type?: MeterTypes$1
3236
+ resource?: ResourceTypes$1
3237
3237
  withAutoSending?: boolean
3238
3238
  }
3239
3239
 
3240
3240
  type MeterFeaturesFormFields = {
3241
3241
  tariff: TariffGroupAutocompleteFields | null
3242
- company: CompanyAutocompleteFields | null
3242
+ company: CompanyAutocompleteFields$1 | null
3243
3243
  nextCheck: DateTime | null
3244
3244
  lastValue?: number
3245
3245
  lastValueT1?: number
@@ -3253,8 +3253,8 @@ type MeterFeaturesFormFields = {
3253
3253
  } & BasicMeterFeaturesFormFields
3254
3254
 
3255
3255
  type BasicMeterFieldsSettings = {
3256
- resource?: ResourceTypes
3257
- meterType?: MeterTypes
3256
+ resource?: ResourceTypes$1
3257
+ meterType?: MeterTypes$1
3258
3258
  disabledInitial?: boolean
3259
3259
  }
3260
3260
 
@@ -3286,10 +3286,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3286
3286
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3287
3287
 
3288
3288
  type MeterTypeRadioGroupProps = {
3289
- resource?: ResourceTypes
3289
+ resource?: ResourceTypes$1
3290
3290
  form: UseFormReturn<any>
3291
3291
  handleChange: (
3292
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3292
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3293
3293
  ) => void
3294
3294
  disabled?: boolean
3295
3295
  waterOptions?: OptionParams[]
@@ -3301,7 +3301,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3301
3301
  type MeterFeaturesFormProps = {
3302
3302
  formStore?: MultistepForm$1<any>
3303
3303
  handleMeterTypeChange?: (
3304
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3304
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3305
3305
  ) => void
3306
3306
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3307
3307
 
@@ -3369,7 +3369,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3369
3369
  startDate: undefined;
3370
3370
  }, "">;
3371
3371
 
3372
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3372
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3373
3373
 
3374
3374
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3375
3375
 
@@ -3385,7 +3385,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3385
3385
 
3386
3386
  type TariffReplacementFieldsProps = {
3387
3387
  form: UseFormReturn<TariffCommonFields>
3388
- resource: ResourceTypes
3388
+ resource: ResourceTypes$1
3389
3389
  setReplaceable: (value: boolean) => void
3390
3390
  settings?: any
3391
3391
  }
@@ -3801,7 +3801,7 @@ type UploadPhotosButtonProps = {
3801
3801
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3802
3802
 
3803
3803
  type UploadedImageProps = {
3804
- image: FileStore
3804
+ image: FileStore$1
3805
3805
  index: number
3806
3806
  onClick: (index: number) => void
3807
3807
  onDelete: (index: number) => void
@@ -3834,15 +3834,15 @@ declare type PartialMeterValuesFields = {
3834
3834
  };
3835
3835
  declare type PartialMeterInfoFields = {
3836
3836
  id: number;
3837
- resource: ResourceTypes;
3838
- type?: MeterTypes;
3837
+ resource: ResourceTypes$1;
3838
+ type?: MeterTypes$1;
3839
3839
  number: string;
3840
- images: FileStore[];
3840
+ images: FileStore$1[];
3841
3841
  maxValue?: PartialMeterValuesFields;
3842
3842
  minValue?: PartialMeterValuesFields;
3843
3843
  values: PartialMeterValuesFields;
3844
3844
  } & PartialMeterValuesFields;
3845
- 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>[];
3845
+ 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>[];
3846
3846
 
3847
3847
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3848
3848
  type: string | undefined;
@@ -3869,4 +3869,4 @@ type SignInPageProps = {
3869
3869
 
3870
3870
  declare const _default: (props: SignInPageProps) => JSX.Element;
3871
3871
 
3872
- 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, ReceiverPaymentCompanyModel, _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, TransitAccountModel, 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 };
3872
+ 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, ReceiverPaymentCompanyModel, _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, TransitAccountModel, 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 };