kui-crm 0.0.554 → 0.0.555

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/index.d.ts CHANGED
@@ -6,13 +6,13 @@ import { InputWithControllerProps } from 'kui-complex';
6
6
 
7
7
  declare type GenderAPIVariants = "M" | "F";
8
8
  declare type APISubjectRoles = "maroom" | "owner" | "renter";
9
- declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
10
- declare type UnitOfPaymentTypes$1 = "percent" | "value";
11
- declare type WaterMeterTypes$1 = "cold" | "hot";
12
- declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
13
- declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
14
- declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
15
- declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
9
+ declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
10
+ declare type UnitOfPaymentTypes = "percent" | "value";
11
+ declare type WaterMeterTypes = "cold" | "hot";
12
+ declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
13
+ declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
14
+ declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
15
+ declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
16
16
  declare type ClientTypes = "personal" | "company";
17
17
  declare type RentalStatuses = "Rented out" | "Closed" | "Open";
18
18
  declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
@@ -20,7 +20,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
20
20
  declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
21
21
  declare type TaxResidenceType = "resident" | "not_resident";
22
22
  declare type RentalTypes = "short" | "medium" | "long" | "any";
23
- declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
23
+ declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
24
24
  declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
25
25
  declare type ContractLinkModel = {
26
26
  id: number;
@@ -59,7 +59,7 @@ declare type ApartmentLinkModel = {
59
59
  address: string;
60
60
  object_name?: string;
61
61
  apartment_number?: string;
62
- main_image: ImageModel$1 | null;
62
+ main_image: ImageModel | null;
63
63
  folder_number?: string;
64
64
  };
65
65
  declare type ApartmentSimpleModel = {
@@ -69,7 +69,7 @@ declare type LiteObjectModel = {
69
69
  id: number;
70
70
  address: string;
71
71
  object_name?: string;
72
- main_image: ImageModel$1 | null;
72
+ main_image: ImageModel | null;
73
73
  };
74
74
  declare type AdministrativeCompanyModel = {
75
75
  id: number;
@@ -82,24 +82,24 @@ declare type TariffLinkModel = {
82
82
  code_name: string;
83
83
  };
84
84
  declare type UtilityPayerModel = {
85
- utility_type: UtilityTypes$1;
86
- payment_made_by?: ResourcePaymentRoles$1;
87
- refund_from: ResourcePaymentRoles$1;
85
+ utility_type: UtilityTypes;
86
+ payment_made_by?: ResourcePaymentRoles;
87
+ refund_from: ResourcePaymentRoles;
88
88
  refund_value?: number | string;
89
- value_type?: UnitOfPaymentTypes$1;
89
+ value_type?: UnitOfPaymentTypes;
90
90
  };
91
- declare type FileBodyRequest$1 = {
91
+ declare type FileBodyRequest = {
92
92
  temp_file_id?: number;
93
93
  name: string;
94
- visibility?: DocumentVisibilityAPIVariants$1;
94
+ visibility?: DocumentVisibilityAPIVariants;
95
95
  url?: string;
96
96
  };
97
- declare type ImageBodyRequest$1 = {
97
+ declare type ImageBodyRequest = {
98
98
  temp_file_id: number;
99
99
  image_name: string;
100
100
  url: string;
101
101
  };
102
- declare type VideoBodyRequest$1 = {
102
+ declare type VideoBodyRequest = {
103
103
  temp_file_id: number;
104
104
  file_name: string;
105
105
  url: string;
@@ -108,7 +108,7 @@ declare type UploadFileResponse = {
108
108
  id: number;
109
109
  upload: string;
110
110
  };
111
- declare type ImageModel$1 = {
111
+ declare type ImageModel = {
112
112
  id: number;
113
113
  image_name?: string;
114
114
  image_url?: string;
@@ -117,20 +117,20 @@ declare type ImageModel$1 = {
117
117
  image_large_url: string;
118
118
  size: number;
119
119
  };
120
- declare type FileModel$1 = {
120
+ declare type FileModel = {
121
121
  id: number;
122
122
  name: string;
123
123
  size: number;
124
124
  url: string;
125
125
  };
126
- declare type DocumentModel$1 = {
126
+ declare type DocumentModel = {
127
127
  pk: number;
128
128
  name: string;
129
129
  created?: string;
130
130
  attachment: string;
131
131
  size: number;
132
132
  uploaded_by?: string | null;
133
- visibility?: DocumentVisibilityAPIVariants$1;
133
+ visibility?: DocumentVisibilityAPIVariants;
134
134
  };
135
135
  declare type PatchDocumentRequest = {
136
136
  name: string;
@@ -138,7 +138,7 @@ declare type PatchDocumentRequest = {
138
138
  declare type PatchFileParams = {
139
139
  id: number;
140
140
  name: string;
141
- visibility: DocumentVisibilityAPIVariants$1;
141
+ visibility: DocumentVisibilityAPIVariants;
142
142
  };
143
143
  declare type PaginationRes<T> = {
144
144
  count: number;
@@ -235,7 +235,7 @@ declare type CountryParams = {
235
235
  code: string;
236
236
  } & CatalogItemParams;
237
237
 
238
- type FileWithVisibility$1 = {
238
+ type FileWithVisibility = {
239
239
  file: File | null
240
240
  tenant: boolean
241
241
  landlord: boolean
@@ -243,24 +243,24 @@ type FileWithVisibility$1 = {
243
243
  url: string
244
244
  }
245
245
 
246
- type InputFileWithVisibilityFields$1 =
247
- | FileWithVisibility$1
246
+ type InputFileWithVisibilityFields =
247
+ | FileWithVisibility
248
248
  | DocumentWithVisibility$1
249
249
  | null
250
250
  | undefined
251
251
 
252
252
  type ChangeReasonFormFields = {
253
- reason: InputFileWithVisibilityFields$1
253
+ reason: InputFileWithVisibilityFields
254
254
  comment?: string
255
255
  }
256
256
 
257
- type CompanyAutocompleteFields$1 = {
257
+ type CompanyAutocompleteFields = {
258
258
  id: number
259
259
  name: string
260
260
  logo?: string | null
261
261
  }
262
262
 
263
- declare class FileStore$1 implements FileStoreInterface {
263
+ declare class FileStore implements FileStoreInterface {
264
264
  id: number | null;
265
265
  index?: number | null;
266
266
  name: string;
@@ -291,12 +291,12 @@ declare class FileStore$1 implements FileStoreInterface {
291
291
  setIndex: (index: number) => void;
292
292
  get title(): string;
293
293
  static createPreviewUrl: (file: File) => Promise<string>;
294
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
295
- static initFromFileModel: (file: FileModel$1) => FileStore$1;
296
- static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
297
- static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
298
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
299
- static initFromFileStore: (file: FileStore$1) => FileStore$1;
294
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
295
+ static initFromFileModel: (file: FileModel) => FileStore;
296
+ static initFromDocumentModel: (file: DocumentModel) => FileStore;
297
+ static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
298
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
299
+ static initFromFileStore: (file: FileStore) => FileStore;
300
300
  }
301
301
 
302
302
  declare type ImageParams = {
@@ -331,7 +331,7 @@ declare class ImageStore implements ImageStoreInterface {
331
331
  delete: () => Promise<void>;
332
332
  get extension(): string;
333
333
  get title(): string;
334
- static initFromImageModel: (image: ImageModel$1) => ImageStore;
334
+ static initFromImageModel: (image: ImageModel) => ImageStore;
335
335
  static initFromVideoModel: (image: VideoModel) => ImageStore;
336
336
  }
337
337
 
@@ -457,7 +457,7 @@ declare type LockerAutocompleteFields = {
457
457
  declare type ApartmentOverviewPaymentInfoFields = {
458
458
  payerCode?: string;
459
459
  communalServicesAccount?: string;
460
- company?: CompanyAutocompleteFields$1 | null;
460
+ company?: CompanyAutocompleteFields | null;
461
461
  } & ChangeReasonFormFields;
462
462
  declare type ApartmentOverviewInfoFields = {
463
463
  locker?: LockerAutocompleteFields | null;
@@ -480,14 +480,14 @@ declare type InspectionPaymentInfoParams = {
480
480
  } & ApartmentPaymentInfoParams;
481
481
  declare type InspectionMeterInfoParams = {
482
482
  id: number;
483
- resource: ResourceTypes$1;
484
- type?: MeterTypes$1;
483
+ resource: ResourceTypes;
484
+ type?: MeterTypes;
485
485
  number: string;
486
486
  startDate: DateTime | null;
487
487
  company: CompanyLiteParams;
488
488
  operationalAccountNumber?: string | null;
489
489
  tariff: EntityLinkParams | null;
490
- passportFile: FileStore$1 | null;
490
+ passportFile: FileStore | null;
491
491
  initialValue?: number;
492
492
  lastValue?: number;
493
493
  initialValueT1?: number;
@@ -509,8 +509,8 @@ declare type ValuesParams = {
509
509
  };
510
510
  declare type PartialMeterInfoParams = {
511
511
  id: number;
512
- type: MeterTypes$1;
513
- resource: ResourceTypes$1;
512
+ type: MeterTypes;
513
+ resource: ResourceTypes;
514
514
  number: string;
515
515
  values: ValuesParams;
516
516
  images?: (ImageStore | UploadImageParams)[];
@@ -522,7 +522,7 @@ declare type InspectionPartialMetersInfoParams = {
522
522
  declare type ComparableObjectParams = {
523
523
  id: number;
524
524
  link: string;
525
- screenshot: FileStore$1 | null;
525
+ screenshot: FileStore | null;
526
526
  price: number;
527
527
  differences: string;
528
528
  };
@@ -530,7 +530,7 @@ declare type StatisticalEvaluationParams = {
530
530
  id: number;
531
531
  dataSourceName: string;
532
532
  link: string;
533
- screenshot: FileStore$1 | null;
533
+ screenshot: FileStore | null;
534
534
  minPrice: number;
535
535
  maxPrice: number;
536
536
  };
@@ -661,6 +661,8 @@ declare type ServiceContractModel = {
661
661
  id: number;
662
662
  apartment: ApartmentLinkModel;
663
663
  owner: LiteUserModel;
664
+ beneficiary: LiteUserModel;
665
+ signer: LiteUserModel;
664
666
  renter: LiteUserModel;
665
667
  co_owners: CoOwnerModel[];
666
668
  auto_prolongate: boolean;
@@ -743,7 +745,7 @@ declare type ApartmentFeatureModel = {
743
745
  };
744
746
  declare type ApartmentDocumentModel = {
745
747
  id: number;
746
- document: DocumentModel$1;
748
+ document: DocumentModel;
747
749
  expiration_date: string;
748
750
  start_date: string;
749
751
  number: string;
@@ -755,7 +757,7 @@ declare type MeterCommonInfoModel = {
755
757
  tariff?: TariffLinkModel;
756
758
  activation_date?: string;
757
759
  check_date?: string;
758
- type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
760
+ type?: ElectricityMeterTypes | WaterMeterTypes;
759
761
  apartment: ApartmentLinkModel;
760
762
  company: CompanyLiteParams;
761
763
  operating_account_number?: string | null;
@@ -876,7 +878,7 @@ declare type ApartmentModel = {
876
878
  owner_id: number;
877
879
  metro_stations: ApartmentMetroParams[];
878
880
  rental_status: RentalStatuses;
879
- main_image: ImageModel$1;
881
+ main_image: ImageModel;
880
882
  tv_type: TVTypes | null;
881
883
  inspection: ApartmentInspectionModel;
882
884
  distance_to_center_kilometers: number | null;
@@ -903,7 +905,7 @@ declare type ApartmentLiteModel = {
903
905
  renter: LiteUserModel | null;
904
906
  rental_status: RentalStatuses;
905
907
  renter_payment_status: RentalPaymentStatuses;
906
- main_image: ImageModel$1;
908
+ main_image: ImageModel;
907
909
  service_contract?: ServiceContractLiteModel;
908
910
  is_imported_from_old_crm?: boolean;
909
911
  max_electricity_counters?: number | null;
@@ -949,7 +951,7 @@ declare type ObjectForMapModel = {
949
951
  apartment_number: string;
950
952
  address: string;
951
953
  geolocation: LatLonParams;
952
- main_image: ImageModel$1;
954
+ main_image: ImageModel;
953
955
  renter: ClientLiteModel | null;
954
956
  owner: ClientLiteModel;
955
957
  metro_stations: ApartmentMetroStationModel[];
@@ -981,13 +983,13 @@ declare class DocumentStore implements FileStoreInterface {
981
983
  agent: DocumentAgentInterface;
982
984
  loader: Loader;
983
985
  settings?: any;
984
- constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
986
+ constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
985
987
  patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
986
- updateDocument: (res: DocumentModel$1) => void;
988
+ updateDocument: (res: DocumentModel) => void;
987
989
  deleteDocument: (...params: any) => Promise<void>;
988
990
  get extension(): string;
989
991
  get title(): string;
990
- static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
992
+ static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
991
993
  }
992
994
 
993
995
  type InputTypes =
@@ -1047,13 +1049,13 @@ declare type FileParams = {
1047
1049
  size?: number | null;
1048
1050
  file: File;
1049
1051
  };
1050
- declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1052
+ declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1051
1053
  declare type FileStoreParams$1 = {
1052
1054
  id?: number | null;
1053
1055
  url?: string;
1054
1056
  index?: number | string | null;
1055
1057
  createdBy?: string | null;
1056
- visibility?: DocumentVisibilityAPIVariants$1;
1058
+ visibility?: DocumentVisibilityAPIVariants;
1057
1059
  name?: string;
1058
1060
  date?: string | null;
1059
1061
  size?: number | null;
@@ -1194,7 +1196,7 @@ declare type ApartmentResourceCompanyModel = {
1194
1196
  provider_type: string;
1195
1197
  };
1196
1198
  declare type DataTransferFormats = "online" | "offline";
1197
- declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "other";
1199
+ declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
1198
1200
  declare type ApartmentResourceModel = {
1199
1201
  id: number;
1200
1202
  company: ApartmentResourceCompanyModel | null;
@@ -1203,7 +1205,7 @@ declare type ApartmentResourceModel = {
1203
1205
  payer_code?: string;
1204
1206
  meter_readings_day_from?: number;
1205
1207
  meter_readings_day_to?: number;
1206
- receipt_example?: DocumentModel$1;
1208
+ receipt_example?: DocumentModel;
1207
1209
  provider_auth_login?: string;
1208
1210
  provider_auth_password?: string;
1209
1211
  provider_url?: string;
@@ -1224,8 +1226,8 @@ declare type InspectionFillingParams = {
1224
1226
  description?: string;
1225
1227
  serial_code?: string;
1226
1228
  amount?: number | string | null;
1227
- photos: ImageBodyRequest$1[];
1228
- instruction?: FileBodyRequest$1 | null;
1229
+ photos: ImageBodyRequest[];
1230
+ instruction?: FileBodyRequest | null;
1229
1231
  was_missing?: boolean;
1230
1232
  };
1231
1233
  declare type InspectionMeterValueModel = {
@@ -1256,7 +1258,7 @@ declare type InspectionRoomPhotoModel = {
1256
1258
  uploaded: boolean;
1257
1259
  purpose: InspectionRoomPhotoTypes;
1258
1260
  comment?: string;
1259
- photos: ImageModel$1[];
1261
+ photos: ImageModel[];
1260
1262
  videos: VideoModel[];
1261
1263
  room_order_number?: number | null;
1262
1264
  };
@@ -1293,11 +1295,11 @@ declare type FullInspectionCommonFields = {
1293
1295
  filling: InspectionFillingModel[];
1294
1296
  } & ApartmentModel;
1295
1297
  declare type InspectionMeterCommonInfo = {
1296
- resource_type: ResourceTypes$1;
1297
- passport: FileModel$1 | null;
1298
- meter_type: MeterTypes$1;
1298
+ resource_type: ResourceTypes;
1299
+ passport: FileModel | null;
1300
+ meter_type: MeterTypes;
1299
1301
  operating_account: string;
1300
- photos: ImageModel$1[];
1302
+ photos: ImageModel[];
1301
1303
  } & Omit<MeterCommonInfoModel, "operating_account_number">;
1302
1304
  declare type TransferInspectionMeterModel = {
1303
1305
  values: InspectionMeterValueModel;
@@ -1313,7 +1315,7 @@ declare type RegularInspectionFields = {
1313
1315
  declare type ComparableObjectModel = {
1314
1316
  id: number;
1315
1317
  advertisement_link: string;
1316
- advertisement_screenshot: ImageModel$1 | null;
1318
+ advertisement_screenshot: ImageModel | null;
1317
1319
  object_price: string;
1318
1320
  key_object_differences: string;
1319
1321
  };
@@ -1321,7 +1323,7 @@ declare type StatisticalEvaluationModel = {
1321
1323
  id: number;
1322
1324
  source_name: string;
1323
1325
  link: string;
1324
- screenshot: ImageModel$1 | null;
1326
+ screenshot: ImageModel | null;
1325
1327
  min_price: string;
1326
1328
  max_price: string;
1327
1329
  };
@@ -1364,11 +1366,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
1364
1366
  declare type ImpairmentModel = {
1365
1367
  id: number;
1366
1368
  impairment_type: ImpairmentType;
1367
- proof_file: DocumentModel$1 | null;
1369
+ proof_file: DocumentModel | null;
1368
1370
  price: number;
1369
1371
  solution: string;
1370
1372
  description: string;
1371
- photos: ImageModel$1[];
1373
+ photos: ImageModel[];
1372
1374
  item_link: string;
1373
1375
  };
1374
1376
  declare type MetroStationsFields = {
@@ -1378,7 +1380,7 @@ declare type InitialInspectionModelFields = {
1378
1380
  used_resources: UsedResourcesModel;
1379
1381
  } & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
1380
1382
  declare type AppraisalRequestModelFields = {
1381
- floor_plan: DocumentModel$1 | null;
1383
+ floor_plan: DocumentModel | null;
1382
1384
  };
1383
1385
  declare type InspectionModel = {
1384
1386
  initial?: InitialInspectionModelFields;
@@ -1455,10 +1457,10 @@ declare type InspectionFeedbackInterface = {
1455
1457
  };
1456
1458
  declare type PatchInspectionImageParams = {
1457
1459
  id?: number;
1458
- } & Partial<ImageBodyRequest$1>;
1460
+ } & Partial<ImageBodyRequest>;
1459
1461
  declare type PatchInspectionVideoParams = {
1460
1462
  id?: number;
1461
- } & Partial<VideoBodyRequest$1>;
1463
+ } & Partial<VideoBodyRequest>;
1462
1464
  declare type PatchRoomImagesParams = {
1463
1465
  type: InspectionRoomPhotoTypes;
1464
1466
  comment?: string;
@@ -1498,8 +1500,8 @@ declare type InspectionFillingModel = {
1498
1500
  description: string;
1499
1501
  serial_code: string;
1500
1502
  amount: number;
1501
- photos: ImageModel$1[];
1502
- instruction: DocumentModel$1;
1503
+ photos: ImageModel[];
1504
+ instruction: DocumentModel;
1503
1505
  is_absent: boolean;
1504
1506
  previously_absent: boolean;
1505
1507
  model: string;
@@ -1581,7 +1583,7 @@ declare type CommonMeterParams = {
1581
1583
  company: CompanyLiteParams;
1582
1584
  operating_account_number?: string | null;
1583
1585
  company_is_administrative: boolean;
1584
- photos?: ImageModel$1[];
1586
+ photos?: ImageModel[];
1585
1587
  auto_sending: boolean;
1586
1588
  no_tariff: boolean;
1587
1589
  is_avg: boolean;
@@ -1593,15 +1595,15 @@ declare type ElectricityMeterValues = {
1593
1595
  T3?: MeterTariffModel;
1594
1596
  };
1595
1597
  declare type WaterMeterParams = {
1596
- type: WaterMeterTypes$1;
1598
+ type: WaterMeterTypes;
1597
1599
  tariff: SingleCounterTariffModel;
1598
1600
  } & CommonMeterParams & MeterTariffModel;
1599
1601
  declare type SingleMeterParams = {
1600
- type?: WaterMeterTypes$1;
1602
+ type?: WaterMeterTypes;
1601
1603
  tariff: SingleCounterTariffModel;
1602
1604
  } & CommonMeterParams & MeterTariffModel;
1603
1605
  declare type ElectricityMeterParams = {
1604
- type: ElectricityMeterTypes$1;
1606
+ type: ElectricityMeterTypes;
1605
1607
  values: ElectricityMeterValues;
1606
1608
  tariff: ElectricityMeterTariffModel;
1607
1609
  overall_value?: number;
@@ -1658,8 +1660,8 @@ declare type FillingInfoFormFields = {
1658
1660
  name?: string;
1659
1661
  description?: string;
1660
1662
  type?: ApartmentFillingVariants | null;
1661
- instruction?: InputFileWithVisibilityFields$1;
1662
- tempImages?: ImageBodyRequest$1[];
1663
+ instruction?: InputFileWithVisibilityFields;
1664
+ tempImages?: ImageBodyRequest[];
1663
1665
  };
1664
1666
 
1665
1667
  declare type FillingTagParams = {
@@ -1674,7 +1676,7 @@ declare type FillingParams = {
1674
1676
  images?: (ImageStore | UploadFileParams)[];
1675
1677
  serialNumber?: string;
1676
1678
  numberOfSubjects?: number | string | null;
1677
- instruction?: InputFileWithVisibilityFields$1 | null;
1679
+ instruction?: InputFileWithVisibilityFields | null;
1678
1680
  type?: ApartmentFillingVariants;
1679
1681
  loader?: Loader;
1680
1682
  };
@@ -1686,7 +1688,7 @@ declare type FillingFullParams = {
1686
1688
  images?: (ImageStore | UploadFileParams)[];
1687
1689
  serialNumber?: string;
1688
1690
  numberOfSubjects?: number | string | null;
1689
- instruction?: InputFileWithVisibilityFields$1 | null;
1691
+ instruction?: InputFileWithVisibilityFields | null;
1690
1692
  type?: ApartmentFillingVariants;
1691
1693
  loader?: Loader;
1692
1694
  check?: boolean | null;
@@ -1705,31 +1707,31 @@ declare type TariffGroupLiteParams = {
1705
1707
  name: string;
1706
1708
  };
1707
1709
 
1708
- declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
1709
- declare type UnitOfPaymentTypes = "percent" | "value";
1710
- declare type WaterMeterTypes = "cold" | "hot";
1711
- declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
1712
- declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
1713
- declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
1714
- declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
1715
- declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
1716
- declare type FileBodyRequest = {
1710
+ declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
1711
+ declare type UnitOfPaymentTypes$1 = "percent" | "value";
1712
+ declare type WaterMeterTypes$1 = "cold" | "hot";
1713
+ declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
1714
+ declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
1715
+ declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
1716
+ declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
1717
+ declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
1718
+ declare type FileBodyRequest$1 = {
1717
1719
  temp_file_id?: number;
1718
1720
  name: string;
1719
- visibility?: DocumentVisibilityAPIVariants;
1721
+ visibility?: DocumentVisibilityAPIVariants$1;
1720
1722
  url?: string;
1721
1723
  };
1722
- declare type ImageBodyRequest = {
1724
+ declare type ImageBodyRequest$1 = {
1723
1725
  temp_file_id: number;
1724
1726
  image_name: string;
1725
1727
  url: string;
1726
1728
  };
1727
- declare type VideoBodyRequest = {
1729
+ declare type VideoBodyRequest$1 = {
1728
1730
  temp_file_id: number;
1729
1731
  file_name: string;
1730
1732
  url: string;
1731
1733
  };
1732
- declare type ImageModel = {
1734
+ declare type ImageModel$1 = {
1733
1735
  id: number;
1734
1736
  image_name?: string;
1735
1737
  image_url?: string;
@@ -1738,23 +1740,23 @@ declare type ImageModel = {
1738
1740
  image_large_url: string;
1739
1741
  size: number;
1740
1742
  };
1741
- declare type FileModel = {
1743
+ declare type FileModel$1 = {
1742
1744
  id: number;
1743
1745
  name: string;
1744
1746
  size: number;
1745
1747
  url: string;
1746
1748
  };
1747
- declare type DocumentModel = {
1749
+ declare type DocumentModel$1 = {
1748
1750
  pk: number;
1749
1751
  name: string;
1750
1752
  created?: string;
1751
1753
  attachment: string;
1752
1754
  size: number;
1753
1755
  uploaded_by?: string | null;
1754
- visibility?: DocumentVisibilityAPIVariants;
1756
+ visibility?: DocumentVisibilityAPIVariants$1;
1755
1757
  };
1756
1758
 
1757
- type FileWithVisibility = {
1759
+ type FileWithVisibility$1 = {
1758
1760
  file: File | null
1759
1761
  tenant: boolean
1760
1762
  landlord: boolean
@@ -1762,19 +1764,19 @@ type FileWithVisibility = {
1762
1764
  url: string
1763
1765
  }
1764
1766
 
1765
- type InputFileWithVisibilityFields =
1766
- | FileWithVisibility
1767
+ type InputFileWithVisibilityFields$1 =
1768
+ | FileWithVisibility$1
1767
1769
  | DocumentWithVisibility
1768
1770
  | null
1769
1771
  | undefined
1770
1772
 
1771
- type CompanyAutocompleteFields = {
1773
+ type CompanyAutocompleteFields$1 = {
1772
1774
  id: number
1773
1775
  name: string
1774
1776
  logo?: string | null
1775
1777
  }
1776
1778
 
1777
- declare class FileStore implements FileStoreInterface$1 {
1779
+ declare class FileStore$1 implements FileStoreInterface$1 {
1778
1780
  id: number | null;
1779
1781
  index?: number | null;
1780
1782
  name: string;
@@ -1805,21 +1807,21 @@ declare class FileStore implements FileStoreInterface$1 {
1805
1807
  setIndex: (index: number) => void;
1806
1808
  get title(): string;
1807
1809
  static createPreviewUrl: (file: File) => Promise<string>;
1808
- static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
1809
- static initFromFileModel: (file: FileModel) => FileStore;
1810
- static initFromDocumentModel: (file: DocumentModel) => FileStore;
1811
- static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
1812
- static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
1813
- static initFromFileStore: (file: FileStore) => FileStore;
1810
+ static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
1811
+ static initFromFileModel: (file: FileModel$1) => FileStore$1;
1812
+ static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
1813
+ static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
1814
+ static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
1815
+ static initFromFileStore: (file: FileStore$1) => FileStore$1;
1814
1816
  }
1815
1817
 
1816
1818
  type PartialPayerFields$1 = {
1817
- payer?: ResourcePaymentRoles | "partial"
1818
- mainPayer?: ResourcePaymentRoles
1819
- refundFrom?: ResourcePaymentRoles
1820
- partType?: UnitOfPaymentTypes | null
1819
+ payer?: ResourcePaymentRoles$1 | "partial"
1820
+ mainPayer?: ResourcePaymentRoles$1
1821
+ refundFrom?: ResourcePaymentRoles$1
1822
+ partType?: UnitOfPaymentTypes$1 | null
1821
1823
  refundValue?: number | string | null
1822
- utilityType: UtilityTypes
1824
+ utilityType: UtilityTypes$1
1823
1825
  }
1824
1826
 
1825
1827
  declare type FilesStoreInterface$1 = {
@@ -1851,13 +1853,13 @@ declare type DocumentWithVisibility = {
1851
1853
  visibility?: DocumentVisibilityVariants;
1852
1854
  extension: string;
1853
1855
  };
1854
- declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
1856
+ declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
1855
1857
  declare type FileStoreParams = {
1856
1858
  id?: number | null;
1857
1859
  url?: string;
1858
1860
  index?: number | string | null;
1859
1861
  createdBy?: string | null;
1860
- visibility?: DocumentVisibilityAPIVariants;
1862
+ visibility?: DocumentVisibilityAPIVariants$1;
1861
1863
  name?: string;
1862
1864
  date?: string | null;
1863
1865
  size?: number | null;
@@ -1885,14 +1887,14 @@ type BasicMeterFeaturesFormFields = {
1885
1887
  initialValueT1?: number
1886
1888
  initialValueT2?: number
1887
1889
  initialValueT3?: number
1888
- type?: MeterTypes
1889
- resource?: ResourceTypes
1890
+ type?: MeterTypes$1
1891
+ resource?: ResourceTypes$1
1890
1892
  withAutoSending?: boolean
1891
1893
  }
1892
1894
 
1893
1895
  type MeterFeaturesFormFields = {
1894
1896
  tariff: TariffGroupAutocompleteFields | null
1895
- company: CompanyAutocompleteFields | null
1897
+ company: CompanyAutocompleteFields$1 | null
1896
1898
  nextCheck: DateTime | null
1897
1899
  lastValue?: number
1898
1900
  lastValueT1?: number
@@ -1916,9 +1918,9 @@ declare type ApartmentMeterValues = {
1916
1918
  } & MeterValues;
1917
1919
  declare type InspectionMeterFields = {
1918
1920
  id?: number;
1919
- resource: ResourceTypes;
1920
- passportFile?: InputFileWithVisibilityFields;
1921
- images: FileStore[];
1921
+ resource: ResourceTypes$1;
1922
+ passportFile?: InputFileWithVisibilityFields$1;
1923
+ images: FileStore$1[];
1922
1924
  } & MeterFeaturesFormFields;
1923
1925
 
1924
1926
  declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
@@ -1928,12 +1930,12 @@ declare type InspectionFeedbackParams = {
1928
1930
  };
1929
1931
 
1930
1932
  type PartialPayerFields = {
1931
- payer?: ResourcePaymentRoles$1 | "partial"
1932
- mainPayer?: ResourcePaymentRoles$1
1933
- refundFrom?: ResourcePaymentRoles$1
1934
- partType?: UnitOfPaymentTypes$1 | null
1933
+ payer?: ResourcePaymentRoles | "partial"
1934
+ mainPayer?: ResourcePaymentRoles
1935
+ refundFrom?: ResourcePaymentRoles
1936
+ partType?: UnitOfPaymentTypes | null
1935
1937
  refundValue?: number | string | null
1936
- utilityType: UtilityTypes$1
1938
+ utilityType: UtilityTypes
1937
1939
  }
1938
1940
 
1939
1941
  declare type ContractPeriodTypes = "openEnded" | "fixed";
@@ -2017,15 +2019,15 @@ declare type ResourceAccessParams = {
2017
2019
  password?: string;
2018
2020
  description?: string;
2019
2021
  };
2020
- declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
2022
+ declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
2021
2023
  declare type ApartmentResourceCompanyDetails = {
2022
- company: CompanyAutocompleteFields$1 | null;
2024
+ company: CompanyAutocompleteFields | null;
2023
2025
  operationalAccountNumber: string;
2024
2026
  payerCode: string;
2025
2027
  dataSubmissionDays: DataSubmissionDaysParams;
2026
2028
  access: ResourceAccessParams;
2027
2029
  sampleReceiptLink: string;
2028
- sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
2030
+ sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
2029
2031
  };
2030
2032
  declare type ApartmentResourceInterface = {
2031
2033
  type: ApartmentResourceTypes;
@@ -2062,15 +2064,15 @@ declare type DocumentsStoreInterface = {
2062
2064
  loader: Loader;
2063
2065
  };
2064
2066
  declare type PostDocumentsResponse = {
2065
- documents: DocumentModel$1[];
2067
+ documents: DocumentModel[];
2066
2068
  };
2067
2069
  declare type DocumentAgentInterface = {
2068
2070
  postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
2069
- patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
2070
- deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
2071
+ patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
2072
+ deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
2071
2073
  };
2072
2074
  declare type DocumentsAgentInterface = {
2073
- getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
2075
+ getDocuments?: (...params: any) => Promise<DocumentModel[]>;
2074
2076
  } & DocumentAgentInterface;
2075
2077
 
2076
2078
  declare type MetroLineParams = {
@@ -2086,4 +2088,4 @@ declare type MetroStationParams = {
2086
2088
  status: string;
2087
2089
  };
2088
2090
 
2089
- export { APISubjectRoles, ActivateConditions, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, CatalogItemModel, CatalogItemParams, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, CommonTariffModel, CompanyAPITypes, CompanyByTinRequestBody, CompanyInfoModel, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CounterpartyModel, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, DistrictModel, DistrictParams, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants$1 as DocumentVisibilityVariants, DocumentWithVisibility$1 as DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, EditConditions, ElectricityMeterParams, ElectricityMeterTypes$1 as ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, EmptyType, EntityLinkParams, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest$1 as FileBodyRequest, FileModel$1 as FileModel, FileParams, FileStoreInterface, FileStoreParams$1 as FileStoreParams, FileVariant$1 as FileVariant, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagModel, FillingTagParams, FillingTypes, FixedCostModel, FixedCostParams, FullInspectionCommonFields, GasMetersResponse, GasTypes, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GroupedFillingParams, HeatingMetersResponse, HouseInfoModelFields, HouseTypes, ImageBodyRequest$1 as ImageBodyRequest, ImageModel$1 as ImageModel, ImageParams, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, InitialInspectionModel, InitialInspectionModelFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, LatLonParams, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus$1 as LoadStatus, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, MaxMetersInfoParams, MeterCommonInfoModel, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OverlapTypes, PaginationRes, ParkingTypes, PartialMeterInfoParams, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, RegionModel, RegionParams, RegularInspectionFields, RegularInspectionModel, RenovationParams, RenovationStyle, RenovationType, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, RoomModel, RoomParams, RoomType, RoomTypes, RoommateParams, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInParams, SingleMeterParams, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TagModel, TariffGroupLiteParams, TariffLinkModel, TariffStatuses, TaxResidenceType, TaxesTypes, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UploadedFileParams$1 as UploadedFileParams, UsedResourcesModel, UserNamesModel, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel, WallMaterials, WaterMeterParams, WaterMeterTypes$1 as WaterMeterTypes, WaterMetersResponse, WifiParams };
2091
+ export { APISubjectRoles, ActivateConditions, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, CatalogItemModel, CatalogItemParams, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, CommonTariffModel, CompanyAPITypes, CompanyByTinRequestBody, CompanyInfoModel, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CounterpartyModel, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, DistrictModel, DistrictParams, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants$1 as DocumentVisibilityVariants, DocumentWithVisibility$1 as DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, EmptyType, EntityLinkParams, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStoreInterface, FileStoreParams$1 as FileStoreParams, FileVariant$1 as FileVariant, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagModel, FillingTagParams, FillingTypes, FixedCostModel, FixedCostParams, FullInspectionCommonFields, GasMetersResponse, GasTypes, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GroupedFillingParams, HeatingMetersResponse, HouseInfoModelFields, HouseTypes, ImageBodyRequest, ImageModel, ImageParams, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, InitialInspectionModel, InitialInspectionModelFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, LatLonParams, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus$1 as LoadStatus, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, MaxMetersInfoParams, MeterCommonInfoModel, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OverlapTypes, PaginationRes, ParkingTypes, PartialMeterInfoParams, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, RegionModel, RegionParams, RegularInspectionFields, RegularInspectionModel, RenovationParams, RenovationStyle, RenovationType, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, RoomModel, RoomParams, RoomType, RoomTypes, RoommateParams, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInParams, SingleMeterParams, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TagModel, TariffGroupLiteParams, TariffLinkModel, TariffStatuses, TaxResidenceType, TaxesTypes, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, UnitOfPaymentTypes, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UploadedFileParams$1 as UploadedFileParams, UsedResourcesModel, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WifiParams };