kui-crm 0.0.597 → 0.0.598

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 +198 -198
  2. package/package.json +1 -1
  3. package/types/index.d.ts +143 -143
package/index.d.ts CHANGED
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
186
186
 
187
187
  declare type GenderAPIVariants = "M" | "F";
188
188
  declare type APISubjectRoles = "maroom" | "owner" | "renter";
189
- declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
190
- declare type UnitOfPaymentTypes = "percent" | "value";
191
- declare type WaterMeterTypes = "cold" | "hot";
192
- declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
193
- declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
194
- declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
195
- declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
189
+ declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
190
+ declare type UnitOfPaymentTypes$1 = "percent" | "value";
191
+ declare type WaterMeterTypes$1 = "cold" | "hot";
192
+ declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
193
+ declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
194
+ declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
195
+ declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
196
196
  declare type ClientTypes = "personal" | "company";
197
197
  declare type RentalStatuses = "Rented out" | "Closed" | "Open";
198
198
  declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "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;
@@ -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;
@@ -444,8 +444,8 @@ declare type InspectionFillingParams = {
444
444
  description?: string;
445
445
  serial_code?: string;
446
446
  amount?: number | string | null;
447
- photos: ImageBodyRequest[];
448
- instruction?: FileBodyRequest | null;
447
+ photos: ImageBodyRequest$1[];
448
+ instruction?: FileBodyRequest$1 | null;
449
449
  was_missing?: boolean;
450
450
  };
