kui-crm 0.0.548 → 0.0.549
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/hooks/index.d.ts +2 -2
- package/index.d.ts +366 -149
- package/package.json +1 -1
- package/types/index.d.ts +241 -24
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;
|
|
@@ -1035,7 +1035,7 @@ declare type CountryParams = {
|
|
|
1035
1035
|
code: string;
|
|
1036
1036
|
} & CatalogItemParams;
|
|
1037
1037
|
|
|
1038
|
-
type FileWithVisibility = {
|
|
1038
|
+
type FileWithVisibility$1 = {
|
|
1039
1039
|
file: File | null
|
|
1040
1040
|
tenant: boolean
|
|
1041
1041
|
landlord: boolean
|
|
@@ -1043,8 +1043,8 @@ type FileWithVisibility = {
|
|
|
1043
1043
|
url: string
|
|
1044
1044
|
}
|
|
1045
1045
|
|
|
1046
|
-
type InputFileWithVisibilityFields =
|
|
1047
|
-
| FileWithVisibility
|
|
1046
|
+
type InputFileWithVisibilityFields$1 =
|
|
1047
|
+
| FileWithVisibility$1
|
|
1048
1048
|
| DocumentWithVisibility
|
|
1049
1049
|
| null
|
|
1050
1050
|
| undefined
|
|
@@ -1074,7 +1074,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1074
1074
|
}
|
|
1075
1075
|
|
|
1076
1076
|
type ChangeReasonFormFields = {
|
|
1077
|
-
reason: InputFileWithVisibilityFields
|
|
1077
|
+
reason: InputFileWithVisibilityFields$1
|
|
1078
1078
|
comment?: string
|
|
1079
1079
|
}
|
|
1080
1080
|
|
|
@@ -1089,13 +1089,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1089
1089
|
settings?: any
|
|
1090
1090
|
} & InputWithControllerProps<TFormValues>
|
|
1091
1091
|
|
|
1092
|
-
type CompanyAutocompleteFields = {
|
|
1092
|
+
type CompanyAutocompleteFields$1 = {
|
|
1093
1093
|
id: number
|
|
1094
1094
|
name: string
|
|
1095
1095
|
logo?: string | null
|
|
1096
1096
|
}
|
|
1097
1097
|
|
|
1098
|
-
declare class FileStore implements FileStoreInterface {
|
|
1098
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1099
1099
|
id: number | null;
|
|
1100
1100
|
index?: number | null;
|
|
1101
1101
|
name: string;
|
|
@@ -1126,12 +1126,12 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1126
1126
|
setIndex: (index: number) => void;
|
|
1127
1127
|
get title(): string;
|
|
1128
1128
|
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;
|
|
1129
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1130
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1131
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1132
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1133
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1134
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1135
1135
|
}
|
|
1136
1136
|
|
|
1137
1137
|
declare type ImageParams = {
|
|
@@ -1166,7 +1166,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1166
1166
|
delete: () => Promise<void>;
|
|
1167
1167
|
get extension(): string;
|
|
1168
1168
|
get title(): string;
|
|
1169
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1169
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1170
1170
|
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1171
1171
|
}
|
|
1172
1172
|
|
|
@@ -1292,7 +1292,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1292
1292
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1293
1293
|
payerCode?: string;
|
|
1294
1294
|
communalServicesAccount?: string;
|
|
1295
|
-
company?: CompanyAutocompleteFields | null;
|
|
1295
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1296
1296
|
} & ChangeReasonFormFields;
|
|
1297
1297
|
declare type ApartmentOverviewInfoFields = {
|
|
1298
1298
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1315,14 +1315,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1315
1315
|
} & ApartmentPaymentInfoParams;
|
|
1316
1316
|
declare type InspectionMeterInfoParams = {
|
|
1317
1317
|
id: number;
|
|
1318
|
-
resource: ResourceTypes;
|
|
1319
|
-
type?: MeterTypes;
|
|
1318
|
+
resource: ResourceTypes$1;
|
|
1319
|
+
type?: MeterTypes$1;
|
|
1320
1320
|
number: string;
|
|
1321
1321
|
startDate: DateTime | null;
|
|
1322
1322
|
company: CompanyLiteParams;
|
|
1323
1323
|
operationalAccountNumber?: string | null;
|
|
1324
1324
|
tariff: EntityLinkParams | null;
|
|
1325
|
-
passportFile: FileStore | null;
|
|
1325
|
+
passportFile: FileStore$1 | null;
|
|
1326
1326
|
initialValue?: number;
|
|
1327
1327
|
lastValue?: number;
|
|
1328
1328
|
initialValueT1?: number;
|
|
@@ -1344,8 +1344,8 @@ declare type ValuesParams = {
|
|
|
1344
1344
|
};
|
|
1345
1345
|
declare type PartialMeterInfoParams = {
|
|
1346
1346
|
id: number;
|
|
1347
|
-
type: MeterTypes;
|
|
1348
|
-
resource: ResourceTypes;
|
|
1347
|
+
type: MeterTypes$1;
|
|
1348
|
+
resource: ResourceTypes$1;
|
|
1349
1349
|
number: string;
|
|
1350
1350
|
values: ValuesParams;
|
|
1351
1351
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1357,7 +1357,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1357
1357
|
declare type ComparableObjectParams = {
|
|
1358
1358
|
id: number;
|
|
1359
1359
|
link: string;
|
|
1360
|
-
screenshot: FileStore | null;
|
|
1360
|
+
screenshot: FileStore$1 | null;
|
|
1361
1361
|
price: number;
|
|
1362
1362
|
differences: string;
|
|
1363
1363
|
};
|
|
@@ -1365,7 +1365,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1365
1365
|
id: number;
|
|
1366
1366
|
dataSourceName: string;
|
|
1367
1367
|
link: string;
|
|
1368
|
-
screenshot: FileStore | null;
|
|
1368
|
+
screenshot: FileStore$1 | null;
|
|
1369
1369
|
minPrice: number;
|
|
1370
1370
|
maxPrice: number;
|
|
1371
1371
|
};
|
|
@@ -1390,8 +1390,8 @@ declare type FillingInfoFormFields = {
|
|
|
1390
1390
|
name?: string;
|
|
1391
1391
|
description?: string;
|
|
1392
1392
|
type?: ApartmentFillingVariants | null;
|
|
1393
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1394
|
-
tempImages?: ImageBodyRequest[];
|
|
1393
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1394
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1395
1395
|
};
|
|
1396
1396
|
|
|
1397
1397
|
declare type FillingTagParams = {
|
|
@@ -1406,7 +1406,7 @@ declare type FillingParams = {
|
|
|
1406
1406
|
images?: (ImageStore | UploadFileParams)[];
|
|
1407
1407
|
serialNumber?: string;
|
|
1408
1408
|
numberOfSubjects?: number | string | null;
|
|
1409
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1409
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1410
1410
|
type?: ApartmentFillingVariants;
|
|
1411
1411
|
loader?: Loader;
|
|
1412
1412
|
};
|
|
@@ -1418,7 +1418,7 @@ declare type FillingFullParams = {
|
|
|
1418
1418
|
images?: (ImageStore | UploadFileParams)[];
|
|
1419
1419
|
serialNumber?: string;
|
|
1420
1420
|
numberOfSubjects?: number | string | null;
|
|
1421
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1421
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1422
1422
|
type?: ApartmentFillingVariants;
|
|
1423
1423
|
loader?: Loader;
|
|
1424
1424
|
check?: boolean | null;
|
|
@@ -1437,6 +1437,206 @@ declare type TariffGroupLiteParams = {
|
|
|
1437
1437
|
name: string;
|
|
1438
1438
|
};
|
|
1439
1439
|
|
|
1440
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1441
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1442
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
1443
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1444
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1445
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1446
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1447
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1448
|
+
declare type FileBodyRequest = {
|
|
1449
|
+
temp_file_id?: number;
|
|
1450
|
+
name: string;
|
|
1451
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1452
|
+
url?: string;
|
|
1453
|
+
};
|
|
1454
|
+
declare type ImageBodyRequest = {
|
|
1455
|
+
temp_file_id: number;
|
|
1456
|
+
image_name: string;
|
|
1457
|
+
url: string;
|
|
1458
|
+
};
|
|
1459
|
+
declare type VideoBodyRequest = {
|
|
1460
|
+
temp_file_id: number;
|
|
1461
|
+
file_name: string;
|
|
1462
|
+
url: string;
|
|
1463
|
+
};
|
|
1464
|
+
declare type ImageModel = {
|
|
1465
|
+
id: number;
|
|
1466
|
+
image_name?: string;
|
|
1467
|
+
image_url?: string;
|
|
1468
|
+
image_small_url: string;
|
|
1469
|
+
image_medium_url: string;
|
|
1470
|
+
image_large_url: string;
|
|
1471
|
+
size: number;
|
|
1472
|
+
};
|
|
1473
|
+
declare type FileModel = {
|
|
1474
|
+
id: number;
|
|
1475
|
+
name: string;
|
|
1476
|
+
size: number;
|
|
1477
|
+
url: string;
|
|
1478
|
+
};
|
|
1479
|
+
declare type DocumentModel = {
|
|
1480
|
+
pk: number;
|
|
1481
|
+
name: string;
|
|
1482
|
+
created?: string;
|
|
1483
|
+
attachment: string;
|
|
1484
|
+
size: number;
|
|
1485
|
+
uploaded_by?: string | null;
|
|
1486
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1487
|
+
};
|
|
1488
|
+
|
|
1489
|
+
type FileWithVisibility = {
|
|
1490
|
+
file: File | null
|
|
1491
|
+
tenant: boolean
|
|
1492
|
+
landlord: boolean
|
|
1493
|
+
visibility: DocumentVisibilityVariants$1
|
|
1494
|
+
url: string
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
type InputFileWithVisibilityFields =
|
|
1498
|
+
| FileWithVisibility
|
|
1499
|
+
| DocumentWithVisibility$1
|
|
1500
|
+
| null
|
|
1501
|
+
| undefined
|
|
1502
|
+
|
|
1503
|
+
type CompanyAutocompleteFields = {
|
|
1504
|
+
id: number
|
|
1505
|
+
name: string
|
|
1506
|
+
logo?: string | null
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1510
|
+
id: number | null;
|
|
1511
|
+
index?: number | null;
|
|
1512
|
+
name: string;
|
|
1513
|
+
url: string;
|
|
1514
|
+
smallImageUrl?: string;
|
|
1515
|
+
mediumImageUrl?: string;
|
|
1516
|
+
largeImageUrl?: string;
|
|
1517
|
+
date: DateTime | null;
|
|
1518
|
+
size: number | null;
|
|
1519
|
+
createdBy: string;
|
|
1520
|
+
visibility?: DocumentVisibilityVariants$1;
|
|
1521
|
+
filesStore?: FilesStoreInterface$1 | null;
|
|
1522
|
+
extension: string;
|
|
1523
|
+
file?: File | null;
|
|
1524
|
+
uploadStatus: LoadStatus$1;
|
|
1525
|
+
uploadedData: UploadedFileParams$1;
|
|
1526
|
+
loader: Loader;
|
|
1527
|
+
withFileCleanUp?: boolean;
|
|
1528
|
+
isVideo?: boolean;
|
|
1529
|
+
constructor(file: FileStoreParams$1, filesStore?: FilesStoreInterface$1 | null, withFileCleanUp?: boolean);
|
|
1530
|
+
uploadFile: (variant: FileVariant$1) => Promise<void>;
|
|
1531
|
+
updateUploadStatus: (status: LoadStatus$1) => void;
|
|
1532
|
+
updateUploadedData: (data: UploadedFileParams$1) => void;
|
|
1533
|
+
editFile: (data: any) => void;
|
|
1534
|
+
deleteFile: () => void;
|
|
1535
|
+
updateName: (name: string) => void;
|
|
1536
|
+
updateStore: (data: unknown) => void;
|
|
1537
|
+
setIndex: (index: number) => void;
|
|
1538
|
+
get title(): string;
|
|
1539
|
+
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1540
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1541
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1542
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1543
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1544
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1545
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
type PartialPayerFields$1 = {
|
|
1549
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1550
|
+
mainPayer?: ResourcePaymentRoles
|
|
1551
|
+
refundFrom?: ResourcePaymentRoles
|
|
1552
|
+
partType?: UnitOfPaymentTypes | null
|
|
1553
|
+
refundValue?: number | string | null
|
|
1554
|
+
utilityType: UtilityTypes
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
declare type FilesStoreInterface$1 = {
|
|
1558
|
+
editFile: (id: number, data: any, callback: () => void) => void;
|
|
1559
|
+
deleteFile: (id: number) => void;
|
|
1560
|
+
};
|
|
1561
|
+
declare type FileStoreInterface$1 = {
|
|
1562
|
+
id: number | null;
|
|
1563
|
+
name: string;
|
|
1564
|
+
url: string;
|
|
1565
|
+
date: DateTime | null;
|
|
1566
|
+
size: number | null;
|
|
1567
|
+
createdBy: string;
|
|
1568
|
+
visibility?: DocumentVisibilityVariants$1;
|
|
1569
|
+
filesStore?: FilesStoreInterface$1 | null;
|
|
1570
|
+
editFile?: (data: any) => void;
|
|
1571
|
+
deleteFile?: () => void;
|
|
1572
|
+
extension: string;
|
|
1573
|
+
title: string;
|
|
1574
|
+
};
|
|
1575
|
+
declare type DocumentVisibilityVariants$1 = "everybody" | "tenant" | "landlord" | "nobody";
|
|
1576
|
+
declare type DocumentWithVisibility$1 = {
|
|
1577
|
+
id: number | null;
|
|
1578
|
+
name: string;
|
|
1579
|
+
url: string;
|
|
1580
|
+
date: DateTime | null;
|
|
1581
|
+
size: number | null;
|
|
1582
|
+
createdBy: string;
|
|
1583
|
+
visibility?: DocumentVisibilityVariants$1;
|
|
1584
|
+
extension: string;
|
|
1585
|
+
};
|
|
1586
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1587
|
+
declare type FileStoreParams$1 = {
|
|
1588
|
+
id?: number | null;
|
|
1589
|
+
url?: string;
|
|
1590
|
+
index?: number | string | null;
|
|
1591
|
+
createdBy?: string | null;
|
|
1592
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1593
|
+
name?: string;
|
|
1594
|
+
date?: string | null;
|
|
1595
|
+
size?: number | null;
|
|
1596
|
+
file?: File | null;
|
|
1597
|
+
uploadStatus?: LoadStatus$1;
|
|
1598
|
+
uploadedData?: UploadedFileParams$1;
|
|
1599
|
+
smallImageUrl?: string;
|
|
1600
|
+
mediumImageUrl?: string;
|
|
1601
|
+
largeImageUrl?: string;
|
|
1602
|
+
isVideo?: boolean;
|
|
1603
|
+
};
|
|
1604
|
+
declare type LoadStatus$1 = "loading" | "success" | "failure" | "default" | "error";
|
|
1605
|
+
declare type FileVariant$1 = "image" | "document";
|
|
1606
|
+
|
|
1607
|
+
type TariffGroupAutocompleteFields$1 = {
|
|
1608
|
+
id: number
|
|
1609
|
+
name: string
|
|
1610
|
+
type?: string
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
type BasicMeterFeaturesFormFields$1 = {
|
|
1614
|
+
number: string
|
|
1615
|
+
startDate: DateTime | null
|
|
1616
|
+
initialValue?: number
|
|
1617
|
+
initialValueT1?: number
|
|
1618
|
+
initialValueT2?: number
|
|
1619
|
+
initialValueT3?: number
|
|
1620
|
+
type?: MeterTypes
|
|
1621
|
+
resource?: ResourceTypes
|
|
1622
|
+
withAutoSending?: boolean
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
type MeterFeaturesFormFields$1 = {
|
|
1626
|
+
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1627
|
+
company: CompanyAutocompleteFields | null
|
|
1628
|
+
nextCheck: DateTime | null
|
|
1629
|
+
lastValue?: number
|
|
1630
|
+
lastValueT1?: number
|
|
1631
|
+
lastValueT2?: number
|
|
1632
|
+
lastValueT3?: number
|
|
1633
|
+
replaceableCounter?: string | number
|
|
1634
|
+
meterPayer?: PartialPayerFields$1
|
|
1635
|
+
operationalAccountNumber?: string | null
|
|
1636
|
+
archived?: boolean
|
|
1637
|
+
tariffChangeDate?: DateTime | null
|
|
1638
|
+
} & BasicMeterFeaturesFormFields$1
|
|
1639
|
+
|
|
1440
1640
|
declare type MeterValues = {
|
|
1441
1641
|
initialValue?: number | string | null;
|
|
1442
1642
|
lastValue?: number | string | null;
|
|
@@ -1445,7 +1645,13 @@ declare type ApartmentMeterValues = {
|
|
|
1445
1645
|
T1?: MeterValues;
|
|
1446
1646
|
T2?: MeterValues;
|
|
1447
1647
|
T3?: MeterValues;
|
|
1448
|
-
} & MeterValues;
|
|
1648
|
+
} & MeterValues;
|
|
1649
|
+
declare type InspectionMeterFields = {
|
|
1650
|
+
id?: number;
|
|
1651
|
+
resource: ResourceTypes;
|
|
1652
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1653
|
+
images: FileStore[];
|
|
1654
|
+
} & MeterFeaturesFormFields$1;
|
|
1449
1655
|
|
|
1450
1656
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
1451
1657
|
declare type InspectionFeedbackParams = {
|
|
@@ -1459,7 +1665,7 @@ type PartialPayerProps<T> = {
|
|
|
1459
1665
|
title: string
|
|
1460
1666
|
name: string
|
|
1461
1667
|
form: UseFormReturn<T>
|
|
1462
|
-
utilityType: UtilityTypes
|
|
1668
|
+
utilityType: UtilityTypes$1
|
|
1463
1669
|
fieldsVariant?: PartialPayerVariants
|
|
1464
1670
|
settings?: ObjectType
|
|
1465
1671
|
disabled?: boolean
|
|
@@ -1467,12 +1673,12 @@ type PartialPayerProps<T> = {
|
|
|
1467
1673
|
}
|
|
1468
1674
|
|
|
1469
1675
|
type PartialPayerFields = {
|
|
1470
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1471
|
-
mainPayer?: ResourcePaymentRoles
|
|
1472
|
-
refundFrom?: ResourcePaymentRoles
|
|
1473
|
-
partType?: UnitOfPaymentTypes | null
|
|
1676
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1677
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1678
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1679
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1474
1680
|
refundValue?: number | string | null
|
|
1475
|
-
utilityType: UtilityTypes
|
|
1681
|
+
utilityType: UtilityTypes$1
|
|
1476
1682
|
}
|
|
1477
1683
|
|
|
1478
1684
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1556,15 +1762,26 @@ declare type ResourceAccessParams = {
|
|
|
1556
1762
|
password?: string;
|
|
1557
1763
|
description?: string;
|
|
1558
1764
|
};
|
|
1559
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1765
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1560
1766
|
declare type ApartmentResourceCompanyDetails = {
|
|
1561
|
-
company: CompanyAutocompleteFields;
|
|
1767
|
+
company: CompanyAutocompleteFields$1;
|
|
1562
1768
|
operationalAccountNumber: string;
|
|
1563
1769
|
payerCode: string;
|
|
1564
1770
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1565
1771
|
access: ResourceAccessParams;
|
|
1566
1772
|
sampleReceiptLink: string;
|
|
1567
|
-
};
|
|
1773
|
+
};
|
|
1774
|
+
declare type ApartmentResourceInterface = {
|
|
1775
|
+
type: ApartmentResourceTypes;
|
|
1776
|
+
name?: string;
|
|
1777
|
+
companyDetails: ApartmentResourceCompanyDetails | null;
|
|
1778
|
+
editResource?: () => Promise<void>;
|
|
1779
|
+
deleteResource?: () => Promise<void>;
|
|
1780
|
+
isFixedResource?: boolean;
|
|
1781
|
+
};
|
|
1782
|
+
declare type ApartmentResourceFieldsParams = {
|
|
1783
|
+
meters?: InspectionMeterFields[];
|
|
1784
|
+
} & ApartmentResourceInterface;
|
|
1568
1785
|
|
|
1569
1786
|
declare type FilesStoreInterface = {
|
|
1570
1787
|
editFile: (id: number, data: any, callback: () => void) => void;
|
|
@@ -1589,15 +1806,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1589
1806
|
loader: Loader;
|
|
1590
1807
|
};
|
|
1591
1808
|
declare type PostDocumentsResponse = {
|
|
1592
|
-
documents: DocumentModel[];
|
|
1809
|
+
documents: DocumentModel$1[];
|
|
1593
1810
|
};
|
|
1594
1811
|
declare type DocumentAgentInterface = {
|
|
1595
1812
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1596
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1597
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1813
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1814
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1598
1815
|
};
|
|
1599
1816
|
declare type DocumentsAgentInterface = {
|
|
1600
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1817
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1601
1818
|
} & DocumentAgentInterface;
|
|
1602
1819
|
|
|
1603
1820
|
declare type MetroLineParams = {
|
|
@@ -1668,7 +1885,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1668
1885
|
};
|
|
1669
1886
|
declare type ApartmentDocumentModel = {
|
|
1670
1887
|
id: number;
|
|
1671
|
-
document: DocumentModel;
|
|
1888
|
+
document: DocumentModel$1;
|
|
1672
1889
|
expiration_date: string;
|
|
1673
1890
|
start_date: string;
|
|
1674
1891
|
number: string;
|
|
@@ -1680,7 +1897,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1680
1897
|
tariff?: TariffLinkModel;
|
|
1681
1898
|
activation_date?: string;
|
|
1682
1899
|
check_date?: string;
|
|
1683
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1900
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1684
1901
|
apartment: ApartmentLinkModel;
|
|
1685
1902
|
company: CompanyLiteParams;
|
|
1686
1903
|
operating_account_number?: string | null;
|
|
@@ -1801,7 +2018,7 @@ declare type ApartmentModel = {
|
|
|
1801
2018
|
owner_id: number;
|
|
1802
2019
|
metro_stations: ApartmentMetroParams[];
|
|
1803
2020
|
rental_status: RentalStatuses;
|
|
1804
|
-
main_image: ImageModel;
|
|
2021
|
+
main_image: ImageModel$1;
|
|
1805
2022
|
tv_type: TVTypes | null;
|
|
1806
2023
|
inspection: ApartmentInspectionModel;
|
|
1807
2024
|
distance_to_center_kilometers: number | null;
|
|
@@ -1828,7 +2045,7 @@ declare type ApartmentLiteModel = {
|
|
|
1828
2045
|
renter: LiteUserModel | null;
|
|
1829
2046
|
rental_status: RentalStatuses;
|
|
1830
2047
|
renter_payment_status: RentalPaymentStatuses;
|
|
1831
|
-
main_image: ImageModel;
|
|
2048
|
+
main_image: ImageModel$1;
|
|
1832
2049
|
service_contract?: ServiceContractLiteModel;
|
|
1833
2050
|
is_imported_from_old_crm?: boolean;
|
|
1834
2051
|
max_electricity_counters?: number | null;
|
|
@@ -1874,7 +2091,7 @@ declare type ObjectForMapModel = {
|
|
|
1874
2091
|
apartment_number: string;
|
|
1875
2092
|
address: string;
|
|
1876
2093
|
geolocation: LatLonParams;
|
|
1877
|
-
main_image: ImageModel;
|
|
2094
|
+
main_image: ImageModel$1;
|
|
1878
2095
|
renter: ClientLiteModel | null;
|
|
1879
2096
|
owner: ClientLiteModel;
|
|
1880
2097
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -1906,13 +2123,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
1906
2123
|
agent: DocumentAgentInterface;
|
|
1907
2124
|
loader: Loader;
|
|
1908
2125
|
settings?: any;
|
|
1909
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2126
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
1910
2127
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
1911
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2128
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
1912
2129
|
deleteDocument: (...params: any) => Promise<void>;
|
|
1913
2130
|
get extension(): string;
|
|
1914
2131
|
get title(): string;
|
|
1915
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2132
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
1916
2133
|
}
|
|
1917
2134
|
|
|
1918
2135
|
type InputTypes =
|
|
@@ -1972,13 +2189,13 @@ declare type FileParams = {
|
|
|
1972
2189
|
size?: number | null;
|
|
1973
2190
|
file: File;
|
|
1974
2191
|
};
|
|
1975
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2192
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1976
2193
|
declare type FileStoreParams = {
|
|
1977
2194
|
id?: number | null;
|
|
1978
2195
|
url?: string;
|
|
1979
2196
|
index?: number | string | null;
|
|
1980
2197
|
createdBy?: string | null;
|
|
1981
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2198
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1982
2199
|
name?: string;
|
|
1983
2200
|
date?: string | null;
|
|
1984
2201
|
size?: number | null;
|
|
@@ -2129,8 +2346,8 @@ declare const FillingTagsAgent: {
|
|
|
2129
2346
|
};
|
|
2130
2347
|
|
|
2131
2348
|
declare const TariffsAgent: {
|
|
2132
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2133
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2349
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2350
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2134
2351
|
};
|
|
2135
2352
|
|
|
2136
2353
|
type SignInFormFields = {
|
|
@@ -2149,8 +2366,8 @@ declare const ApartmentsAgent: {
|
|
|
2149
2366
|
};
|
|
2150
2367
|
|
|
2151
2368
|
declare const ApartmentMetersAgent: {
|
|
2152
|
-
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2153
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2369
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2370
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2154
2371
|
};
|
|
2155
2372
|
|
|
2156
2373
|
declare const requests: {
|
|
@@ -2174,7 +2391,7 @@ declare const meterUnitLabel: {
|
|
|
2174
2391
|
electricity: string;
|
|
2175
2392
|
};
|
|
2176
2393
|
|
|
2177
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2394
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2178
2395
|
|
|
2179
2396
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2180
2397
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2190,34 +2407,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2190
2407
|
}, "">;
|
|
2191
2408
|
|
|
2192
2409
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2193
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2410
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2194
2411
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2195
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2412
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2196
2413
|
temp_file_id: number;
|
|
2197
2414
|
name: string;
|
|
2198
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2415
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2199
2416
|
url: string;
|
|
2200
2417
|
} | null;
|
|
2201
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2202
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2203
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2418
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2419
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2420
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2204
2421
|
name: string;
|
|
2205
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2422
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2206
2423
|
} | null;
|
|
2207
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2424
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2208
2425
|
name: string;
|
|
2209
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2426
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2210
2427
|
} | null>;
|
|
2211
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2212
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2213
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2214
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2215
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2216
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2217
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2218
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2219
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2220
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2428
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2429
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2430
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2431
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2432
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2433
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2434
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2435
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2436
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2437
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2221
2438
|
|
|
2222
2439
|
declare const matchesAPISubjectRoles: {
|
|
2223
2440
|
maroom: string;
|
|
@@ -2310,16 +2527,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2310
2527
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2311
2528
|
|
|
2312
2529
|
declare class FilesStore {
|
|
2313
|
-
files: FileStore[];
|
|
2530
|
+
files: FileStore$1[];
|
|
2314
2531
|
variant: FileVariant;
|
|
2315
2532
|
constructor(variant: FileVariant);
|
|
2316
|
-
addFile: (newFile: FileStore) => void;
|
|
2533
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2317
2534
|
removeFile: (index: number) => void;
|
|
2318
|
-
setFiles: (files: FileStore[]) => void;
|
|
2535
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2319
2536
|
uploadFiles: () => Promise<void>;
|
|
2320
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2537
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2321
2538
|
get uploadedAllFiles(): boolean;
|
|
2322
|
-
get notUploadedFiles(): FileStore[];
|
|
2539
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2323
2540
|
get isUploading(): boolean;
|
|
2324
2541
|
get videoLength(): number;
|
|
2325
2542
|
get nonVideoLength(): number;
|
|
@@ -2341,7 +2558,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2341
2558
|
messages?: UploadMediaMessages;
|
|
2342
2559
|
withoutFilesStore?: boolean;
|
|
2343
2560
|
};
|
|
2344
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2561
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2345
2562
|
|
|
2346
2563
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2347
2564
|
onSearchItem: (value: string) => void;
|
|
@@ -2513,11 +2730,11 @@ type DistrictAutocompleteFields = {
|
|
|
2513
2730
|
type ReplaceableTariffFields = {
|
|
2514
2731
|
name: string
|
|
2515
2732
|
id?: number
|
|
2516
|
-
type?: ResourceTypes
|
|
2733
|
+
type?: ResourceTypes$1
|
|
2517
2734
|
}
|
|
2518
2735
|
|
|
2519
2736
|
type TariffCommonFields = {
|
|
2520
|
-
resourceType: ResourceTypes
|
|
2737
|
+
resourceType: ResourceTypes$1
|
|
2521
2738
|
name: string
|
|
2522
2739
|
startDate: DateTime
|
|
2523
2740
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2529,7 +2746,7 @@ type TariffCommonFields = {
|
|
|
2529
2746
|
}
|
|
2530
2747
|
|
|
2531
2748
|
type ElectricityTariffCreationFormFields = {
|
|
2532
|
-
type: ElectricityMeterTypes
|
|
2749
|
+
type: ElectricityMeterTypes$1
|
|
2533
2750
|
isOverallConsumption: boolean
|
|
2534
2751
|
T1?: number
|
|
2535
2752
|
T2?: number
|
|
@@ -2550,7 +2767,7 @@ type TariffCreationFormProps = {
|
|
|
2550
2767
|
handleClose: () => void
|
|
2551
2768
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2552
2769
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2553
|
-
defaultResource: ResourceTypes
|
|
2770
|
+
defaultResource: ResourceTypes$1
|
|
2554
2771
|
settings?: any
|
|
2555
2772
|
}
|
|
2556
2773
|
|
|
@@ -2595,7 +2812,7 @@ declare class TariffsLiteStore {
|
|
|
2595
2812
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2596
2813
|
settings?: any;
|
|
2597
2814
|
constructor(settings?: any);
|
|
2598
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2815
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2599
2816
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2600
2817
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2601
2818
|
id: number;
|
|
@@ -2603,7 +2820,7 @@ declare class TariffsLiteStore {
|
|
|
2603
2820
|
};
|
|
2604
2821
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2605
2822
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2606
|
-
type: ElectricityMeterTypes;
|
|
2823
|
+
type: ElectricityMeterTypes$1;
|
|
2607
2824
|
T1: string | undefined;
|
|
2608
2825
|
T2: string | undefined;
|
|
2609
2826
|
T3: string | undefined;
|
|
@@ -2896,7 +3113,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
2896
3113
|
name?: string
|
|
2897
3114
|
label?: string
|
|
2898
3115
|
hideName?: string
|
|
2899
|
-
resource: ResourceTypes
|
|
3116
|
+
resource: ResourceTypes$1
|
|
2900
3117
|
filter?: string
|
|
2901
3118
|
filterRequired?: boolean
|
|
2902
3119
|
settings?: any
|
|
@@ -2909,7 +3126,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
2909
3126
|
}
|
|
2910
3127
|
|
|
2911
3128
|
type MeterFeaturesFieldsProps = {
|
|
2912
|
-
resource?: ResourceTypes
|
|
3129
|
+
resource?: ResourceTypes$1
|
|
2913
3130
|
replacements?: LiteMeterInterface[]
|
|
2914
3131
|
isNewResource?: boolean
|
|
2915
3132
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -2923,7 +3140,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
2923
3140
|
withNextCheck?: boolean
|
|
2924
3141
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
2925
3142
|
handleMeterTypeChange?: (
|
|
2926
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3143
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
2927
3144
|
) => void
|
|
2928
3145
|
settings?: any
|
|
2929
3146
|
}
|
|
@@ -2935,14 +3152,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
2935
3152
|
initialValueT1?: number
|
|
2936
3153
|
initialValueT2?: number
|
|
2937
3154
|
initialValueT3?: number
|
|
2938
|
-
type?: MeterTypes
|
|
2939
|
-
resource?: ResourceTypes
|
|
3155
|
+
type?: MeterTypes$1
|
|
3156
|
+
resource?: ResourceTypes$1
|
|
2940
3157
|
withAutoSending?: boolean
|
|
2941
3158
|
}
|
|
2942
3159
|
|
|
2943
3160
|
type MeterFeaturesFormFields = {
|
|
2944
3161
|
tariff: TariffGroupAutocompleteFields | null
|
|
2945
|
-
company: CompanyAutocompleteFields | null
|
|
3162
|
+
company: CompanyAutocompleteFields$1 | null
|
|
2946
3163
|
nextCheck: DateTime | null
|
|
2947
3164
|
lastValue?: number
|
|
2948
3165
|
lastValueT1?: number
|
|
@@ -2956,8 +3173,8 @@ type MeterFeaturesFormFields = {
|
|
|
2956
3173
|
} & BasicMeterFeaturesFormFields
|
|
2957
3174
|
|
|
2958
3175
|
type BasicMeterFieldsSettings = {
|
|
2959
|
-
resource?: ResourceTypes
|
|
2960
|
-
meterType?: MeterTypes
|
|
3176
|
+
resource?: ResourceTypes$1
|
|
3177
|
+
meterType?: MeterTypes$1
|
|
2961
3178
|
}
|
|
2962
3179
|
|
|
2963
3180
|
type RenderMeterFieldsSettings = {
|
|
@@ -2987,10 +3204,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
2987
3204
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
2988
3205
|
|
|
2989
3206
|
type MeterTypeRadioGroupProps = {
|
|
2990
|
-
resource?: ResourceTypes
|
|
3207
|
+
resource?: ResourceTypes$1
|
|
2991
3208
|
form: UseFormReturn<any>
|
|
2992
3209
|
handleChange: (
|
|
2993
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3210
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
2994
3211
|
) => void
|
|
2995
3212
|
disabled?: boolean
|
|
2996
3213
|
waterOptions?: OptionParams[]
|
|
@@ -3002,7 +3219,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3002
3219
|
type MeterFeaturesFormProps = {
|
|
3003
3220
|
formStore?: MultistepForm$1<any>
|
|
3004
3221
|
handleMeterTypeChange?: (
|
|
3005
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3222
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3006
3223
|
) => void
|
|
3007
3224
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3008
3225
|
|
|
@@ -3070,7 +3287,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3070
3287
|
startDate: undefined;
|
|
3071
3288
|
}, "">;
|
|
3072
3289
|
|
|
3073
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3290
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3074
3291
|
|
|
3075
3292
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3076
3293
|
|
|
@@ -3086,7 +3303,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3086
3303
|
|
|
3087
3304
|
type TariffReplacementFieldsProps = {
|
|
3088
3305
|
form: UseFormReturn<TariffCommonFields>
|
|
3089
|
-
resource: ResourceTypes
|
|
3306
|
+
resource: ResourceTypes$1
|
|
3090
3307
|
setReplaceable: (value: boolean) => void
|
|
3091
3308
|
settings?: any
|
|
3092
3309
|
}
|
|
@@ -3501,7 +3718,7 @@ type UploadPhotosButtonProps = {
|
|
|
3501
3718
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3502
3719
|
|
|
3503
3720
|
type UploadedImageProps = {
|
|
3504
|
-
image: FileStore
|
|
3721
|
+
image: FileStore$1
|
|
3505
3722
|
index: number
|
|
3506
3723
|
onClick: (index: number) => void
|
|
3507
3724
|
onDelete: (index: number) => void
|
|
@@ -3534,14 +3751,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3534
3751
|
};
|
|
3535
3752
|
declare type PartialMeterInfoFields = {
|
|
3536
3753
|
id: number;
|
|
3537
|
-
resource: ResourceTypes;
|
|
3538
|
-
type?: MeterTypes;
|
|
3754
|
+
resource: ResourceTypes$1;
|
|
3755
|
+
type?: MeterTypes$1;
|
|
3539
3756
|
number: string;
|
|
3540
|
-
images: FileStore[];
|
|
3757
|
+
images: FileStore$1[];
|
|
3541
3758
|
maxValue?: PartialMeterValuesFields;
|
|
3542
3759
|
values: PartialMeterValuesFields;
|
|
3543
3760
|
} & PartialMeterValuesFields;
|
|
3544
|
-
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>[];
|
|
3761
|
+
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>[];
|
|
3545
3762
|
|
|
3546
3763
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3547
3764
|
type: string | undefined;
|
|
@@ -3568,4 +3785,4 @@ type SignInPageProps = {
|
|
|
3568
3785
|
|
|
3569
3786
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3570
3787
|
|
|
3571
|
-
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, 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, 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 };
|
|
3788
|
+
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 };
|