kui-crm 0.0.557 → 0.0.558
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 +197 -189
- package/package.json +1 -1
- package/types/index.d.ts +142 -134
- package/utils/index.d.ts +9 -1
package/index.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
189
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
195
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
203
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel | null;
|
|
242
|
+
main_image: ImageModel$1 | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel | null;
|
|
252
|
+
main_image: ImageModel$1 | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes;
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
-
refund_from: ResourcePaymentRoles;
|
|
265
|
+
utility_type: UtilityTypes$1;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles$1;
|
|
267
|
+
refund_from: ResourcePaymentRoles$1;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes;
|
|
269
|
+
value_type?: UnitOfPaymentTypes$1;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest = {
|
|
271
|
+
declare type FileBodyRequest$1 = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest = {
|
|
277
|
+
declare type ImageBodyRequest$1 = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest = {
|
|
282
|
+
declare type VideoBodyRequest$1 = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel = {
|
|
291
|
+
declare type ImageModel$1 = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel = {
|
|
300
|
+
declare type FileModel$1 = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel = {
|
|
306
|
+
declare type DocumentModel$1 = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -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 | "other";
|
|
404
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "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$1;
|
|
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 | null;
|
|
434
|
+
photos: ImageBodyRequest$1[];
|
|
435
|
+
instruction?: FileBodyRequest$1 | 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$1[];
|
|
467
467
|
videos: VideoModel[];
|
|
468
468
|
room_order_number?: number | null;
|
|
469
469
|
};
|
|
@@ -501,11 +501,11 @@ declare type FullInspectionCommonFields = {
|
|
|
501
501
|
filling: InspectionFillingModel[];
|
|
502
502
|
} & ApartmentModel;
|
|
503
503
|
declare type InspectionMeterCommonInfo = {
|
|
504
|
-
resource_type: ResourceTypes;
|
|
505
|
-
passport: FileModel | null;
|
|
506
|
-
meter_type: MeterTypes;
|
|
504
|
+
resource_type: ResourceTypes$1;
|
|
505
|
+
passport: FileModel$1 | null;
|
|
506
|
+
meter_type: MeterTypes$1;
|
|
507
507
|
operating_account: string;
|
|
508
|
-
photos: ImageModel[];
|
|
508
|
+
photos: ImageModel$1[];
|
|
509
509
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
510
510
|
declare type TransferInspectionMeterModel = {
|
|
511
511
|
values: InspectionMeterValueModel;
|
|
@@ -521,7 +521,7 @@ declare type RegularInspectionFields = {
|
|
|
521
521
|
declare type ComparableObjectModel = {
|
|
522
522
|
id: number;
|
|
523
523
|
advertisement_link: string;
|
|
524
|
-
advertisement_screenshot: ImageModel | null;
|
|
524
|
+
advertisement_screenshot: ImageModel$1 | null;
|
|
525
525
|
object_price: string;
|
|
526
526
|
key_object_differences: string;
|
|
527
527
|
};
|
|
@@ -529,7 +529,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
529
529
|
id: number;
|
|
530
530
|
source_name: string;
|
|
531
531
|
link: string;
|
|
532
|
-
screenshot: ImageModel | null;
|
|
532
|
+
screenshot: ImageModel$1 | null;
|
|
533
533
|
min_price: string;
|
|
534
534
|
max_price: string;
|
|
535
535
|
};
|
|
@@ -572,11 +572,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
572
572
|
declare type ImpairmentModel = {
|
|
573
573
|
id: number;
|
|
574
574
|
impairment_type: ImpairmentType;
|
|
575
|
-
proof_file: DocumentModel | null;
|
|
575
|
+
proof_file: DocumentModel$1 | null;
|
|
576
576
|
price: number;
|
|
577
577
|
solution: string;
|
|
578
578
|
description: string;
|
|
579
|
-
photos: ImageModel[];
|
|
579
|
+
photos: ImageModel$1[];
|
|
580
580
|
item_link: string;
|
|
581
581
|
};
|
|
582
582
|
declare type MetroStationsFields = {
|
|
@@ -586,7 +586,7 @@ declare type InitialInspectionModelFields = {
|
|
|
586
586
|
used_resources: UsedResourcesModel;
|
|
587
587
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
588
588
|
declare type AppraisalRequestModelFields = {
|
|
589
|
-
floor_plan: DocumentModel | null;
|
|
589
|
+
floor_plan: DocumentModel$1 | null;
|
|
590
590
|
};
|
|
591
591
|
declare type InspectionModel = {
|
|
592
592
|
initial?: InitialInspectionModelFields;
|
|
@@ -663,10 +663,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
663
663
|
};
|
|
664
664
|
declare type PatchInspectionImageParams = {
|
|
665
665
|
id?: number;
|
|
666
|
-
} & Partial<ImageBodyRequest>;
|
|
666
|
+
} & Partial<ImageBodyRequest$1>;
|
|
667
667
|
declare type PatchInspectionVideoParams = {
|
|
668
668
|
id?: number;
|
|
669
|
-
} & Partial<VideoBodyRequest>;
|
|
669
|
+
} & Partial<VideoBodyRequest$1>;
|
|
670
670
|
declare type PatchRoomImagesParams = {
|
|
671
671
|
type: InspectionRoomPhotoTypes;
|
|
672
672
|
comment?: string;
|
|
@@ -706,8 +706,8 @@ declare type InspectionFillingModel = {
|
|
|
706
706
|
description: string;
|
|
707
707
|
serial_code: string;
|
|
708
708
|
amount: number;
|
|
709
|
-
photos: ImageModel[];
|
|
710
|
-
instruction: DocumentModel;
|
|
709
|
+
photos: ImageModel$1[];
|
|
710
|
+
instruction: DocumentModel$1;
|
|
711
711
|
is_absent: boolean;
|
|
712
712
|
previously_absent: boolean;
|
|
713
713
|
model: string;
|
|
@@ -789,7 +789,7 @@ declare type CommonMeterParams = {
|
|
|
789
789
|
company: CompanyLiteParams;
|
|
790
790
|
operating_account_number?: string | null;
|
|
791
791
|
company_is_administrative: boolean;
|
|
792
|
-
photos?: ImageModel[];
|
|
792
|
+
photos?: ImageModel$1[];
|
|
793
793
|
auto_sending: boolean;
|
|
794
794
|
no_tariff: boolean;
|
|
795
795
|
is_avg: boolean;
|
|
@@ -801,15 +801,15 @@ declare type ElectricityMeterValues = {
|
|
|
801
801
|
T3?: MeterTariffModel;
|
|
802
802
|
};
|
|
803
803
|
declare type WaterMeterParams = {
|
|
804
|
-
type: WaterMeterTypes;
|
|
804
|
+
type: WaterMeterTypes$1;
|
|
805
805
|
tariff: SingleCounterTariffModel;
|
|
806
806
|
} & CommonMeterParams & MeterTariffModel;
|
|
807
807
|
declare type SingleMeterParams = {
|
|
808
|
-
type?: WaterMeterTypes;
|
|
808
|
+
type?: WaterMeterTypes$1;
|
|
809
809
|
tariff: SingleCounterTariffModel;
|
|
810
810
|
} & CommonMeterParams & MeterTariffModel;
|
|
811
811
|
declare type ElectricityMeterParams = {
|
|
812
|
-
type: ElectricityMeterTypes;
|
|
812
|
+
type: ElectricityMeterTypes$1;
|
|
813
813
|
values: ElectricityMeterValues;
|
|
814
814
|
tariff: ElectricityMeterTariffModel;
|
|
815
815
|
overall_value?: number;
|
|
@@ -917,11 +917,19 @@ declare type CoOwnerModel = {
|
|
|
917
917
|
user: LiteUserModel;
|
|
918
918
|
acceptation_to_rent: boolean;
|
|
919
919
|
};
|
|
920
|
+
declare type RepresentativeTypes = "transfer_only" | "maintenance" | "beneficiary";
|
|
921
|
+
declare type RepresentativeModel = {
|
|
922
|
+
id: number;
|
|
923
|
+
first_name: string;
|
|
924
|
+
last_name: string;
|
|
925
|
+
middle_name: string;
|
|
926
|
+
representative_type: RepresentativeTypes;
|
|
927
|
+
};
|
|
920
928
|
declare type ServiceContractModel = {
|
|
921
929
|
id: number;
|
|
922
930
|
apartment: ApartmentLinkModel;
|
|
923
931
|
owner: LiteUserModel;
|
|
924
|
-
representatives:
|
|
932
|
+
representatives: RepresentativeModel[];
|
|
925
933
|
beneficiary: LiteUserModel;
|
|
926
934
|
signer: LiteUserModel;
|
|
927
935
|
renter: LiteUserModel;
|
|
@@ -1039,7 +1047,7 @@ declare type CountryParams = {
|
|
|
1039
1047
|
code: string;
|
|
1040
1048
|
} & CatalogItemParams;
|
|
1041
1049
|
|
|
1042
|
-
type FileWithVisibility = {
|
|
1050
|
+
type FileWithVisibility$1 = {
|
|
1043
1051
|
file: File | null
|
|
1044
1052
|
tenant: boolean
|
|
1045
1053
|
landlord: boolean
|
|
@@ -1047,8 +1055,8 @@ type FileWithVisibility = {
|
|
|
1047
1055
|
url: string
|
|
1048
1056
|
}
|
|
1049
1057
|
|
|
1050
|
-
type InputFileWithVisibilityFields =
|
|
1051
|
-
| FileWithVisibility
|
|
1058
|
+
type InputFileWithVisibilityFields$1 =
|
|
1059
|
+
| FileWithVisibility$1
|
|
1052
1060
|
| DocumentWithVisibility
|
|
1053
1061
|
| null
|
|
1054
1062
|
| undefined
|
|
@@ -1078,7 +1086,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1078
1086
|
}
|
|
1079
1087
|
|
|
1080
1088
|
type ChangeReasonFormFields = {
|
|
1081
|
-
reason: InputFileWithVisibilityFields
|
|
1089
|
+
reason: InputFileWithVisibilityFields$1
|
|
1082
1090
|
comment?: string
|
|
1083
1091
|
}
|
|
1084
1092
|
|
|
@@ -1093,13 +1101,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1093
1101
|
settings?: any
|
|
1094
1102
|
} & InputWithControllerProps<TFormValues>
|
|
1095
1103
|
|
|
1096
|
-
type CompanyAutocompleteFields = {
|
|
1104
|
+
type CompanyAutocompleteFields$1 = {
|
|
1097
1105
|
id: number
|
|
1098
1106
|
name: string
|
|
1099
1107
|
logo?: string | null
|
|
1100
1108
|
}
|
|
1101
1109
|
|
|
1102
|
-
declare class FileStore implements FileStoreInterface {
|
|
1110
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1103
1111
|
id: number | null;
|
|
1104
1112
|
index?: number | null;
|
|
1105
1113
|
name: string;
|
|
@@ -1130,12 +1138,12 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1130
1138
|
setIndex: (index: number) => void;
|
|
1131
1139
|
get title(): string;
|
|
1132
1140
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
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;
|
|
1141
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1142
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1143
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1144
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1145
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1146
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1139
1147
|
}
|
|
1140
1148
|
|
|
1141
1149
|
declare type ImageParams = {
|
|
@@ -1170,7 +1178,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1170
1178
|
delete: () => Promise<void>;
|
|
1171
1179
|
get extension(): string;
|
|
1172
1180
|
get title(): string;
|
|
1173
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1181
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1174
1182
|
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1175
1183
|
}
|
|
1176
1184
|
|
|
@@ -1296,7 +1304,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1296
1304
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1297
1305
|
payerCode?: string;
|
|
1298
1306
|
communalServicesAccount?: string;
|
|
1299
|
-
company?: CompanyAutocompleteFields | null;
|
|
1307
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1300
1308
|
} & ChangeReasonFormFields;
|
|
1301
1309
|
declare type ApartmentOverviewInfoFields = {
|
|
1302
1310
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1319,14 +1327,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1319
1327
|
} & ApartmentPaymentInfoParams;
|
|
1320
1328
|
declare type InspectionMeterInfoParams = {
|
|
1321
1329
|
id: number;
|
|
1322
|
-
resource: ResourceTypes;
|
|
1323
|
-
type?: MeterTypes;
|
|
1330
|
+
resource: ResourceTypes$1;
|
|
1331
|
+
type?: MeterTypes$1;
|
|
1324
1332
|
number: string;
|
|
1325
1333
|
startDate: DateTime | null;
|
|
1326
1334
|
company: CompanyLiteParams;
|
|
1327
1335
|
operationalAccountNumber?: string | null;
|
|
1328
1336
|
tariff: EntityLinkParams | null;
|
|
1329
|
-
passportFile: FileStore | null;
|
|
1337
|
+
passportFile: FileStore$1 | null;
|
|
1330
1338
|
initialValue?: number;
|
|
1331
1339
|
lastValue?: number;
|
|
1332
1340
|
initialValueT1?: number;
|
|
@@ -1348,8 +1356,8 @@ declare type ValuesParams = {
|
|
|
1348
1356
|
};
|
|
1349
1357
|
declare type PartialMeterInfoParams = {
|
|
1350
1358
|
id: number;
|
|
1351
|
-
type: MeterTypes;
|
|
1352
|
-
resource: ResourceTypes;
|
|
1359
|
+
type: MeterTypes$1;
|
|
1360
|
+
resource: ResourceTypes$1;
|
|
1353
1361
|
number: string;
|
|
1354
1362
|
values: ValuesParams;
|
|
1355
1363
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1361,7 +1369,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1361
1369
|
declare type ComparableObjectParams = {
|
|
1362
1370
|
id: number;
|
|
1363
1371
|
link: string;
|
|
1364
|
-
screenshot: FileStore | null;
|
|
1372
|
+
screenshot: FileStore$1 | null;
|
|
1365
1373
|
price: number;
|
|
1366
1374
|
differences: string;
|
|
1367
1375
|
};
|
|
@@ -1369,7 +1377,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1369
1377
|
id: number;
|
|
1370
1378
|
dataSourceName: string;
|
|
1371
1379
|
link: string;
|
|
1372
|
-
screenshot: FileStore | null;
|
|
1380
|
+
screenshot: FileStore$1 | null;
|
|
1373
1381
|
minPrice: number;
|
|
1374
1382
|
maxPrice: number;
|
|
1375
1383
|
};
|
|
@@ -1394,8 +1402,8 @@ declare type FillingInfoFormFields = {
|
|
|
1394
1402
|
name?: string;
|
|
1395
1403
|
description?: string;
|
|
1396
1404
|
type?: ApartmentFillingVariants | null;
|
|
1397
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1398
|
-
tempImages?: ImageBodyRequest[];
|
|
1405
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1406
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1399
1407
|
};
|
|
1400
1408
|
|
|
1401
1409
|
declare type FillingTagParams = {
|
|
@@ -1410,7 +1418,7 @@ declare type FillingParams = {
|
|
|
1410
1418
|
images?: (ImageStore | UploadFileParams)[];
|
|
1411
1419
|
serialNumber?: string;
|
|
1412
1420
|
numberOfSubjects?: number | string | null;
|
|
1413
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1421
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1414
1422
|
type?: ApartmentFillingVariants;
|
|
1415
1423
|
loader?: Loader;
|
|
1416
1424
|
};
|
|
@@ -1422,7 +1430,7 @@ declare type FillingFullParams = {
|
|
|
1422
1430
|
images?: (ImageStore | UploadFileParams)[];
|
|
1423
1431
|
serialNumber?: string;
|
|
1424
1432
|
numberOfSubjects?: number | string | null;
|
|
1425
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1433
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1426
1434
|
type?: ApartmentFillingVariants;
|
|
1427
1435
|
loader?: Loader;
|
|
1428
1436
|
check?: boolean | null;
|
|
@@ -1441,31 +1449,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1441
1449
|
name: string;
|
|
1442
1450
|
};
|
|
1443
1451
|
|
|
1444
|
-
declare type ResourcePaymentRoles
|
|
1445
|
-
declare type UnitOfPaymentTypes
|
|
1446
|
-
declare type WaterMeterTypes
|
|
1447
|
-
declare type ElectricityMeterTypes
|
|
1448
|
-
declare type ResourceTypes
|
|
1449
|
-
declare type MeterTypes
|
|
1450
|
-
declare type UtilityTypes
|
|
1451
|
-
declare type DocumentVisibilityAPIVariants
|
|
1452
|
-
declare type FileBodyRequest
|
|
1452
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1453
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1454
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
1455
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1456
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1457
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1458
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1459
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1460
|
+
declare type FileBodyRequest = {
|
|
1453
1461
|
temp_file_id?: number;
|
|
1454
1462
|
name: string;
|
|
1455
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1463
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1456
1464
|
url?: string;
|
|
1457
1465
|
};
|
|
1458
|
-
declare type ImageBodyRequest
|
|
1466
|
+
declare type ImageBodyRequest = {
|
|
1459
1467
|
temp_file_id: number;
|
|
1460
1468
|
image_name: string;
|
|
1461
1469
|
url: string;
|
|
1462
1470
|
};
|
|
1463
|
-
declare type VideoBodyRequest
|
|
1471
|
+
declare type VideoBodyRequest = {
|
|
1464
1472
|
temp_file_id: number;
|
|
1465
1473
|
file_name: string;
|
|
1466
1474
|
url: string;
|
|
1467
1475
|
};
|
|
1468
|
-
declare type ImageModel
|
|
1476
|
+
declare type ImageModel = {
|
|
1469
1477
|
id: number;
|
|
1470
1478
|
image_name?: string;
|
|
1471
1479
|
image_url?: string;
|
|
@@ -1474,23 +1482,23 @@ declare type ImageModel$1 = {
|
|
|
1474
1482
|
image_large_url: string;
|
|
1475
1483
|
size: number;
|
|
1476
1484
|
};
|
|
1477
|
-
declare type FileModel
|
|
1485
|
+
declare type FileModel = {
|
|
1478
1486
|
id: number;
|
|
1479
1487
|
name: string;
|
|
1480
1488
|
size: number;
|
|
1481
1489
|
url: string;
|
|
1482
1490
|
};
|
|
1483
|
-
declare type DocumentModel
|
|
1491
|
+
declare type DocumentModel = {
|
|
1484
1492
|
pk: number;
|
|
1485
1493
|
name: string;
|
|
1486
1494
|
created?: string;
|
|
1487
1495
|
attachment: string;
|
|
1488
1496
|
size: number;
|
|
1489
1497
|
uploaded_by?: string | null;
|
|
1490
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1498
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1491
1499
|
};
|
|
1492
1500
|
|
|
1493
|
-
type FileWithVisibility
|
|
1501
|
+
type FileWithVisibility = {
|
|
1494
1502
|
file: File | null
|
|
1495
1503
|
tenant: boolean
|
|
1496
1504
|
landlord: boolean
|
|
@@ -1498,19 +1506,19 @@ type FileWithVisibility$1 = {
|
|
|
1498
1506
|
url: string
|
|
1499
1507
|
}
|
|
1500
1508
|
|
|
1501
|
-
type InputFileWithVisibilityFields
|
|
1502
|
-
| FileWithVisibility
|
|
1509
|
+
type InputFileWithVisibilityFields =
|
|
1510
|
+
| FileWithVisibility
|
|
1503
1511
|
| DocumentWithVisibility$1
|
|
1504
1512
|
| null
|
|
1505
1513
|
| undefined
|
|
1506
1514
|
|
|
1507
|
-
type CompanyAutocompleteFields
|
|
1515
|
+
type CompanyAutocompleteFields = {
|
|
1508
1516
|
id: number
|
|
1509
1517
|
name: string
|
|
1510
1518
|
logo?: string | null
|
|
1511
1519
|
}
|
|
1512
1520
|
|
|
1513
|
-
declare class FileStore
|
|
1521
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1514
1522
|
id: number | null;
|
|
1515
1523
|
index?: number | null;
|
|
1516
1524
|
name: string;
|
|
@@ -1541,21 +1549,21 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
1541
1549
|
setIndex: (index: number) => void;
|
|
1542
1550
|
get title(): string;
|
|
1543
1551
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1544
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1545
|
-
static initFromFileModel: (file: FileModel
|
|
1546
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1547
|
-
static initFromImageModel: (file: ImageModel
|
|
1548
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1549
|
-
static initFromFileStore: (file: FileStore
|
|
1552
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1553
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1554
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1555
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1556
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1557
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1550
1558
|
}
|
|
1551
1559
|
|
|
1552
1560
|
type PartialPayerFields$1 = {
|
|
1553
|
-
payer?: ResourcePaymentRoles
|
|
1554
|
-
mainPayer?: ResourcePaymentRoles
|
|
1555
|
-
refundFrom?: ResourcePaymentRoles
|
|
1556
|
-
partType?: UnitOfPaymentTypes
|
|
1561
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1562
|
+
mainPayer?: ResourcePaymentRoles
|
|
1563
|
+
refundFrom?: ResourcePaymentRoles
|
|
1564
|
+
partType?: UnitOfPaymentTypes | null
|
|
1557
1565
|
refundValue?: number | string | null
|
|
1558
|
-
utilityType: UtilityTypes
|
|
1566
|
+
utilityType: UtilityTypes
|
|
1559
1567
|
}
|
|
1560
1568
|
|
|
1561
1569
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1587,13 +1595,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1587
1595
|
visibility?: DocumentVisibilityVariants$1;
|
|
1588
1596
|
extension: string;
|
|
1589
1597
|
};
|
|
1590
|
-
declare type UploadedFileParams$1 = FileBodyRequest
|
|
1598
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1591
1599
|
declare type FileStoreParams$1 = {
|
|
1592
1600
|
id?: number | null;
|
|
1593
1601
|
url?: string;
|
|
1594
1602
|
index?: number | string | null;
|
|
1595
1603
|
createdBy?: string | null;
|
|
1596
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1604
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1597
1605
|
name?: string;
|
|
1598
1606
|
date?: string | null;
|
|
1599
1607
|
size?: number | null;
|
|
@@ -1621,14 +1629,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1621
1629
|
initialValueT1?: number
|
|
1622
1630
|
initialValueT2?: number
|
|
1623
1631
|
initialValueT3?: number
|
|
1624
|
-
type?: MeterTypes
|
|
1625
|
-
resource?: ResourceTypes
|
|
1632
|
+
type?: MeterTypes
|
|
1633
|
+
resource?: ResourceTypes
|
|
1626
1634
|
withAutoSending?: boolean
|
|
1627
1635
|
}
|
|
1628
1636
|
|
|
1629
1637
|
type MeterFeaturesFormFields$1 = {
|
|
1630
1638
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1631
|
-
company: CompanyAutocompleteFields
|
|
1639
|
+
company: CompanyAutocompleteFields | null
|
|
1632
1640
|
nextCheck: DateTime | null
|
|
1633
1641
|
lastValue?: number
|
|
1634
1642
|
lastValueT1?: number
|
|
@@ -1652,9 +1660,9 @@ declare type ApartmentMeterValues = {
|
|
|
1652
1660
|
} & MeterValues;
|
|
1653
1661
|
declare type InspectionMeterFields = {
|
|
1654
1662
|
id?: number;
|
|
1655
|
-
resource: ResourceTypes
|
|
1656
|
-
passportFile?: InputFileWithVisibilityFields
|
|
1657
|
-
images: FileStore
|
|
1663
|
+
resource: ResourceTypes;
|
|
1664
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1665
|
+
images: FileStore[];
|
|
1658
1666
|
} & MeterFeaturesFormFields$1;
|
|
1659
1667
|
|
|
1660
1668
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1669,7 +1677,7 @@ type PartialPayerProps<T> = {
|
|
|
1669
1677
|
title: string
|
|
1670
1678
|
name: string
|
|
1671
1679
|
form: UseFormReturn<T>
|
|
1672
|
-
utilityType: UtilityTypes
|
|
1680
|
+
utilityType: UtilityTypes$1
|
|
1673
1681
|
fieldsVariant?: PartialPayerVariants
|
|
1674
1682
|
settings?: ObjectType
|
|
1675
1683
|
disabled?: boolean
|
|
@@ -1677,12 +1685,12 @@ type PartialPayerProps<T> = {
|
|
|
1677
1685
|
}
|
|
1678
1686
|
|
|
1679
1687
|
type PartialPayerFields = {
|
|
1680
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1681
|
-
mainPayer?: ResourcePaymentRoles
|
|
1682
|
-
refundFrom?: ResourcePaymentRoles
|
|
1683
|
-
partType?: UnitOfPaymentTypes | null
|
|
1688
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1689
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1690
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1691
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1684
1692
|
refundValue?: number | string | null
|
|
1685
|
-
utilityType: UtilityTypes
|
|
1693
|
+
utilityType: UtilityTypes$1
|
|
1686
1694
|
}
|
|
1687
1695
|
|
|
1688
1696
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1766,15 +1774,15 @@ declare type ResourceAccessParams = {
|
|
|
1766
1774
|
password?: string;
|
|
1767
1775
|
description?: string;
|
|
1768
1776
|
};
|
|
1769
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1777
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1770
1778
|
declare type ApartmentResourceCompanyDetails = {
|
|
1771
|
-
company: CompanyAutocompleteFields | null;
|
|
1779
|
+
company: CompanyAutocompleteFields$1 | null;
|
|
1772
1780
|
operationalAccountNumber: string;
|
|
1773
1781
|
payerCode: string;
|
|
1774
1782
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1775
1783
|
access: ResourceAccessParams;
|
|
1776
1784
|
sampleReceiptLink: string;
|
|
1777
|
-
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1785
|
+
sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
|
|
1778
1786
|
};
|
|
1779
1787
|
declare type ApartmentResourceInterface = {
|
|
1780
1788
|
type: ApartmentResourceTypes;
|
|
@@ -1811,15 +1819,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1811
1819
|
loader: Loader;
|
|
1812
1820
|
};
|
|
1813
1821
|
declare type PostDocumentsResponse = {
|
|
1814
|
-
documents: DocumentModel[];
|
|
1822
|
+
documents: DocumentModel$1[];
|
|
1815
1823
|
};
|
|
1816
1824
|
declare type DocumentAgentInterface = {
|
|
1817
1825
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1818
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1819
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1826
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1827
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1820
1828
|
};
|
|
1821
1829
|
declare type DocumentsAgentInterface = {
|
|
1822
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1830
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1823
1831
|
} & DocumentAgentInterface;
|
|
1824
1832
|
|
|
1825
1833
|
declare type MetroLineParams = {
|
|
@@ -1890,7 +1898,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1890
1898
|
};
|
|
1891
1899
|
declare type ApartmentDocumentModel = {
|
|
1892
1900
|
id: number;
|
|
1893
|
-
document: DocumentModel;
|
|
1901
|
+
document: DocumentModel$1;
|
|
1894
1902
|
expiration_date: string;
|
|
1895
1903
|
start_date: string;
|
|
1896
1904
|
number: string;
|
|
@@ -1902,7 +1910,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1902
1910
|
tariff?: TariffLinkModel;
|
|
1903
1911
|
activation_date?: string;
|
|
1904
1912
|
check_date?: string;
|
|
1905
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1913
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1906
1914
|
apartment: ApartmentLinkModel;
|
|
1907
1915
|
company: CompanyLiteParams;
|
|
1908
1916
|
operating_account_number?: string | null;
|
|
@@ -2023,7 +2031,7 @@ declare type ApartmentModel = {
|
|
|
2023
2031
|
owner_id: number;
|
|
2024
2032
|
metro_stations: ApartmentMetroParams[];
|
|
2025
2033
|
rental_status: RentalStatuses;
|
|
2026
|
-
main_image: ImageModel;
|
|
2034
|
+
main_image: ImageModel$1;
|
|
2027
2035
|
tv_type: TVTypes | null;
|
|
2028
2036
|
inspection: ApartmentInspectionModel;
|
|
2029
2037
|
distance_to_center_kilometers: number | null;
|
|
@@ -2050,7 +2058,7 @@ declare type ApartmentLiteModel = {
|
|
|
2050
2058
|
renter: LiteUserModel | null;
|
|
2051
2059
|
rental_status: RentalStatuses;
|
|
2052
2060
|
renter_payment_status: RentalPaymentStatuses;
|
|
2053
|
-
main_image: ImageModel;
|
|
2061
|
+
main_image: ImageModel$1;
|
|
2054
2062
|
service_contract?: ServiceContractLiteModel;
|
|
2055
2063
|
is_imported_from_old_crm?: boolean;
|
|
2056
2064
|
max_electricity_counters?: number | null;
|
|
@@ -2096,7 +2104,7 @@ declare type ObjectForMapModel = {
|
|
|
2096
2104
|
apartment_number: string;
|
|
2097
2105
|
address: string;
|
|
2098
2106
|
geolocation: LatLonParams;
|
|
2099
|
-
main_image: ImageModel;
|
|
2107
|
+
main_image: ImageModel$1;
|
|
2100
2108
|
renter: ClientLiteModel | null;
|
|
2101
2109
|
owner: ClientLiteModel;
|
|
2102
2110
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2128,13 +2136,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2128
2136
|
agent: DocumentAgentInterface;
|
|
2129
2137
|
loader: Loader;
|
|
2130
2138
|
settings?: any;
|
|
2131
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2139
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2132
2140
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2133
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2141
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
2134
2142
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2135
2143
|
get extension(): string;
|
|
2136
2144
|
get title(): string;
|
|
2137
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2145
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
2138
2146
|
}
|
|
2139
2147
|
|
|
2140
2148
|
type InputTypes =
|
|
@@ -2194,13 +2202,13 @@ declare type FileParams = {
|
|
|
2194
2202
|
size?: number | null;
|
|
2195
2203
|
file: File;
|
|
2196
2204
|
};
|
|
2197
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2205
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
2198
2206
|
declare type FileStoreParams = {
|
|
2199
2207
|
id?: number | null;
|
|
2200
2208
|
url?: string;
|
|
2201
2209
|
index?: number | string | null;
|
|
2202
2210
|
createdBy?: string | null;
|
|
2203
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2211
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
2204
2212
|
name?: string;
|
|
2205
2213
|
date?: string | null;
|
|
2206
2214
|
size?: number | null;
|
|
@@ -2351,8 +2359,8 @@ declare const FillingTagsAgent: {
|
|
|
2351
2359
|
};
|
|
2352
2360
|
|
|
2353
2361
|
declare const TariffsAgent: {
|
|
2354
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2355
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2362
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2363
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2356
2364
|
};
|
|
2357
2365
|
|
|
2358
2366
|
type SignInFormFields = {
|
|
@@ -2371,8 +2379,8 @@ declare const ApartmentsAgent: {
|
|
|
2371
2379
|
};
|
|
2372
2380
|
|
|
2373
2381
|
declare const ApartmentMetersAgent: {
|
|
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>;
|
|
2382
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2383
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2376
2384
|
};
|
|
2377
2385
|
|
|
2378
2386
|
declare const requests: {
|
|
@@ -2396,7 +2404,7 @@ declare const meterUnitLabel: {
|
|
|
2396
2404
|
electricity: string;
|
|
2397
2405
|
};
|
|
2398
2406
|
|
|
2399
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2407
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2400
2408
|
|
|
2401
2409
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2402
2410
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2412,34 +2420,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2412
2420
|
}, "">;
|
|
2413
2421
|
|
|
2414
2422
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2415
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2423
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2416
2424
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2417
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2425
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2418
2426
|
temp_file_id: number;
|
|
2419
2427
|
name: string;
|
|
2420
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2428
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2421
2429
|
url: string;
|
|
2422
2430
|
} | null;
|
|
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) => {
|
|
2431
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2432
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2433
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2426
2434
|
name: string;
|
|
2427
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2435
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2428
2436
|
} | null;
|
|
2429
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2437
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2430
2438
|
name: string;
|
|
2431
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2439
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2432
2440
|
} | null>;
|
|
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
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2442
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2443
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2444
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2445
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2446
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2447
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2448
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2449
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2450
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2443
2451
|
|
|
2444
2452
|
declare const matchesAPISubjectRoles: {
|
|
2445
2453
|
maroom: string;
|
|
@@ -2532,16 +2540,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2532
2540
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2533
2541
|
|
|
2534
2542
|
declare class FilesStore {
|
|
2535
|
-
files: FileStore[];
|
|
2543
|
+
files: FileStore$1[];
|
|
2536
2544
|
variant: FileVariant;
|
|
2537
2545
|
constructor(variant: FileVariant);
|
|
2538
|
-
addFile: (newFile: FileStore) => void;
|
|
2546
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2539
2547
|
removeFile: (index: number) => void;
|
|
2540
|
-
setFiles: (files: FileStore[]) => void;
|
|
2548
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2541
2549
|
uploadFiles: () => Promise<void>;
|
|
2542
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2550
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2543
2551
|
get uploadedAllFiles(): boolean;
|
|
2544
|
-
get notUploadedFiles(): FileStore[];
|
|
2552
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2545
2553
|
get isUploading(): boolean;
|
|
2546
2554
|
get videoLength(): number;
|
|
2547
2555
|
get nonVideoLength(): number;
|
|
@@ -2563,7 +2571,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2563
2571
|
messages?: UploadMediaMessages;
|
|
2564
2572
|
withoutFilesStore?: boolean;
|
|
2565
2573
|
};
|
|
2566
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2574
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2567
2575
|
|
|
2568
2576
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2569
2577
|
onSearchItem: (value: string) => void;
|
|
@@ -2735,11 +2743,11 @@ type DistrictAutocompleteFields = {
|
|
|
2735
2743
|
type ReplaceableTariffFields = {
|
|
2736
2744
|
name: string
|
|
2737
2745
|
id?: number
|
|
2738
|
-
type?: ResourceTypes
|
|
2746
|
+
type?: ResourceTypes$1
|
|
2739
2747
|
}
|
|
2740
2748
|
|
|
2741
2749
|
type TariffCommonFields = {
|
|
2742
|
-
resourceType: ResourceTypes
|
|
2750
|
+
resourceType: ResourceTypes$1
|
|
2743
2751
|
name: string
|
|
2744
2752
|
startDate: DateTime
|
|
2745
2753
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2751,7 +2759,7 @@ type TariffCommonFields = {
|
|
|
2751
2759
|
}
|
|
2752
2760
|
|
|
2753
2761
|
type ElectricityTariffCreationFormFields = {
|
|
2754
|
-
type: ElectricityMeterTypes
|
|
2762
|
+
type: ElectricityMeterTypes$1
|
|
2755
2763
|
isOverallConsumption: boolean
|
|
2756
2764
|
T1?: number
|
|
2757
2765
|
T2?: number
|
|
@@ -2772,7 +2780,7 @@ type TariffCreationFormProps = {
|
|
|
2772
2780
|
handleClose: () => void
|
|
2773
2781
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2774
2782
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2775
|
-
defaultResource: ResourceTypes
|
|
2783
|
+
defaultResource: ResourceTypes$1
|
|
2776
2784
|
settings?: any
|
|
2777
2785
|
}
|
|
2778
2786
|
|
|
@@ -2817,7 +2825,7 @@ declare class TariffsLiteStore {
|
|
|
2817
2825
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2818
2826
|
settings?: any;
|
|
2819
2827
|
constructor(settings?: any);
|
|
2820
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2828
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2821
2829
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2822
2830
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2823
2831
|
id: number;
|
|
@@ -2825,7 +2833,7 @@ declare class TariffsLiteStore {
|
|
|
2825
2833
|
};
|
|
2826
2834
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2827
2835
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2828
|
-
type: ElectricityMeterTypes;
|
|
2836
|
+
type: ElectricityMeterTypes$1;
|
|
2829
2837
|
T1: string | undefined;
|
|
2830
2838
|
T2: string | undefined;
|
|
2831
2839
|
T3: string | undefined;
|
|
@@ -3118,7 +3126,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3118
3126
|
name?: string
|
|
3119
3127
|
label?: string
|
|
3120
3128
|
hideName?: string
|
|
3121
|
-
resource: ResourceTypes
|
|
3129
|
+
resource: ResourceTypes$1
|
|
3122
3130
|
filter?: string
|
|
3123
3131
|
filterRequired?: boolean
|
|
3124
3132
|
settings?: any
|
|
@@ -3131,7 +3139,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3131
3139
|
}
|
|
3132
3140
|
|
|
3133
3141
|
type MeterFeaturesFieldsProps = {
|
|
3134
|
-
resource?: ResourceTypes
|
|
3142
|
+
resource?: ResourceTypes$1
|
|
3135
3143
|
replacements?: LiteMeterInterface[]
|
|
3136
3144
|
isNewResource?: boolean
|
|
3137
3145
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3145,7 +3153,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3145
3153
|
withNextCheck?: boolean
|
|
3146
3154
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3147
3155
|
handleMeterTypeChange?: (
|
|
3148
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3156
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3149
3157
|
) => void
|
|
3150
3158
|
settings?: any
|
|
3151
3159
|
}
|
|
@@ -3157,14 +3165,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3157
3165
|
initialValueT1?: number
|
|
3158
3166
|
initialValueT2?: number
|
|
3159
3167
|
initialValueT3?: number
|
|
3160
|
-
type?: MeterTypes
|
|
3161
|
-
resource?: ResourceTypes
|
|
3168
|
+
type?: MeterTypes$1
|
|
3169
|
+
resource?: ResourceTypes$1
|
|
3162
3170
|
withAutoSending?: boolean
|
|
3163
3171
|
}
|
|
3164
3172
|
|
|
3165
3173
|
type MeterFeaturesFormFields = {
|
|
3166
3174
|
tariff: TariffGroupAutocompleteFields | null
|
|
3167
|
-
company: CompanyAutocompleteFields | null
|
|
3175
|
+
company: CompanyAutocompleteFields$1 | null
|
|
3168
3176
|
nextCheck: DateTime | null
|
|
3169
3177
|
lastValue?: number
|
|
3170
3178
|
lastValueT1?: number
|
|
@@ -3178,8 +3186,8 @@ type MeterFeaturesFormFields = {
|
|
|
3178
3186
|
} & BasicMeterFeaturesFormFields
|
|
3179
3187
|
|
|
3180
3188
|
type BasicMeterFieldsSettings = {
|
|
3181
|
-
resource?: ResourceTypes
|
|
3182
|
-
meterType?: MeterTypes
|
|
3189
|
+
resource?: ResourceTypes$1
|
|
3190
|
+
meterType?: MeterTypes$1
|
|
3183
3191
|
}
|
|
3184
3192
|
|
|
3185
3193
|
type RenderMeterFieldsSettings = {
|
|
@@ -3209,10 +3217,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3209
3217
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3210
3218
|
|
|
3211
3219
|
type MeterTypeRadioGroupProps = {
|
|
3212
|
-
resource?: ResourceTypes
|
|
3220
|
+
resource?: ResourceTypes$1
|
|
3213
3221
|
form: UseFormReturn<any>
|
|
3214
3222
|
handleChange: (
|
|
3215
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3223
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3216
3224
|
) => void
|
|
3217
3225
|
disabled?: boolean
|
|
3218
3226
|
waterOptions?: OptionParams[]
|
|
@@ -3224,7 +3232,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3224
3232
|
type MeterFeaturesFormProps = {
|
|
3225
3233
|
formStore?: MultistepForm$1<any>
|
|
3226
3234
|
handleMeterTypeChange?: (
|
|
3227
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3235
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3228
3236
|
) => void
|
|
3229
3237
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3230
3238
|
|
|
@@ -3292,7 +3300,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3292
3300
|
startDate: undefined;
|
|
3293
3301
|
}, "">;
|
|
3294
3302
|
|
|
3295
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3303
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3296
3304
|
|
|
3297
3305
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3298
3306
|
|
|
@@ -3308,7 +3316,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3308
3316
|
|
|
3309
3317
|
type TariffReplacementFieldsProps = {
|
|
3310
3318
|
form: UseFormReturn<TariffCommonFields>
|
|
3311
|
-
resource: ResourceTypes
|
|
3319
|
+
resource: ResourceTypes$1
|
|
3312
3320
|
setReplaceable: (value: boolean) => void
|
|
3313
3321
|
settings?: any
|
|
3314
3322
|
}
|
|
@@ -3723,7 +3731,7 @@ type UploadPhotosButtonProps = {
|
|
|
3723
3731
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3724
3732
|
|
|
3725
3733
|
type UploadedImageProps = {
|
|
3726
|
-
image: FileStore
|
|
3734
|
+
image: FileStore$1
|
|
3727
3735
|
index: number
|
|
3728
3736
|
onClick: (index: number) => void
|
|
3729
3737
|
onDelete: (index: number) => void
|
|
@@ -3756,14 +3764,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3756
3764
|
};
|
|
3757
3765
|
declare type PartialMeterInfoFields = {
|
|
3758
3766
|
id: number;
|
|
3759
|
-
resource: ResourceTypes;
|
|
3760
|
-
type?: MeterTypes;
|
|
3767
|
+
resource: ResourceTypes$1;
|
|
3768
|
+
type?: MeterTypes$1;
|
|
3761
3769
|
number: string;
|
|
3762
|
-
images: FileStore[];
|
|
3770
|
+
images: FileStore$1[];
|
|
3763
3771
|
maxValue?: PartialMeterValuesFields;
|
|
3764
3772
|
values: PartialMeterValuesFields;
|
|
3765
3773
|
} & PartialMeterValuesFields;
|
|
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>[];
|
|
3774
|
+
declare const getPartialMeterInfoFields: (resource: ResourceTypes$1, type?: MeterTypes$1 | undefined, meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | null | undefined, settings?: any | null, required?: boolean | undefined) => InputParams<any>[];
|
|
3767
3775
|
|
|
3768
3776
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3769
3777
|
type: string | undefined;
|
|
@@ -3790,4 +3798,4 @@ type SignInPageProps = {
|
|
|
3790
3798
|
|
|
3791
3799
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3792
3800
|
|
|
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 };
|
|
3801
|
+
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, RepresentativeModel, RepresentativeTypes, 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 };
|