kui-crm 0.0.274 → 0.0.275
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +93 -93
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -197,7 +197,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
197
197
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
198
198
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
199
199
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
200
|
-
declare type DocumentVisibilityAPIVariants
|
|
200
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
201
201
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
202
202
|
declare type ContractLinkModel = {
|
|
203
203
|
id: number;
|
|
@@ -232,7 +232,7 @@ declare type ApartmentLinkModel = {
|
|
|
232
232
|
address: string;
|
|
233
233
|
object_name?: string;
|
|
234
234
|
apartment_number?: string;
|
|
235
|
-
main_image: ImageModel
|
|
235
|
+
main_image: ImageModel | null;
|
|
236
236
|
folder_number?: string;
|
|
237
237
|
};
|
|
238
238
|
declare type ApartmentSimpleModel = {
|
|
@@ -242,7 +242,7 @@ declare type LiteObjectModel = {
|
|
|
242
242
|
id: number;
|
|
243
243
|
address: string;
|
|
244
244
|
object_name?: string;
|
|
245
|
-
main_image: ImageModel
|
|
245
|
+
main_image: ImageModel | null;
|
|
246
246
|
};
|
|
247
247
|
declare type AdministrativeCompanyModel = {
|
|
248
248
|
id: number;
|
|
@@ -260,12 +260,12 @@ declare type UtilityPayerModel = {
|
|
|
260
260
|
refund_value?: number | string;
|
|
261
261
|
value_type?: UnitOfPaymentTypes;
|
|
262
262
|
};
|
|
263
|
-
declare type FileBodyRequest
|
|
263
|
+
declare type FileBodyRequest = {
|
|
264
264
|
temp_file_id?: number;
|
|
265
265
|
name: string;
|
|
266
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
266
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
267
267
|
};
|
|
268
|
-
declare type ImageBodyRequest
|
|
268
|
+
declare type ImageBodyRequest = {
|
|
269
269
|
temp_file_id: number;
|
|
270
270
|
image_name: string;
|
|
271
271
|
};
|
|
@@ -273,7 +273,7 @@ declare type UploadFileResponse = {
|
|
|
273
273
|
id: number;
|
|
274
274
|
upload: string;
|
|
275
275
|
};
|
|
276
|
-
declare type ImageModel
|
|
276
|
+
declare type ImageModel = {
|
|
277
277
|
id: number;
|
|
278
278
|
image_name?: string;
|
|
279
279
|
image_url?: string;
|
|
@@ -282,20 +282,20 @@ declare type ImageModel$1 = {
|
|
|
282
282
|
image_large_url: string;
|
|
283
283
|
size: number;
|
|
284
284
|
};
|
|
285
|
-
declare type FileModel
|
|
285
|
+
declare type FileModel = {
|
|
286
286
|
id: number;
|
|
287
287
|
name: string;
|
|
288
288
|
size: number;
|
|
289
289
|
url: string;
|
|
290
290
|
};
|
|
291
|
-
declare type DocumentModel
|
|
291
|
+
declare type DocumentModel = {
|
|
292
292
|
pk: number;
|
|
293
293
|
name: string;
|
|
294
294
|
created?: string;
|
|
295
295
|
attachment: string;
|
|
296
296
|
size: number;
|
|
297
297
|
uploaded_by?: string | null;
|
|
298
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
298
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
299
299
|
};
|
|
300
300
|
declare type PatchDocumentRequest = {
|
|
301
301
|
name: string;
|
|
@@ -303,7 +303,7 @@ declare type PatchDocumentRequest = {
|
|
|
303
303
|
declare type PatchFileParams = {
|
|
304
304
|
id: number;
|
|
305
305
|
name: string;
|
|
306
|
-
visibility: DocumentVisibilityAPIVariants
|
|
306
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
307
307
|
};
|
|
308
308
|
declare type PaginationRes<T> = {
|
|
309
309
|
count: number;
|
|
@@ -375,8 +375,8 @@ declare type InspectionFillingModel = {
|
|
|
375
375
|
description: string;
|
|
376
376
|
serial_code: string;
|
|
377
377
|
amount: number;
|
|
378
|
-
photos: ImageModel
|
|
379
|
-
instruction: DocumentModel
|
|
378
|
+
photos: ImageModel[];
|
|
379
|
+
instruction: DocumentModel;
|
|
380
380
|
is_absent: boolean;
|
|
381
381
|
previously_absent: boolean;
|
|
382
382
|
model: string;
|
|
@@ -456,7 +456,7 @@ declare type CommonMeterParams = {
|
|
|
456
456
|
company: CompanyLiteParams;
|
|
457
457
|
operating_account_number?: string | null;
|
|
458
458
|
company_is_administrative: boolean;
|
|
459
|
-
photos?: ImageModel
|
|
459
|
+
photos?: ImageModel[];
|
|
460
460
|
auto_sending: boolean;
|
|
461
461
|
no_tariff: boolean;
|
|
462
462
|
is_avg: boolean;
|
|
@@ -661,8 +661,8 @@ declare type InspectionFillingParams = {
|
|
|
661
661
|
description?: string;
|
|
662
662
|
serial_code?: string;
|
|
663
663
|
amount?: number | string | null;
|
|
664
|
-
photos: ImageBodyRequest
|
|
665
|
-
instruction?: FileBodyRequest
|
|
664
|
+
photos: ImageBodyRequest[];
|
|
665
|
+
instruction?: FileBodyRequest | null;
|
|
666
666
|
was_missing?: boolean;
|
|
667
667
|
};
|
|
668
668
|
declare type InspectionMeterValueModel = {
|
|
@@ -683,7 +683,7 @@ declare type InspectionRoomPhotoModel = {
|
|
|
683
683
|
uploaded: boolean;
|
|
684
684
|
purpose: InspectionRoomPhotoTypes;
|
|
685
685
|
comment?: string;
|
|
686
|
-
photos: ImageModel
|
|
686
|
+
photos: ImageModel[];
|
|
687
687
|
room_order_number?: number | null;
|
|
688
688
|
};
|
|
689
689
|
declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed";
|
|
@@ -713,10 +713,10 @@ declare type FullInspectionCommonFields = {
|
|
|
713
713
|
} & ApartmentModel;
|
|
714
714
|
declare type InspectionMeterCommonInfo = {
|
|
715
715
|
resource_type: ResourceTypes;
|
|
716
|
-
passport: FileModel
|
|
716
|
+
passport: FileModel | null;
|
|
717
717
|
meter_type: MeterTypes;
|
|
718
718
|
operating_account: string;
|
|
719
|
-
photos: ImageModel
|
|
719
|
+
photos: ImageModel[];
|
|
720
720
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
721
721
|
declare type TransferInspectionMeterModel = {
|
|
722
722
|
values: InspectionMeterValueModel;
|
|
@@ -732,7 +732,7 @@ declare type RegularInspectionFields = {
|
|
|
732
732
|
declare type ComparableObjectModel = {
|
|
733
733
|
id: number;
|
|
734
734
|
advertisement_link: string;
|
|
735
|
-
advertisement_screenshot: ImageModel
|
|
735
|
+
advertisement_screenshot: ImageModel | null;
|
|
736
736
|
object_price: string;
|
|
737
737
|
key_object_differences: string;
|
|
738
738
|
};
|
|
@@ -740,7 +740,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
740
740
|
id: number;
|
|
741
741
|
source_name: string;
|
|
742
742
|
link: string;
|
|
743
|
-
screenshot: ImageModel
|
|
743
|
+
screenshot: ImageModel | null;
|
|
744
744
|
min_price: string;
|
|
745
745
|
max_price: string;
|
|
746
746
|
};
|
|
@@ -779,11 +779,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
779
779
|
declare type ImpairmentModel = {
|
|
780
780
|
id: number;
|
|
781
781
|
impairment_type: ImpairmentType;
|
|
782
|
-
proof_file: DocumentModel
|
|
782
|
+
proof_file: DocumentModel | null;
|
|
783
783
|
price: number;
|
|
784
784
|
solution: string;
|
|
785
785
|
description: string;
|
|
786
|
-
photos: ImageModel
|
|
786
|
+
photos: ImageModel[];
|
|
787
787
|
item_link: string;
|
|
788
788
|
};
|
|
789
789
|
declare type MetroStationsFields = {
|
|
@@ -957,7 +957,7 @@ declare namespace CompanyAutocomplete {
|
|
|
957
957
|
}
|
|
958
958
|
declare const _default$l: typeof CompanyAutocomplete;
|
|
959
959
|
|
|
960
|
-
declare class FileStore
|
|
960
|
+
declare class FileStore implements FileStoreInterface {
|
|
961
961
|
id: number | null;
|
|
962
962
|
index?: number;
|
|
963
963
|
name: string;
|
|
@@ -966,27 +966,27 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
966
966
|
size: number | null;
|
|
967
967
|
createdBy: string;
|
|
968
968
|
visibility?: DocumentVisibilityVariants;
|
|
969
|
-
filesStore?: FilesStoreInterface
|
|
969
|
+
filesStore?: FilesStoreInterface | null;
|
|
970
970
|
extension: string;
|
|
971
971
|
file?: File;
|
|
972
972
|
uploadStatus: LoadStatus;
|
|
973
|
-
uploadedData: FileBodyRequest
|
|
973
|
+
uploadedData: FileBodyRequest | ImageBodyRequest | null;
|
|
974
974
|
loader: Loader;
|
|
975
|
-
constructor(file: FileStoreParams, filesStore?: FilesStoreInterface
|
|
975
|
+
constructor(file: FileStoreParams, filesStore?: FilesStoreInterface);
|
|
976
976
|
uploadFile: (variant: FileVariant) => Promise<void>;
|
|
977
977
|
updateUploadStatus: (status: LoadStatus) => void;
|
|
978
|
-
updateUploadedData: (data: FileBodyRequest
|
|
978
|
+
updateUploadedData: (data: FileBodyRequest | ImageBodyRequest) => void;
|
|
979
979
|
editFile: (data: any) => void;
|
|
980
980
|
deleteFile: () => void;
|
|
981
981
|
updateName: (name: string) => void;
|
|
982
982
|
updateStore: (data: unknown) => void;
|
|
983
983
|
setIndex: (index: number) => void;
|
|
984
984
|
get title(): string;
|
|
985
|
-
static initFromFileModel: (file: FileModel
|
|
986
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
987
|
-
static initFromImageModel: (file: ImageModel
|
|
988
|
-
static initFromFile: (file: File, index: number) => FileStore
|
|
989
|
-
static initFromFileStore: (file: FileStore
|
|
985
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
986
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
987
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined) => FileStore;
|
|
988
|
+
static initFromFile: (file: File, index: number) => FileStore;
|
|
989
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
990
990
|
}
|
|
991
991
|
|
|
992
992
|
declare type ImageParams = {
|
|
@@ -1019,7 +1019,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1019
1019
|
delete: () => Promise<void>;
|
|
1020
1020
|
get extension(): string;
|
|
1021
1021
|
get title(): string;
|
|
1022
|
-
static initFromImageModel: (image: ImageModel
|
|
1022
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1023
1023
|
}
|
|
1024
1024
|
|
|
1025
1025
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1170,7 +1170,7 @@ declare type InspectionMeterInfoParams = {
|
|
|
1170
1170
|
company: CompanyLiteParams;
|
|
1171
1171
|
operationalAccountNumber?: string | null;
|
|
1172
1172
|
tariff: EntityLinkParams | null;
|
|
1173
|
-
passportFile: FileStore
|
|
1173
|
+
passportFile: FileStore | null;
|
|
1174
1174
|
initialValue?: number;
|
|
1175
1175
|
lastValue?: number;
|
|
1176
1176
|
initialValueT1?: number;
|
|
@@ -1204,7 +1204,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1204
1204
|
declare type ComparableObjectParams = {
|
|
1205
1205
|
id: number;
|
|
1206
1206
|
link: string;
|
|
1207
|
-
screenshot: FileStore
|
|
1207
|
+
screenshot: FileStore | null;
|
|
1208
1208
|
price: number;
|
|
1209
1209
|
differences: string;
|
|
1210
1210
|
};
|
|
@@ -1212,7 +1212,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1212
1212
|
id: number;
|
|
1213
1213
|
dataSourceName: string;
|
|
1214
1214
|
link: string;
|
|
1215
|
-
screenshot: FileStore
|
|
1215
|
+
screenshot: FileStore | null;
|
|
1216
1216
|
minPrice: number;
|
|
1217
1217
|
maxPrice: number;
|
|
1218
1218
|
};
|
|
@@ -1238,7 +1238,7 @@ declare type FillingInfoFormFields = {
|
|
|
1238
1238
|
description?: string;
|
|
1239
1239
|
type?: ApartmentFillingVariants | null;
|
|
1240
1240
|
instruction?: InputFileWithVisibilityFields;
|
|
1241
|
-
tempImages?: ImageBodyRequest
|
|
1241
|
+
tempImages?: ImageBodyRequest[];
|
|
1242
1242
|
};
|
|
1243
1243
|
|
|
1244
1244
|
declare function InputFileWithVisibility<T extends FieldValues>(props: InputFileProps<T>): JSX.Element | null;
|
|
@@ -1281,11 +1281,11 @@ declare type InspectionFeedbackParams = {
|
|
|
1281
1281
|
comment?: string;
|
|
1282
1282
|
};
|
|
1283
1283
|
|
|
1284
|
-
declare type FilesStoreInterface
|
|
1284
|
+
declare type FilesStoreInterface = {
|
|
1285
1285
|
editFile: (id: number, data: any, callback: () => void) => void;
|
|
1286
1286
|
deleteFile: (id: number) => void;
|
|
1287
1287
|
};
|
|
1288
|
-
declare type FileStoreInterface
|
|
1288
|
+
declare type FileStoreInterface = {
|
|
1289
1289
|
id: number | null;
|
|
1290
1290
|
name: string;
|
|
1291
1291
|
url: string;
|
|
@@ -1293,7 +1293,7 @@ declare type FileStoreInterface$1 = {
|
|
|
1293
1293
|
size: number | null;
|
|
1294
1294
|
createdBy: string;
|
|
1295
1295
|
visibility?: DocumentVisibilityVariants;
|
|
1296
|
-
filesStore?: FilesStoreInterface
|
|
1296
|
+
filesStore?: FilesStoreInterface | null;
|
|
1297
1297
|
editFile?: (data: any) => void;
|
|
1298
1298
|
deleteFile?: () => void;
|
|
1299
1299
|
extension: string;
|
|
@@ -1304,12 +1304,12 @@ declare type DocumentsStoreInterface = {
|
|
|
1304
1304
|
loader: Loader;
|
|
1305
1305
|
};
|
|
1306
1306
|
declare type DocumentAgentInterface = {
|
|
1307
|
-
postDocument: (body: any, ...params: any) => Promise<DocumentModel
|
|
1308
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1309
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1307
|
+
postDocument: (body: any, ...params: any) => Promise<DocumentModel>;
|
|
1308
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1309
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1310
1310
|
};
|
|
1311
1311
|
declare type DocumentsAgentInterface = {
|
|
1312
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1312
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1313
1313
|
} & DocumentAgentInterface;
|
|
1314
1314
|
|
|
1315
1315
|
type CompanyCreationFields = {
|
|
@@ -1366,7 +1366,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1366
1366
|
};
|
|
1367
1367
|
declare type ApartmentDocumentModel = {
|
|
1368
1368
|
id: number;
|
|
1369
|
-
document: DocumentModel
|
|
1369
|
+
document: DocumentModel;
|
|
1370
1370
|
expiration_date: string;
|
|
1371
1371
|
start_date: string;
|
|
1372
1372
|
number: string;
|
|
@@ -1491,7 +1491,7 @@ declare type ApartmentModel = {
|
|
|
1491
1491
|
owner_id: number;
|
|
1492
1492
|
metro_stations: ApartmentMetroParams[];
|
|
1493
1493
|
rental_status: RentalStatuses;
|
|
1494
|
-
main_image: ImageModel
|
|
1494
|
+
main_image: ImageModel;
|
|
1495
1495
|
tv_type: TVTypes | null;
|
|
1496
1496
|
inspection: ApartmentInspectionModel;
|
|
1497
1497
|
distance_to_center_kilometers: number | null;
|
|
@@ -1516,7 +1516,7 @@ declare type ApartmentLiteModel = {
|
|
|
1516
1516
|
renter: LiteUserModel | null;
|
|
1517
1517
|
rental_status: RentalStatuses;
|
|
1518
1518
|
renter_payment_status: PaymentStatuses;
|
|
1519
|
-
main_image: ImageModel
|
|
1519
|
+
main_image: ImageModel;
|
|
1520
1520
|
service_contract?: ServiceContractLiteModel;
|
|
1521
1521
|
is_imported_from_old_crm?: boolean;
|
|
1522
1522
|
max_electricity_counters?: number | null;
|
|
@@ -1562,7 +1562,7 @@ declare type ObjectForMapModel = {
|
|
|
1562
1562
|
apartment_number: string;
|
|
1563
1563
|
address: string;
|
|
1564
1564
|
geolocation: LatLonParams;
|
|
1565
|
-
main_image: ImageModel
|
|
1565
|
+
main_image: ImageModel;
|
|
1566
1566
|
renter: ClientLiteModel | null;
|
|
1567
1567
|
owner: ClientLiteModel;
|
|
1568
1568
|
metro_stations: MetroStationModel[];
|
|
@@ -1577,17 +1577,17 @@ declare type FillingTagModel = {
|
|
|
1577
1577
|
feature_type: FillingTypes;
|
|
1578
1578
|
};
|
|
1579
1579
|
|
|
1580
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1581
|
-
declare type FileBodyRequest = {
|
|
1580
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1581
|
+
declare type FileBodyRequest$1 = {
|
|
1582
1582
|
temp_file_id?: number;
|
|
1583
1583
|
name: string;
|
|
1584
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1584
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1585
1585
|
};
|
|
1586
|
-
declare type ImageBodyRequest = {
|
|
1586
|
+
declare type ImageBodyRequest$1 = {
|
|
1587
1587
|
temp_file_id: number;
|
|
1588
1588
|
image_name: string;
|
|
1589
1589
|
};
|
|
1590
|
-
declare type ImageModel = {
|
|
1590
|
+
declare type ImageModel$1 = {
|
|
1591
1591
|
id: number;
|
|
1592
1592
|
image_name?: string;
|
|
1593
1593
|
image_url?: string;
|
|
@@ -1596,23 +1596,23 @@ declare type ImageModel = {
|
|
|
1596
1596
|
image_large_url: string;
|
|
1597
1597
|
size: number;
|
|
1598
1598
|
};
|
|
1599
|
-
declare type FileModel = {
|
|
1599
|
+
declare type FileModel$1 = {
|
|
1600
1600
|
id: number;
|
|
1601
1601
|
name: string;
|
|
1602
1602
|
size: number;
|
|
1603
1603
|
url: string;
|
|
1604
1604
|
};
|
|
1605
|
-
declare type DocumentModel = {
|
|
1605
|
+
declare type DocumentModel$1 = {
|
|
1606
1606
|
pk: number;
|
|
1607
1607
|
name: string;
|
|
1608
1608
|
created?: string;
|
|
1609
1609
|
attachment: string;
|
|
1610
1610
|
size: number;
|
|
1611
1611
|
uploaded_by?: string | null;
|
|
1612
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1612
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1613
1613
|
};
|
|
1614
1614
|
|
|
1615
|
-
declare class FileStore implements FileStoreInterface {
|
|
1615
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1616
1616
|
id: number | null;
|
|
1617
1617
|
index?: number;
|
|
1618
1618
|
name: string;
|
|
@@ -1621,34 +1621,34 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1621
1621
|
size: number | null;
|
|
1622
1622
|
createdBy: string;
|
|
1623
1623
|
visibility?: DocumentVisibilityVariants$1;
|
|
1624
|
-
filesStore?: FilesStoreInterface | null;
|
|
1624
|
+
filesStore?: FilesStoreInterface$1 | null;
|
|
1625
1625
|
extension: string;
|
|
1626
1626
|
file?: File;
|
|
1627
1627
|
uploadStatus: LoadStatus$1;
|
|
1628
|
-
uploadedData: FileBodyRequest | ImageBodyRequest | null;
|
|
1628
|
+
uploadedData: FileBodyRequest$1 | ImageBodyRequest$1 | null;
|
|
1629
1629
|
loader: Loader;
|
|
1630
|
-
constructor(file: FileStoreParams$1, filesStore?: FilesStoreInterface);
|
|
1630
|
+
constructor(file: FileStoreParams$1, filesStore?: FilesStoreInterface$1);
|
|
1631
1631
|
uploadFile: (variant: FileVariant$1) => Promise<void>;
|
|
1632
1632
|
updateUploadStatus: (status: LoadStatus$1) => void;
|
|
1633
|
-
updateUploadedData: (data: FileBodyRequest | ImageBodyRequest) => void;
|
|
1633
|
+
updateUploadedData: (data: FileBodyRequest$1 | ImageBodyRequest$1) => void;
|
|
1634
1634
|
editFile: (data: any) => void;
|
|
1635
1635
|
deleteFile: () => void;
|
|
1636
1636
|
updateName: (name: string) => void;
|
|
1637
1637
|
updateStore: (data: unknown) => void;
|
|
1638
1638
|
setIndex: (index: number) => void;
|
|
1639
1639
|
get title(): string;
|
|
1640
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1641
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1642
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined) => FileStore;
|
|
1643
|
-
static initFromFile: (file: File, index: number) => FileStore;
|
|
1644
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1640
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1641
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1642
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined) => FileStore$1;
|
|
1643
|
+
static initFromFile: (file: File, index: number) => FileStore$1;
|
|
1644
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1645
1645
|
}
|
|
1646
1646
|
|
|
1647
|
-
declare type FilesStoreInterface = {
|
|
1647
|
+
declare type FilesStoreInterface$1 = {
|
|
1648
1648
|
editFile: (id: number, data: any, callback: () => void) => void;
|
|
1649
1649
|
deleteFile: (id: number) => void;
|
|
1650
1650
|
};
|
|
1651
|
-
declare type FileStoreInterface = {
|
|
1651
|
+
declare type FileStoreInterface$1 = {
|
|
1652
1652
|
id: number | null;
|
|
1653
1653
|
name: string;
|
|
1654
1654
|
url: string;
|
|
@@ -1656,7 +1656,7 @@ declare type FileStoreInterface = {
|
|
|
1656
1656
|
size: number | null;
|
|
1657
1657
|
createdBy: string;
|
|
1658
1658
|
visibility?: DocumentVisibilityVariants$1;
|
|
1659
|
-
filesStore?: FilesStoreInterface | null;
|
|
1659
|
+
filesStore?: FilesStoreInterface$1 | null;
|
|
1660
1660
|
editFile?: (data: any) => void;
|
|
1661
1661
|
deleteFile?: () => void;
|
|
1662
1662
|
extension: string;
|
|
@@ -1668,13 +1668,13 @@ declare type FileStoreParams$1 = {
|
|
|
1668
1668
|
url?: string;
|
|
1669
1669
|
index?: number | string | null;
|
|
1670
1670
|
createdBy?: string | null;
|
|
1671
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1671
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1672
1672
|
name?: string;
|
|
1673
1673
|
date?: string | null;
|
|
1674
1674
|
size?: number | null;
|
|
1675
1675
|
file?: File | null;
|
|
1676
1676
|
uploadStatus?: LoadStatus$1;
|
|
1677
|
-
uploadedData?: FileBodyRequest | ImageBodyRequest | null;
|
|
1677
|
+
uploadedData?: FileBodyRequest$1 | ImageBodyRequest$1 | null;
|
|
1678
1678
|
};
|
|
1679
1679
|
declare type LoadStatus$1 = "loading" | "success" | "failure" | "default";
|
|
1680
1680
|
declare type FileVariant$1 = "image" | "document";
|
|
@@ -1698,7 +1698,7 @@ type InputParams$1<T> = {
|
|
|
1698
1698
|
size?: GridSize
|
|
1699
1699
|
} & InputByTypeProps$1<T>
|
|
1700
1700
|
|
|
1701
|
-
declare class DocumentStore implements FileStoreInterface
|
|
1701
|
+
declare class DocumentStore implements FileStoreInterface {
|
|
1702
1702
|
id: number;
|
|
1703
1703
|
name: string;
|
|
1704
1704
|
url: string;
|
|
@@ -1709,13 +1709,13 @@ declare class DocumentStore implements FileStoreInterface$1 {
|
|
|
1709
1709
|
documentsStore: DocumentsStoreInterface;
|
|
1710
1710
|
agent: DocumentAgentInterface;
|
|
1711
1711
|
loader: Loader;
|
|
1712
|
-
constructor(document: DocumentModel
|
|
1712
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface);
|
|
1713
1713
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
1714
|
-
updateDocument: (res: DocumentModel
|
|
1714
|
+
updateDocument: (res: DocumentModel) => void;
|
|
1715
1715
|
deleteDocument: (...params: any) => Promise<void>;
|
|
1716
1716
|
get extension(): string;
|
|
1717
1717
|
get title(): string;
|
|
1718
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
1718
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
1719
1719
|
}
|
|
1720
1720
|
|
|
1721
1721
|
declare type SubjectRoles = "maroom" | "landlord" | "tenant";
|
|
@@ -1761,13 +1761,13 @@ declare type FileStoreParams = {
|
|
|
1761
1761
|
url?: string;
|
|
1762
1762
|
index?: number | string | null;
|
|
1763
1763
|
createdBy?: string | null;
|
|
1764
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1764
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1765
1765
|
name?: string;
|
|
1766
1766
|
date?: string | null;
|
|
1767
1767
|
size?: number | null;
|
|
1768
1768
|
file?: File | null;
|
|
1769
1769
|
uploadStatus?: LoadStatus;
|
|
1770
|
-
uploadedData?: FileBodyRequest
|
|
1770
|
+
uploadedData?: FileBodyRequest | ImageBodyRequest | null;
|
|
1771
1771
|
};
|
|
1772
1772
|
declare type GeolocationParams = {
|
|
1773
1773
|
lat: number;
|
|
@@ -1964,14 +1964,14 @@ declare const phoneNonRequiredSchema: (name: string) => yup.ObjectSchema<{
|
|
|
1964
1964
|
phoneNumber: undefined;
|
|
1965
1965
|
}, "">;
|
|
1966
1966
|
|
|
1967
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1) => Promise<ImageBodyRequest
|
|
1968
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
1969
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | File) => Promise<FileBodyRequest
|
|
1970
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File) => Promise<FileBodyRequest
|
|
1971
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[]) => Promise<(FileBodyRequest
|
|
1972
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[]) => Promise<FileBodyRequest
|
|
1973
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[]) => Promise<FileBodyRequest
|
|
1974
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams) => Promise<FileBodyRequest
|
|
1967
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1) => Promise<ImageBodyRequest | null>;
|
|
1968
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
1969
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | File) => Promise<FileBodyRequest | null>;
|
|
1970
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File) => Promise<FileBodyRequest | null>;
|
|
1971
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[]) => Promise<(FileBodyRequest | null)[]>;
|
|
1972
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[]) => Promise<FileBodyRequest[]>;
|
|
1973
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[]) => Promise<FileBodyRequest[]>;
|
|
1974
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams) => Promise<FileBodyRequest | null>;
|
|
1975
1975
|
|
|
1976
1976
|
declare const matchesAPISubjectRoles: {
|
|
1977
1977
|
maroom: string;
|
|
@@ -2076,16 +2076,16 @@ declare const useMapCards: (location: GeolocationParams, map?: google.maps.Map |
|
|
|
2076
2076
|
};
|
|
2077
2077
|
|
|
2078
2078
|
declare class FilesStore {
|
|
2079
|
-
files: FileStore
|
|
2079
|
+
files: FileStore[];
|
|
2080
2080
|
variant: FileVariant;
|
|
2081
2081
|
constructor(variant: FileVariant);
|
|
2082
|
-
addFile: (newFile: FileStore
|
|
2082
|
+
addFile: (newFile: FileStore) => void;
|
|
2083
2083
|
removeFile: (index: number) => void;
|
|
2084
|
-
setFiles: (files: FileStore
|
|
2084
|
+
setFiles: (files: FileStore[]) => void;
|
|
2085
2085
|
uploadFiles: () => Promise<void>;
|
|
2086
|
-
get uploadedData(): (FileBodyRequest
|
|
2086
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2087
2087
|
get uploadedAllFiles(): boolean;
|
|
2088
|
-
get notUploadedFiles(): FileStore
|
|
2088
|
+
get notUploadedFiles(): FileStore[];
|
|
2089
2089
|
get isUploading(): boolean;
|
|
2090
2090
|
}
|
|
2091
2091
|
|
|
@@ -3216,7 +3216,7 @@ declare type PartialMeterInfoFields = {
|
|
|
3216
3216
|
resource: ResourceTypes;
|
|
3217
3217
|
type?: MeterTypes;
|
|
3218
3218
|
number: string;
|
|
3219
|
-
images: FileStore[];
|
|
3219
|
+
images: FileStore$1[];
|
|
3220
3220
|
maxValue?: PartialMeterValuesFields;
|
|
3221
3221
|
values: PartialMeterValuesFields;
|
|
3222
3222
|
} & PartialMeterValuesFields;
|
|
@@ -3244,4 +3244,4 @@ type SignInPageProps = {
|
|
|
3244
3244
|
|
|
3245
3245
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3246
3246
|
|
|
3247
|
-
export { APIPayerValues, 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, ApartmentMetroParams, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$i as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLiteModel, ClientRoles, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CommonMeterParams, CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$l as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$h as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$7 as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractStatuses, CopyButton, CountriesStore, _default$k as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DeepPartial, DetailObjectInfoInterface, _default$b as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$4 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, 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$1 as FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface$1 as FilesStoreInterface, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$e as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$d as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FormBottom, FormBottomProps, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$5 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, 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, InputParams, InputPassword, InputTypes, InputWithMap, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionTypeValues, InspectionTypes, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$8 as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$g as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, MeterFeaturesForm, MeterFeaturesFormFields, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersResponse, MetersResponseBody, _default$3 as MetroAutocomplete, _default$2 as MetroBlock, _default$1 as MetroBlockForModal, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$f as ModalWithMap, _default$6 as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$j as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractModel, RentalInspectionParams, RentalStatuses, RentalTypes, _default$c as ReplaceableCountersBlock, ResidentialComplexModel, ResidentialComplexParams, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$9 as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$a as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, WallMaterials, WallMaterialsValues, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneSchema, phoneWithConditionSchema, positiveNumberSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadNewFile, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
3247
|
+
export { APIPayerValues, 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, ApartmentMetroParams, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$i as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLiteModel, ClientRoles, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CommonMeterParams, CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$l as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$h as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$7 as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractStatuses, CopyButton, CountriesStore, _default$k as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DeepPartial, DetailObjectInfoInterface, _default$b as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$4 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, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$e as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$d as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FormBottom, FormBottomProps, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$5 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, 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, InputWithMap, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionTypeValues, InspectionTypes, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$8 as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$g as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, MeterFeaturesForm, MeterFeaturesFormFields, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersResponse, MetersResponseBody, _default$3 as MetroAutocomplete, _default$2 as MetroBlock, _default$1 as MetroBlockForModal, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$f as ModalWithMap, _default$6 as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$j as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractModel, RentalInspectionParams, RentalStatuses, RentalTypes, _default$c as ReplaceableCountersBlock, ResidentialComplexModel, ResidentialComplexParams, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$9 as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$a as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, WallMaterials, WallMaterialsValues, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneSchema, phoneWithConditionSchema, positiveNumberSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadNewFile, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|