kui-crm 0.0.554 → 0.0.555
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +190 -188
- package/package.json +1 -1
- package/types/index.d.ts +135 -133
- package/utils/index.d.ts +2 -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 = "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
|
};
|
|
@@ -500,11 +500,11 @@ declare type FullInspectionCommonFields = {
|
|
|
500
500
|
filling: InspectionFillingModel[];
|
|
501
501
|
} & ApartmentModel;
|
|
502
502
|
declare type InspectionMeterCommonInfo = {
|
|
503
|
-
resource_type: ResourceTypes;
|
|
504
|
-
passport: FileModel | null;
|
|
505
|
-
meter_type: MeterTypes;
|
|
503
|
+
resource_type: ResourceTypes$1;
|
|
504
|
+
passport: FileModel$1 | null;
|
|
505
|
+
meter_type: MeterTypes$1;
|
|
506
506
|
operating_account: string;
|
|
507
|
-
photos: ImageModel[];
|
|
507
|
+
photos: ImageModel$1[];
|
|
508
508
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
509
509
|
declare type TransferInspectionMeterModel = {
|
|
510
510
|
values: InspectionMeterValueModel;
|
|
@@ -520,7 +520,7 @@ declare type RegularInspectionFields = {
|
|
|
520
520
|
declare type ComparableObjectModel = {
|
|
521
521
|
id: number;
|
|
522
522
|
advertisement_link: string;
|
|
523
|
-
advertisement_screenshot: ImageModel | null;
|
|
523
|
+
advertisement_screenshot: ImageModel$1 | null;
|
|
524
524
|
object_price: string;
|
|
525
525
|
key_object_differences: string;
|
|
526
526
|
};
|
|
@@ -528,7 +528,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
528
528
|
id: number;
|
|
529
529
|
source_name: string;
|
|
530
530
|
link: string;
|
|
531
|
-
screenshot: ImageModel | null;
|
|
531
|
+
screenshot: ImageModel$1 | null;
|
|
532
532
|
min_price: string;
|
|
533
533
|
max_price: string;
|
|
534
534
|
};
|
|
@@ -571,11 +571,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
571
571
|
declare type ImpairmentModel = {
|
|
572
572
|
id: number;
|
|
573
573
|
impairment_type: ImpairmentType;
|
|
574
|
-
proof_file: DocumentModel | null;
|
|
574
|
+
proof_file: DocumentModel$1 | null;
|
|
575
575
|
price: number;
|
|
576
576
|
solution: string;
|
|
577
577
|
description: string;
|
|
578
|
-
photos: ImageModel[];
|
|
578
|
+
photos: ImageModel$1[];
|
|
579
579
|
item_link: string;
|
|
580
580
|
};
|
|
581
581
|
declare type MetroStationsFields = {
|
|
@@ -585,7 +585,7 @@ declare type InitialInspectionModelFields = {
|
|
|
585
585
|
used_resources: UsedResourcesModel;
|
|
586
586
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
587
587
|
declare type AppraisalRequestModelFields = {
|
|
588
|
-
floor_plan: DocumentModel | null;
|
|
588
|
+
floor_plan: DocumentModel$1 | null;
|
|
589
589
|
};
|
|
590
590
|
declare type InspectionModel = {
|
|
591
591
|
initial?: InitialInspectionModelFields;
|
|
@@ -662,10 +662,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
662
662
|
};
|
|
663
663
|
declare type PatchInspectionImageParams = {
|
|
664
664
|
id?: number;
|
|
665
|
-
} & Partial<ImageBodyRequest>;
|
|
665
|
+
} & Partial<ImageBodyRequest$1>;
|
|
666
666
|
declare type PatchInspectionVideoParams = {
|
|
667
667
|
id?: number;
|
|
668
|
-
} & Partial<VideoBodyRequest>;
|
|
668
|
+
} & Partial<VideoBodyRequest$1>;
|
|
669
669
|
declare type PatchRoomImagesParams = {
|
|
670
670
|
type: InspectionRoomPhotoTypes;
|
|
671
671
|
comment?: string;
|
|
@@ -705,8 +705,8 @@ declare type InspectionFillingModel = {
|
|
|
705
705
|
description: string;
|
|
706
706
|
serial_code: string;
|
|
707
707
|
amount: number;
|
|
708
|
-
photos: ImageModel[];
|
|
709
|
-
instruction: DocumentModel;
|
|
708
|
+
photos: ImageModel$1[];
|
|
709
|
+
instruction: DocumentModel$1;
|
|
710
710
|
is_absent: boolean;
|
|
711
711
|
previously_absent: boolean;
|
|
712
712
|
model: string;
|
|
@@ -788,7 +788,7 @@ declare type CommonMeterParams = {
|
|
|
788
788
|
company: CompanyLiteParams;
|
|
789
789
|
operating_account_number?: string | null;
|
|
790
790
|
company_is_administrative: boolean;
|
|
791
|
-
photos?: ImageModel[];
|
|
791
|
+
photos?: ImageModel$1[];
|
|
792
792
|
auto_sending: boolean;
|
|
793
793
|
no_tariff: boolean;
|
|
794
794
|
is_avg: boolean;
|
|
@@ -800,15 +800,15 @@ declare type ElectricityMeterValues = {
|
|
|
800
800
|
T3?: MeterTariffModel;
|
|
801
801
|
};
|
|
802
802
|
declare type WaterMeterParams = {
|
|
803
|
-
type: WaterMeterTypes;
|
|
803
|
+
type: WaterMeterTypes$1;
|
|
804
804
|
tariff: SingleCounterTariffModel;
|
|
805
805
|
} & CommonMeterParams & MeterTariffModel;
|
|
806
806
|
declare type SingleMeterParams = {
|
|
807
|
-
type?: WaterMeterTypes;
|
|
807
|
+
type?: WaterMeterTypes$1;
|
|
808
808
|
tariff: SingleCounterTariffModel;
|
|
809
809
|
} & CommonMeterParams & MeterTariffModel;
|
|
810
810
|
declare type ElectricityMeterParams = {
|
|
811
|
-
type: ElectricityMeterTypes;
|
|
811
|
+
type: ElectricityMeterTypes$1;
|
|
812
812
|
values: ElectricityMeterValues;
|
|
813
813
|
tariff: ElectricityMeterTariffModel;
|
|
814
814
|
overall_value?: number;
|
|
@@ -920,6 +920,8 @@ declare type ServiceContractModel = {
|
|
|
920
920
|
id: number;
|
|
921
921
|
apartment: ApartmentLinkModel;
|
|
922
922
|
owner: LiteUserModel;
|
|
923
|
+
beneficiary: LiteUserModel;
|
|
924
|
+
signer: LiteUserModel;
|
|
923
925
|
renter: LiteUserModel;
|
|
924
926
|
co_owners: CoOwnerModel[];
|
|
925
927
|
auto_prolongate: boolean;
|
|
@@ -1035,7 +1037,7 @@ declare type CountryParams = {
|
|
|
1035
1037
|
code: string;
|
|
1036
1038
|
} & CatalogItemParams;
|
|
1037
1039
|
|
|
1038
|
-
type FileWithVisibility = {
|
|
1040
|
+
type FileWithVisibility$1 = {
|
|
1039
1041
|
file: File | null
|
|
1040
1042
|
tenant: boolean
|
|
1041
1043
|
landlord: boolean
|
|
@@ -1043,8 +1045,8 @@ type FileWithVisibility = {
|
|
|
1043
1045
|
url: string
|
|
1044
1046
|
}
|
|
1045
1047
|
|
|
1046
|
-
type InputFileWithVisibilityFields =
|
|
1047
|
-
| FileWithVisibility
|
|
1048
|
+
type InputFileWithVisibilityFields$1 =
|
|
1049
|
+
| FileWithVisibility$1
|
|
1048
1050
|
| DocumentWithVisibility
|
|
1049
1051
|
| null
|
|
1050
1052
|
| undefined
|
|
@@ -1074,7 +1076,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1074
1076
|
}
|
|
1075
1077
|
|
|
1076
1078
|
type ChangeReasonFormFields = {
|
|
1077
|
-
reason: InputFileWithVisibilityFields
|
|
1079
|
+
reason: InputFileWithVisibilityFields$1
|
|
1078
1080
|
comment?: string
|
|
1079
1081
|
}
|
|
1080
1082
|
|
|
@@ -1089,13 +1091,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1089
1091
|
settings?: any
|
|
1090
1092
|
} & InputWithControllerProps<TFormValues>
|
|
1091
1093
|
|
|
1092
|
-
type CompanyAutocompleteFields = {
|
|
1094
|
+
type CompanyAutocompleteFields$1 = {
|
|
1093
1095
|
id: number
|
|
1094
1096
|
name: string
|
|
1095
1097
|
logo?: string | null
|
|
1096
1098
|
}
|
|
1097
1099
|
|
|
1098
|
-
declare class FileStore implements FileStoreInterface {
|
|
1100
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1099
1101
|
id: number | null;
|
|
1100
1102
|
index?: number | null;
|
|
1101
1103
|
name: string;
|
|
@@ -1126,12 +1128,12 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1126
1128
|
setIndex: (index: number) => void;
|
|
1127
1129
|
get title(): string;
|
|
1128
1130
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1129
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1130
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1131
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1132
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1133
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1134
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1131
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1132
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1133
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1134
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1135
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1136
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1135
1137
|
}
|
|
1136
1138
|
|
|
1137
1139
|
declare type ImageParams = {
|
|
@@ -1166,7 +1168,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1166
1168
|
delete: () => Promise<void>;
|
|
1167
1169
|
get extension(): string;
|
|
1168
1170
|
get title(): string;
|
|
1169
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1171
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1170
1172
|
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1171
1173
|
}
|
|
1172
1174
|
|
|
@@ -1292,7 +1294,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1292
1294
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1293
1295
|
payerCode?: string;
|
|
1294
1296
|
communalServicesAccount?: string;
|
|
1295
|
-
company?: CompanyAutocompleteFields | null;
|
|
1297
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1296
1298
|
} & ChangeReasonFormFields;
|
|
1297
1299
|
declare type ApartmentOverviewInfoFields = {
|
|
1298
1300
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1315,14 +1317,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1315
1317
|
} & ApartmentPaymentInfoParams;
|
|
1316
1318
|
declare type InspectionMeterInfoParams = {
|
|
1317
1319
|
id: number;
|
|
1318
|
-
resource: ResourceTypes;
|
|
1319
|
-
type?: MeterTypes;
|
|
1320
|
+
resource: ResourceTypes$1;
|
|
1321
|
+
type?: MeterTypes$1;
|
|
1320
1322
|
number: string;
|
|
1321
1323
|
startDate: DateTime | null;
|
|
1322
1324
|
company: CompanyLiteParams;
|
|
1323
1325
|
operationalAccountNumber?: string | null;
|
|
1324
1326
|
tariff: EntityLinkParams | null;
|
|
1325
|
-
passportFile: FileStore | null;
|
|
1327
|
+
passportFile: FileStore$1 | null;
|
|
1326
1328
|
initialValue?: number;
|
|
1327
1329
|
lastValue?: number;
|
|
1328
1330
|
initialValueT1?: number;
|
|
@@ -1344,8 +1346,8 @@ declare type ValuesParams = {
|
|
|
1344
1346
|
};
|
|
1345
1347
|
declare type PartialMeterInfoParams = {
|
|
1346
1348
|
id: number;
|
|
1347
|
-
type: MeterTypes;
|
|
1348
|
-
resource: ResourceTypes;
|
|
1349
|
+
type: MeterTypes$1;
|
|
1350
|
+
resource: ResourceTypes$1;
|
|
1349
1351
|
number: string;
|
|
1350
1352
|
values: ValuesParams;
|
|
1351
1353
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1357,7 +1359,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1357
1359
|
declare type ComparableObjectParams = {
|
|
1358
1360
|
id: number;
|
|
1359
1361
|
link: string;
|
|
1360
|
-
screenshot: FileStore | null;
|
|
1362
|
+
screenshot: FileStore$1 | null;
|
|
1361
1363
|
price: number;
|
|
1362
1364
|
differences: string;
|
|
1363
1365
|
};
|
|
@@ -1365,7 +1367,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1365
1367
|
id: number;
|
|
1366
1368
|
dataSourceName: string;
|
|
1367
1369
|
link: string;
|
|
1368
|
-
screenshot: FileStore | null;
|
|
1370
|
+
screenshot: FileStore$1 | null;
|
|
1369
1371
|
minPrice: number;
|
|
1370
1372
|
maxPrice: number;
|
|
1371
1373
|
};
|
|
@@ -1390,8 +1392,8 @@ declare type FillingInfoFormFields = {
|
|
|
1390
1392
|
name?: string;
|
|
1391
1393
|
description?: string;
|
|
1392
1394
|
type?: ApartmentFillingVariants | null;
|
|
1393
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1394
|
-
tempImages?: ImageBodyRequest[];
|
|
1395
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1396
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1395
1397
|
};
|
|
1396
1398
|
|
|
1397
1399
|
declare type FillingTagParams = {
|
|
@@ -1406,7 +1408,7 @@ declare type FillingParams = {
|
|
|
1406
1408
|
images?: (ImageStore | UploadFileParams)[];
|
|
1407
1409
|
serialNumber?: string;
|
|
1408
1410
|
numberOfSubjects?: number | string | null;
|
|
1409
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1411
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1410
1412
|
type?: ApartmentFillingVariants;
|
|
1411
1413
|
loader?: Loader;
|
|
1412
1414
|
};
|
|
@@ -1418,7 +1420,7 @@ declare type FillingFullParams = {
|
|
|
1418
1420
|
images?: (ImageStore | UploadFileParams)[];
|
|
1419
1421
|
serialNumber?: string;
|
|
1420
1422
|
numberOfSubjects?: number | string | null;
|
|
1421
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1423
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1422
1424
|
type?: ApartmentFillingVariants;
|
|
1423
1425
|
loader?: Loader;
|
|
1424
1426
|
check?: boolean | null;
|
|
@@ -1437,31 +1439,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1437
1439
|
name: string;
|
|
1438
1440
|
};
|
|
1439
1441
|
|
|
1440
|
-
declare type ResourcePaymentRoles
|
|
1441
|
-
declare type UnitOfPaymentTypes
|
|
1442
|
-
declare type WaterMeterTypes
|
|
1443
|
-
declare type ElectricityMeterTypes
|
|
1444
|
-
declare type ResourceTypes
|
|
1445
|
-
declare type MeterTypes
|
|
1446
|
-
declare type UtilityTypes
|
|
1447
|
-
declare type DocumentVisibilityAPIVariants
|
|
1448
|
-
declare type FileBodyRequest
|
|
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 = {
|
|
1449
1451
|
temp_file_id?: number;
|
|
1450
1452
|
name: string;
|
|
1451
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1453
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1452
1454
|
url?: string;
|
|
1453
1455
|
};
|
|
1454
|
-
declare type ImageBodyRequest
|
|
1456
|
+
declare type ImageBodyRequest = {
|
|
1455
1457
|
temp_file_id: number;
|
|
1456
1458
|
image_name: string;
|
|
1457
1459
|
url: string;
|
|
1458
1460
|
};
|
|
1459
|
-
declare type VideoBodyRequest
|
|
1461
|
+
declare type VideoBodyRequest = {
|
|
1460
1462
|
temp_file_id: number;
|
|
1461
1463
|
file_name: string;
|
|
1462
1464
|
url: string;
|
|
1463
1465
|
};
|
|
1464
|
-
declare type ImageModel
|
|
1466
|
+
declare type ImageModel = {
|
|
1465
1467
|
id: number;
|
|
1466
1468
|
image_name?: string;
|
|
1467
1469
|
image_url?: string;
|
|
@@ -1470,23 +1472,23 @@ declare type ImageModel$1 = {
|
|
|
1470
1472
|
image_large_url: string;
|
|
1471
1473
|
size: number;
|
|
1472
1474
|
};
|
|
1473
|
-
declare type FileModel
|
|
1475
|
+
declare type FileModel = {
|
|
1474
1476
|
id: number;
|
|
1475
1477
|
name: string;
|
|
1476
1478
|
size: number;
|
|
1477
1479
|
url: string;
|
|
1478
1480
|
};
|
|
1479
|
-
declare type DocumentModel
|
|
1481
|
+
declare type DocumentModel = {
|
|
1480
1482
|
pk: number;
|
|
1481
1483
|
name: string;
|
|
1482
1484
|
created?: string;
|
|
1483
1485
|
attachment: string;
|
|
1484
1486
|
size: number;
|
|
1485
1487
|
uploaded_by?: string | null;
|
|
1486
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1488
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1487
1489
|
};
|
|
1488
1490
|
|
|
1489
|
-
type FileWithVisibility
|
|
1491
|
+
type FileWithVisibility = {
|
|
1490
1492
|
file: File | null
|
|
1491
1493
|
tenant: boolean
|
|
1492
1494
|
landlord: boolean
|
|
@@ -1494,19 +1496,19 @@ type FileWithVisibility$1 = {
|
|
|
1494
1496
|
url: string
|
|
1495
1497
|
}
|
|
1496
1498
|
|
|
1497
|
-
type InputFileWithVisibilityFields
|
|
1498
|
-
| FileWithVisibility
|
|
1499
|
+
type InputFileWithVisibilityFields =
|
|
1500
|
+
| FileWithVisibility
|
|
1499
1501
|
| DocumentWithVisibility$1
|
|
1500
1502
|
| null
|
|
1501
1503
|
| undefined
|
|
1502
1504
|
|
|
1503
|
-
type CompanyAutocompleteFields
|
|
1505
|
+
type CompanyAutocompleteFields = {
|
|
1504
1506
|
id: number
|
|
1505
1507
|
name: string
|
|
1506
1508
|
logo?: string | null
|
|
1507
1509
|
}
|
|
1508
1510
|
|
|
1509
|
-
declare class FileStore
|
|
1511
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1510
1512
|
id: number | null;
|
|
1511
1513
|
index?: number | null;
|
|
1512
1514
|
name: string;
|
|
@@ -1537,21 +1539,21 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
1537
1539
|
setIndex: (index: number) => void;
|
|
1538
1540
|
get title(): string;
|
|
1539
1541
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1540
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1541
|
-
static initFromFileModel: (file: FileModel
|
|
1542
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1543
|
-
static initFromImageModel: (file: ImageModel
|
|
1544
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1545
|
-
static initFromFileStore: (file: FileStore
|
|
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;
|
|
1546
1548
|
}
|
|
1547
1549
|
|
|
1548
1550
|
type PartialPayerFields$1 = {
|
|
1549
|
-
payer?: ResourcePaymentRoles
|
|
1550
|
-
mainPayer?: ResourcePaymentRoles
|
|
1551
|
-
refundFrom?: ResourcePaymentRoles
|
|
1552
|
-
partType?: UnitOfPaymentTypes
|
|
1551
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1552
|
+
mainPayer?: ResourcePaymentRoles
|
|
1553
|
+
refundFrom?: ResourcePaymentRoles
|
|
1554
|
+
partType?: UnitOfPaymentTypes | null
|
|
1553
1555
|
refundValue?: number | string | null
|
|
1554
|
-
utilityType: UtilityTypes
|
|
1556
|
+
utilityType: UtilityTypes
|
|
1555
1557
|
}
|
|
1556
1558
|
|
|
1557
1559
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1583,13 +1585,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1583
1585
|
visibility?: DocumentVisibilityVariants$1;
|
|
1584
1586
|
extension: string;
|
|
1585
1587
|
};
|
|
1586
|
-
declare type UploadedFileParams$1 = FileBodyRequest
|
|
1588
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1587
1589
|
declare type FileStoreParams$1 = {
|
|
1588
1590
|
id?: number | null;
|
|
1589
1591
|
url?: string;
|
|
1590
1592
|
index?: number | string | null;
|
|
1591
1593
|
createdBy?: string | null;
|
|
1592
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1594
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1593
1595
|
name?: string;
|
|
1594
1596
|
date?: string | null;
|
|
1595
1597
|
size?: number | null;
|
|
@@ -1617,14 +1619,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1617
1619
|
initialValueT1?: number
|
|
1618
1620
|
initialValueT2?: number
|
|
1619
1621
|
initialValueT3?: number
|
|
1620
|
-
type?: MeterTypes
|
|
1621
|
-
resource?: ResourceTypes
|
|
1622
|
+
type?: MeterTypes
|
|
1623
|
+
resource?: ResourceTypes
|
|
1622
1624
|
withAutoSending?: boolean
|
|
1623
1625
|
}
|
|
1624
1626
|
|
|
1625
1627
|
type MeterFeaturesFormFields$1 = {
|
|
1626
1628
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1627
|
-
company: CompanyAutocompleteFields
|
|
1629
|
+
company: CompanyAutocompleteFields | null
|
|
1628
1630
|
nextCheck: DateTime | null
|
|
1629
1631
|
lastValue?: number
|
|
1630
1632
|
lastValueT1?: number
|
|
@@ -1648,9 +1650,9 @@ declare type ApartmentMeterValues = {
|
|
|
1648
1650
|
} & MeterValues;
|
|
1649
1651
|
declare type InspectionMeterFields = {
|
|
1650
1652
|
id?: number;
|
|
1651
|
-
resource: ResourceTypes
|
|
1652
|
-
passportFile?: InputFileWithVisibilityFields
|
|
1653
|
-
images: FileStore
|
|
1653
|
+
resource: ResourceTypes;
|
|
1654
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1655
|
+
images: FileStore[];
|
|
1654
1656
|
} & MeterFeaturesFormFields$1;
|
|
1655
1657
|
|
|
1656
1658
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1665,7 +1667,7 @@ type PartialPayerProps<T> = {
|
|
|
1665
1667
|
title: string
|
|
1666
1668
|
name: string
|
|
1667
1669
|
form: UseFormReturn<T>
|
|
1668
|
-
utilityType: UtilityTypes
|
|
1670
|
+
utilityType: UtilityTypes$1
|
|
1669
1671
|
fieldsVariant?: PartialPayerVariants
|
|
1670
1672
|
settings?: ObjectType
|
|
1671
1673
|
disabled?: boolean
|
|
@@ -1673,12 +1675,12 @@ type PartialPayerProps<T> = {
|
|
|
1673
1675
|
}
|
|
1674
1676
|
|
|
1675
1677
|
type PartialPayerFields = {
|
|
1676
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1677
|
-
mainPayer?: ResourcePaymentRoles
|
|
1678
|
-
refundFrom?: ResourcePaymentRoles
|
|
1679
|
-
partType?: UnitOfPaymentTypes | null
|
|
1678
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1679
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1680
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1681
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1680
1682
|
refundValue?: number | string | null
|
|
1681
|
-
utilityType: UtilityTypes
|
|
1683
|
+
utilityType: UtilityTypes$1
|
|
1682
1684
|
}
|
|
1683
1685
|
|
|
1684
1686
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1762,15 +1764,15 @@ declare type ResourceAccessParams = {
|
|
|
1762
1764
|
password?: string;
|
|
1763
1765
|
description?: string;
|
|
1764
1766
|
};
|
|
1765
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1767
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1766
1768
|
declare type ApartmentResourceCompanyDetails = {
|
|
1767
|
-
company: CompanyAutocompleteFields | null;
|
|
1769
|
+
company: CompanyAutocompleteFields$1 | null;
|
|
1768
1770
|
operationalAccountNumber: string;
|
|
1769
1771
|
payerCode: string;
|
|
1770
1772
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1771
1773
|
access: ResourceAccessParams;
|
|
1772
1774
|
sampleReceiptLink: string;
|
|
1773
|
-
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1775
|
+
sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
|
|
1774
1776
|
};
|
|
1775
1777
|
declare type ApartmentResourceInterface = {
|
|
1776
1778
|
type: ApartmentResourceTypes;
|
|
@@ -1807,15 +1809,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1807
1809
|
loader: Loader;
|
|
1808
1810
|
};
|
|
1809
1811
|
declare type PostDocumentsResponse = {
|
|
1810
|
-
documents: DocumentModel[];
|
|
1812
|
+
documents: DocumentModel$1[];
|
|
1811
1813
|
};
|
|
1812
1814
|
declare type DocumentAgentInterface = {
|
|
1813
1815
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1814
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1815
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1816
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1817
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1816
1818
|
};
|
|
1817
1819
|
declare type DocumentsAgentInterface = {
|
|
1818
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1820
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1819
1821
|
} & DocumentAgentInterface;
|
|
1820
1822
|
|
|
1821
1823
|
declare type MetroLineParams = {
|
|
@@ -1886,7 +1888,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1886
1888
|
};
|
|
1887
1889
|
declare type ApartmentDocumentModel = {
|
|
1888
1890
|
id: number;
|
|
1889
|
-
document: DocumentModel;
|
|
1891
|
+
document: DocumentModel$1;
|
|
1890
1892
|
expiration_date: string;
|
|
1891
1893
|
start_date: string;
|
|
1892
1894
|
number: string;
|
|
@@ -1898,7 +1900,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1898
1900
|
tariff?: TariffLinkModel;
|
|
1899
1901
|
activation_date?: string;
|
|
1900
1902
|
check_date?: string;
|
|
1901
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1903
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1902
1904
|
apartment: ApartmentLinkModel;
|
|
1903
1905
|
company: CompanyLiteParams;
|
|
1904
1906
|
operating_account_number?: string | null;
|
|
@@ -2019,7 +2021,7 @@ declare type ApartmentModel = {
|
|
|
2019
2021
|
owner_id: number;
|
|
2020
2022
|
metro_stations: ApartmentMetroParams[];
|
|
2021
2023
|
rental_status: RentalStatuses;
|
|
2022
|
-
main_image: ImageModel;
|
|
2024
|
+
main_image: ImageModel$1;
|
|
2023
2025
|
tv_type: TVTypes | null;
|
|
2024
2026
|
inspection: ApartmentInspectionModel;
|
|
2025
2027
|
distance_to_center_kilometers: number | null;
|
|
@@ -2046,7 +2048,7 @@ declare type ApartmentLiteModel = {
|
|
|
2046
2048
|
renter: LiteUserModel | null;
|
|
2047
2049
|
rental_status: RentalStatuses;
|
|
2048
2050
|
renter_payment_status: RentalPaymentStatuses;
|
|
2049
|
-
main_image: ImageModel;
|
|
2051
|
+
main_image: ImageModel$1;
|
|
2050
2052
|
service_contract?: ServiceContractLiteModel;
|
|
2051
2053
|
is_imported_from_old_crm?: boolean;
|
|
2052
2054
|
max_electricity_counters?: number | null;
|
|
@@ -2092,7 +2094,7 @@ declare type ObjectForMapModel = {
|
|
|
2092
2094
|
apartment_number: string;
|
|
2093
2095
|
address: string;
|
|
2094
2096
|
geolocation: LatLonParams;
|
|
2095
|
-
main_image: ImageModel;
|
|
2097
|
+
main_image: ImageModel$1;
|
|
2096
2098
|
renter: ClientLiteModel | null;
|
|
2097
2099
|
owner: ClientLiteModel;
|
|
2098
2100
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2124,13 +2126,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2124
2126
|
agent: DocumentAgentInterface;
|
|
2125
2127
|
loader: Loader;
|
|
2126
2128
|
settings?: any;
|
|
2127
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2129
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2128
2130
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2129
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2131
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
2130
2132
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2131
2133
|
get extension(): string;
|
|
2132
2134
|
get title(): string;
|
|
2133
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2135
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
2134
2136
|
}
|
|
2135
2137
|
|
|
2136
2138
|
type InputTypes =
|
|
@@ -2190,13 +2192,13 @@ declare type FileParams = {
|
|
|
2190
2192
|
size?: number | null;
|
|
2191
2193
|
file: File;
|
|
2192
2194
|
};
|
|
2193
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2195
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
2194
2196
|
declare type FileStoreParams = {
|
|
2195
2197
|
id?: number | null;
|
|
2196
2198
|
url?: string;
|
|
2197
2199
|
index?: number | string | null;
|
|
2198
2200
|
createdBy?: string | null;
|
|
2199
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2201
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
2200
2202
|
name?: string;
|
|
2201
2203
|
date?: string | null;
|
|
2202
2204
|
size?: number | null;
|
|
@@ -2347,8 +2349,8 @@ declare const FillingTagsAgent: {
|
|
|
2347
2349
|
};
|
|
2348
2350
|
|
|
2349
2351
|
declare const TariffsAgent: {
|
|
2350
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2351
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2352
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2353
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2352
2354
|
};
|
|
2353
2355
|
|
|
2354
2356
|
type SignInFormFields = {
|
|
@@ -2367,8 +2369,8 @@ declare const ApartmentsAgent: {
|
|
|
2367
2369
|
};
|
|
2368
2370
|
|
|
2369
2371
|
declare const ApartmentMetersAgent: {
|
|
2370
|
-
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2371
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2372
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2373
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2372
2374
|
};
|
|
2373
2375
|
|
|
2374
2376
|
declare const requests: {
|
|
@@ -2392,7 +2394,7 @@ declare const meterUnitLabel: {
|
|
|
2392
2394
|
electricity: string;
|
|
2393
2395
|
};
|
|
2394
2396
|
|
|
2395
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2397
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2396
2398
|
|
|
2397
2399
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2398
2400
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2408,34 +2410,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2408
2410
|
}, "">;
|
|
2409
2411
|
|
|
2410
2412
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2411
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2413
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2412
2414
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2413
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2415
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2414
2416
|
temp_file_id: number;
|
|
2415
2417
|
name: string;
|
|
2416
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2418
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2417
2419
|
url: string;
|
|
2418
2420
|
} | null;
|
|
2419
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2420
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2421
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2421
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2422
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2423
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2422
2424
|
name: string;
|
|
2423
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2425
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2424
2426
|
} | null;
|
|
2425
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2427
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2426
2428
|
name: string;
|
|
2427
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2429
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2428
2430
|
} | null>;
|
|
2429
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2430
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2431
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2432
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2433
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2434
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2435
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2436
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2437
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2438
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2431
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2432
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2433
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2434
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2435
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2436
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2437
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2438
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2439
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2440
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2439
2441
|
|
|
2440
2442
|
declare const matchesAPISubjectRoles: {
|
|
2441
2443
|
maroom: string;
|
|
@@ -2528,16 +2530,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2528
2530
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2529
2531
|
|
|
2530
2532
|
declare class FilesStore {
|
|
2531
|
-
files: FileStore[];
|
|
2533
|
+
files: FileStore$1[];
|
|
2532
2534
|
variant: FileVariant;
|
|
2533
2535
|
constructor(variant: FileVariant);
|
|
2534
|
-
addFile: (newFile: FileStore) => void;
|
|
2536
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2535
2537
|
removeFile: (index: number) => void;
|
|
2536
|
-
setFiles: (files: FileStore[]) => void;
|
|
2538
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2537
2539
|
uploadFiles: () => Promise<void>;
|
|
2538
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2540
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2539
2541
|
get uploadedAllFiles(): boolean;
|
|
2540
|
-
get notUploadedFiles(): FileStore[];
|
|
2542
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2541
2543
|
get isUploading(): boolean;
|
|
2542
2544
|
get videoLength(): number;
|
|
2543
2545
|
get nonVideoLength(): number;
|
|
@@ -2559,7 +2561,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2559
2561
|
messages?: UploadMediaMessages;
|
|
2560
2562
|
withoutFilesStore?: boolean;
|
|
2561
2563
|
};
|
|
2562
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2564
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2563
2565
|
|
|
2564
2566
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2565
2567
|
onSearchItem: (value: string) => void;
|
|
@@ -2731,11 +2733,11 @@ type DistrictAutocompleteFields = {
|
|
|
2731
2733
|
type ReplaceableTariffFields = {
|
|
2732
2734
|
name: string
|
|
2733
2735
|
id?: number
|
|
2734
|
-
type?: ResourceTypes
|
|
2736
|
+
type?: ResourceTypes$1
|
|
2735
2737
|
}
|
|
2736
2738
|
|
|
2737
2739
|
type TariffCommonFields = {
|
|
2738
|
-
resourceType: ResourceTypes
|
|
2740
|
+
resourceType: ResourceTypes$1
|
|
2739
2741
|
name: string
|
|
2740
2742
|
startDate: DateTime
|
|
2741
2743
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2747,7 +2749,7 @@ type TariffCommonFields = {
|
|
|
2747
2749
|
}
|
|
2748
2750
|
|
|
2749
2751
|
type ElectricityTariffCreationFormFields = {
|
|
2750
|
-
type: ElectricityMeterTypes
|
|
2752
|
+
type: ElectricityMeterTypes$1
|
|
2751
2753
|
isOverallConsumption: boolean
|
|
2752
2754
|
T1?: number
|
|
2753
2755
|
T2?: number
|
|
@@ -2768,7 +2770,7 @@ type TariffCreationFormProps = {
|
|
|
2768
2770
|
handleClose: () => void
|
|
2769
2771
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2770
2772
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2771
|
-
defaultResource: ResourceTypes
|
|
2773
|
+
defaultResource: ResourceTypes$1
|
|
2772
2774
|
settings?: any
|
|
2773
2775
|
}
|
|
2774
2776
|
|
|
@@ -2813,7 +2815,7 @@ declare class TariffsLiteStore {
|
|
|
2813
2815
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2814
2816
|
settings?: any;
|
|
2815
2817
|
constructor(settings?: any);
|
|
2816
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2818
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2817
2819
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2818
2820
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2819
2821
|
id: number;
|
|
@@ -2821,7 +2823,7 @@ declare class TariffsLiteStore {
|
|
|
2821
2823
|
};
|
|
2822
2824
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2823
2825
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2824
|
-
type: ElectricityMeterTypes;
|
|
2826
|
+
type: ElectricityMeterTypes$1;
|
|
2825
2827
|
T1: string | undefined;
|
|
2826
2828
|
T2: string | undefined;
|
|
2827
2829
|
T3: string | undefined;
|
|
@@ -3114,7 +3116,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3114
3116
|
name?: string
|
|
3115
3117
|
label?: string
|
|
3116
3118
|
hideName?: string
|
|
3117
|
-
resource: ResourceTypes
|
|
3119
|
+
resource: ResourceTypes$1
|
|
3118
3120
|
filter?: string
|
|
3119
3121
|
filterRequired?: boolean
|
|
3120
3122
|
settings?: any
|
|
@@ -3127,7 +3129,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3127
3129
|
}
|
|
3128
3130
|
|
|
3129
3131
|
type MeterFeaturesFieldsProps = {
|
|
3130
|
-
resource?: ResourceTypes
|
|
3132
|
+
resource?: ResourceTypes$1
|
|
3131
3133
|
replacements?: LiteMeterInterface[]
|
|
3132
3134
|
isNewResource?: boolean
|
|
3133
3135
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3141,7 +3143,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3141
3143
|
withNextCheck?: boolean
|
|
3142
3144
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3143
3145
|
handleMeterTypeChange?: (
|
|
3144
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3146
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3145
3147
|
) => void
|
|
3146
3148
|
settings?: any
|
|
3147
3149
|
}
|
|
@@ -3153,14 +3155,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3153
3155
|
initialValueT1?: number
|
|
3154
3156
|
initialValueT2?: number
|
|
3155
3157
|
initialValueT3?: number
|
|
3156
|
-
type?: MeterTypes
|
|
3157
|
-
resource?: ResourceTypes
|
|
3158
|
+
type?: MeterTypes$1
|
|
3159
|
+
resource?: ResourceTypes$1
|
|
3158
3160
|
withAutoSending?: boolean
|
|
3159
3161
|
}
|
|
3160
3162
|
|
|
3161
3163
|
type MeterFeaturesFormFields = {
|
|
3162
3164
|
tariff: TariffGroupAutocompleteFields | null
|
|
3163
|
-
company: CompanyAutocompleteFields | null
|
|
3165
|
+
company: CompanyAutocompleteFields$1 | null
|
|
3164
3166
|
nextCheck: DateTime | null
|
|
3165
3167
|
lastValue?: number
|
|
3166
3168
|
lastValueT1?: number
|
|
@@ -3174,8 +3176,8 @@ type MeterFeaturesFormFields = {
|
|
|
3174
3176
|
} & BasicMeterFeaturesFormFields
|
|
3175
3177
|
|
|
3176
3178
|
type BasicMeterFieldsSettings = {
|
|
3177
|
-
resource?: ResourceTypes
|
|
3178
|
-
meterType?: MeterTypes
|
|
3179
|
+
resource?: ResourceTypes$1
|
|
3180
|
+
meterType?: MeterTypes$1
|
|
3179
3181
|
}
|
|
3180
3182
|
|
|
3181
3183
|
type RenderMeterFieldsSettings = {
|
|
@@ -3205,10 +3207,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3205
3207
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3206
3208
|
|
|
3207
3209
|
type MeterTypeRadioGroupProps = {
|
|
3208
|
-
resource?: ResourceTypes
|
|
3210
|
+
resource?: ResourceTypes$1
|
|
3209
3211
|
form: UseFormReturn<any>
|
|
3210
3212
|
handleChange: (
|
|
3211
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3213
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3212
3214
|
) => void
|
|
3213
3215
|
disabled?: boolean
|
|
3214
3216
|
waterOptions?: OptionParams[]
|
|
@@ -3220,7 +3222,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3220
3222
|
type MeterFeaturesFormProps = {
|
|
3221
3223
|
formStore?: MultistepForm$1<any>
|
|
3222
3224
|
handleMeterTypeChange?: (
|
|
3223
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3225
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3224
3226
|
) => void
|
|
3225
3227
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3226
3228
|
|
|
@@ -3288,7 +3290,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3288
3290
|
startDate: undefined;
|
|
3289
3291
|
}, "">;
|
|
3290
3292
|
|
|
3291
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3293
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3292
3294
|
|
|
3293
3295
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3294
3296
|
|
|
@@ -3304,7 +3306,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3304
3306
|
|
|
3305
3307
|
type TariffReplacementFieldsProps = {
|
|
3306
3308
|
form: UseFormReturn<TariffCommonFields>
|
|
3307
|
-
resource: ResourceTypes
|
|
3309
|
+
resource: ResourceTypes$1
|
|
3308
3310
|
setReplaceable: (value: boolean) => void
|
|
3309
3311
|
settings?: any
|
|
3310
3312
|
}
|
|
@@ -3719,7 +3721,7 @@ type UploadPhotosButtonProps = {
|
|
|
3719
3721
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3720
3722
|
|
|
3721
3723
|
type UploadedImageProps = {
|
|
3722
|
-
image: FileStore
|
|
3724
|
+
image: FileStore$1
|
|
3723
3725
|
index: number
|
|
3724
3726
|
onClick: (index: number) => void
|
|
3725
3727
|
onDelete: (index: number) => void
|
|
@@ -3752,14 +3754,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3752
3754
|
};
|
|
3753
3755
|
declare type PartialMeterInfoFields = {
|
|
3754
3756
|
id: number;
|
|
3755
|
-
resource: ResourceTypes;
|
|
3756
|
-
type?: MeterTypes;
|
|
3757
|
+
resource: ResourceTypes$1;
|
|
3758
|
+
type?: MeterTypes$1;
|
|
3757
3759
|
number: string;
|
|
3758
|
-
images: FileStore[];
|
|
3760
|
+
images: FileStore$1[];
|
|
3759
3761
|
maxValue?: PartialMeterValuesFields;
|
|
3760
3762
|
values: PartialMeterValuesFields;
|
|
3761
3763
|
} & PartialMeterValuesFields;
|
|
3762
|
-
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>[];
|
|
3764
|
+
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>[];
|
|
3763
3765
|
|
|
3764
3766
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3765
3767
|
type: string | undefined;
|
|
@@ -3786,4 +3788,4 @@ type SignInPageProps = {
|
|
|
3786
3788
|
|
|
3787
3789
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3788
3790
|
|
|
3789
|
-
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 };
|
|
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 };
|