kui-crm 0.0.586 → 0.0.587

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +199 -198
  2. package/package.json +1 -1
  3. package/types/index.d.ts +144 -143
package/index.d.ts CHANGED
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
186
186
 
187
187
  declare type GenderAPIVariants = "M" | "F";
188
188
  declare type APISubjectRoles = "maroom" | "owner" | "renter";
189
- declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
190
- declare type UnitOfPaymentTypes = "percent" | "value";
191
- declare type WaterMeterTypes = "cold" | "hot";
192
- declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
193
- declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
194
- declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
195
- declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
189
+ declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
190
+ declare type UnitOfPaymentTypes$1 = "percent" | "value";
191
+ declare type WaterMeterTypes$1 = "cold" | "hot";
192
+ declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
193
+ declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
194
+ declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
195
+ declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
196
196
  declare type ClientTypes = "personal" | "company";
197
197
  declare type RentalStatuses = "Rented out" | "Closed" | "Open";
198
198
  declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
200
200
  declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
201
201
  declare type TaxResidenceType = "resident" | "not_resident";
202
202
  declare type RentalTypes = "short" | "medium" | "long" | "any";
203
- declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
203
+ declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
204
204
  declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
205
205
  declare type ContractLinkModel = {
206
206
  id: number;
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
239
239
  address: string;
240
240
  object_name?: string;
241
241
  apartment_number?: string;
242
- main_image: ImageModel | null;
242
+ main_image: ImageModel$1 | null;
243
243
  folder_number?: string;
244
244
  };
245
245
  declare type ApartmentSimpleModel = {
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
249
249
  id: number;
250
250
  address: string;
251
251
  object_name?: string;
252
- main_image: ImageModel | null;
252
+ main_image: ImageModel$1 | null;
253
253
  };
254
254
  declare type AdministrativeCompanyModel = {
255
255
  id: number;
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
262
262
  code_name: string;
263
263
  };
264
264
  declare type UtilityPayerModel = {
265
- utility_type: UtilityTypes;
266
- payment_made_by?: ResourcePaymentRoles;
267
- refund_from: ResourcePaymentRoles;
265
+ utility_type: UtilityTypes$1;
266
+ payment_made_by?: ResourcePaymentRoles$1;
267
+ refund_from: ResourcePaymentRoles$1;
268
268
  refund_value?: number | string;
269
- value_type?: UnitOfPaymentTypes;
269
+ value_type?: UnitOfPaymentTypes$1;
270
270
  };