451
451
  declare type InspectionMeterValueModel = {
@@ -461,7 +461,7 @@ declare type InspectionBasedOnModel = {
461
461
  id: number;
462
462
  inspection_type: InspectionTypes;
463
463
  };
464
- declare type VideoModel = {
464
+ declare type VideoModel$1 = {
465
465
  id: number;
466
466
  video_url: string;
467
467
  file_name?: string;
@@ -476,8 +476,8 @@ declare type InspectionRoomPhotoModel = {
476
476
  uploaded: boolean;
477
477
  purpose: InspectionRoomPhotoTypes;
478
478
  comment?: string;
479
- photos: ImageModel[];
480
- videos: VideoModel[];
479
+ photos: ImageModel$1[];
480
+ videos: VideoModel$1[];
481
481
  room_order_number?: number | null;
482
482
  };
483
483
  declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
@@ -515,11 +515,11 @@ declare type FullInspectionCommonFields = {
515
515
  filling: InspectionFillingModel[];
516
516
  } & ApartmentModel;
517
517
  declare type InspectionMeterCommonInfo = {
518
- resource_type: ResourceTypes;
519
- passport: FileModel | null;
520
- meter_type: MeterTypes;
518
+ resource_type: ResourceTypes$1;
519
+ passport: FileModel$1 | null;
520
+ meter_type: MeterTypes$1;
521
521
  operating_account: string;
522
- photos: ImageModel[];
522
+ photos: ImageModel$1[];
523
523
  } & Omit<MeterCommonInfoModel, "operating_account_number">;
524
524
  declare type TransferInspectionMeterModel = {
525
525
  values: InspectionMeterValueModel;
@@ -529,9 +529,9 @@ declare type TransferInspectionMeterModel = {
529
529
  declare type TransferInspectionFields = {
530
530
  transfer_type: TransferInspectionTypes;
531
531
  meters: TransferInspectionMeterModel[];
532
- inspection_document: DocumentModel | null;
533
- rental_contract_termination_document: DocumentModel | null;
534
- service_contract_termination_document: DocumentModel | null;
532
+ inspection_document: DocumentModel$1 | null;
533
+ rental_contract_termination_document: DocumentModel$1 | null;
534
+ service_contract_termination_document: DocumentModel$1 | null;
535
535
  } & FullInspectionCommonFields;
536
536
  declare type RegularInspectionFields = {
537
537
  meters: TransferInspectionMeterModel[];
@@ -540,7 +540,7 @@ declare type RegularInspectionFields = {
540
540
  declare type ComparableObjectModel = {
541
541
  id: number;
542
542
  advertisement_link: string;
543
- advertisement_screenshot: ImageModel | null;
543
+ advertisement_screenshot: ImageModel$1 | null;
544
544
  object_price: string;
545
545
  key_object_differences: string;
546
546
  };
@@ -548,7 +548,7 @@ declare type StatisticalEvaluationModel = {
548
548
  id: number;
549
549
  source_name: string;
550
550
  link: string;
551
- screenshot: ImageModel | null;
551
+ screenshot: ImageModel$1 | null;
552
552
  min_price: string;
553
553
  max_price: string;
554
554
  };
@@ -592,11 +592,11 @@ declare type ImpairmentModel = {
592
592
  id: number;
593
593
  name: string;
594
594
  impairment_type: ImpairmentType;
595
- proof_file: DocumentModel | null;
595
+ proof_file: DocumentModel$1 | null;
596
596
  price: number;
597
597
  solution: string;
598
598
  description: string;
599
- photos: ImageModel[];
599
+ photos: ImageModel$1[];
600
600
  item_link: string;
601
601
  bill_line_name: string;
602
602
  };
@@ -607,7 +607,7 @@ declare type InitialInspectionModelFields = {
607
607
  used_resources: UsedResourcesModel;
608
608
  } & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
609
609
  declare type AppraisalRequestModelFields = {
610
- floor_plan: DocumentModel | null;
610
+ floor_plan: DocumentModel$1 | null;
611
611
  };
612
612
  declare type InspectionModel = {
613
613
  initial?: InitialInspectionModelFields;
@@ -641,7 +641,7 @@ declare type InventoryInspectionFields = {
641
641
  allowed_smoking: boolean;
642
642
  additional_terms: string;
643
643
  resources: InspectionResourcesModel[];
644
- inspection_document: DocumentModel | null;
644
+ inspection_document: DocumentModel$1 | null;
645
645
  } & FullInspectionCommonFields;
646
646
  declare type InventoryInspectionModel = {
647
647
  inventory: InventoryInspectionFields;
@@ -693,10 +693,10 @@ declare type InspectionFeedbackInterface = {
693
693
  declare type PatchInspectionImageParams = {
694
694
  id?: number;
695
695
  order?: number;
696
- } & Partial<ImageBodyRequest>;
696
+ } & Partial<ImageBodyRequest$1>;
697
697
  declare type PatchInspectionVideoParams = {
698
698
  id?: number;
699
- } & Partial<VideoBodyRequest>;
699
+ } & Partial<VideoBodyRequest$1>;
700
700
  declare type PatchRoomImagesParams = {
701
701
  id?: number | null;
702
702
  purpose: InspectionRoomPhotoTypes;
@@ -737,8 +737,8 @@ declare type InspectionFillingModel = {
737
737
  description: string;
738
738
  serial_code: string;
739
739
  amount: number;
740
- photos: ImageModel[];
741
- instruction: DocumentModel;
740
+ photos: ImageModel$1[];
741
+ instruction: DocumentModel$1;
742
742
  is_absent: boolean;
743
743
  previously_absent: boolean;
744
744
  model: string;
@@ -820,7 +820,7 @@ declare type CommonMeterParams = {
820
820
  company: CompanyLiteParams;
821
821
  operating_account_number?: string | null;
822
822
  company_is_administrative: boolean;
823
- photos?: ImageModel[];
823
+ photos?: ImageModel$1[];
824
824
  auto_sending: boolean;
825
825
  no_tariff: boolean;
826
826
  is_avg: boolean;
@@ -832,15 +832,15 @@ declare type ElectricityMeterValues = {
832
832
  T3?: MeterTariffModel;
833
833
  };
834
834
  declare type WaterMeterParams = {
835
- type: WaterMeterTypes;
835
+ type: WaterMeterTypes$1;
836
836
  tariff: SingleCounterTariffModel;
837
837
  } & CommonMeterParams & MeterTariffModel;
838
838
  declare type SingleMeterParams = {
839
- type?: WaterMeterTypes;
839
+ type?: WaterMeterTypes$1;
840
840
  tariff: SingleCounterTariffModel;
841
841
  } & CommonMeterParams & MeterTariffModel;
842
842
  declare type ElectricityMeterParams = {
843
- type: ElectricityMeterTypes;
843
+ type: ElectricityMeterTypes$1;
844
844
  values: ElectricityMeterValues;
845
845
  tariff: ElectricityMeterTariffModel;
846
846
  overall_value?: number;
@@ -1088,7 +1088,7 @@ declare type CountryParams = {
1088
1088
  code: string;
1089
1089
  } & CatalogItemParams;
1090
1090
 
1091
- type FileWithVisibility = {
1091
+ type FileWithVisibility$1 = {
1092
1092
  id?: number
1093
1093
  file: File | null
1094
1094
  tenant: boolean
@@ -1097,8 +1097,8 @@ type FileWithVisibility = {
1097
1097
  url: string
1098
1098
  }
1099
1099
 
1100
- type InputFileWithVisibilityFields =
1101
- | FileWithVisibility
1100
+ type InputFileWithVisibilityFields$1 =
1101
+ | FileWithVisibility$1
1102
1102
  | DocumentWithVisibility
1103
1103
  | null
1104
1104
  | undefined
@@ -1128,7 +1128,7 @@ type ChangeReasonFieldsProps<T> = {
1128
1128
  }
1129
1129
 
1130
1130
  type ChangeReasonFormFields = {
1131
- reason: InputFileWithVisibilityFields
1131
+ reason: InputFileWithVisibilityFields$1
1132
1132
  comment?: string
1133
1133
  }
1134
1134
 
@@ -1143,13 +1143,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1143
1143
  settings?: any
1144
1144
  } & InputWithControllerProps<TFormValues>
1145
1145
 
1146
- type CompanyAutocompleteFields = {
1146
+ type CompanyAutocompleteFields$1 = {
1147
1147
  id: number
1148
1148
  name: string
1149
1149
  logo?: string | null
1150
1150
  }
1151
1151
 
1152
- declare class FileStore implements FileStoreInterface {
1152
+ declare class FileStore$1 implements FileStoreInterface {
1153
1153
  id: number | null;
1154
1154
  index?: number | null;
1155
1155
  name: string;
@@ -1180,13 +1180,13 @@ declare class FileStore implements FileStoreInterface {
1180
1180
  setIndex: (index: number) => void;
1181
1181
  get title(): string;
1182
1182
  static createPreviewUrl: (file: File) => Promise<string>;
1183
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1184
- static initFromFileModel: (file: FileModel) => FileStore;
1185
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1186
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1187
- static initFromVideoModel: (image: VideoModel) => FileStore;
1188
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1189
- static initFromFileStore: (file: FileStore) => FileStore;
1183
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1184
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1185
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1186
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1187
+ static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1188
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1189
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1190
1190
  }
1191
1191
 
1192
1192
  declare type ImageParams = {
@@ -1221,8 +1221,8 @@ declare class ImageStore implements ImageStoreInterface {
1221
1221
  delete: () => Promise<void>;
1222
1222
  get extension(): string;
1223
1223
  get title(): string;
1224
- static initFromImageModel: (image: ImageModel) => ImageStore;
1225
- static initFromVideoModel: (image: VideoModel) => ImageStore;
1224
+ static initFromImageModel: (image: ImageModel$1) => ImageStore;
1225
+ static initFromVideoModel: (image: VideoModel$1) => ImageStore;
1226
1226
  }
1227
1227
 
1228
1228
  declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
@@ -1347,7 +1347,7 @@ declare type LockerAutocompleteFields = {
1347
1347
  declare type ApartmentOverviewPaymentInfoFields = {
1348
1348
  payerCode?: string;
1349
1349
  communalServicesAccount?: string;
1350
- company?: CompanyAutocompleteFields | null;
1350
+ company?: CompanyAutocompleteFields$1 | null;
1351
1351
  } & ChangeReasonFormFields;
1352
1352
  declare type ApartmentOverviewInfoFields = {
1353
1353
  locker?: LockerAutocompleteFields | null;
@@ -1370,14 +1370,14 @@ declare type InspectionPaymentInfoParams = {
1370
1370
  } & ApartmentPaymentInfoParams;
1371
1371
  declare type InspectionMeterInfoParams = {
1372
1372
  id: number;
1373
- resource: ResourceTypes;
1374
- type?: MeterTypes;
1373
+ resource: ResourceTypes$1;
1374
+ type?: MeterTypes$1;
1375
1375
  number: string;
1376
1376
  startDate: DateTime | null;
1377
1377
  company: CompanyLiteParams;
1378
1378
  operationalAccountNumber?: string | null;
1379
1379
  tariff: EntityLinkParams | null;
1380
- passportFile: FileStore | null;
1380
+ passportFile: FileStore$1 | null;
1381
1381
  initialValue?: number;
1382
1382
  lastValue?: number;
1383
1383
  initialValueT1?: number;
@@ -1399,8 +1399,8 @@ declare type ValuesParams = {
1399
1399
  };
1400
1400
  declare type PartialMeterInfoParams = {
1401
1401
  id: number;
1402
- type: MeterTypes;
1403
- resource: ResourceTypes;
1402
+ type: MeterTypes$1;
1403
+ resource: ResourceTypes$1;
1404
1404
  number: string;
1405
1405
  values: ValuesParams;
1406
1406
  images?: (ImageStore | UploadImageParams)[];
@@ -1414,7 +1414,7 @@ declare type InspectionPartialMetersInfoParams = {
1414
1414
  declare type ComparableObjectParams = {
1415
1415
  id: number;
1416
1416
  link: string;
1417
- screenshot: FileStore | null;
1417
+ screenshot: FileStore$1 | null;
1418
1418
  price: number;
1419
1419
  differences: string;
1420
1420
  };
@@ -1422,7 +1422,7 @@ declare type StatisticalEvaluationParams = {
1422
1422
  id: number;
1423
1423
  dataSourceName: string;
1424
1424
  link: string;
1425
- screenshot: FileStore | null;
1425
+ screenshot: FileStore$1 | null;
1426
1426
  minPrice: number;
1427
1427
  maxPrice: number;
1428
1428
  };
@@ -1447,8 +1447,8 @@ declare type FillingInfoFormFields = {
1447
1447
  name?: string;
1448
1448
  description?: string;
1449
1449
  type?: ApartmentFillingVariants | null;
1450
- instruction?: InputFileWithVisibilityFields;
1451
- tempImages?: ImageBodyRequest[];
1450
+ instruction?: InputFileWithVisibilityFields$1;
1451
+ tempImages?: ImageBodyRequest$1[];
1452
1452
  };
1453
1453
 
1454
1454
  declare type FillingTagParams = {
@@ -1463,7 +1463,7 @@ declare type FillingParams = {
1463
1463
  images?: (ImageStore | UploadFileParams)[];
1464
1464
  serialNumber?: string;
1465
1465
  numberOfSubjects?: number | string | null;
1466
- instruction?: InputFileWithVisibilityFields | null;
1466
+ instruction?: InputFileWithVisibilityFields$1 | null;
1467
1467
  type?: ApartmentFillingVariants;
1468
1468
  loader?: Loader;
1469
1469
  };
@@ -1475,7 +1475,7 @@ declare type FillingFullParams = {
1475
1475
  images?: (ImageStore | UploadFileParams)[];
1476
1476
  serialNumber?: string;
1477
1477
  numberOfSubjects?: number | string | null;
1478
- instruction?: InputFileWithVisibilityFields | null;
1478
+ instruction?: InputFileWithVisibilityFields$1 | null;
1479
1479
  type?: ApartmentFillingVariants;
1480
1480
  loader?: Loader;
1481
1481
  check?: boolean | null;
@@ -1494,31 +1494,31 @@ declare type TariffGroupLiteParams = {
1494
1494
  name: string;
1495
1495
  };
1496
1496
 
1497
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1498
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
1499
- declare type WaterMeterTypes$1 = "cold" | "hot";
1500
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1501
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1502
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1503
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1504
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1505
- declare type FileBodyRequest$1 = {
1497
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1498
+ declare type UnitOfPaymentTypes = "percent" | "value";
1499
+ declare type WaterMeterTypes = "cold" | "hot";
1500
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1501
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1502
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1503
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1504
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1505
+ declare type FileBodyRequest = {
1506
1506
  temp_file_id?: number;
1507
1507
  name: string;
1508
- visibility?: DocumentVisibilityAPIVariants$1;
1508
+ visibility?: DocumentVisibilityAPIVariants;
1509
1509
  url?: string;
1510
1510
  };
1511
- declare type ImageBodyRequest$1 = {
1511
+ declare type ImageBodyRequest = {
1512
1512
  temp_file_id: number;
1513
1513
  image_name: string;
1514
1514
  url: string;
1515
1515
  };
1516
- declare type VideoBodyRequest$1 = {
1516
+ declare type VideoBodyRequest = {
1517
1517
  temp_file_id: number;
1518
1518
  file_name: string;
1519
1519
  url: string;
1520
1520
  };
1521
- declare type ImageModel$1 = {
1521
+ declare type ImageModel = {
1522
1522
  id: number;
1523
1523
  image_name?: string;
1524
1524
  image_url?: string;
@@ -1527,22 +1527,22 @@ declare type ImageModel$1 = {
1527
1527
  image_large_url: string;
1528
1528
  size: number;
1529
1529
  };
1530
- declare type FileModel$1 = {
1530
+ declare type FileModel = {
1531
1531
  id: number;
1532
1532
  name: string;
1533
1533
  size: number;
1534
1534
  url: string;
1535
1535
  };
1536
- declare type DocumentModel$1 = {
1536
+ declare type DocumentModel = {
1537
1537
  pk: number;
1538
1538
  name: string;
1539
1539
  created?: string;
1540
1540
  attachment: string;
1541
1541
  size: number;
1542
1542
  uploaded_by?: string | null;
1543
- visibility?: DocumentVisibilityAPIVariants$1;
1543
+ visibility?: DocumentVisibilityAPIVariants;
1544
1544
  };
1545
- declare type VideoModel$1 = {
1545
+ declare type VideoModel = {
1546
1546
  id: number;
1547
1547
  video_url: string;
1548
1548
  file_name?: string;
@@ -1553,7 +1553,7 @@ declare type VideoModel$1 = {
1553
1553
  resolution?: string;
1554
1554
  };
1555
1555
 
1556
- type FileWithVisibility$1 = {
1556
+ type FileWithVisibility = {
1557
1557
  id?: number
1558
1558
  file: File | null
1559
1559
  tenant: boolean
@@ -1562,19 +1562,19 @@ type FileWithVisibility$1 = {
1562
1562
  url: string
1563
1563
  }
1564
1564
 
1565
- type InputFileWithVisibilityFields$1 =
1566
- | FileWithVisibility$1
1565
+ type InputFileWithVisibilityFields =
1566
+ | FileWithVisibility
1567
1567
  | DocumentWithVisibility$1
1568
1568
  | null
1569
1569
  | undefined
1570
1570
 
1571
- type CompanyAutocompleteFields$1 = {
1571
+ type CompanyAutocompleteFields = {
1572
1572
  id: number
1573
1573
  name: string
1574
1574
  logo?: string | null
1575
1575
  }
1576
1576
 
1577
- declare class FileStore$1 implements FileStoreInterface$1 {
1577
+ declare class FileStore implements FileStoreInterface$1 {
1578
1578
  id: number | null;
1579
1579
  index?: number | null;
1580
1580
  name: string;
@@ -1605,22 +1605,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
1605
1605
  setIndex: (index: number) => void;
1606
1606
  get title(): string;
1607
1607
  static createPreviewUrl: (file: File) => Promise<string>;
1608
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1609
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1610
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1611
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1612
- static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1613
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1614
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1608
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1609
+ static initFromFileModel: (file: FileModel) => FileStore;
1610
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1611
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1612
+ static initFromVideoModel: (image: VideoModel) => FileStore;
1613
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1614
+ static initFromFileStore: (file: FileStore) => FileStore;
1615
1615
  }
1616
1616
 
1617
1617
  type PartialPayerFields$1 = {
1618
- payer?: ResourcePaymentRoles$1 | "partial"
1619
- mainPayer?: ResourcePaymentRoles$1
1620
- refundFrom?: ResourcePaymentRoles$1
1621
- partType?: UnitOfPaymentTypes$1 | null
1618
+ payer?: ResourcePaymentRoles | "partial"
1619
+ mainPayer?: ResourcePaymentRoles
1620
+ refundFrom?: ResourcePaymentRoles
1621
+ partType?: UnitOfPaymentTypes | null
1622
1622
  refundValue?: number | string | null
1623
- utilityType: UtilityTypes$1
1623
+ utilityType: UtilityTypes
1624
1624
  }
1625
1625
 
1626
1626
  declare type FilesStoreInterface$1 = {
@@ -1652,13 +1652,13 @@ declare type DocumentWithVisibility$1 = {
1652
1652
  visibility?: DocumentVisibilityVariants$1;
1653
1653
  extension: string;
1654
1654
  };
1655
- declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1655
+ declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1656
1656
  declare type FileStoreParams$1 = {
1657
1657
  id?: number | null;
1658
1658
  url?: string;
1659
1659
  index?: number | string | null;
1660
1660
  createdBy?: string | null;
1661
- visibility?: DocumentVisibilityAPIVariants$1;
1661
+ visibility?: DocumentVisibilityAPIVariants;
1662
1662
  name?: string;
1663
1663
  date?: string | null;
1664
1664
  size?: number | null;
@@ -1686,14 +1686,14 @@ type BasicMeterFeaturesFormFields$1 = {
1686
1686
  initialValueT1?: number
1687
1687
  initialValueT2?: number
1688
1688
  initialValueT3?: number
1689
- type?: MeterTypes$1
1690
- resource?: ResourceTypes$1
1689
+ type?: MeterTypes
1690
+ resource?: ResourceTypes
1691
1691
  withAutoSending?: boolean
1692
1692
  }
1693
1693
 
1694
1694
  type MeterFeaturesFormFields$1 = {
1695
1695
  tariff: TariffGroupAutocompleteFields$1 | null
1696
- company: CompanyAutocompleteFields$1 | null
1696
+ company: CompanyAutocompleteFields | null
1697
1697
  nextCheck: DateTime | null
1698
1698
  lastValue?: number
1699
1699
  lastValueT1?: number
@@ -1717,9 +1717,9 @@ declare type ApartmentMeterValues = {
1717
1717
  } & MeterValues;
1718
1718
  declare type InspectionMeterFields = {
1719
1719
  id?: number;
1720
- resource: ResourceTypes$1;
1721
- passportFile?: InputFileWithVisibilityFields$1;
1722
- images: FileStore$1[];
1720
+ resource: ResourceTypes;
1721
+ passportFile?: InputFileWithVisibilityFields;
1722
+ images: FileStore[];
1723
1723
  } & MeterFeaturesFormFields$1;
1724
1724
 
1725
1725
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1734,7 +1734,7 @@ type PartialPayerProps<T> = {
1734
1734
  title: string
1735
1735
  name: string
1736
1736
  form: UseFormReturn<T>
1737
- utilityType: UtilityTypes
1737
+ utilityType: UtilityTypes$1
1738
1738
  fieldsVariant?: PartialPayerVariants
1739
1739
  settings?: ObjectType
1740
1740
  disabled?: boolean
@@ -1742,12 +1742,12 @@ type PartialPayerProps<T> = {
1742
1742
  }
1743
1743
 
1744
1744
  type PartialPayerFields = {
1745
- payer?: ResourcePaymentRoles | "partial"
1746
- mainPayer?: ResourcePaymentRoles
1747
- refundFrom?: ResourcePaymentRoles
1748
- partType?: UnitOfPaymentTypes | null
1745
+ payer?: ResourcePaymentRoles$1 | "partial"
1746
+ mainPayer?: ResourcePaymentRoles$1
1747
+ refundFrom?: ResourcePaymentRoles$1
1748
+ partType?: UnitOfPaymentTypes$1 | null
1749
1749
  refundValue?: number | string | null
1750
- utilityType: UtilityTypes
1750
+ utilityType: UtilityTypes$1
1751
1751
  }
1752
1752
 
1753
1753
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1831,15 +1831,15 @@ declare type ResourceAccessParams = {
1831
1831
  description?: string;
1832
1832
  appName?: string;
1833
1833
  };
1834
- declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1834
+ declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1835
1835
  declare type ApartmentResourceCompanyDetails = {
1836
- company: CompanyAutocompleteFields | null;
1836
+ company: CompanyAutocompleteFields$1 | null;
1837
1837
  operationalAccountNumber: string;
1838
1838
  payerCode: string;
1839
1839
  dataSubmissionDays: DataSubmissionDaysParams;
1840
1840
  access: ResourceAccessParams;
1841
1841
  sampleReceiptLink: string;
1842
- sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1842
+ sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1843
1843
  };
1844
1844
  declare type ApartmentResourceInterface = {
1845
1845
  type: ApartmentResourceTypes;
@@ -1876,15 +1876,15 @@ declare type DocumentsStoreInterface = {
1876
1876
  loader: Loader;
1877
1877
  };
1878
1878
  declare type PostDocumentsResponse = {
1879
- documents: DocumentModel[];
1879
+ documents: DocumentModel$1[];
1880
1880
  };
1881
1881
  declare type DocumentAgentInterface = {
1882
1882
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1883
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1884
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1883
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1884
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1885
1885
  };
1886
1886
  declare type DocumentsAgentInterface = {
1887
- getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1887
+ getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1888
1888
  } & DocumentAgentInterface;
1889
1889
 
1890
1890
  declare type MetroLineParams = {
@@ -1955,7 +1955,7 @@ declare type ApartmentFeatureModel = {
1955
1955
  };
1956
1956
  declare type ApartmentDocumentModel = {
1957
1957
  id: number;
1958
- document: DocumentModel;
1958
+ document: DocumentModel$1;
1959
1959
  expiration_date: string;
1960
1960
  start_date: string;
1961
1961
  number: string;
@@ -1968,7 +1968,7 @@ declare type MeterCommonInfoModel = {
1968
1968
  tariff?: TariffLinkModel;
1969
1969
  activation_date?: string;
1970
1970
  check_date?: string;
1971
- type?: ElectricityMeterTypes | WaterMeterTypes;
1971
+ type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1972
1972
  apartment: ApartmentLinkModel;
1973
1973
  company: CompanyLiteParams;
1974
1974
  operating_account_number?: string | null;
@@ -2089,7 +2089,7 @@ declare type ApartmentModel = {
2089
2089
  owner_id: number;
2090
2090
  metro_stations: ApartmentMetroParams[];
2091
2091
  rental_status: RentalStatuses;
2092
- main_image: ImageModel;
2092
+ main_image: ImageModel$1;
2093
2093
  tv_type: TVTypes | null;
2094
2094
  inspection: ApartmentInspectionModel;
2095
2095
  distance_to_center_kilometers: number | null;
@@ -2116,7 +2116,7 @@ declare type ApartmentLiteModel = {
2116
2116
  renter: LiteUserModel | null;
2117
2117
  rental_status: RentalStatuses;
2118
2118
  renter_payment_status: RentalPaymentStatuses;
2119
- main_image: ImageModel;
2119
+ main_image: ImageModel$1;
2120
2120
  service_contract?: ServiceContractLiteModel;
2121
2121
  is_imported_from_old_crm?: boolean;
2122
2122
  max_electricity_counters?: number | null;
@@ -2162,7 +2162,7 @@ declare type ObjectForMapModel = {
2162
2162
  apartment_number: string;
2163
2163
  address: string;
2164
2164
  geolocation: LatLonParams;
2165
- main_image: ImageModel;
2165
+ main_image: ImageModel$1;
2166
2166
  renter: ClientLiteModel | null;
2167
2167
  owner: ClientLiteModel;
2168
2168
  metro_stations: ApartmentMetroStationModel[];
@@ -2194,13 +2194,13 @@ declare class DocumentStore implements FileStoreInterface {
2194
2194
  agent: DocumentAgentInterface;
2195
2195
  loader: Loader;
2196
2196
  settings?: any;
2197
- constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2197
+ constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2198
2198
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2199
- updateDocument: (res: DocumentModel) => void;
2199
+ updateDocument: (res: DocumentModel$1) => void;
2200
2200
  deleteDocument: (...params: any) => Promise<void>;
2201
2201
  get extension(): string;
2202
2202
  get title(): string;
2203
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2203
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2204
2204
  }
2205
2205
 
2206
2206
  type InputTypes =
@@ -2260,13 +2260,13 @@ declare type FileParams = {
2260
2260
  size?: number | null;
2261
2261
  file: File;
2262
2262
  };
2263
- declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2263
+ declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2264
2264
  declare type FileStoreParams = {
2265
2265
  id?: number | null;
2266
2266
  url?: string;
2267
2267
  index?: number | string | null;
2268
2268
  createdBy?: string | null;
2269
- visibility?: DocumentVisibilityAPIVariants;
2269
+ visibility?: DocumentVisibilityAPIVariants$1;
2270
2270
  name?: string;
2271
2271
  date?: string | null;
2272
2272
  size?: number | null;
@@ -2431,8 +2431,8 @@ declare const FillingTagsAgent: {
2431
2431
  };
2432
2432
 
2433
2433
  declare const TariffsAgent: {
2434
- all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2435
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2434
+ all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2435
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2436
2436
  };
2437
2437
 
2438
2438
  type SignInFormFields = {
@@ -2451,8 +2451,8 @@ declare const ApartmentsAgent: {
2451
2451
  };
2452
2452
 
2453
2453
  declare const ApartmentMetersAgent: {
2454
- getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2455
- getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2454
+ getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2455
+ getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2456
2456
  };
2457
2457
 
2458
2458
  declare const requests: {
@@ -2476,7 +2476,7 @@ declare const meterUnitLabel: {
2476
2476
  electricity: string;
2477
2477
  };
2478
2478
 
2479
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2479
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2480
2480
 
2481
2481
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2482
2482
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2492,34 +2492,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2492
2492
  }, "">;
2493
2493
 
2494
2494
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2495
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2495
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2496
2496
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2497
- declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2497
+ declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2498
2498
  temp_file_id: number;
2499
2499
  name: string;
2500
- visibility: DocumentVisibilityAPIVariants;
2500
+ visibility: DocumentVisibilityAPIVariants$1;
2501
2501
  url: string;
2502
2502
  } | null;
2503
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2504
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2505
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2503
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2504
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2505
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2506
2506
  name: string;
2507
- visibility: DocumentVisibilityAPIVariants;
2507
+ visibility: DocumentVisibilityAPIVariants$1;
2508
2508
  } | null;
2509
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2509
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2510
2510
  name: string;
2511
- visibility: DocumentVisibilityAPIVariants;
2511
+ visibility: DocumentVisibilityAPIVariants$1;
2512
2512
  } | null>;
2513
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2514
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2515
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2516
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2517
- declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2518
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2519
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2520
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2521
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2522
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2513
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2514
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2515
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2516
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2517
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2518
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2519
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2520
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2521
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2522
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2523
2523
 
2524
2524
  declare const matchesAPISubjectRoles: {
2525
2525
  maroom: string;
@@ -2612,16 +2612,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2612
2612
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2613
2613
 
2614
2614
  declare class FilesStore {
2615
- files: FileStore[];
2615
+ files: FileStore$1[];
2616
2616
  variant: FileVariant;
2617
2617
  constructor(variant: FileVariant);
2618
- addFile: (newFile: FileStore) => void;
2618
+ addFile: (newFile: FileStore$1) => void;
2619
2619
  removeFile: (index: number) => void;
2620
- setFiles: (files: FileStore[]) => void;
2620
+ setFiles: (files: FileStore$1[]) => void;
2621
2621
  uploadFiles: () => Promise<void>;
2622
- get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2622
+ get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2623
2623
  get uploadedAllFiles(): boolean;
2624
- get notUploadedFiles(): FileStore[];
2624
+ get notUploadedFiles(): FileStore$1[];
2625
2625
  get isUploading(): boolean;
2626
2626
  get videoLength(): number;
2627
2627
  get nonVideoLength(): number;
@@ -2643,7 +2643,7 @@ declare type UploadMediaToStoreSettings = {
2643
2643
  messages?: UploadMediaMessages;
2644
2644
  withoutFilesStore?: boolean;
2645
2645
  };
2646
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2646
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2647
2647
 
2648
2648
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2649
2649
  onSearchItem: (value: string) => void;
@@ -2815,11 +2815,11 @@ type DistrictAutocompleteFields = {
2815
2815
  type ReplaceableTariffFields = {
2816
2816
  name: string
2817
2817
  id?: number
2818
- type?: ResourceTypes
2818
+ type?: ResourceTypes$1
2819
2819
  }
2820
2820
 
2821
2821
  type TariffCommonFields = {
2822
- resourceType: ResourceTypes
2822
+ resourceType: ResourceTypes$1
2823
2823
  name: string
2824
2824
  startDate: DateTime
2825
2825
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2831,7 +2831,7 @@ type TariffCommonFields = {
2831
2831
  }
2832
2832
 
2833
2833
  type ElectricityTariffCreationFormFields = {
2834
- type: ElectricityMeterTypes
2834
+ type: ElectricityMeterTypes$1
2835
2835
  isOverallConsumption: boolean
2836
2836
  T1?: number
2837
2837
  T2?: number
@@ -2852,7 +2852,7 @@ type TariffCreationFormProps = {
2852
2852
  handleClose: () => void
2853
2853
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2854
2854
  creationForm: MultistepForm$1<TariffCreationFormFields>
2855
- defaultResource: ResourceTypes
2855
+ defaultResource: ResourceTypes$1
2856
2856
  settings?: any
2857
2857
  }
2858
2858
 
@@ -2897,7 +2897,7 @@ declare class TariffsLiteStore {
2897
2897
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2898
2898
  settings?: any;
2899
2899
  constructor(settings?: any);
2900
- fetchAll: (resource: ResourceTypes) => Promise<void>;
2900
+ fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2901
2901
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2902
2902
  static getTariffParams: (tariff: CommonTariffModel) => {
2903
2903
  id: number;
@@ -2905,7 +2905,7 @@ declare class TariffsLiteStore {
2905
2905
  };
2906
2906
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2907
2907
  static getTariffValues: (data: TariffCreationFormFields) => {
2908
- type: ElectricityMeterTypes;
2908
+ type: ElectricityMeterTypes$1;
2909
2909
  T1: string | undefined;
2910
2910
  T2: string | undefined;
2911
2911
  T3: string | undefined;
@@ -3199,7 +3199,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3199
3199
  name?: string
3200
3200
  label?: string
3201
3201
  hideName?: string
3202
- resource: ResourceTypes
3202
+ resource: ResourceTypes$1
3203
3203
  filter?: string
3204
3204
  filterRequired?: boolean
3205
3205
  settings?: any
@@ -3212,7 +3212,7 @@ type TariffGroupAutocompleteFields = {
3212
3212
  }
3213
3213
 
3214
3214
  type MeterFeaturesFieldsProps = {
3215
- resource?: ResourceTypes
3215
+ resource?: ResourceTypes$1
3216
3216
  replacements?: LiteMeterInterface[]
3217
3217
  isNewResource?: boolean
3218
3218
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3226,7 +3226,7 @@ type MeterFeaturesFieldsProps = {
3226
3226
  withNextCheck?: boolean
3227
3227
  defaultValues?: Partial<MeterFeaturesFormFields>
3228
3228
  handleMeterTypeChange?: (
3229
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3229
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3230
3230
  ) => void
3231
3231
  settings?: any
3232
3232
  disabledInitial?: boolean
@@ -3239,14 +3239,14 @@ type BasicMeterFeaturesFormFields = {
3239
3239
  initialValueT1?: number
3240
3240
  initialValueT2?: number
3241
3241
  initialValueT3?: number
3242
- type?: MeterTypes
3243
- resource?: ResourceTypes
3242
+ type?: MeterTypes$1
3243
+ resource?: ResourceTypes$1
3244
3244
  withAutoSending?: boolean
3245
3245
  }
3246
3246
 
3247
3247
  type MeterFeaturesFormFields = {
3248
3248
  tariff: TariffGroupAutocompleteFields | null
3249
- company: CompanyAutocompleteFields | null
3249
+ company: CompanyAutocompleteFields$1 | null
3250
3250
  nextCheck: DateTime | null
3251
3251
  lastValue?: number
3252
3252
  lastValueT1?: number
@@ -3260,8 +3260,8 @@ type MeterFeaturesFormFields = {
3260
3260
  } & BasicMeterFeaturesFormFields
3261
3261
 
3262
3262
  type BasicMeterFieldsSettings = {
3263
- resource?: ResourceTypes
3264
- meterType?: MeterTypes
3263
+ resource?: ResourceTypes$1
3264
+ meterType?: MeterTypes$1
3265
3265
  disabledInitial?: boolean
3266
3266
  }
3267
3267
 
@@ -3293,10 +3293,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3293
3293
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3294
3294
 
3295
3295
  type MeterTypeRadioGroupProps = {
3296
- resource?: ResourceTypes
3296
+ resource?: ResourceTypes$1
3297
3297
  form: UseFormReturn<any>
3298
3298
  handleChange: (
3299
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3299
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3300
3300
  ) => void
3301
3301
  disabled?: boolean
3302
3302
  waterOptions?: OptionParams[]
@@ -3308,7 +3308,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3308
3308
  type MeterFeaturesFormProps = {
3309
3309
  formStore?: MultistepForm$1<any>
3310
3310
  handleMeterTypeChange?: (
3311
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3311
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3312
3312
  ) => void
3313
3313
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3314
3314
 
@@ -3376,7 +3376,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3376
3376
  startDate: undefined;
3377
3377
  }, "">;
3378
3378
 
3379
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3379
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3380
3380
 
3381
3381
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3382
3382
 
@@ -3392,7 +3392,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3392
3392
 
3393
3393
  type TariffReplacementFieldsProps = {
3394
3394
  form: UseFormReturn<TariffCommonFields>
3395
- resource: ResourceTypes
3395
+ resource: ResourceTypes$1
3396
3396
  setReplaceable: (value: boolean) => void
3397
3397
  settings?: any
3398
3398
  }
@@ -3808,7 +3808,7 @@ type UploadPhotosButtonProps = {
3808
3808
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3809
3809
 
3810
3810
  type UploadedImageProps = {
3811
- image: FileStore
3811
+ image: FileStore$1
3812
3812
  index: number
3813
3813
  onClick: (index: number) => void
3814
3814
  onDelete: (index: number) => void
@@ -3841,15 +3841,15 @@ declare type PartialMeterValuesFields = {
3841
3841
  };
3842
3842
  declare type PartialMeterInfoFields = {
3843
3843
  id: number;
3844
- resource: ResourceTypes;
3845
- type?: MeterTypes;
3844
+ resource: ResourceTypes$1;
3845
+ type?: MeterTypes$1;
3846
3846
  number: string;
3847
- images: FileStore[];
3847
+ images: FileStore$1[];
3848
3848
  maxValue?: PartialMeterValuesFields;
3849
3849
  minValue?: PartialMeterValuesFields;
3850
3850
  values: PartialMeterValuesFields;
3851
3851
  } & PartialMeterValuesFields;
3852
- 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>[];
3852
+ 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>[];
3853
3853
 
3854
3854
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3855
3855
  type: string | undefined;
@@ -3876,4 +3876,4 @@ type SignInPageProps = {
3876
3876
 
3877
3877
  declare const _default: (props: SignInPageProps) => JSX.Element;
3878
3878
 
3879
- 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 };
3879
+ 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 };