kui-crm 0.0.599 → 0.0.600

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +199 -200
  2. package/package.json +1 -1
  3. package/types/index.d.ts +144 -145
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" | "due" | "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;
@@ -411,7 +411,7 @@ declare type ApartmentResourceCompanyModel = {
411
411
  provider_type: string;
412
412
  };
413
413
  declare type DataTransferFormats = "online" | "offline";
414
- declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
414
+ declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "other";
415
415
  declare type ApartmentResourceModel = {
416
416
  id: number;
417
417
  company: ApartmentResourceCompanyModel | null;
@@ -420,12 +420,11 @@ declare type ApartmentResourceModel = {
420
420
  payer_code?: string;
421
421
  meter_readings_day_from?: number;
422
422
  meter_readings_day_to?: number;
423
- receipt_example?: DocumentModel;
423
+ receipt_example?: DocumentModel$1;
424
424
  provider_auth_login?: string;
425
425
  provider_auth_password?: string;
426
- provider_url?: string;
426
+ site?: string;
427
427
  description?: string;
428
- data_transfer_format?: DataTransferFormats;
429
428
  resource_type: ApartmentResourceTypesAPI;
430
429
  group?: string;
431
430
  comment?: string;
@@ -446,8 +445,8 @@ declare type InspectionFillingParams = {
446
445
  description?: string;
447
446
  serial_code?: string;
448
447
  amount?: number | string | null;
449
- photos: ImageBodyRequest[];
450
- instruction?: FileBodyRequest | null;
448
+ photos: ImageBodyRequest$1[];
449
+ instruction?: FileBodyRequest$1 | null;
451
450
  was_missing?: boolean;
452
451
  };
453
452
  declare type InspectionMeterValueModel = {
@@ -463,7 +462,7 @@ declare type InspectionBasedOnModel = {
463
462
  id: number;
464
463
  inspection_type: InspectionTypes;
465
464
  };
466
- declare type VideoModel = {
465
+ declare type VideoModel$1 = {
467
466
  id: number;
468
467
  video_url: string;
469
468
  file_name?: string;
@@ -478,8 +477,8 @@ declare type InspectionRoomPhotoModel = {
478
477
  uploaded: boolean;
479
478
  purpose: InspectionRoomPhotoTypes;
480
479
  comment?: string;
481
- photos: ImageModel[];
482
- videos: VideoModel[];
480
+ photos: ImageModel$1[];
481
+ videos: VideoModel$1[];
483
482
  room_order_number?: number | null;
484
483
  };
485
484
  declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
@@ -517,11 +516,11 @@ declare type FullInspectionCommonFields = {
517
516
  filling: InspectionFillingModel[];
518
517
  } & ApartmentModel;
519
518
  declare type InspectionMeterCommonInfo = {
520
- resource_type: ResourceTypes;
521
- passport: FileModel | null;
522
- meter_type: MeterTypes;
519
+ resource_type: ResourceTypes$1;
520
+ passport: FileModel$1 | null;
521
+ meter_type: MeterTypes$1;
523
522
  operating_account: string;
524
- photos: ImageModel[];
523
+ photos: ImageModel$1[];
525
524
  } & Omit<MeterCommonInfoModel, "operating_account_number">;
526
525
  declare type TransferInspectionMeterModel = {
527
526
  values: InspectionMeterValueModel;
@@ -531,9 +530,9 @@ declare type TransferInspectionMeterModel = {
531
530
  declare type TransferInspectionFields = {
532
531
  transfer_type: TransferInspectionTypes;
533
532
  meters: TransferInspectionMeterModel[];
534
- inspection_document: DocumentModel | null;
535
- rental_contract_termination_document: DocumentModel | null;
536
- service_contract_termination_document: DocumentModel | null;
533
+ inspection_document: DocumentModel$1 | null;
534
+ rental_contract_termination_document: DocumentModel$1 | null;
535
+ service_contract_termination_document: DocumentModel$1 | null;
537
536
  } & FullInspectionCommonFields;
538
537
  declare type RegularInspectionFields = {
539
538
  meters: TransferInspectionMeterModel[];
@@ -542,7 +541,7 @@ declare type RegularInspectionFields = {
542
541
  declare type ComparableObjectModel = {
543
542
  id: number;
544
543
  advertisement_link: string;
545
- advertisement_screenshot: ImageModel | null;
544
+ advertisement_screenshot: ImageModel$1 | null;
546
545
  object_price: string;
547
546
  key_object_differences: string;
548
547
  };
@@ -550,7 +549,7 @@ declare type StatisticalEvaluationModel = {
550
549
  id: number;
551
550
  source_name: string;
552
551
  link: string;
553
- screenshot: ImageModel | null;
552
+ screenshot: ImageModel$1 | null;
554
553
  min_price: string;
555
554
  max_price: string;
556
555
  };
@@ -594,11 +593,11 @@ declare type ImpairmentModel = {
594
593
  id: number;
595
594
  name: string;
596
595
  impairment_type: ImpairmentType;
597
- proof_file: DocumentModel | null;
596
+ proof_file: DocumentModel$1 | null;
598
597
  price: number;
599
598
  solution: string;
600
599
  description: string;
601
- photos: ImageModel[];
600
+ photos: ImageModel$1[];
602
601
  item_link: string;
603
602
  bill_line_name: string;
604
603
  };
@@ -609,7 +608,7 @@ declare type InitialInspectionModelFields = {
609
608
  used_resources: UsedResourcesModel;
610
609
  } & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
611
610
  declare type AppraisalRequestModelFields = {
612
- floor_plan: DocumentModel | null;
611
+ floor_plan: DocumentModel$1 | null;
613
612
  };
614
613
  declare type InspectionModel = {
615
614
  initial?: InitialInspectionModelFields;
@@ -643,7 +642,7 @@ declare type InventoryInspectionFields = {
643
642
  allowed_smoking: boolean;
644
643
  additional_terms: string;
645
644
  resources: InspectionResourcesModel[];
646
- inspection_document: DocumentModel | null;
645
+ inspection_document: DocumentModel$1 | null;
647
646
  } & FullInspectionCommonFields;
648
647
  declare type InventoryInspectionModel = {
649
648
  inventory: InventoryInspectionFields;
@@ -695,10 +694,10 @@ declare type InspectionFeedbackInterface = {
695
694
  declare type PatchInspectionImageParams = {
696
695
  id?: number;
697
696
  order?: number;
698
- } & Partial<ImageBodyRequest>;
697
+ } & Partial<ImageBodyRequest$1>;
699
698
  declare type PatchInspectionVideoParams = {
700
699
  id?: number;
701
- } & Partial<VideoBodyRequest>;
700
+ } & Partial<VideoBodyRequest$1>;
702
701
  declare type PatchRoomImagesParams = {
703
702
  id?: number | null;
704
703
  purpose: InspectionRoomPhotoTypes;
@@ -739,8 +738,8 @@ declare type InspectionFillingModel = {
739
738
  description: string;
740
739
  serial_code: string;
741
740
  amount: number;
742
- photos: ImageModel[];
743
- instruction: DocumentModel;
741
+ photos: ImageModel$1[];
742
+ instruction: DocumentModel$1;
744
743
  is_absent: boolean;
745
744
  previously_absent: boolean;
746
745
  model: string;
@@ -822,7 +821,7 @@ declare type CommonMeterParams = {
822
821
  company: CompanyLiteParams;
823
822
  operating_account_number?: string | null;
824
823
  company_is_administrative: boolean;
825
- photos?: ImageModel[];
824
+ photos?: ImageModel$1[];
826
825
  auto_sending: boolean;
827
826
  no_tariff: boolean;
828
827
  is_avg: boolean;
@@ -834,15 +833,15 @@ declare type ElectricityMeterValues = {
834
833
  T3?: MeterTariffModel;
835
834
  };
836
835
  declare type WaterMeterParams = {
837
- type: WaterMeterTypes;
836
+ type: WaterMeterTypes$1;
838
837
  tariff: SingleCounterTariffModel;
839
838
  } & CommonMeterParams & MeterTariffModel;
840
839
  declare type SingleMeterParams = {
841
- type?: WaterMeterTypes;
840
+ type?: WaterMeterTypes$1;
842
841
  tariff: SingleCounterTariffModel;
843
842
  } & CommonMeterParams & MeterTariffModel;
844
843
  declare type ElectricityMeterParams = {
845
- type: ElectricityMeterTypes;
844
+ type: ElectricityMeterTypes$1;
846
845
  values: ElectricityMeterValues;
847
846
  tariff: ElectricityMeterTariffModel;
848
847
  overall_value?: number;
@@ -1090,7 +1089,7 @@ declare type CountryParams = {
1090
1089
  code: string;
1091
1090
  } & CatalogItemParams;
1092
1091
 
1093
- type FileWithVisibility = {
1092
+ type FileWithVisibility$1 = {
1094
1093
  id?: number
1095
1094
  file: File | null
1096
1095
  tenant: boolean
@@ -1099,8 +1098,8 @@ type FileWithVisibility = {
1099
1098
  url: string
1100
1099
  }
1101
1100
 
1102
- type InputFileWithVisibilityFields =
1103
- | FileWithVisibility
1101
+ type InputFileWithVisibilityFields$1 =
1102
+ | FileWithVisibility$1
1104
1103
  | DocumentWithVisibility
1105
1104
  | null
1106
1105
  | undefined
@@ -1130,7 +1129,7 @@ type ChangeReasonFieldsProps<T> = {
1130
1129
  }
1131
1130
 
1132
1131
  type ChangeReasonFormFields = {
1133
- reason: InputFileWithVisibilityFields
1132
+ reason: InputFileWithVisibilityFields$1
1134
1133
  comment?: string
1135
1134
  }
1136
1135
 
@@ -1145,13 +1144,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1145
1144
  settings?: any
1146
1145
  } & InputWithControllerProps<TFormValues>
1147
1146
 
1148
- type CompanyAutocompleteFields = {
1147
+ type CompanyAutocompleteFields$1 = {
1149
1148
  id: number
1150
1149
  name: string
1151
1150
  logo?: string | null
1152
1151
  }
1153
1152
 
1154
- declare class FileStore implements FileStoreInterface {
1153
+ declare class FileStore$1 implements FileStoreInterface {
1155
1154
  id: number | null;
1156
1155
  index?: number | null;
1157
1156
  name: string;
@@ -1182,13 +1181,13 @@ declare class FileStore implements FileStoreInterface {
1182
1181
  setIndex: (index: number) => void;
1183
1182
  get title(): string;
1184
1183
  static createPreviewUrl: (file: File) => Promise<string>;
1185
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1186
- static initFromFileModel: (file: FileModel) => FileStore;
1187
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1188
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1189
- static initFromVideoModel: (image: VideoModel) => FileStore;
1190
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1191
- static initFromFileStore: (file: FileStore) => FileStore;
1184
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1185
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1186
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1187
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1188
+ static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1189
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1190
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1192
1191
  }
1193
1192
 
1194
1193
  declare type ImageParams = {
@@ -1223,8 +1222,8 @@ declare class ImageStore implements ImageStoreInterface {
1223
1222
  delete: () => Promise<void>;
1224
1223
  get extension(): string;
1225
1224
  get title(): string;
1226
- static initFromImageModel: (image: ImageModel) => ImageStore;
1227
- static initFromVideoModel: (image: VideoModel) => ImageStore;
1225
+ static initFromImageModel: (image: ImageModel$1) => ImageStore;
1226
+ static initFromVideoModel: (image: VideoModel$1) => ImageStore;
1228
1227
  }
1229
1228
 
1230
1229
  declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
@@ -1349,7 +1348,7 @@ declare type LockerAutocompleteFields = {
1349
1348
  declare type ApartmentOverviewPaymentInfoFields = {
1350
1349
  payerCode?: string;
1351
1350
  communalServicesAccount?: string;
1352
- company?: CompanyAutocompleteFields | null;
1351
+ company?: CompanyAutocompleteFields$1 | null;
1353
1352
  } & ChangeReasonFormFields;
1354
1353
  declare type ApartmentOverviewInfoFields = {
1355
1354
  locker?: LockerAutocompleteFields | null;
@@ -1372,14 +1371,14 @@ declare type InspectionPaymentInfoParams = {
1372
1371
  } & ApartmentPaymentInfoParams;
1373
1372
  declare type InspectionMeterInfoParams = {
1374
1373
  id: number;
1375
- resource: ResourceTypes;
1376
- type?: MeterTypes;
1374
+ resource: ResourceTypes$1;
1375
+ type?: MeterTypes$1;
1377
1376
  number: string;
1378
1377
  startDate: DateTime | null;
1379
1378
  company: CompanyLiteParams;
1380
1379
  operationalAccountNumber?: string | null;
1381
1380
  tariff: EntityLinkParams | null;
1382
- passportFile: FileStore | null;
1381
+ passportFile: FileStore$1 | null;
1383
1382
  initialValue?: number;
1384
1383
  lastValue?: number;
1385
1384
  initialValueT1?: number;
@@ -1401,8 +1400,8 @@ declare type ValuesParams = {
1401
1400
  };
1402
1401
  declare type PartialMeterInfoParams = {
1403
1402
  id: number;
1404
- type: MeterTypes;
1405
- resource: ResourceTypes;
1403
+ type: MeterTypes$1;
1404
+ resource: ResourceTypes$1;
1406
1405
  number: string;
1407
1406
  values: ValuesParams;
1408
1407
  images?: (ImageStore | UploadImageParams)[];
@@ -1416,7 +1415,7 @@ declare type InspectionPartialMetersInfoParams = {
1416
1415
  declare type ComparableObjectParams = {
1417
1416
  id: number;
1418
1417
  link: string;
1419
- screenshot: FileStore | null;
1418
+ screenshot: FileStore$1 | null;
1420
1419
  price: number;
1421
1420
  differences: string;
1422
1421
  };
@@ -1424,7 +1423,7 @@ declare type StatisticalEvaluationParams = {
1424
1423
  id: number;
1425
1424
  dataSourceName: string;
1426
1425
  link: string;
1427
- screenshot: FileStore | null;
1426
+ screenshot: FileStore$1 | null;
1428
1427
  minPrice: number;
1429
1428
  maxPrice: number;
1430
1429
  };
@@ -1449,8 +1448,8 @@ declare type FillingInfoFormFields = {
1449
1448
  name?: string;
1450
1449
  description?: string;
1451
1450
  type?: ApartmentFillingVariants | null;
1452
- instruction?: InputFileWithVisibilityFields;
1453
- tempImages?: ImageBodyRequest[];
1451
+ instruction?: InputFileWithVisibilityFields$1;
1452
+ tempImages?: ImageBodyRequest$1[];
1454
1453
  };
1455
1454
 
1456
1455
  declare type FillingTagParams = {
@@ -1465,7 +1464,7 @@ declare type FillingParams = {
1465
1464
  images?: (ImageStore | UploadFileParams)[];
1466
1465
  serialNumber?: string;
1467
1466
  numberOfSubjects?: number | string | null;
1468
- instruction?: InputFileWithVisibilityFields | null;
1467
+ instruction?: InputFileWithVisibilityFields$1 | null;
1469
1468
  type?: ApartmentFillingVariants;
1470
1469
  loader?: Loader;
1471
1470
  };
@@ -1477,7 +1476,7 @@ declare type FillingFullParams = {
1477
1476
  images?: (ImageStore | UploadFileParams)[];
1478
1477
  serialNumber?: string;
1479
1478
  numberOfSubjects?: number | string | null;
1480
- instruction?: InputFileWithVisibilityFields | null;
1479
+ instruction?: InputFileWithVisibilityFields$1 | null;
1481
1480
  type?: ApartmentFillingVariants;
1482
1481
  loader?: Loader;
1483
1482
  check?: boolean | null;
@@ -1496,31 +1495,31 @@ declare type TariffGroupLiteParams = {
1496
1495
  name: string;
1497
1496
  };
1498
1497
 
1499
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1500
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
1501
- declare type WaterMeterTypes$1 = "cold" | "hot";
1502
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1503
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1504
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1505
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1506
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1507
- declare type FileBodyRequest$1 = {
1498
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1499
+ declare type UnitOfPaymentTypes = "percent" | "value";
1500
+ declare type WaterMeterTypes = "cold" | "hot";
1501
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1502
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1503
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1504
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1505
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1506
+ declare type FileBodyRequest = {
1508
1507
  temp_file_id?: number;
1509
1508
  name: string;
1510
- visibility?: DocumentVisibilityAPIVariants$1;
1509
+ visibility?: DocumentVisibilityAPIVariants;
1511
1510
  url?: string;
1512
1511
  };
1513
- declare type ImageBodyRequest$1 = {
1512
+ declare type ImageBodyRequest = {
1514
1513
  temp_file_id: number;
1515
1514
  image_name: string;
1516
1515
  url: string;
1517
1516
  };
1518
- declare type VideoBodyRequest$1 = {
1517
+ declare type VideoBodyRequest = {
1519
1518
  temp_file_id: number;
1520
1519
  file_name: string;
1521
1520
  url: string;
1522
1521
  };
1523
- declare type ImageModel$1 = {
1522
+ declare type ImageModel = {
1524
1523
  id: number;
1525
1524
  image_name?: string;
1526
1525
  image_url?: string;
@@ -1529,22 +1528,22 @@ declare type ImageModel$1 = {
1529
1528
  image_large_url: string;
1530
1529
  size: number;
1531
1530
  };
1532
- declare type FileModel$1 = {
1531
+ declare type FileModel = {
1533
1532
  id: number;
1534
1533
  name: string;
1535
1534
  size: number;
1536
1535
  url: string;
1537
1536
  };
1538
- declare type DocumentModel$1 = {
1537
+ declare type DocumentModel = {
1539
1538
  pk: number;
1540
1539
  name: string;
1541
1540
  created?: string;
1542
1541
  attachment: string;
1543
1542
  size: number;
1544
1543
  uploaded_by?: string | null;
1545
- visibility?: DocumentVisibilityAPIVariants$1;
1544
+ visibility?: DocumentVisibilityAPIVariants;
1546
1545
  };
1547
- declare type VideoModel$1 = {
1546
+ declare type VideoModel = {
1548
1547
  id: number;
1549
1548
  video_url: string;
1550
1549
  file_name?: string;
@@ -1555,7 +1554,7 @@ declare type VideoModel$1 = {
1555
1554
  resolution?: string;
1556
1555
  };
1557
1556
 
1558
- type FileWithVisibility$1 = {
1557
+ type FileWithVisibility = {
1559
1558
  id?: number
1560
1559
  file: File | null
1561
1560
  tenant: boolean
@@ -1564,19 +1563,19 @@ type FileWithVisibility$1 = {
1564
1563
  url: string
1565
1564
  }
1566
1565
 
1567
- type InputFileWithVisibilityFields$1 =
1568
- | FileWithVisibility$1
1566
+ type InputFileWithVisibilityFields =
1567
+ | FileWithVisibility
1569
1568
  | DocumentWithVisibility$1
1570
1569
  | null
1571
1570
  | undefined
1572
1571
 
1573
- type CompanyAutocompleteFields$1 = {
1572
+ type CompanyAutocompleteFields = {
1574
1573
  id: number
1575
1574
  name: string
1576
1575
  logo?: string | null
1577
1576
  }
1578
1577
 
1579
- declare class FileStore$1 implements FileStoreInterface$1 {
1578
+ declare class FileStore implements FileStoreInterface$1 {
1580
1579
  id: number | null;
1581
1580
  index?: number | null;
1582
1581
  name: string;
@@ -1607,22 +1606,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
1607
1606
  setIndex: (index: number) => void;
1608
1607
  get title(): string;
1609
1608
  static createPreviewUrl: (file: File) => Promise<string>;
1610
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1611
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1612
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1613
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1614
- static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1615
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1616
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1609
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1610
+ static initFromFileModel: (file: FileModel) => FileStore;
1611
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1612
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1613
+ static initFromVideoModel: (image: VideoModel) => FileStore;
1614
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1615
+ static initFromFileStore: (file: FileStore) => FileStore;
1617
1616
  }
1618
1617
 
1619
1618
  type PartialPayerFields$1 = {
1620
- payer?: ResourcePaymentRoles$1 | "partial"
1621
- mainPayer?: ResourcePaymentRoles$1
1622
- refundFrom?: ResourcePaymentRoles$1
1623
- partType?: UnitOfPaymentTypes$1 | null
1619
+ payer?: ResourcePaymentRoles | "partial"
1620
+ mainPayer?: ResourcePaymentRoles
1621
+ refundFrom?: ResourcePaymentRoles
1622
+ partType?: UnitOfPaymentTypes | null
1624
1623
  refundValue?: number | string | null
1625
- utilityType: UtilityTypes$1
1624
+ utilityType: UtilityTypes
1626
1625
  }
1627
1626
 
1628
1627
  declare type FilesStoreInterface$1 = {
@@ -1654,13 +1653,13 @@ declare type DocumentWithVisibility$1 = {
1654
1653
  visibility?: DocumentVisibilityVariants$1;
1655
1654
  extension: string;
1656
1655
  };
1657
- declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1656
+ declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1658
1657
  declare type FileStoreParams$1 = {
1659
1658
  id?: number | null;
1660
1659
  url?: string;
1661
1660
  index?: number | string | null;
1662
1661
  createdBy?: string | null;
1663
- visibility?: DocumentVisibilityAPIVariants$1;
1662
+ visibility?: DocumentVisibilityAPIVariants;
1664
1663
  name?: string;
1665
1664
  date?: string | null;
1666
1665
  size?: number | null;
@@ -1688,14 +1687,14 @@ type BasicMeterFeaturesFormFields$1 = {
1688
1687
  initialValueT1?: number
1689
1688
  initialValueT2?: number
1690
1689
  initialValueT3?: number
1691
- type?: MeterTypes$1
1692
- resource?: ResourceTypes$1
1690
+ type?: MeterTypes
1691
+ resource?: ResourceTypes
1693
1692
  withAutoSending?: boolean
1694
1693
  }
1695
1694
 
1696
1695
  type MeterFeaturesFormFields$1 = {
1697
1696
  tariff: TariffGroupAutocompleteFields$1 | null
1698
- company: CompanyAutocompleteFields$1 | null
1697
+ company: CompanyAutocompleteFields | null
1699
1698
  nextCheck: DateTime | null
1700
1699
  lastValue?: number
1701
1700
  lastValueT1?: number
@@ -1719,9 +1718,9 @@ declare type ApartmentMeterValues = {
1719
1718
  } & MeterValues;
1720
1719
  declare type InspectionMeterFields = {
1721
1720
  id?: number;
1722
- resource: ResourceTypes$1;
1723
- passportFile?: InputFileWithVisibilityFields$1;
1724
- images: FileStore$1[];
1721
+ resource: ResourceTypes;
1722
+ passportFile?: InputFileWithVisibilityFields;
1723
+ images: FileStore[];
1725
1724
  } & MeterFeaturesFormFields$1;
1726
1725
 
1727
1726
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1736,7 +1735,7 @@ type PartialPayerProps<T> = {
1736
1735
  title: string
1737
1736
  name: string
1738
1737
  form: UseFormReturn<T>
1739
- utilityType: UtilityTypes
1738
+ utilityType: UtilityTypes$1
1740
1739
  fieldsVariant?: PartialPayerVariants
1741
1740
  settings?: ObjectType
1742
1741
  disabled?: boolean
@@ -1744,12 +1743,12 @@ type PartialPayerProps<T> = {
1744
1743
  }
1745
1744
 
1746
1745
  type PartialPayerFields = {
1747
- payer?: ResourcePaymentRoles | "partial"
1748
- mainPayer?: ResourcePaymentRoles
1749
- refundFrom?: ResourcePaymentRoles
1750
- partType?: UnitOfPaymentTypes | null
1746
+ payer?: ResourcePaymentRoles$1 | "partial"
1747
+ mainPayer?: ResourcePaymentRoles$1
1748
+ refundFrom?: ResourcePaymentRoles$1
1749
+ partType?: UnitOfPaymentTypes$1 | null
1751
1750
  refundValue?: number | string | null
1752
- utilityType: UtilityTypes
1751
+ utilityType: UtilityTypes$1
1753
1752
  }
1754
1753
 
1755
1754
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1833,15 +1832,15 @@ declare type ResourceAccessParams = {
1833
1832
  description?: string;
1834
1833
  appName?: string;
1835
1834
  };
1836
- declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1835
+ declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1837
1836
  declare type ApartmentResourceCompanyDetails = {
1838
- company: CompanyAutocompleteFields | null;
1837
+ company: CompanyAutocompleteFields$1 | null;
1839
1838
  operationalAccountNumber: string;
1840
1839
  payerCode: string;
1841
1840
  dataSubmissionDays: DataSubmissionDaysParams;
1842
1841
  access: ResourceAccessParams;
1843
1842
  sampleReceiptLink: string;
1844
- sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1843
+ sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1845
1844
  };
1846
1845
  declare type ApartmentResourceInterface = {
1847
1846
  type: ApartmentResourceTypes;
@@ -1878,15 +1877,15 @@ declare type DocumentsStoreInterface = {
1878
1877
  loader: Loader;
1879
1878
  };
1880
1879
  declare type PostDocumentsResponse = {
1881
- documents: DocumentModel[];
1880
+ documents: DocumentModel$1[];
1882
1881
  };
1883
1882
  declare type DocumentAgentInterface = {
1884
1883
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1885
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1886
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1884
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1885
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1887
1886
  };
1888
1887
  declare type DocumentsAgentInterface = {
1889
- getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1888
+ getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1890
1889
  } & DocumentAgentInterface;
1891
1890
 
1892
1891
  declare type MetroLineParams = {
@@ -1957,7 +1956,7 @@ declare type ApartmentFeatureModel = {
1957
1956
  };
1958
1957
  declare type ApartmentDocumentModel = {
1959
1958
  id: number;
1960
- document: DocumentModel;
1959
+ document: DocumentModel$1;
1961
1960
  expiration_date: string;
1962
1961
  start_date: string;
1963
1962
  number: string;
@@ -1970,7 +1969,7 @@ declare type MeterCommonInfoModel = {
1970
1969
  tariff?: TariffLinkModel;
1971
1970
  activation_date?: string;
1972
1971
  check_date?: string;
1973
- type?: ElectricityMeterTypes | WaterMeterTypes;
1972
+ type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1974
1973
  apartment: ApartmentLinkModel;
1975
1974
  company: CompanyLiteParams;
1976
1975
  operating_account_number?: string | null;
@@ -2091,7 +2090,7 @@ declare type ApartmentModel = {
2091
2090
  owner_id: number;
2092
2091
  metro_stations: ApartmentMetroParams[];
2093
2092
  rental_status: RentalStatuses;
2094
- main_image: ImageModel;
2093
+ main_image: ImageModel$1;
2095
2094
  tv_type: TVTypes | null;
2096
2095
  inspection: ApartmentInspectionModel;
2097
2096
  distance_to_center_kilometers: number | null;
@@ -2118,7 +2117,7 @@ declare type ApartmentLiteModel = {
2118
2117
  renter: LiteUserModel | null;
2119
2118
  rental_status: RentalStatuses;
2120
2119
  renter_payment_status: RentalPaymentStatuses;
2121
- main_image: ImageModel;
2120
+ main_image: ImageModel$1;
2122
2121
  service_contract?: ServiceContractLiteModel;
2123
2122
  is_imported_from_old_crm?: boolean;
2124
2123
  max_electricity_counters?: number | null;
@@ -2164,7 +2163,7 @@ declare type ObjectForMapModel = {
2164
2163
  apartment_number: string;
2165
2164
  address: string;
2166
2165
  geolocation: LatLonParams;
2167
- main_image: ImageModel;
2166
+ main_image: ImageModel$1;
2168
2167
  renter: ClientLiteModel | null;
2169
2168
  owner: ClientLiteModel;
2170
2169
  metro_stations: ApartmentMetroStationModel[];
@@ -2196,13 +2195,13 @@ declare class DocumentStore implements FileStoreInterface {
2196
2195
  agent: DocumentAgentInterface;
2197
2196
  loader: Loader;
2198
2197
  settings?: any;
2199
- constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2198
+ constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2200
2199
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2201
- updateDocument: (res: DocumentModel) => void;
2200
+ updateDocument: (res: DocumentModel$1) => void;
2202
2201
  deleteDocument: (...params: any) => Promise<void>;
2203
2202
  get extension(): string;
2204
2203
  get title(): string;
2205
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2204
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2206
2205
  }
2207
2206
 
2208
2207
  type InputTypes =
@@ -2262,13 +2261,13 @@ declare type FileParams = {
2262
2261
  size?: number | null;
2263
2262
  file: File;
2264
2263
  };
2265
- declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2264
+ declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2266
2265
  declare type FileStoreParams = {
2267
2266
  id?: number | null;
2268
2267
  url?: string;
2269
2268
  index?: number | string | null;
2270
2269
  createdBy?: string | null;
2271
- visibility?: DocumentVisibilityAPIVariants;
2270
+ visibility?: DocumentVisibilityAPIVariants$1;
2272
2271
  name?: string;
2273
2272
  date?: string | null;
2274
2273
  size?: number | null;
@@ -2433,8 +2432,8 @@ declare const FillingTagsAgent: {
2433
2432
  };
2434
2433
 
2435
2434
  declare const TariffsAgent: {
2436
- all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2437
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2435
+ all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2436
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2438
2437
  };
2439
2438
 
2440
2439
  type SignInFormFields = {
@@ -2453,8 +2452,8 @@ declare const ApartmentsAgent: {
2453
2452
  };
2454
2453
 
2455
2454
  declare const ApartmentMetersAgent: {
2456
- getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2457
- getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2455
+ getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2456
+ getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2458
2457
  };
2459
2458
 
2460
2459
  declare const requests: {
@@ -2478,7 +2477,7 @@ declare const meterUnitLabel: {
2478
2477
  electricity: string;
2479
2478
  };
2480
2479
 
2481
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2480
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2482
2481
 
2483
2482
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2484
2483
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2494,34 +2493,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2494
2493
  }, "">;
2495
2494
 
2496
2495
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2497
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2496
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2498
2497
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2499
- declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2498
+ declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2500
2499
  temp_file_id: number;
2501
2500
  name: string;
2502
- visibility: DocumentVisibilityAPIVariants;
2501
+ visibility: DocumentVisibilityAPIVariants$1;
2503
2502
  url: string;
2504
2503
  } | null;
2505
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2506
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2507
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2504
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2505
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2506
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2508
2507
  name: string;
2509
- visibility: DocumentVisibilityAPIVariants;
2508
+ visibility: DocumentVisibilityAPIVariants$1;
2510
2509
  } | null;
2511
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2510
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2512
2511
  name: string;
2513
- visibility: DocumentVisibilityAPIVariants;
2512
+ visibility: DocumentVisibilityAPIVariants$1;
2514
2513
  } | null>;
2515
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2516
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2517
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2518
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2519
- declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2520
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2521
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2522
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2523
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2524
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2514
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2515
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2516
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2517
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2518
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2519
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2520
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2521
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2522
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2523
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2525
2524
 
2526
2525
  declare const matchesAPISubjectRoles: {
2527
2526
  maroom: string;
@@ -2614,16 +2613,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2614
2613
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2615
2614
 
2616
2615
  declare class FilesStore {
2617
- files: FileStore[];
2616
+ files: FileStore$1[];
2618
2617
  variant: FileVariant;
2619
2618
  constructor(variant: FileVariant);
2620
- addFile: (newFile: FileStore) => void;
2619
+ addFile: (newFile: FileStore$1) => void;
2621
2620
  removeFile: (index: number) => void;
2622
- setFiles: (files: FileStore[]) => void;
2621
+ setFiles: (files: FileStore$1[]) => void;
2623
2622
  uploadFiles: () => Promise<void>;
2624
- get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2623
+ get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2625
2624
  get uploadedAllFiles(): boolean;
2626
- get notUploadedFiles(): FileStore[];
2625
+ get notUploadedFiles(): FileStore$1[];
2627
2626
  get isUploading(): boolean;
2628
2627
  get videoLength(): number;
2629
2628
  get nonVideoLength(): number;
@@ -2645,7 +2644,7 @@ declare type UploadMediaToStoreSettings = {
2645
2644
  messages?: UploadMediaMessages;
2646
2645
  withoutFilesStore?: boolean;
2647
2646
  };
2648
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2647
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2649
2648
 
2650
2649
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2651
2650
  onSearchItem: (value: string) => void;
@@ -2817,11 +2816,11 @@ type DistrictAutocompleteFields = {
2817
2816
  type ReplaceableTariffFields = {
2818
2817
  name: string
2819
2818
  id?: number
2820
- type?: ResourceTypes
2819
+ type?: ResourceTypes$1
2821
2820
  }
2822
2821
 
2823
2822
  type TariffCommonFields = {
2824
- resourceType: ResourceTypes
2823
+ resourceType: ResourceTypes$1
2825
2824
  name: string
2826
2825
  startDate: DateTime
2827
2826
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2833,7 +2832,7 @@ type TariffCommonFields = {
2833
2832
  }
2834
2833
 
2835
2834
  type ElectricityTariffCreationFormFields = {
2836
- type: ElectricityMeterTypes
2835
+ type: ElectricityMeterTypes$1
2837
2836
  isOverallConsumption: boolean
2838
2837
  T1?: number
2839
2838
  T2?: number
@@ -2854,7 +2853,7 @@ type TariffCreationFormProps = {
2854
2853
  handleClose: () => void
2855
2854
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2856
2855
  creationForm: MultistepForm$1<TariffCreationFormFields>
2857
- defaultResource: ResourceTypes
2856
+ defaultResource: ResourceTypes$1
2858
2857
  settings?: any
2859
2858
  }
2860
2859
 
@@ -2899,7 +2898,7 @@ declare class TariffsLiteStore {
2899
2898
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2900
2899
  settings?: any;
2901
2900
  constructor(settings?: any);
2902
- fetchAll: (resource: ResourceTypes) => Promise<void>;
2901
+ fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2903
2902
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2904
2903
  static getTariffParams: (tariff: CommonTariffModel) => {
2905
2904
  id: number;
@@ -2907,7 +2906,7 @@ declare class TariffsLiteStore {
2907
2906
  };
2908
2907
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2909
2908
  static getTariffValues: (data: TariffCreationFormFields) => {
2910
- type: ElectricityMeterTypes;
2909
+ type: ElectricityMeterTypes$1;
2911
2910
  T1: string | undefined;
2912
2911
  T2: string | undefined;
2913
2912
  T3: string | undefined;
@@ -3201,7 +3200,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3201
3200
  name?: string
3202
3201
  label?: string
3203
3202
  hideName?: string
3204
- resource: ResourceTypes
3203
+ resource: ResourceTypes$1
3205
3204
  filter?: string
3206
3205
  filterRequired?: boolean
3207
3206
  settings?: any
@@ -3214,7 +3213,7 @@ type TariffGroupAutocompleteFields = {
3214
3213
  }
3215
3214
 
3216
3215
  type MeterFeaturesFieldsProps = {
3217
- resource?: ResourceTypes
3216
+ resource?: ResourceTypes$1
3218
3217
  replacements?: LiteMeterInterface[]
3219
3218
  isNewResource?: boolean
3220
3219
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3228,7 +3227,7 @@ type MeterFeaturesFieldsProps = {
3228
3227
  withNextCheck?: boolean
3229
3228
  defaultValues?: Partial<MeterFeaturesFormFields>
3230
3229
  handleMeterTypeChange?: (
3231
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3230
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3232
3231
  ) => void
3233
3232
  settings?: any
3234
3233
  disabledInitial?: boolean
@@ -3241,14 +3240,14 @@ type BasicMeterFeaturesFormFields = {
3241
3240
  initialValueT1?: number
3242
3241
  initialValueT2?: number
3243
3242
  initialValueT3?: number
3244
- type?: MeterTypes
3245
- resource?: ResourceTypes
3243
+ type?: MeterTypes$1
3244
+ resource?: ResourceTypes$1
3246
3245
  withAutoSending?: boolean
3247
3246
  }
3248
3247
 
3249
3248
  type MeterFeaturesFormFields = {
3250
3249
  tariff: TariffGroupAutocompleteFields | null
3251
- company: CompanyAutocompleteFields | null
3250
+ company: CompanyAutocompleteFields$1 | null
3252
3251
  nextCheck: DateTime | null
3253
3252
  lastValue?: number
3254
3253
  lastValueT1?: number
@@ -3262,8 +3261,8 @@ type MeterFeaturesFormFields = {
3262
3261
  } & BasicMeterFeaturesFormFields
3263
3262
 
3264
3263
  type BasicMeterFieldsSettings = {
3265
- resource?: ResourceTypes
3266
- meterType?: MeterTypes
3264
+ resource?: ResourceTypes$1
3265
+ meterType?: MeterTypes$1
3267
3266
  disabledInitial?: boolean
3268
3267
  }
3269
3268
 
@@ -3295,10 +3294,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3295
3294
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3296
3295
 
3297
3296
  type MeterTypeRadioGroupProps = {
3298
- resource?: ResourceTypes
3297
+ resource?: ResourceTypes$1
3299
3298
  form: UseFormReturn<any>
3300
3299
  handleChange: (
3301
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3300
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3302
3301
  ) => void
3303
3302
  disabled?: boolean
3304
3303
  waterOptions?: OptionParams[]
@@ -3310,7 +3309,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3310
3309
  type MeterFeaturesFormProps = {
3311
3310
  formStore?: MultistepForm$1<any>
3312
3311
  handleMeterTypeChange?: (
3313
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3312
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3314
3313
  ) => void
3315
3314
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3316
3315
 
@@ -3378,7 +3377,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3378
3377
  startDate: undefined;
3379
3378
  }, "">;
3380
3379
 
3381
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3380
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3382
3381
 
3383
3382
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3384
3383
 
@@ -3394,7 +3393,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3394
3393
 
3395
3394
  type TariffReplacementFieldsProps = {
3396
3395
  form: UseFormReturn<TariffCommonFields>
3397
- resource: ResourceTypes
3396
+ resource: ResourceTypes$1
3398
3397
  setReplaceable: (value: boolean) => void
3399
3398
  settings?: any
3400
3399
  }
@@ -3810,7 +3809,7 @@ type UploadPhotosButtonProps = {
3810
3809
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3811
3810
 
3812
3811
  type UploadedImageProps = {
3813
- image: FileStore
3812
+ image: FileStore$1
3814
3813
  index: number
3815
3814
  onClick: (index: number) => void
3816
3815
  onDelete: (index: number) => void
@@ -3843,15 +3842,15 @@ declare type PartialMeterValuesFields = {
3843
3842
  };
3844
3843
  declare type PartialMeterInfoFields = {
3845
3844
  id: number;
3846
- resource: ResourceTypes;
3847
- type?: MeterTypes;
3845
+ resource: ResourceTypes$1;
3846
+ type?: MeterTypes$1;
3848
3847
  number: string;
3849
- images: FileStore[];
3848
+ images: FileStore$1[];
3850
3849
  maxValue?: PartialMeterValuesFields;
3851
3850
  minValue?: PartialMeterValuesFields;
3852
3851
  values: PartialMeterValuesFields;
3853
3852
  } & PartialMeterValuesFields;
3854
- 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>[];
3853
+ 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>[];
3855
3854
 
3856
3855
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3857
3856
  type: string | undefined;
@@ -3878,4 +3877,4 @@ type SignInPageProps = {
3878
3877
 
3879
3878
  declare const _default: (props: SignInPageProps) => JSX.Element;
3880
3879
 
3881
- 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, RentChargeTypes, 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, UtilityChargeTypes, 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 };
3880
+ 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, RentChargeTypes, 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, UtilityChargeTypes, 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 };