kui-crm 0.0.555 → 0.0.557
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 +190 -188
- package/package.json +1 -1
- package/types/index.d.ts +135 -133
- package/utils/index.d.ts +1 -0
package/index.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles
|
|
190
|
-
declare type UnitOfPaymentTypes
|
|
191
|
-
declare type WaterMeterTypes
|
|
192
|
-
declare type ElectricityMeterTypes
|
|
193
|
-
declare type ResourceTypes
|
|
194
|
-
declare type MeterTypes
|
|
195
|
-
declare type UtilityTypes
|
|
189
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants
|
|
203
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel
|
|
242
|
+
main_image: ImageModel | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel
|
|
252
|
+
main_image: ImageModel | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles
|
|
267
|
-
refund_from: ResourcePaymentRoles
|
|
265
|
+
utility_type: UtilityTypes;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
+
refund_from: ResourcePaymentRoles;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes
|
|
269
|
+
value_type?: UnitOfPaymentTypes;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest
|
|
271
|
+
declare type FileBodyRequest = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest
|
|
277
|
+
declare type ImageBodyRequest = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest
|
|
282
|
+
declare type VideoBodyRequest = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel
|
|
291
|
+
declare type ImageModel = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel$1 = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel
|
|
300
|
+
declare type FileModel = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel
|
|
306
|
+
declare type DocumentModel = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -401,7 +401,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
401
401
|
provider_type: string;
|
|
402
402
|
};
|
|
403
403
|
declare type DataTransferFormats = "online" | "offline";
|
|
404
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes
|
|
404
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
405
405
|
declare type ApartmentResourceModel = {
|
|
406
406
|
id: number;
|
|
407
407
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -410,7 +410,7 @@ declare type ApartmentResourceModel = {
|
|
|
410
410
|
payer_code?: string;
|
|
411
411
|
meter_readings_day_from?: number;
|
|
412
412
|
meter_readings_day_to?: number;
|
|
413
|
-
receipt_example?: DocumentModel
|
|
413
|
+
receipt_example?: DocumentModel;
|
|
414
414
|
provider_auth_login?: string;
|
|
415
415
|
provider_auth_password?: string;
|
|
416
416
|
provider_url?: string;
|
|
@@ -431,8 +431,8 @@ declare type InspectionFillingParams = {
|
|
|
431
431
|
description?: string;
|
|
432
432
|
serial_code?: string;
|
|
433
433
|
amount?: number | string | null;
|
|
434
|
-
photos: ImageBodyRequest
|
|
435
|
-
instruction?: FileBodyRequest
|
|
434
|
+
photos: ImageBodyRequest[];
|
|
435
|
+
instruction?: FileBodyRequest | null;
|
|
436
436
|
was_missing?: boolean;
|
|
437
437
|
};
|
|
438
438
|
declare type InspectionMeterValueModel = {
|
|
@@ -463,7 +463,7 @@ declare type InspectionRoomPhotoModel = {
|
|
|
463
463
|
uploaded: boolean;
|
|
464
464
|
purpose: InspectionRoomPhotoTypes;
|
|
465
465
|
comment?: string;
|
|
466
|
-
photos: ImageModel
|
|
466
|
+
photos: ImageModel[];
|
|
467
467
|
videos: VideoModel[];
|
|
468
468
|
room_order_number?: number | null;
|
|
469
469
|
};
|
|
@@ -481,6 +481,7 @@ declare type InspectionCommonFields = {
|
|
|
481
481
|
address: string;
|
|
482
482
|
inspection_type: InspectionTypes;
|
|
483
483
|
rental_contract: InspectionContractModel;
|
|
484
|
+
service_contract_id: number;
|
|
484
485
|
based_on?: InspectionBasedOnModel | null;
|
|
485
486
|
photo_groups: InspectionRoomPhotoModel[];
|
|
486
487
|
impairments_faq?: string;
|
|
@@ -500,11 +501,11 @@ declare type FullInspectionCommonFields = {
|
|
|
500
501
|
filling: InspectionFillingModel[];
|
|
501
502
|
} & ApartmentModel;
|
|
502
503
|
declare type InspectionMeterCommonInfo = {
|
|
503
|
-
resource_type: ResourceTypes
|
|
504
|
-
passport: FileModel
|
|
505
|
-
meter_type: MeterTypes
|
|
504
|
+
resource_type: ResourceTypes;
|
|
505
|
+
passport: FileModel | null;
|
|
506
|
+
meter_type: MeterTypes;
|
|
506
507
|
operating_account: string;
|
|
507
|
-
photos: ImageModel
|
|
508
|
+
photos: ImageModel[];
|
|
508
509
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
509
510
|
declare type TransferInspectionMeterModel = {
|
|
510
511
|
values: InspectionMeterValueModel;
|
|
@@ -520,7 +521,7 @@ declare type RegularInspectionFields = {
|
|
|
520
521
|
declare type ComparableObjectModel = {
|
|
521
522
|
id: number;
|
|
522
523
|
advertisement_link: string;
|
|
523
|
-
advertisement_screenshot: ImageModel
|
|
524
|
+
advertisement_screenshot: ImageModel | null;
|
|
524
525
|
object_price: string;
|
|
525
526
|
key_object_differences: string;
|
|
526
527
|
};
|
|
@@ -528,7 +529,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
528
529
|
id: number;
|
|
529
530
|
source_name: string;
|
|
530
531
|
link: string;
|
|
531
|
-
screenshot: ImageModel
|
|
532
|
+
screenshot: ImageModel | null;
|
|
532
533
|
min_price: string;
|
|
533
534
|
max_price: string;
|
|
534
535
|
};
|
|
@@ -571,11 +572,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
571
572
|
declare type ImpairmentModel = {
|
|
572
573
|
id: number;
|
|
573
574
|
impairment_type: ImpairmentType;
|
|
574
|
-
proof_file: DocumentModel
|
|
575
|
+
proof_file: DocumentModel | null;
|
|
575
576
|
price: number;
|
|
576
577
|
solution: string;
|
|
577
578
|
description: string;
|
|
578
|
-
photos: ImageModel
|
|
579
|
+
photos: ImageModel[];
|
|
579
580
|
item_link: string;
|
|
580
581
|
};
|
|
581
582
|
declare type MetroStationsFields = {
|
|
@@ -585,7 +586,7 @@ declare type InitialInspectionModelFields = {
|
|
|
585
586
|
used_resources: UsedResourcesModel;
|
|
586
587
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
587
588
|
declare type AppraisalRequestModelFields = {
|
|
588
|
-
floor_plan: DocumentModel
|
|
589
|
+
floor_plan: DocumentModel | null;
|
|
589
590
|
};
|
|
590
591
|
declare type InspectionModel = {
|
|
591
592
|
initial?: InitialInspectionModelFields;
|
|
@@ -662,10 +663,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
662
663
|
};
|
|
663
664
|
declare type PatchInspectionImageParams = {
|
|
664
665
|
id?: number;
|
|
665
|
-
} & Partial<ImageBodyRequest
|
|
666
|
+
} & Partial<ImageBodyRequest>;
|
|
666
667
|
declare type PatchInspectionVideoParams = {
|
|
667
668
|
id?: number;
|
|
668
|
-
} & Partial<VideoBodyRequest
|
|
669
|
+
} & Partial<VideoBodyRequest>;
|
|
669
670
|
declare type PatchRoomImagesParams = {
|
|
670
671
|
type: InspectionRoomPhotoTypes;
|
|
671
672
|
comment?: string;
|
|
@@ -705,8 +706,8 @@ declare type InspectionFillingModel = {
|
|
|
705
706
|
description: string;
|
|
706
707
|
serial_code: string;
|
|
707
708
|
amount: number;
|
|
708
|
-
photos: ImageModel
|
|
709
|
-
instruction: DocumentModel
|
|
709
|
+
photos: ImageModel[];
|
|
710
|
+
instruction: DocumentModel;
|
|
710
711
|
is_absent: boolean;
|
|
711
712
|
previously_absent: boolean;
|
|
712
713
|
model: string;
|
|
@@ -788,7 +789,7 @@ declare type CommonMeterParams = {
|
|
|
788
789
|
company: CompanyLiteParams;
|
|
789
790
|
operating_account_number?: string | null;
|
|
790
791
|
company_is_administrative: boolean;
|
|
791
|
-
photos?: ImageModel
|
|
792
|
+
photos?: ImageModel[];
|
|
792
793
|
auto_sending: boolean;
|
|
793
794
|
no_tariff: boolean;
|
|
794
795
|
is_avg: boolean;
|
|
@@ -800,15 +801,15 @@ declare type ElectricityMeterValues = {
|
|
|
800
801
|
T3?: MeterTariffModel;
|
|
801
802
|
};
|
|
802
803
|
declare type WaterMeterParams = {
|
|
803
|
-
type: WaterMeterTypes
|
|
804
|
+
type: WaterMeterTypes;
|
|
804
805
|
tariff: SingleCounterTariffModel;
|
|
805
806
|
} & CommonMeterParams & MeterTariffModel;
|
|
806
807
|
declare type SingleMeterParams = {
|
|
807
|
-
type?: WaterMeterTypes
|
|
808
|
+
type?: WaterMeterTypes;
|
|
808
809
|
tariff: SingleCounterTariffModel;
|
|
809
810
|
} & CommonMeterParams & MeterTariffModel;
|
|
810
811
|
declare type ElectricityMeterParams = {
|
|
811
|
-
type: ElectricityMeterTypes
|
|
812
|
+
type: ElectricityMeterTypes;
|
|
812
813
|
values: ElectricityMeterValues;
|
|
813
814
|
tariff: ElectricityMeterTariffModel;
|
|
814
815
|
overall_value?: number;
|
|
@@ -920,6 +921,7 @@ declare type ServiceContractModel = {
|
|
|
920
921
|
id: number;
|
|
921
922
|
apartment: ApartmentLinkModel;
|
|
922
923
|
owner: LiteUserModel;
|
|
924
|
+
representatives: LiteUserModel[];
|
|
923
925
|
beneficiary: LiteUserModel;
|
|
924
926
|
signer: LiteUserModel;
|
|
925
927
|
renter: LiteUserModel;
|
|
@@ -1037,7 +1039,7 @@ declare type CountryParams = {
|
|
|
1037
1039
|
code: string;
|
|
1038
1040
|
} & CatalogItemParams;
|
|
1039
1041
|
|
|
1040
|
-
type FileWithVisibility
|
|
1042
|
+
type FileWithVisibility = {
|
|
1041
1043
|
file: File | null
|
|
1042
1044
|
tenant: boolean
|
|
1043
1045
|
landlord: boolean
|
|
@@ -1045,8 +1047,8 @@ type FileWithVisibility$1 = {
|
|
|
1045
1047
|
url: string
|
|
1046
1048
|
}
|
|
1047
1049
|
|
|
1048
|
-
type InputFileWithVisibilityFields
|
|
1049
|
-
| FileWithVisibility
|
|
1050
|
+
type InputFileWithVisibilityFields =
|
|
1051
|
+
| FileWithVisibility
|
|
1050
1052
|
| DocumentWithVisibility
|
|
1051
1053
|
| null
|
|
1052
1054
|
| undefined
|
|
@@ -1076,7 +1078,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1076
1078
|
}
|
|
1077
1079
|
|
|
1078
1080
|
type ChangeReasonFormFields = {
|
|
1079
|
-
reason: InputFileWithVisibilityFields
|
|
1081
|
+
reason: InputFileWithVisibilityFields
|
|
1080
1082
|
comment?: string
|
|
1081
1083
|
}
|
|
1082
1084
|
|
|
@@ -1091,13 +1093,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1091
1093
|
settings?: any
|
|
1092
1094
|
} & InputWithControllerProps<TFormValues>
|
|
1093
1095
|
|
|
1094
|
-
type CompanyAutocompleteFields
|
|
1096
|
+
type CompanyAutocompleteFields = {
|
|
1095
1097
|
id: number
|
|
1096
1098
|
name: string
|
|
1097
1099
|
logo?: string | null
|
|
1098
1100
|
}
|
|
1099
1101
|
|
|
1100
|
-
declare class FileStore
|
|
1102
|
+
declare class FileStore implements FileStoreInterface {
|
|
1101
1103
|
id: number | null;
|
|
1102
1104
|
index?: number | null;
|
|
1103
1105
|
name: string;
|
|
@@ -1128,12 +1130,12 @@ declare class FileStore$1 implements FileStoreInterface {
|
|
|
1128
1130
|
setIndex: (index: number) => void;
|
|
1129
1131
|
get title(): string;
|
|
1130
1132
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1131
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1132
|
-
static initFromFileModel: (file: FileModel
|
|
1133
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1134
|
-
static initFromImageModel: (file: ImageModel
|
|
1135
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1136
|
-
static initFromFileStore: (file: FileStore
|
|
1133
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1134
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1135
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1136
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1137
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1138
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1137
1139
|
}
|
|
1138
1140
|
|
|
1139
1141
|
declare type ImageParams = {
|
|
@@ -1168,7 +1170,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1168
1170
|
delete: () => Promise<void>;
|
|
1169
1171
|
get extension(): string;
|
|
1170
1172
|
get title(): string;
|
|
1171
|
-
static initFromImageModel: (image: ImageModel
|
|
1173
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1172
1174
|
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1173
1175
|
}
|
|
1174
1176
|
|
|
@@ -1294,7 +1296,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1294
1296
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1295
1297
|
payerCode?: string;
|
|
1296
1298
|
communalServicesAccount?: string;
|
|
1297
|
-
company?: CompanyAutocompleteFields
|
|
1299
|
+
company?: CompanyAutocompleteFields | null;
|
|
1298
1300
|
} & ChangeReasonFormFields;
|
|
1299
1301
|
declare type ApartmentOverviewInfoFields = {
|
|
1300
1302
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1317,14 +1319,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1317
1319
|
} & ApartmentPaymentInfoParams;
|
|
1318
1320
|
declare type InspectionMeterInfoParams = {
|
|
1319
1321
|
id: number;
|
|
1320
|
-
resource: ResourceTypes
|
|
1321
|
-
type?: MeterTypes
|
|
1322
|
+
resource: ResourceTypes;
|
|
1323
|
+
type?: MeterTypes;
|
|
1322
1324
|
number: string;
|
|
1323
1325
|
startDate: DateTime | null;
|
|
1324
1326
|
company: CompanyLiteParams;
|
|
1325
1327
|
operationalAccountNumber?: string | null;
|
|
1326
1328
|
tariff: EntityLinkParams | null;
|
|
1327
|
-
passportFile: FileStore
|
|
1329
|
+
passportFile: FileStore | null;
|
|
1328
1330
|
initialValue?: number;
|
|
1329
1331
|
lastValue?: number;
|
|
1330
1332
|
initialValueT1?: number;
|
|
@@ -1346,8 +1348,8 @@ declare type ValuesParams = {
|
|
|
1346
1348
|
};
|
|
1347
1349
|
declare type PartialMeterInfoParams = {
|
|
1348
1350
|
id: number;
|
|
1349
|
-
type: MeterTypes
|
|
1350
|
-
resource: ResourceTypes
|
|
1351
|
+
type: MeterTypes;
|
|
1352
|
+
resource: ResourceTypes;
|
|
1351
1353
|
number: string;
|
|
1352
1354
|
values: ValuesParams;
|
|
1353
1355
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1359,7 +1361,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1359
1361
|
declare type ComparableObjectParams = {
|
|
1360
1362
|
id: number;
|
|
1361
1363
|
link: string;
|
|
1362
|
-
screenshot: FileStore
|
|
1364
|
+
screenshot: FileStore | null;
|
|
1363
1365
|
price: number;
|
|
1364
1366
|
differences: string;
|
|
1365
1367
|
};
|
|
@@ -1367,7 +1369,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1367
1369
|
id: number;
|
|
1368
1370
|
dataSourceName: string;
|
|
1369
1371
|
link: string;
|
|
1370
|
-
screenshot: FileStore
|
|
1372
|
+
screenshot: FileStore | null;
|
|
1371
1373
|
minPrice: number;
|
|
1372
1374
|
maxPrice: number;
|
|
1373
1375
|
};
|
|
@@ -1392,8 +1394,8 @@ declare type FillingInfoFormFields = {
|
|
|
1392
1394
|
name?: string;
|
|
1393
1395
|
description?: string;
|
|
1394
1396
|
type?: ApartmentFillingVariants | null;
|
|
1395
|
-
instruction?: InputFileWithVisibilityFields
|
|
1396
|
-
tempImages?: ImageBodyRequest
|
|
1397
|
+
instruction?: InputFileWithVisibilityFields;
|
|
1398
|
+
tempImages?: ImageBodyRequest[];
|
|
1397
1399
|
};
|
|
1398
1400
|
|
|
1399
1401
|
declare type FillingTagParams = {
|
|
@@ -1408,7 +1410,7 @@ declare type FillingParams = {
|
|
|
1408
1410
|
images?: (ImageStore | UploadFileParams)[];
|
|
1409
1411
|
serialNumber?: string;
|
|
1410
1412
|
numberOfSubjects?: number | string | null;
|
|
1411
|
-
instruction?: InputFileWithVisibilityFields
|
|
1413
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1412
1414
|
type?: ApartmentFillingVariants;
|
|
1413
1415
|
loader?: Loader;
|
|
1414
1416
|
};
|
|
@@ -1420,7 +1422,7 @@ declare type FillingFullParams = {
|
|
|
1420
1422
|
images?: (ImageStore | UploadFileParams)[];
|
|
1421
1423
|
serialNumber?: string;
|
|
1422
1424
|
numberOfSubjects?: number | string | null;
|
|
1423
|
-
instruction?: InputFileWithVisibilityFields
|
|
1425
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1424
1426
|
type?: ApartmentFillingVariants;
|
|
1425
1427
|
loader?: Loader;
|
|
1426
1428
|
check?: boolean | null;
|
|
@@ -1439,31 +1441,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1439
1441
|
name: string;
|
|
1440
1442
|
};
|
|
1441
1443
|
|
|
1442
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1443
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1444
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
1445
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1446
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1447
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1448
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1449
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1450
|
-
declare type FileBodyRequest = {
|
|
1444
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1445
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
1446
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
1447
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
1448
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
1449
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
1450
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
1451
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1452
|
+
declare type FileBodyRequest$1 = {
|
|
1451
1453
|
temp_file_id?: number;
|
|
1452
1454
|
name: string;
|
|
1453
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1455
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1454
1456
|
url?: string;
|
|
1455
1457
|
};
|
|
1456
|
-
declare type ImageBodyRequest = {
|
|
1458
|
+
declare type ImageBodyRequest$1 = {
|
|
1457
1459
|
temp_file_id: number;
|
|
1458
1460
|
image_name: string;
|
|
1459
1461
|
url: string;
|
|
1460
1462
|
};
|
|
1461
|
-
declare type VideoBodyRequest = {
|
|
1463
|
+
declare type VideoBodyRequest$1 = {
|
|
1462
1464
|
temp_file_id: number;
|
|
1463
1465
|
file_name: string;
|
|
1464
1466
|
url: string;
|
|
1465
1467
|
};
|
|
1466
|
-
declare type ImageModel = {
|
|
1468
|
+
declare type ImageModel$1 = {
|
|
1467
1469
|
id: number;
|
|
1468
1470
|
image_name?: string;
|
|
1469
1471
|
image_url?: string;
|
|
@@ -1472,23 +1474,23 @@ declare type ImageModel = {
|
|
|
1472
1474
|
image_large_url: string;
|
|
1473
1475
|
size: number;
|
|
1474
1476
|
};
|
|
1475
|
-
declare type FileModel = {
|
|
1477
|
+
declare type FileModel$1 = {
|
|
1476
1478
|
id: number;
|
|
1477
1479
|
name: string;
|
|
1478
1480
|
size: number;
|
|
1479
1481
|
url: string;
|
|
1480
1482
|
};
|
|
1481
|
-
declare type DocumentModel = {
|
|
1483
|
+
declare type DocumentModel$1 = {
|
|
1482
1484
|
pk: number;
|
|
1483
1485
|
name: string;
|
|
1484
1486
|
created?: string;
|
|
1485
1487
|
attachment: string;
|
|
1486
1488
|
size: number;
|
|
1487
1489
|
uploaded_by?: string | null;
|
|
1488
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1490
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1489
1491
|
};
|
|
1490
1492
|
|
|
1491
|
-
type FileWithVisibility = {
|
|
1493
|
+
type FileWithVisibility$1 = {
|
|
1492
1494
|
file: File | null
|
|
1493
1495
|
tenant: boolean
|
|
1494
1496
|
landlord: boolean
|
|
@@ -1496,19 +1498,19 @@ type FileWithVisibility = {
|
|
|
1496
1498
|
url: string
|
|
1497
1499
|
}
|
|
1498
1500
|
|
|
1499
|
-
type InputFileWithVisibilityFields =
|
|
1500
|
-
| FileWithVisibility
|
|
1501
|
+
type InputFileWithVisibilityFields$1 =
|
|
1502
|
+
| FileWithVisibility$1
|
|
1501
1503
|
| DocumentWithVisibility$1
|
|
1502
1504
|
| null
|
|
1503
1505
|
| undefined
|
|
1504
1506
|
|
|
1505
|
-
type CompanyAutocompleteFields = {
|
|
1507
|
+
type CompanyAutocompleteFields$1 = {
|
|
1506
1508
|
id: number
|
|
1507
1509
|
name: string
|
|
1508
1510
|
logo?: string | null
|
|
1509
1511
|
}
|
|
1510
1512
|
|
|
1511
|
-
declare class FileStore implements FileStoreInterface$1 {
|
|
1513
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1512
1514
|
id: number | null;
|
|
1513
1515
|
index?: number | null;
|
|
1514
1516
|
name: string;
|
|
@@ -1539,21 +1541,21 @@ declare class FileStore implements FileStoreInterface$1 {
|
|
|
1539
1541
|
setIndex: (index: number) => void;
|
|
1540
1542
|
get title(): string;
|
|
1541
1543
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1542
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1543
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1544
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1545
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1546
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1547
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1544
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1545
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1546
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1547
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1548
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1549
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1548
1550
|
}
|
|
1549
1551
|
|
|
1550
1552
|
type PartialPayerFields$1 = {
|
|
1551
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1552
|
-
mainPayer?: ResourcePaymentRoles
|
|
1553
|
-
refundFrom?: ResourcePaymentRoles
|
|
1554
|
-
partType?: UnitOfPaymentTypes | null
|
|
1553
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1554
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1555
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1556
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1555
1557
|
refundValue?: number | string | null
|
|
1556
|
-
utilityType: UtilityTypes
|
|
1558
|
+
utilityType: UtilityTypes$1
|
|
1557
1559
|
}
|
|
1558
1560
|
|
|
1559
1561
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1585,13 +1587,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1585
1587
|
visibility?: DocumentVisibilityVariants$1;
|
|
1586
1588
|
extension: string;
|
|
1587
1589
|
};
|
|
1588
|
-
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1590
|
+
declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1589
1591
|
declare type FileStoreParams$1 = {
|
|
1590
1592
|
id?: number | null;
|
|
1591
1593
|
url?: string;
|
|
1592
1594
|
index?: number | string | null;
|
|
1593
1595
|
createdBy?: string | null;
|
|
1594
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1596
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1595
1597
|
name?: string;
|
|
1596
1598
|
date?: string | null;
|
|
1597
1599
|
size?: number | null;
|
|
@@ -1619,14 +1621,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1619
1621
|
initialValueT1?: number
|
|
1620
1622
|
initialValueT2?: number
|
|
1621
1623
|
initialValueT3?: number
|
|
1622
|
-
type?: MeterTypes
|
|
1623
|
-
resource?: ResourceTypes
|
|
1624
|
+
type?: MeterTypes$1
|
|
1625
|
+
resource?: ResourceTypes$1
|
|
1624
1626
|
withAutoSending?: boolean
|
|
1625
1627
|
}
|
|
1626
1628
|
|
|
1627
1629
|
type MeterFeaturesFormFields$1 = {
|
|
1628
1630
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1629
|
-
company: CompanyAutocompleteFields | null
|
|
1631
|
+
company: CompanyAutocompleteFields$1 | null
|
|
1630
1632
|
nextCheck: DateTime | null
|
|
1631
1633
|
lastValue?: number
|
|
1632
1634
|
lastValueT1?: number
|
|
@@ -1650,9 +1652,9 @@ declare type ApartmentMeterValues = {
|
|
|
1650
1652
|
} & MeterValues;
|
|
1651
1653
|
declare type InspectionMeterFields = {
|
|
1652
1654
|
id?: number;
|
|
1653
|
-
resource: ResourceTypes;
|
|
1654
|
-
passportFile?: InputFileWithVisibilityFields;
|
|
1655
|
-
images: FileStore[];
|
|
1655
|
+
resource: ResourceTypes$1;
|
|
1656
|
+
passportFile?: InputFileWithVisibilityFields$1;
|
|
1657
|
+
images: FileStore$1[];
|
|
1656
1658
|
} & MeterFeaturesFormFields$1;
|
|
1657
1659
|
|
|
1658
1660
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1667,7 +1669,7 @@ type PartialPayerProps<T> = {
|
|
|
1667
1669
|
title: string
|
|
1668
1670
|
name: string
|
|
1669
1671
|
form: UseFormReturn<T>
|
|
1670
|
-
utilityType: UtilityTypes
|
|
1672
|
+
utilityType: UtilityTypes
|
|
1671
1673
|
fieldsVariant?: PartialPayerVariants
|
|
1672
1674
|
settings?: ObjectType
|
|
1673
1675
|
disabled?: boolean
|
|
@@ -1675,12 +1677,12 @@ type PartialPayerProps<T> = {
|
|
|
1675
1677
|
}
|
|
1676
1678
|
|
|
1677
1679
|
type PartialPayerFields = {
|
|
1678
|
-
payer?: ResourcePaymentRoles
|
|
1679
|
-
mainPayer?: ResourcePaymentRoles
|
|
1680
|
-
refundFrom?: ResourcePaymentRoles
|
|
1681
|
-
partType?: UnitOfPaymentTypes
|
|
1680
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1681
|
+
mainPayer?: ResourcePaymentRoles
|
|
1682
|
+
refundFrom?: ResourcePaymentRoles
|
|
1683
|
+
partType?: UnitOfPaymentTypes | null
|
|
1682
1684
|
refundValue?: number | string | null
|
|
1683
|
-
utilityType: UtilityTypes
|
|
1685
|
+
utilityType: UtilityTypes
|
|
1684
1686
|
}
|
|
1685
1687
|
|
|
1686
1688
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1764,15 +1766,15 @@ declare type ResourceAccessParams = {
|
|
|
1764
1766
|
password?: string;
|
|
1765
1767
|
description?: string;
|
|
1766
1768
|
};
|
|
1767
|
-
declare type ApartmentResourceTypes = ResourceTypes
|
|
1769
|
+
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1768
1770
|
declare type ApartmentResourceCompanyDetails = {
|
|
1769
|
-
company: CompanyAutocompleteFields
|
|
1771
|
+
company: CompanyAutocompleteFields | null;
|
|
1770
1772
|
operationalAccountNumber: string;
|
|
1771
1773
|
payerCode: string;
|
|
1772
1774
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1773
1775
|
access: ResourceAccessParams;
|
|
1774
1776
|
sampleReceiptLink: string;
|
|
1775
|
-
sampleReceipt?: InputFileWithVisibilityFields
|
|
1777
|
+
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1776
1778
|
};
|
|
1777
1779
|
declare type ApartmentResourceInterface = {
|
|
1778
1780
|
type: ApartmentResourceTypes;
|
|
@@ -1809,15 +1811,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1809
1811
|
loader: Loader;
|
|
1810
1812
|
};
|
|
1811
1813
|
declare type PostDocumentsResponse = {
|
|
1812
|
-
documents: DocumentModel
|
|
1814
|
+
documents: DocumentModel[];
|
|
1813
1815
|
};
|
|
1814
1816
|
declare type DocumentAgentInterface = {
|
|
1815
1817
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1816
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1817
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1818
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1819
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1818
1820
|
};
|
|
1819
1821
|
declare type DocumentsAgentInterface = {
|
|
1820
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1822
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1821
1823
|
} & DocumentAgentInterface;
|
|
1822
1824
|
|
|
1823
1825
|
declare type MetroLineParams = {
|
|
@@ -1888,7 +1890,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1888
1890
|
};
|
|
1889
1891
|
declare type ApartmentDocumentModel = {
|
|
1890
1892
|
id: number;
|
|
1891
|
-
document: DocumentModel
|
|
1893
|
+
document: DocumentModel;
|
|
1892
1894
|
expiration_date: string;
|
|
1893
1895
|
start_date: string;
|
|
1894
1896
|
number: string;
|
|
@@ -1900,7 +1902,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1900
1902
|
tariff?: TariffLinkModel;
|
|
1901
1903
|
activation_date?: string;
|
|
1902
1904
|
check_date?: string;
|
|
1903
|
-
type?: ElectricityMeterTypes
|
|
1905
|
+
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1904
1906
|
apartment: ApartmentLinkModel;
|
|
1905
1907
|
company: CompanyLiteParams;
|
|
1906
1908
|
operating_account_number?: string | null;
|
|
@@ -2021,7 +2023,7 @@ declare type ApartmentModel = {
|
|
|
2021
2023
|
owner_id: number;
|
|
2022
2024
|
metro_stations: ApartmentMetroParams[];
|
|
2023
2025
|
rental_status: RentalStatuses;
|
|
2024
|
-
main_image: ImageModel
|
|
2026
|
+
main_image: ImageModel;
|
|
2025
2027
|
tv_type: TVTypes | null;
|
|
2026
2028
|
inspection: ApartmentInspectionModel;
|
|
2027
2029
|
distance_to_center_kilometers: number | null;
|
|
@@ -2048,7 +2050,7 @@ declare type ApartmentLiteModel = {
|
|
|
2048
2050
|
renter: LiteUserModel | null;
|
|
2049
2051
|
rental_status: RentalStatuses;
|
|
2050
2052
|
renter_payment_status: RentalPaymentStatuses;
|
|
2051
|
-
main_image: ImageModel
|
|
2053
|
+
main_image: ImageModel;
|
|
2052
2054
|
service_contract?: ServiceContractLiteModel;
|
|
2053
2055
|
is_imported_from_old_crm?: boolean;
|
|
2054
2056
|
max_electricity_counters?: number | null;
|
|
@@ -2094,7 +2096,7 @@ declare type ObjectForMapModel = {
|
|
|
2094
2096
|
apartment_number: string;
|
|
2095
2097
|
address: string;
|
|
2096
2098
|
geolocation: LatLonParams;
|
|
2097
|
-
main_image: ImageModel
|
|
2099
|
+
main_image: ImageModel;
|
|
2098
2100
|
renter: ClientLiteModel | null;
|
|
2099
2101
|
owner: ClientLiteModel;
|
|
2100
2102
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2126,13 +2128,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2126
2128
|
agent: DocumentAgentInterface;
|
|
2127
2129
|
loader: Loader;
|
|
2128
2130
|
settings?: any;
|
|
2129
|
-
constructor(document: DocumentModel
|
|
2131
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2130
2132
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2131
|
-
updateDocument: (res: DocumentModel
|
|
2133
|
+
updateDocument: (res: DocumentModel) => void;
|
|
2132
2134
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2133
2135
|
get extension(): string;
|
|
2134
2136
|
get title(): string;
|
|
2135
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
2137
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2136
2138
|
}
|
|
2137
2139
|
|
|
2138
2140
|
type InputTypes =
|
|
@@ -2192,13 +2194,13 @@ declare type FileParams = {
|
|
|
2192
2194
|
size?: number | null;
|
|
2193
2195
|
file: File;
|
|
2194
2196
|
};
|
|
2195
|
-
declare type UploadedFileParams = FileBodyRequest
|
|
2197
|
+
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2196
2198
|
declare type FileStoreParams = {
|
|
2197
2199
|
id?: number | null;
|
|
2198
2200
|
url?: string;
|
|
2199
2201
|
index?: number | string | null;
|
|
2200
2202
|
createdBy?: string | null;
|
|
2201
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
2203
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
2202
2204
|
name?: string;
|
|
2203
2205
|
date?: string | null;
|
|
2204
2206
|
size?: number | null;
|
|
@@ -2349,8 +2351,8 @@ declare const FillingTagsAgent: {
|
|
|
2349
2351
|
};
|
|
2350
2352
|
|
|
2351
2353
|
declare const TariffsAgent: {
|
|
2352
|
-
all: (tariff: ResourceTypes
|
|
2353
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes
|
|
2354
|
+
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2355
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2354
2356
|
};
|
|
2355
2357
|
|
|
2356
2358
|
type SignInFormFields = {
|
|
@@ -2369,8 +2371,8 @@ declare const ApartmentsAgent: {
|
|
|
2369
2371
|
};
|
|
2370
2372
|
|
|
2371
2373
|
declare const ApartmentMetersAgent: {
|
|
2372
|
-
getMeters: (apartmentId: number, resource: ResourceTypes
|
|
2373
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes
|
|
2374
|
+
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2375
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2374
2376
|
};
|
|
2375
2377
|
|
|
2376
2378
|
declare const requests: {
|
|
@@ -2394,7 +2396,7 @@ declare const meterUnitLabel: {
|
|
|
2394
2396
|
electricity: string;
|
|
2395
2397
|
};
|
|
2396
2398
|
|
|
2397
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields
|
|
2399
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2398
2400
|
|
|
2399
2401
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2400
2402
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2410,34 +2412,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2410
2412
|
}, "">;
|
|
2411
2413
|
|
|
2412
2414
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2413
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields
|
|
2415
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2414
2416
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2415
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility
|
|
2417
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2416
2418
|
temp_file_id: number;
|
|
2417
2419
|
name: string;
|
|
2418
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2420
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2419
2421
|
url: string;
|
|
2420
2422
|
} | null;
|
|
2421
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest
|
|
2422
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest
|
|
2423
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields
|
|
2423
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2424
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2425
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2424
2426
|
name: string;
|
|
2425
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2427
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2426
2428
|
} | null;
|
|
2427
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields
|
|
2429
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2428
2430
|
name: string;
|
|
2429
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2431
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2430
2432
|
} | null>;
|
|
2431
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore
|
|
2432
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore
|
|
2433
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
2434
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest
|
|
2435
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility
|
|
2436
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields
|
|
2437
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2438
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2439
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest
|
|
2440
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest
|
|
2433
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2434
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2435
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2436
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2437
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2438
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2439
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2440
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2441
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2442
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2441
2443
|
|
|
2442
2444
|
declare const matchesAPISubjectRoles: {
|
|
2443
2445
|
maroom: string;
|
|
@@ -2530,16 +2532,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2530
2532
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2531
2533
|
|
|
2532
2534
|
declare class FilesStore {
|
|
2533
|
-
files: FileStore
|
|
2535
|
+
files: FileStore[];
|
|
2534
2536
|
variant: FileVariant;
|
|
2535
2537
|
constructor(variant: FileVariant);
|
|
2536
|
-
addFile: (newFile: FileStore
|
|
2538
|
+
addFile: (newFile: FileStore) => void;
|
|
2537
2539
|
removeFile: (index: number) => void;
|
|
2538
|
-
setFiles: (files: FileStore
|
|
2540
|
+
setFiles: (files: FileStore[]) => void;
|
|
2539
2541
|
uploadFiles: () => Promise<void>;
|
|
2540
|
-
get uploadedData(): (FileBodyRequest
|
|
2542
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2541
2543
|
get uploadedAllFiles(): boolean;
|
|
2542
|
-
get notUploadedFiles(): FileStore
|
|
2544
|
+
get notUploadedFiles(): FileStore[];
|
|
2543
2545
|
get isUploading(): boolean;
|
|
2544
2546
|
get videoLength(): number;
|
|
2545
2547
|
get nonVideoLength(): number;
|
|
@@ -2561,7 +2563,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2561
2563
|
messages?: UploadMediaMessages;
|
|
2562
2564
|
withoutFilesStore?: boolean;
|
|
2563
2565
|
};
|
|
2564
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore
|
|
2566
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2565
2567
|
|
|
2566
2568
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2567
2569
|
onSearchItem: (value: string) => void;
|
|
@@ -2733,11 +2735,11 @@ type DistrictAutocompleteFields = {
|
|
|
2733
2735
|
type ReplaceableTariffFields = {
|
|
2734
2736
|
name: string
|
|
2735
2737
|
id?: number
|
|
2736
|
-
type?: ResourceTypes
|
|
2738
|
+
type?: ResourceTypes
|
|
2737
2739
|
}
|
|
2738
2740
|
|
|
2739
2741
|
type TariffCommonFields = {
|
|
2740
|
-
resourceType: ResourceTypes
|
|
2742
|
+
resourceType: ResourceTypes
|
|
2741
2743
|
name: string
|
|
2742
2744
|
startDate: DateTime
|
|
2743
2745
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2749,7 +2751,7 @@ type TariffCommonFields = {
|
|
|
2749
2751
|
}
|
|
2750
2752
|
|
|
2751
2753
|
type ElectricityTariffCreationFormFields = {
|
|
2752
|
-
type: ElectricityMeterTypes
|
|
2754
|
+
type: ElectricityMeterTypes
|
|
2753
2755
|
isOverallConsumption: boolean
|
|
2754
2756
|
T1?: number
|
|
2755
2757
|
T2?: number
|
|
@@ -2770,7 +2772,7 @@ type TariffCreationFormProps = {
|
|
|
2770
2772
|
handleClose: () => void
|
|
2771
2773
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2772
2774
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2773
|
-
defaultResource: ResourceTypes
|
|
2775
|
+
defaultResource: ResourceTypes
|
|
2774
2776
|
settings?: any
|
|
2775
2777
|
}
|
|
2776
2778
|
|
|
@@ -2815,7 +2817,7 @@ declare class TariffsLiteStore {
|
|
|
2815
2817
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2816
2818
|
settings?: any;
|
|
2817
2819
|
constructor(settings?: any);
|
|
2818
|
-
fetchAll: (resource: ResourceTypes
|
|
2820
|
+
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2819
2821
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2820
2822
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2821
2823
|
id: number;
|
|
@@ -2823,7 +2825,7 @@ declare class TariffsLiteStore {
|
|
|
2823
2825
|
};
|
|
2824
2826
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2825
2827
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2826
|
-
type: ElectricityMeterTypes
|
|
2828
|
+
type: ElectricityMeterTypes;
|
|
2827
2829
|
T1: string | undefined;
|
|
2828
2830
|
T2: string | undefined;
|
|
2829
2831
|
T3: string | undefined;
|
|
@@ -3116,7 +3118,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3116
3118
|
name?: string
|
|
3117
3119
|
label?: string
|
|
3118
3120
|
hideName?: string
|
|
3119
|
-
resource: ResourceTypes
|
|
3121
|
+
resource: ResourceTypes
|
|
3120
3122
|
filter?: string
|
|
3121
3123
|
filterRequired?: boolean
|
|
3122
3124
|
settings?: any
|
|
@@ -3129,7 +3131,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3129
3131
|
}
|
|
3130
3132
|
|
|
3131
3133
|
type MeterFeaturesFieldsProps = {
|
|
3132
|
-
resource?: ResourceTypes
|
|
3134
|
+
resource?: ResourceTypes
|
|
3133
3135
|
replacements?: LiteMeterInterface[]
|
|
3134
3136
|
isNewResource?: boolean
|
|
3135
3137
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3143,7 +3145,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3143
3145
|
withNextCheck?: boolean
|
|
3144
3146
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3145
3147
|
handleMeterTypeChange?: (
|
|
3146
|
-
meterType: ElectricityMeterTypes
|
|
3148
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3147
3149
|
) => void
|
|
3148
3150
|
settings?: any
|
|
3149
3151
|
}
|
|
@@ -3155,14 +3157,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3155
3157
|
initialValueT1?: number
|
|
3156
3158
|
initialValueT2?: number
|
|
3157
3159
|
initialValueT3?: number
|
|
3158
|
-
type?: MeterTypes
|
|
3159
|
-
resource?: ResourceTypes
|
|
3160
|
+
type?: MeterTypes
|
|
3161
|
+
resource?: ResourceTypes
|
|
3160
3162
|
withAutoSending?: boolean
|
|
3161
3163
|
}
|
|
3162
3164
|
|
|
3163
3165
|
type MeterFeaturesFormFields = {
|
|
3164
3166
|
tariff: TariffGroupAutocompleteFields | null
|
|
3165
|
-
company: CompanyAutocompleteFields
|
|
3167
|
+
company: CompanyAutocompleteFields | null
|
|
3166
3168
|
nextCheck: DateTime | null
|
|
3167
3169
|
lastValue?: number
|
|
3168
3170
|
lastValueT1?: number
|
|
@@ -3176,8 +3178,8 @@ type MeterFeaturesFormFields = {
|
|
|
3176
3178
|
} & BasicMeterFeaturesFormFields
|
|
3177
3179
|
|
|
3178
3180
|
type BasicMeterFieldsSettings = {
|
|
3179
|
-
resource?: ResourceTypes
|
|
3180
|
-
meterType?: MeterTypes
|
|
3181
|
+
resource?: ResourceTypes
|
|
3182
|
+
meterType?: MeterTypes
|
|
3181
3183
|
}
|
|
3182
3184
|
|
|
3183
3185
|
type RenderMeterFieldsSettings = {
|
|
@@ -3207,10 +3209,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3207
3209
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3208
3210
|
|
|
3209
3211
|
type MeterTypeRadioGroupProps = {
|
|
3210
|
-
resource?: ResourceTypes
|
|
3212
|
+
resource?: ResourceTypes
|
|
3211
3213
|
form: UseFormReturn<any>
|
|
3212
3214
|
handleChange: (
|
|
3213
|
-
meterType: ElectricityMeterTypes
|
|
3215
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3214
3216
|
) => void
|
|
3215
3217
|
disabled?: boolean
|
|
3216
3218
|
waterOptions?: OptionParams[]
|
|
@@ -3222,7 +3224,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3222
3224
|
type MeterFeaturesFormProps = {
|
|
3223
3225
|
formStore?: MultistepForm$1<any>
|
|
3224
3226
|
handleMeterTypeChange?: (
|
|
3225
|
-
meterType: ElectricityMeterTypes
|
|
3227
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3226
3228
|
) => void
|
|
3227
3229
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3228
3230
|
|
|
@@ -3290,7 +3292,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3290
3292
|
startDate: undefined;
|
|
3291
3293
|
}, "">;
|
|
3292
3294
|
|
|
3293
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes
|
|
3295
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3294
3296
|
|
|
3295
3297
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3296
3298
|
|
|
@@ -3306,7 +3308,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3306
3308
|
|
|
3307
3309
|
type TariffReplacementFieldsProps = {
|
|
3308
3310
|
form: UseFormReturn<TariffCommonFields>
|
|
3309
|
-
resource: ResourceTypes
|
|
3311
|
+
resource: ResourceTypes
|
|
3310
3312
|
setReplaceable: (value: boolean) => void
|
|
3311
3313
|
settings?: any
|
|
3312
3314
|
}
|
|
@@ -3721,7 +3723,7 @@ type UploadPhotosButtonProps = {
|
|
|
3721
3723
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3722
3724
|
|
|
3723
3725
|
type UploadedImageProps = {
|
|
3724
|
-
image: FileStore
|
|
3726
|
+
image: FileStore
|
|
3725
3727
|
index: number
|
|
3726
3728
|
onClick: (index: number) => void
|
|
3727
3729
|
onDelete: (index: number) => void
|
|
@@ -3754,14 +3756,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3754
3756
|
};
|
|
3755
3757
|
declare type PartialMeterInfoFields = {
|
|
3756
3758
|
id: number;
|
|
3757
|
-
resource: ResourceTypes
|
|
3758
|
-
type?: MeterTypes
|
|
3759
|
+
resource: ResourceTypes;
|
|
3760
|
+
type?: MeterTypes;
|
|
3759
3761
|
number: string;
|
|
3760
|
-
images: FileStore
|
|
3762
|
+
images: FileStore[];
|
|
3761
3763
|
maxValue?: PartialMeterValuesFields;
|
|
3762
3764
|
values: PartialMeterValuesFields;
|
|
3763
3765
|
} & PartialMeterValuesFields;
|
|
3764
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes
|
|
3766
|
+
declare const getPartialMeterInfoFields: (resource: ResourceTypes, type?: MeterTypes | undefined, meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | null | undefined, settings?: any | null, required?: boolean | undefined) => InputParams<any>[];
|
|
3765
3767
|
|
|
3766
3768
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3767
3769
|
type: string | undefined;
|
|
@@ -3788,4 +3790,4 @@ type SignInPageProps = {
|
|
|
3788
3790
|
|
|
3789
3791
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3790
3792
|
|
|
3791
|
-
export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields$1 as CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes$1 as ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest$1 as FileBodyRequest, FileModel$1 as FileModel, FileParams, FileStore$1 as FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility$1 as FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest$1 as ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel$1 as ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields$1 as InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes$1 as WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
3793
|
+
export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|