271
- declare type FileBodyRequest = {
271
+ declare type FileBodyRequest$1 = {
272
272
  temp_file_id?: number;
273
273
  name: string;
274
- visibility?: DocumentVisibilityAPIVariants;
274
+ visibility?: DocumentVisibilityAPIVariants$1;
275
275
  url?: string;
276
276
  };
277
- declare type ImageBodyRequest = {
277
+ declare type ImageBodyRequest$1 = {
278
278
  temp_file_id: number;
279
279
  image_name: string;
280
280
  url: string;
281
281
  };
282
- declare type VideoBodyRequest = {
282
+ declare type VideoBodyRequest$1 = {
283
283
  temp_file_id: number;
284
284
  file_name: string;
285
285
  url: string;
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
288
288
  id: number;
289
289
  upload: string;
290
290
  };
291
- declare type ImageModel = {
291
+ declare type ImageModel$1 = {
292
292
  id: number;
293
293
  image_name?: string;
294
294
  image_url?: string;
@@ -297,20 +297,20 @@ declare type ImageModel = {
297
297
  image_large_url: string;
298
298
  size: number;
299
299
  };
300
- declare type FileModel = {
300
+ declare type FileModel$1 = {
301
301
  id: number;
302
302
  name: string;
303
303
  size: number;
304
304
  url: string;
305
305
  };
306
- declare type DocumentModel = {
306
+ declare type DocumentModel$1 = {
307
307
  pk: number;
308
308
  name: string;
309
309
  created?: string;
310
310
  attachment: string;
311
311
  size: number;
312
312
  uploaded_by?: string | null;
313
- visibility?: DocumentVisibilityAPIVariants;
313
+ visibility?: DocumentVisibilityAPIVariants$1;
314
314
  };
315
315
  declare type PatchDocumentRequest = {
316
316
  name: string;
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
318
318
  declare type PatchFileParams = {
319
319
  id: number;
320
320
  name: string;
321
- visibility: DocumentVisibilityAPIVariants;
321
+ visibility: DocumentVisibilityAPIVariants$1;
322
322
  };
323
323
  declare type PaginationRes<T> = {
324
324
  count: number;
@@ -409,7 +409,7 @@ declare type ApartmentResourceCompanyModel = {
409
409
  provider_type: string;
410
410
  };
411
411
  declare type DataTransferFormats = "online" | "offline";
412
- declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
412
+ declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "other";
413
413
  declare type ApartmentResourceModel = {
414
414
  id: number;
415
415
  company: ApartmentResourceCompanyModel | null;
@@ -418,7 +418,7 @@ declare type ApartmentResourceModel = {
418
418
  payer_code?: string;
419
419
  meter_readings_day_from?: number;
420
420
  meter_readings_day_to?: number;
421
- receipt_example?: DocumentModel;
421
+ receipt_example?: DocumentModel$1;
422
422
  provider_auth_login?: string;
423
423
  provider_auth_password?: string;
424
424
  provider_url?: string;
@@ -443,8 +443,8 @@ declare type InspectionFillingParams = {
443
443
  description?: string;
444
444
  serial_code?: string;
445
445
  amount?: number | string | null;
446
- photos: ImageBodyRequest[];
447
- instruction?: FileBodyRequest | null;
446
+ photos: ImageBodyRequest$1[];
447
+ instruction?: FileBodyRequest$1 | null;
448
448
  was_missing?: boolean;
449
449
  };
450
450
  declare type InspectionMeterValueModel = {
@@ -460,7 +460,7 @@ declare type InspectionBasedOnModel = {
460
460
  id: number;
461
461
  inspection_type: InspectionTypes;
462
462
  };
463
- declare type VideoModel = {
463
+ declare type VideoModel$1 = {
464
464
  id: number;
465
465
  video_url: string;
466
466
  file_name?: string;
@@ -475,8 +475,8 @@ declare type InspectionRoomPhotoModel = {
475
475
  uploaded: boolean;
476
476
  purpose: InspectionRoomPhotoTypes;
477
477
  comment?: string;
478
- photos: ImageModel[];
479
- videos: VideoModel[];
478
+ photos: ImageModel$1[];
479
+ videos: VideoModel$1[];
480
480
  room_order_number?: number | null;
481
481
  };
482
482
  declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
@@ -514,11 +514,11 @@ declare type FullInspectionCommonFields = {
514
514
  filling: InspectionFillingModel[];
515
515
  } & ApartmentModel;
516
516
  declare type InspectionMeterCommonInfo = {
517
- resource_type: ResourceTypes;
518
- passport: FileModel | null;
519
- meter_type: MeterTypes;
517
+ resource_type: ResourceTypes$1;
518
+ passport: FileModel$1 | null;
519
+ meter_type: MeterTypes$1;
520
520
  operating_account: string;
521
- photos: ImageModel[];
521
+ photos: ImageModel$1[];
522
522
  } & Omit<MeterCommonInfoModel, "operating_account_number">;
523
523
  declare type TransferInspectionMeterModel = {
524
524
  values: InspectionMeterValueModel;
@@ -528,9 +528,9 @@ declare type TransferInspectionMeterModel = {
528
528
  declare type TransferInspectionFields = {
529
529
  transfer_type: TransferInspectionTypes;
530
530
  meters: TransferInspectionMeterModel[];
531
- inspection_document: DocumentModel | null;
532
- rental_contract_termination_document: DocumentModel | null;
533
- service_contract_termination_document: DocumentModel | null;
531
+ inspection_document: DocumentModel$1 | null;
532
+ rental_contract_termination_document: DocumentModel$1 | null;
533
+ service_contract_termination_document: DocumentModel$1 | null;
534
534
  } & FullInspectionCommonFields;
535
535
  declare type RegularInspectionFields = {
536
536
  meters: TransferInspectionMeterModel[];
@@ -539,7 +539,7 @@ declare type RegularInspectionFields = {
539
539
  declare type ComparableObjectModel = {
540
540
  id: number;
541
541
  advertisement_link: string;
542
- advertisement_screenshot: ImageModel | null;
542
+ advertisement_screenshot: ImageModel$1 | null;
543
543
  object_price: string;
544
544
  key_object_differences: string;
545
545
  };
@@ -547,7 +547,7 @@ declare type StatisticalEvaluationModel = {
547
547
  id: number;
548
548
  source_name: string;
549
549
  link: string;
550
- screenshot: ImageModel | null;
550
+ screenshot: ImageModel$1 | null;
551
551
  min_price: string;
552
552
  max_price: string;
553
553
  };
@@ -590,11 +590,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
590
590
  declare type ImpairmentModel = {
591
591
  id: number;
592
592
  impairment_type: ImpairmentType;
593
- proof_file: DocumentModel | null;
593
+ proof_file: DocumentModel$1 | null;
594
594
  price: number;
595
595
  solution: string;
596
596
  description: string;
597
- photos: ImageModel[];
597
+ photos: ImageModel$1[];
598
598
  item_link: string;
599
599
  bill_line_name: string;
600
600
  };
@@ -605,7 +605,7 @@ declare type InitialInspectionModelFields = {
605
605
  used_resources: UsedResourcesModel;
606
606
  } & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
607
607
  declare type AppraisalRequestModelFields = {
608
- floor_plan: DocumentModel | null;
608
+ floor_plan: DocumentModel$1 | null;
609
609
  };
610
610
  declare type InspectionModel = {
611
611
  initial?: InitialInspectionModelFields;
@@ -639,7 +639,7 @@ declare type InventoryInspectionFields = {
639
639
  allowed_smoking: boolean;
640
640
  additional_terms: string;
641
641
  resources: InspectionResourcesModel[];
642
- inspection_document: DocumentModel | null;
642
+ inspection_document: DocumentModel$1 | null;
643
643
  } & FullInspectionCommonFields;
644
644
  declare type InventoryInspectionModel = {
645
645
  inventory: InventoryInspectionFields;
@@ -681,6 +681,7 @@ declare type ApartmentInspectionListModel = {
681
681
  conclusion: AppraisalTenantOfferModel | null;
682
682
  status: InspectionStatus;
683
683
  can_resume: boolean;
684
+ transfer_type?: TransferInspectionTypes;
684
685
  };
685
686
  declare type InspectionFeedbackInterface = {
686
687
  agree: boolean;
@@ -690,10 +691,10 @@ declare type InspectionFeedbackInterface = {
690
691
  declare type PatchInspectionImageParams = {
691
692
  id?: number;
692
693
  order?: number;
693
- } & Partial<ImageBodyRequest>;
694
+ } & Partial<ImageBodyRequest$1>;
694
695
  declare type PatchInspectionVideoParams = {
695
696
  id?: number;
696
- } & Partial<VideoBodyRequest>;
697
+ } & Partial<VideoBodyRequest$1>;
697
698
  declare type PatchRoomImagesParams = {
698
699
  id?: number | null;
699
700
  purpose: InspectionRoomPhotoTypes;
@@ -734,8 +735,8 @@ declare type InspectionFillingModel = {
734
735
  description: string;
735
736
  serial_code: string;
736
737
  amount: number;
737
- photos: ImageModel[];
738
- instruction: DocumentModel;
738
+ photos: ImageModel$1[];
739
+ instruction: DocumentModel$1;
739
740
  is_absent: boolean;
740
741
  previously_absent: boolean;
741
742
  model: string;
@@ -817,7 +818,7 @@ declare type CommonMeterParams = {
817
818
  company: CompanyLiteParams;
818
819
  operating_account_number?: string | null;
819
820
  company_is_administrative: boolean;
820
- photos?: ImageModel[];
821
+ photos?: ImageModel$1[];
821
822
  auto_sending: boolean;
822
823
  no_tariff: boolean;
823
824
  is_avg: boolean;
@@ -829,15 +830,15 @@ declare type ElectricityMeterValues = {
829
830
  T3?: MeterTariffModel;
830
831
  };
831
832
  declare type WaterMeterParams = {
832
- type: WaterMeterTypes;
833
+ type: WaterMeterTypes$1;
833
834
  tariff: SingleCounterTariffModel;
834
835
  } & CommonMeterParams & MeterTariffModel;
835
836
  declare type SingleMeterParams = {
836
- type?: WaterMeterTypes;
837
+ type?: WaterMeterTypes$1;
837
838
  tariff: SingleCounterTariffModel;
838
839
  } & CommonMeterParams & MeterTariffModel;
839
840
  declare type ElectricityMeterParams = {
840
- type: ElectricityMeterTypes;
841
+ type: ElectricityMeterTypes$1;
841
842
  values: ElectricityMeterValues;
842
843
  tariff: ElectricityMeterTariffModel;
843
844
  overall_value?: number;
@@ -1080,7 +1081,7 @@ declare type CountryParams = {
1080
1081
  code: string;
1081
1082
  } & CatalogItemParams;
1082
1083
 
1083
- type FileWithVisibility = {
1084
+ type FileWithVisibility$1 = {
1084
1085
  id?: number
1085
1086
  file: File | null
1086
1087
  tenant: boolean
@@ -1089,8 +1090,8 @@ type FileWithVisibility = {
1089
1090
  url: string
1090
1091
  }
1091
1092
 
1092
- type InputFileWithVisibilityFields =
1093
- | FileWithVisibility
1093
+ type InputFileWithVisibilityFields$1 =
1094
+ | FileWithVisibility$1
1094
1095
  | DocumentWithVisibility
1095
1096
  | null
1096
1097
  | undefined
@@ -1120,7 +1121,7 @@ type ChangeReasonFieldsProps<T> = {
1120
1121
  }
1121
1122
 
1122
1123
  type ChangeReasonFormFields = {
1123
- reason: InputFileWithVisibilityFields
1124
+ reason: InputFileWithVisibilityFields$1
1124
1125
  comment?: string
1125
1126
  }
1126
1127
 
@@ -1135,13 +1136,13 @@ type CompanyAutocompleteProps<TFormValues> = {
1135
1136
  settings?: any
1136
1137
  } & InputWithControllerProps<TFormValues>
1137
1138
 
1138
- type CompanyAutocompleteFields = {
1139
+ type CompanyAutocompleteFields$1 = {
1139
1140
  id: number
1140
1141
  name: string
1141
1142
  logo?: string | null
1142
1143
  }
1143
1144
 
1144
- declare class FileStore implements FileStoreInterface {
1145
+ declare class FileStore$1 implements FileStoreInterface {
1145
1146
  id: number | null;
1146
1147
  index?: number | null;
1147
1148
  name: string;
@@ -1172,13 +1173,13 @@ declare class FileStore implements FileStoreInterface {
1172
1173
  setIndex: (index: number) => void;
1173
1174
  get title(): string;
1174
1175
  static createPreviewUrl: (file: File) => Promise<string>;
1175
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1176
- static initFromFileModel: (file: FileModel) => FileStore;
1177
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1178
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1179
- static initFromVideoModel: (image: VideoModel) => FileStore;
1180
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1181
- static initFromFileStore: (file: FileStore) => FileStore;
1176
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1177
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1178
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1179
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1180
+ static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1181
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1182
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1182
1183
  }
1183
1184
 
1184
1185
  declare type ImageParams = {
@@ -1213,8 +1214,8 @@ declare class ImageStore implements ImageStoreInterface {
1213
1214
  delete: () => Promise<void>;
1214
1215
  get extension(): string;
1215
1216
  get title(): string;
1216
- static initFromImageModel: (image: ImageModel) => ImageStore;
1217
- static initFromVideoModel: (image: VideoModel) => ImageStore;
1217
+ static initFromImageModel: (image: ImageModel$1) => ImageStore;
1218
+ static initFromVideoModel: (image: VideoModel$1) => ImageStore;
1218
1219
  }
1219
1220
 
1220
1221
  declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
@@ -1339,7 +1340,7 @@ declare type LockerAutocompleteFields = {
1339
1340
  declare type ApartmentOverviewPaymentInfoFields = {
1340
1341
  payerCode?: string;
1341
1342
  communalServicesAccount?: string;
1342
- company?: CompanyAutocompleteFields | null;
1343
+ company?: CompanyAutocompleteFields$1 | null;
1343
1344
  } & ChangeReasonFormFields;
1344
1345
  declare type ApartmentOverviewInfoFields = {
1345
1346
  locker?: LockerAutocompleteFields | null;
@@ -1362,14 +1363,14 @@ declare type InspectionPaymentInfoParams = {
1362
1363
  } & ApartmentPaymentInfoParams;
1363
1364
  declare type InspectionMeterInfoParams = {
1364
1365
  id: number;
1365
- resource: ResourceTypes;
1366
- type?: MeterTypes;
1366
+ resource: ResourceTypes$1;
1367
+ type?: MeterTypes$1;
1367
1368
  number: string;
1368
1369
  startDate: DateTime | null;
1369
1370
  company: CompanyLiteParams;
1370
1371
  operationalAccountNumber?: string | null;
1371
1372
  tariff: EntityLinkParams | null;
1372
- passportFile: FileStore | null;
1373
+ passportFile: FileStore$1 | null;
1373
1374
  initialValue?: number;
1374
1375
  lastValue?: number;
1375
1376
  initialValueT1?: number;
@@ -1391,8 +1392,8 @@ declare type ValuesParams = {
1391
1392
  };
1392
1393
  declare type PartialMeterInfoParams = {
1393
1394
  id: number;
1394
- type: MeterTypes;
1395
- resource: ResourceTypes;
1395
+ type: MeterTypes$1;
1396
+ resource: ResourceTypes$1;
1396
1397
  number: string;
1397
1398
  values: ValuesParams;
1398
1399
  images?: (ImageStore | UploadImageParams)[];
@@ -1406,7 +1407,7 @@ declare type InspectionPartialMetersInfoParams = {
1406
1407
  declare type ComparableObjectParams = {
1407
1408
  id: number;
1408
1409
  link: string;
1409
- screenshot: FileStore | null;
1410
+ screenshot: FileStore$1 | null;
1410
1411
  price: number;
1411
1412
  differences: string;
1412
1413
  };
@@ -1414,7 +1415,7 @@ declare type StatisticalEvaluationParams = {
1414
1415
  id: number;
1415
1416
  dataSourceName: string;
1416
1417
  link: string;
1417
- screenshot: FileStore | null;
1418
+ screenshot: FileStore$1 | null;
1418
1419
  minPrice: number;
1419
1420
  maxPrice: number;
1420
1421
  };
@@ -1439,8 +1440,8 @@ declare type FillingInfoFormFields = {
1439
1440
  name?: string;
1440
1441
  description?: string;
1441
1442
  type?: ApartmentFillingVariants | null;
1442
- instruction?: InputFileWithVisibilityFields;
1443
- tempImages?: ImageBodyRequest[];
1443
+ instruction?: InputFileWithVisibilityFields$1;
1444
+ tempImages?: ImageBodyRequest$1[];
1444
1445
  };
1445
1446
 
1446
1447
  declare type FillingTagParams = {
@@ -1455,7 +1456,7 @@ declare type FillingParams = {
1455
1456
  images?: (ImageStore | UploadFileParams)[];
1456
1457
  serialNumber?: string;
1457
1458
  numberOfSubjects?: number | string | null;
1458
- instruction?: InputFileWithVisibilityFields | null;
1459
+ instruction?: InputFileWithVisibilityFields$1 | null;
1459
1460
  type?: ApartmentFillingVariants;
1460
1461
  loader?: Loader;
1461
1462
  };
@@ -1467,7 +1468,7 @@ declare type FillingFullParams = {
1467
1468
  images?: (ImageStore | UploadFileParams)[];
1468
1469
  serialNumber?: string;
1469
1470
  numberOfSubjects?: number | string | null;
1470
- instruction?: InputFileWithVisibilityFields | null;
1471
+ instruction?: InputFileWithVisibilityFields$1 | null;
1471
1472
  type?: ApartmentFillingVariants;
1472
1473
  loader?: Loader;
1473
1474
  check?: boolean | null;
@@ -1486,31 +1487,31 @@ declare type TariffGroupLiteParams = {
1486
1487
  name: string;
1487
1488
  };
1488
1489
 
1489
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1490
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
1491
- declare type WaterMeterTypes$1 = "cold" | "hot";
1492
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1493
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1494
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1495
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1496
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1497
- declare type FileBodyRequest$1 = {
1490
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1491
+ declare type UnitOfPaymentTypes = "percent" | "value";
1492
+ declare type WaterMeterTypes = "cold" | "hot";
1493
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1494
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1495
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1496
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1497
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1498
+ declare type FileBodyRequest = {
1498
1499
  temp_file_id?: number;
1499
1500
  name: string;
1500
- visibility?: DocumentVisibilityAPIVariants$1;
1501
+ visibility?: DocumentVisibilityAPIVariants;
1501
1502
  url?: string;
1502
1503
  };
1503
- declare type ImageBodyRequest$1 = {
1504
+ declare type ImageBodyRequest = {
1504
1505
  temp_file_id: number;
1505
1506
  image_name: string;
1506
1507
  url: string;
1507
1508
  };
1508
- declare type VideoBodyRequest$1 = {
1509
+ declare type VideoBodyRequest = {
1509
1510
  temp_file_id: number;
1510
1511
  file_name: string;
1511
1512
  url: string;
1512
1513
  };
1513
- declare type ImageModel$1 = {
1514
+ declare type ImageModel = {
1514
1515
  id: number;
1515
1516
  image_name?: string;
1516
1517
  image_url?: string;
@@ -1519,22 +1520,22 @@ declare type ImageModel$1 = {
1519
1520
  image_large_url: string;
1520
1521
  size: number;
1521
1522
  };
1522
- declare type FileModel$1 = {
1523
+ declare type FileModel = {
1523
1524
  id: number;
1524
1525
  name: string;
1525
1526
  size: number;
1526
1527
  url: string;
1527
1528
  };
1528
- declare type DocumentModel$1 = {
1529
+ declare type DocumentModel = {
1529
1530
  pk: number;
1530
1531
  name: string;
1531
1532
  created?: string;
1532
1533
  attachment: string;
1533
1534
  size: number;
1534
1535
  uploaded_by?: string | null;
1535
- visibility?: DocumentVisibilityAPIVariants$1;
1536
+ visibility?: DocumentVisibilityAPIVariants;
1536
1537
  };
1537
- declare type VideoModel$1 = {
1538
+ declare type VideoModel = {
1538
1539
  id: number;
1539
1540
  video_url: string;
1540
1541
  file_name?: string;
@@ -1545,7 +1546,7 @@ declare type VideoModel$1 = {
1545
1546
  resolution?: string;
1546
1547
  };
1547
1548
 
1548
- type FileWithVisibility$1 = {
1549
+ type FileWithVisibility = {
1549
1550
  id?: number
1550
1551
  file: File | null
1551
1552
  tenant: boolean
@@ -1554,19 +1555,19 @@ type FileWithVisibility$1 = {
1554
1555
  url: string
1555
1556
  }
1556
1557
 
1557
- type InputFileWithVisibilityFields$1 =
1558
- | FileWithVisibility$1
1558
+ type InputFileWithVisibilityFields =
1559
+ | FileWithVisibility
1559
1560
  | DocumentWithVisibility$1
1560
1561
  | null
1561
1562
  | undefined
1562
1563
 
1563
- type CompanyAutocompleteFields$1 = {
1564
+ type CompanyAutocompleteFields = {
1564
1565
  id: number
1565
1566
  name: string
1566
1567
  logo?: string | null
1567
1568
  }
1568
1569
 
1569
- declare class FileStore$1 implements FileStoreInterface$1 {
1570
+ declare class FileStore implements FileStoreInterface$1 {
1570
1571
  id: number | null;
1571
1572
  index?: number | null;
1572
1573
  name: string;
@@ -1597,22 +1598,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
1597
1598
  setIndex: (index: number) => void;
1598
1599
  get title(): string;
1599
1600
  static createPreviewUrl: (file: File) => Promise<string>;
1600
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1601
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
1602
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1603
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1604
- static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
1605
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1606
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
1601
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1602
+ static initFromFileModel: (file: FileModel) => FileStore;
1603
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
1604
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1605
+ static initFromVideoModel: (image: VideoModel) => FileStore;
1606
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1607
+ static initFromFileStore: (file: FileStore) => FileStore;
1607
1608
  }
1608
1609
 
1609
1610
  type PartialPayerFields$1 = {
1610
- payer?: ResourcePaymentRoles$1 | "partial"
1611
- mainPayer?: ResourcePaymentRoles$1
1612
- refundFrom?: ResourcePaymentRoles$1
1613
- partType?: UnitOfPaymentTypes$1 | null
1611
+ payer?: ResourcePaymentRoles | "partial"
1612
+ mainPayer?: ResourcePaymentRoles
1613
+ refundFrom?: ResourcePaymentRoles
1614
+ partType?: UnitOfPaymentTypes | null
1614
1615
  refundValue?: number | string | null
1615
- utilityType: UtilityTypes$1
1616
+ utilityType: UtilityTypes
1616
1617
  }
1617
1618
 
1618
1619
  declare type FilesStoreInterface$1 = {
@@ -1644,13 +1645,13 @@ declare type DocumentWithVisibility$1 = {
1644
1645
  visibility?: DocumentVisibilityVariants$1;
1645
1646
  extension: string;
1646
1647
  };
1647
- declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1648
+ declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1648
1649
  declare type FileStoreParams$1 = {
1649
1650
  id?: number | null;
1650
1651
  url?: string;
1651
1652
  index?: number | string | null;
1652
1653
  createdBy?: string | null;
1653
- visibility?: DocumentVisibilityAPIVariants$1;
1654
+ visibility?: DocumentVisibilityAPIVariants;
1654
1655
  name?: string;
1655
1656
  date?: string | null;
1656
1657
  size?: number | null;
@@ -1678,14 +1679,14 @@ type BasicMeterFeaturesFormFields$1 = {
1678
1679
  initialValueT1?: number
1679
1680
  initialValueT2?: number
1680
1681
  initialValueT3?: number
1681
- type?: MeterTypes$1
1682
- resource?: ResourceTypes$1
1682
+ type?: MeterTypes
1683
+ resource?: ResourceTypes
1683
1684
  withAutoSending?: boolean
1684
1685
  }
1685
1686
 
1686
1687
  type MeterFeaturesFormFields$1 = {
1687
1688
  tariff: TariffGroupAutocompleteFields$1 | null
1688
- company: CompanyAutocompleteFields$1 | null
1689
+ company: CompanyAutocompleteFields | null
1689
1690
  nextCheck: DateTime | null
1690
1691
  lastValue?: number
1691
1692
  lastValueT1?: number
@@ -1709,9 +1710,9 @@ declare type ApartmentMeterValues = {
1709
1710
  } & MeterValues;
1710
1711
  declare type InspectionMeterFields = {
1711
1712
  id?: number;
1712
- resource: ResourceTypes$1;
1713
- passportFile?: InputFileWithVisibilityFields$1;
1714
- images: FileStore$1[];
1713
+ resource: ResourceTypes;
1714
+ passportFile?: InputFileWithVisibilityFields;
1715
+ images: FileStore[];
1715
1716
  } & MeterFeaturesFormFields$1;
1716
1717
 
1717
1718
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1726,7 +1727,7 @@ type PartialPayerProps<T> = {
1726
1727
  title: string
1727
1728
  name: string
1728
1729
  form: UseFormReturn<T>
1729
- utilityType: UtilityTypes
1730
+ utilityType: UtilityTypes$1
1730
1731
  fieldsVariant?: PartialPayerVariants
1731
1732
  settings?: ObjectType
1732
1733
  disabled?: boolean
@@ -1734,12 +1735,12 @@ type PartialPayerProps<T> = {
1734
1735
  }
1735
1736
 
1736
1737
  type PartialPayerFields = {
1737
- payer?: ResourcePaymentRoles | "partial"
1738
- mainPayer?: ResourcePaymentRoles
1739
- refundFrom?: ResourcePaymentRoles
1740
- partType?: UnitOfPaymentTypes | null
1738
+ payer?: ResourcePaymentRoles$1 | "partial"
1739
+ mainPayer?: ResourcePaymentRoles$1
1740
+ refundFrom?: ResourcePaymentRoles$1
1741
+ partType?: UnitOfPaymentTypes$1 | null
1741
1742
  refundValue?: number | string | null
1742
- utilityType: UtilityTypes
1743
+ utilityType: UtilityTypes$1
1743
1744
  }
1744
1745
 
1745
1746
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -1823,15 +1824,15 @@ declare type ResourceAccessParams = {
1823
1824
  password?: string;
1824
1825
  description?: string;
1825
1826
  };
1826
- declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
1827
+ declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
1827
1828
  declare type ApartmentResourceCompanyDetails = {
1828
- company: CompanyAutocompleteFields | null;
1829
+ company: CompanyAutocompleteFields$1 | null;
1829
1830
  operationalAccountNumber: string;
1830
1831
  payerCode: string;
1831
1832
  dataSubmissionDays: DataSubmissionDaysParams;
1832
1833
  access: ResourceAccessParams;
1833
1834
  sampleReceiptLink: string;
1834
- sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
1835
+ sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
1835
1836
  };
1836
1837
  declare type ApartmentResourceInterface = {
1837
1838
  type: ApartmentResourceTypes;
@@ -1868,15 +1869,15 @@ declare type DocumentsStoreInterface = {
1868
1869
  loader: Loader;
1869
1870
  };
1870
1871
  declare type PostDocumentsResponse = {
1871
- documents: DocumentModel[];
1872
+ documents: DocumentModel$1[];
1872
1873
  };
1873
1874
  declare type DocumentAgentInterface = {
1874
1875
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
1875
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
1876
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
1876
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
1877
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
1877
1878
  };
1878
1879
  declare type DocumentsAgentInterface = {
1879
- getDocuments?: (...params: any) => Promise<DocumentModel[]>;
1880
+ getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
1880
1881
  } & DocumentAgentInterface;
1881
1882
 
1882
1883
  declare type MetroLineParams = {
@@ -1947,7 +1948,7 @@ declare type ApartmentFeatureModel = {
1947
1948
  };
1948
1949
  declare type ApartmentDocumentModel = {
1949
1950
  id: number;
1950
- document: DocumentModel;
1951
+ document: DocumentModel$1;
1951
1952
  expiration_date: string;
1952
1953
  start_date: string;
1953
1954
  number: string;
@@ -1959,7 +1960,7 @@ declare type MeterCommonInfoModel = {
1959
1960
  tariff?: TariffLinkModel;
1960
1961
  activation_date?: string;
1961
1962
  check_date?: string;
1962
- type?: ElectricityMeterTypes | WaterMeterTypes;
1963
+ type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
1963
1964
  apartment: ApartmentLinkModel;
1964
1965
  company: CompanyLiteParams;
1965
1966
  operating_account_number?: string | null;
@@ -2080,7 +2081,7 @@ declare type ApartmentModel = {
2080
2081
  owner_id: number;
2081
2082
  metro_stations: ApartmentMetroParams[];
2082
2083
  rental_status: RentalStatuses;
2083
- main_image: ImageModel;
2084
+ main_image: ImageModel$1;
2084
2085
  tv_type: TVTypes | null;
2085
2086
  inspection: ApartmentInspectionModel;
2086
2087
  distance_to_center_kilometers: number | null;
@@ -2107,7 +2108,7 @@ declare type ApartmentLiteModel = {
2107
2108
  renter: LiteUserModel | null;
2108
2109
  rental_status: RentalStatuses;
2109
2110
  renter_payment_status: RentalPaymentStatuses;
2110
- main_image: ImageModel;
2111
+ main_image: ImageModel$1;
2111
2112
  service_contract?: ServiceContractLiteModel;
2112
2113
  is_imported_from_old_crm?: boolean;
2113
2114
  max_electricity_counters?: number | null;
@@ -2153,7 +2154,7 @@ declare type ObjectForMapModel = {
2153
2154
  apartment_number: string;
2154
2155
  address: string;
2155
2156
  geolocation: LatLonParams;
2156
- main_image: ImageModel;
2157
+ main_image: ImageModel$1;
2157
2158
  renter: ClientLiteModel | null;
2158
2159
  owner: ClientLiteModel;
2159
2160
  metro_stations: ApartmentMetroStationModel[];
@@ -2185,13 +2186,13 @@ declare class DocumentStore implements FileStoreInterface {
2185
2186
  agent: DocumentAgentInterface;
2186
2187
  loader: Loader;
2187
2188
  settings?: any;
2188
- constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2189
+ constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
2189
2190
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
2190
- updateDocument: (res: DocumentModel) => void;
2191
+ updateDocument: (res: DocumentModel$1) => void;
2191
2192
  deleteDocument: (...params: any) => Promise<void>;
2192
2193
  get extension(): string;
2193
2194
  get title(): string;
2194
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
2195
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
2195
2196
  }
2196
2197
 
2197
2198
  type InputTypes =
@@ -2251,13 +2252,13 @@ declare type FileParams = {
2251
2252
  size?: number | null;
2252
2253
  file: File;
2253
2254
  };
2254
- declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
2255
+ declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
2255
2256
  declare type FileStoreParams = {
2256
2257
  id?: number | null;
2257
2258
  url?: string;
2258
2259
  index?: number | string | null;
2259
2260
  createdBy?: string | null;
2260
- visibility?: DocumentVisibilityAPIVariants;
2261
+ visibility?: DocumentVisibilityAPIVariants$1;
2261
2262
  name?: string;
2262
2263
  date?: string | null;
2263
2264
  size?: number | null;
@@ -2422,8 +2423,8 @@ declare const FillingTagsAgent: {
2422
2423
  };
2423
2424
 
2424
2425
  declare const TariffsAgent: {
2425
- all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
2426
- createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
2426
+ all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
2427
+ createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
2427
2428
  };
2428
2429
 
2429
2430
  type SignInFormFields = {
@@ -2442,8 +2443,8 @@ declare const ApartmentsAgent: {
2442
2443
  };
2443
2444
 
2444
2445
  declare const ApartmentMetersAgent: {
2445
- getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2446
- getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
2446
+ getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
2447
+ getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
2447
2448
  };
2448
2449
 
2449
2450
  declare const requests: {
@@ -2467,7 +2468,7 @@ declare const meterUnitLabel: {
2467
2468
  electricity: string;
2468
2469
  };
2469
2470
 
2470
- declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2471
+ declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
2471
2472
 
2472
2473
  declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
2473
2474
  declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
@@ -2483,34 +2484,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
2483
2484
  }, "">;
2484
2485
 
2485
2486
  declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
2486
- declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
2487
+ declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
2487
2488
  declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
2488
- declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
2489
+ declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
2489
2490
  temp_file_id: number;
2490
2491
  name: string;
2491
- visibility: DocumentVisibilityAPIVariants;
2492
+ visibility: DocumentVisibilityAPIVariants$1;
2492
2493
  url: string;
2493
2494
  } | null;
2494
- declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
2495
- declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
2496
- declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
2495
+ declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
2496
+ declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
2497
+ declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
2497
2498
  name: string;
2498
- visibility: DocumentVisibilityAPIVariants;
2499
+ visibility: DocumentVisibilityAPIVariants$1;
2499
2500
  } | null;
2500
- declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
2501
+ declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
2501
2502
  name: string;
2502
- visibility: DocumentVisibilityAPIVariants;
2503
+ visibility: DocumentVisibilityAPIVariants$1;
2503
2504
  } | null>;
2504
- declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
2505
- declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
2506
- declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
2507
- declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
2508
- declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2509
- declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
2510
- declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
2511
- declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2512
- declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
2513
- declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
2505
+ declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
2506
+ declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
2507
+ declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
2508
+ declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
2509
+ declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2510
+ declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2511
+ declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
2512
+ declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2513
+ declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
2514
+ declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
2514
2515
 
2515
2516
  declare const matchesAPISubjectRoles: {
2516
2517
  maroom: string;
@@ -2603,16 +2604,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
2603
2604
  declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
2604
2605
 
2605
2606
  declare class FilesStore {
2606
- files: FileStore[];
2607
+ files: FileStore$1[];
2607
2608
  variant: FileVariant;
2608
2609
  constructor(variant: FileVariant);
2609
- addFile: (newFile: FileStore) => void;
2610
+ addFile: (newFile: FileStore$1) => void;
2610
2611
  removeFile: (index: number) => void;
2611
- setFiles: (files: FileStore[]) => void;
2612
+ setFiles: (files: FileStore$1[]) => void;
2612
2613
  uploadFiles: () => Promise<void>;
2613
- get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
2614
+ get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
2614
2615
  get uploadedAllFiles(): boolean;
2615
- get notUploadedFiles(): FileStore[];
2616
+ get notUploadedFiles(): FileStore$1[];
2616
2617
  get isUploading(): boolean;
2617
2618
  get videoLength(): number;
2618
2619
  get nonVideoLength(): number;
@@ -2634,7 +2635,7 @@ declare type UploadMediaToStoreSettings = {
2634
2635
  messages?: UploadMediaMessages;
2635
2636
  withoutFilesStore?: boolean;
2636
2637
  };
2637
- declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
2638
+ declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
2638
2639
 
2639
2640
  declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
2640
2641
  onSearchItem: (value: string) => void;
@@ -2806,11 +2807,11 @@ type DistrictAutocompleteFields = {
2806
2807
  type ReplaceableTariffFields = {
2807
2808
  name: string
2808
2809
  id?: number
2809
- type?: ResourceTypes
2810
+ type?: ResourceTypes$1
2810
2811
  }
2811
2812
 
2812
2813
  type TariffCommonFields = {
2813
- resourceType: ResourceTypes
2814
+ resourceType: ResourceTypes$1
2814
2815
  name: string
2815
2816
  startDate: DateTime
2816
2817
  replaceableTariffsGroups: ReplaceableTariffFields[]
@@ -2822,7 +2823,7 @@ type TariffCommonFields = {
2822
2823
  }
2823
2824
 
2824
2825
  type ElectricityTariffCreationFormFields = {
2825
- type: ElectricityMeterTypes
2826
+ type: ElectricityMeterTypes$1
2826
2827
  isOverallConsumption: boolean
2827
2828
  T1?: number
2828
2829
  T2?: number
@@ -2843,7 +2844,7 @@ type TariffCreationFormProps = {
2843
2844
  handleClose: () => void
2844
2845
  createTariff: (data: TariffCreationFormFields) => Promise<void>
2845
2846
  creationForm: MultistepForm$1<TariffCreationFormFields>
2846
- defaultResource: ResourceTypes
2847
+ defaultResource: ResourceTypes$1
2847
2848
  settings?: any
2848
2849
  }
2849
2850
 
@@ -2888,7 +2889,7 @@ declare class TariffsLiteStore {
2888
2889
  creationForm: MultistepForm$1<TariffCreationFormFields>;
2889
2890
  settings?: any;
2890
2891
  constructor(settings?: any);
2891
- fetchAll: (resource: ResourceTypes) => Promise<void>;
2892
+ fetchAll: (resource: ResourceTypes$1) => Promise<void>;
2892
2893
  createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
2893
2894
  static getTariffParams: (tariff: CommonTariffModel) => {
2894
2895
  id: number;
@@ -2896,7 +2897,7 @@ declare class TariffsLiteStore {
2896
2897
  };
2897
2898
  static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
2898
2899
  static getTariffValues: (data: TariffCreationFormFields) => {
2899
- type: ElectricityMeterTypes;
2900
+ type: ElectricityMeterTypes$1;
2900
2901
  T1: string | undefined;
2901
2902
  T2: string | undefined;
2902
2903
  T3: string | undefined;
@@ -3190,7 +3191,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
3190
3191
  name?: string
3191
3192
  label?: string
3192
3193
  hideName?: string
3193
- resource: ResourceTypes
3194
+ resource: ResourceTypes$1
3194
3195
  filter?: string
3195
3196
  filterRequired?: boolean
3196
3197
  settings?: any
@@ -3203,7 +3204,7 @@ type TariffGroupAutocompleteFields = {
3203
3204
  }
3204
3205
 
3205
3206
  type MeterFeaturesFieldsProps = {
3206
- resource?: ResourceTypes
3207
+ resource?: ResourceTypes$1
3207
3208
  replacements?: LiteMeterInterface[]
3208
3209
  isNewResource?: boolean
3209
3210
  handleSubmit: (data: MeterFeaturesFormFields) => void
@@ -3217,7 +3218,7 @@ type MeterFeaturesFieldsProps = {
3217
3218
  withNextCheck?: boolean
3218
3219
  defaultValues?: Partial<MeterFeaturesFormFields>
3219
3220
  handleMeterTypeChange?: (
3220
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3221
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3221
3222
  ) => void
3222
3223
  settings?: any
3223
3224
  disabledInitial?: boolean
@@ -3230,14 +3231,14 @@ type BasicMeterFeaturesFormFields = {
3230
3231
  initialValueT1?: number
3231
3232
  initialValueT2?: number
3232
3233
  initialValueT3?: number
3233
- type?: MeterTypes
3234
- resource?: ResourceTypes
3234
+ type?: MeterTypes$1
3235
+ resource?: ResourceTypes$1
3235
3236
  withAutoSending?: boolean
3236
3237
  }
3237
3238
 
3238
3239
  type MeterFeaturesFormFields = {
3239
3240
  tariff: TariffGroupAutocompleteFields | null
3240
- company: CompanyAutocompleteFields | null
3241
+ company: CompanyAutocompleteFields$1 | null
3241
3242
  nextCheck: DateTime | null
3242
3243
  lastValue?: number
3243
3244
  lastValueT1?: number
@@ -3251,8 +3252,8 @@ type MeterFeaturesFormFields = {
3251
3252
  } & BasicMeterFeaturesFormFields
3252
3253
 
3253
3254
  type BasicMeterFieldsSettings = {
3254
- resource?: ResourceTypes
3255
- meterType?: MeterTypes
3255
+ resource?: ResourceTypes$1
3256
+ meterType?: MeterTypes$1
3256
3257
  disabledInitial?: boolean
3257
3258
  }
3258
3259
 
@@ -3284,10 +3285,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
3284
3285
  declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
3285
3286
 
3286
3287
  type MeterTypeRadioGroupProps = {
3287
- resource?: ResourceTypes
3288
+ resource?: ResourceTypes$1
3288
3289
  form: UseFormReturn<any>
3289
3290
  handleChange: (
3290
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3291
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3291
3292
  ) => void
3292
3293
  disabled?: boolean
3293
3294
  waterOptions?: OptionParams[]
@@ -3299,7 +3300,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
3299
3300
  type MeterFeaturesFormProps = {
3300
3301
  formStore?: MultistepForm$1<any>
3301
3302
  handleMeterTypeChange?: (
3302
- meterType: ElectricityMeterTypes | WaterMeterTypes | null
3303
+ meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
3303
3304
  ) => void
3304
3305
  } & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
3305
3306
 
@@ -3367,7 +3368,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
3367
3368
  startDate: undefined;
3368
3369
  }, "">;
3369
3370
 
3370
- declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3371
+ declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
3371
3372
 
3372
3373
  type TariffCreationModalProps = TariffCreationFormProps & ModalProps
3373
3374
 
@@ -3383,7 +3384,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
3383
3384
 
3384
3385
  type TariffReplacementFieldsProps = {
3385
3386
  form: UseFormReturn<TariffCommonFields>
3386
- resource: ResourceTypes
3387
+ resource: ResourceTypes$1
3387
3388
  setReplaceable: (value: boolean) => void
3388
3389
  settings?: any
3389
3390
  }
@@ -3799,7 +3800,7 @@ type UploadPhotosButtonProps = {
3799
3800
  declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
3800
3801
 
3801
3802
  type UploadedImageProps = {
3802
- image: FileStore
3803
+ image: FileStore$1
3803
3804
  index: number
3804
3805
  onClick: (index: number) => void
3805
3806
  onDelete: (index: number) => void
@@ -3832,15 +3833,15 @@ declare type PartialMeterValuesFields = {
3832
3833
  };
3833
3834
  declare type PartialMeterInfoFields = {
3834
3835
  id: number;
3835
- resource: ResourceTypes;
3836
- type?: MeterTypes;
3836
+ resource: ResourceTypes$1;
3837
+ type?: MeterTypes$1;
3837
3838
  number: string;
3838
- images: FileStore[];
3839
+ images: FileStore$1[];
3839
3840
  maxValue?: PartialMeterValuesFields;
3840
3841
  minValue?: PartialMeterValuesFields;
3841
3842
  values: PartialMeterValuesFields;
3842
3843
  } & PartialMeterValuesFields;
3843
- 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>[];
3844
+ 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>[];
3844
3845
 
3845
3846
  declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
3846
3847
  type: string | undefined;
@@ -3867,4 +3868,4 @@ type SignInPageProps = {
3867
3868
 
3868
3869
  declare const _default: (props: SignInPageProps) => JSX.Element;
3869
3870
 
3870
- export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, ReceiverPaymentCompanyModel, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
3871
+ export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields$1 as CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes$1 as ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest$1 as FileBodyRequest, FileModel$1 as FileModel, FileParams, FileStore$1 as FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility$1 as FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest$1 as ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel$1 as ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields$1 as InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, ReceiverPaymentCompanyModel, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, TwoOptionForAutocomplete, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel$1 as VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes$1 as WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };