kui-crm 0.0.569 → 0.0.571
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 +196 -190
- package/package.json +1 -1
- package/types/index.d.ts +141 -135
package/index.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles
|
|
190
|
-
declare type UnitOfPaymentTypes
|
|
191
|
-
declare type WaterMeterTypes
|
|
192
|
-
declare type ElectricityMeterTypes
|
|
193
|
-
declare type ResourceTypes
|
|
194
|
-
declare type MeterTypes
|
|
195
|
-
declare type UtilityTypes
|
|
189
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants
|
|
203
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel
|
|
242
|
+
main_image: ImageModel | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel
|
|
252
|
+
main_image: ImageModel | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles
|
|
267
|
-
refund_from: ResourcePaymentRoles
|
|
265
|
+
utility_type: UtilityTypes;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
+
refund_from: ResourcePaymentRoles;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes
|
|
269
|
+
value_type?: UnitOfPaymentTypes;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest
|
|
271
|
+
declare type FileBodyRequest = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest
|
|
277
|
+
declare type ImageBodyRequest = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest
|
|
282
|
+
declare type VideoBodyRequest = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel
|
|
291
|
+
declare type ImageModel = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel$1 = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel
|
|
300
|
+
declare type FileModel = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel
|
|
306
|
+
declare type DocumentModel = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -409,7 +409,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
409
409
|
provider_type: string;
|
|
410
410
|
};
|
|
411
411
|
declare type DataTransferFormats = "online" | "offline";
|
|
412
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes
|
|
412
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
413
413
|
declare type ApartmentResourceModel = {
|
|
414
414
|
id: number;
|
|
415
415
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -418,7 +418,7 @@ declare type ApartmentResourceModel = {
|
|
|
418
418
|
payer_code?: string;
|
|
419
419
|
meter_readings_day_from?: number;
|
|
420
420
|
meter_readings_day_to?: number;
|
|
421
|
-
receipt_example?: DocumentModel
|
|
421
|
+
receipt_example?: DocumentModel;
|
|
422
422
|
provider_auth_login?: string;
|
|
423
423
|
provider_auth_password?: string;
|
|
424
424
|
provider_url?: string;
|
|
@@ -433,8 +433,8 @@ declare type ApartmentResourceModel = {
|
|
|
433
433
|
declare type ApartmentResourcesResponse = ApartmentResourceModel[];
|
|
434
434
|
|
|
435
435
|
declare type InspectionSignersModel = {
|
|
436
|
-
tenant?:
|
|
437
|
-
landlord?:
|
|
436
|
+
tenant?: ClientLiteModel | null;
|
|
437
|
+
landlord?: ClientLiteModel | null;
|
|
438
438
|
};
|
|
439
439
|
declare type InspectionRoomPhotoTypes = "kitchen" | "bathroom" | "room" | "bedroom" | "entrance" | "others" | "toilet" | "combined_bathroom" | "keys" | "additional" | "parking";
|
|
440
440
|
declare type TransferInspectionTypes = "maroom_tenant" | "tenant_maroom" | "maroom_landlord" | "tenant_landlord";
|
|
@@ -443,8 +443,8 @@ declare type InspectionFillingParams = {
|
|
|
443
443
|
description?: string;
|
|
444
444
|
serial_code?: string;
|
|
445
445
|
amount?: number | string | null;
|
|
446
|
-
photos: ImageBodyRequest
|
|
447
|
-
instruction?: FileBodyRequest
|
|
446
|
+
photos: ImageBodyRequest[];
|
|
447
|
+
instruction?: FileBodyRequest | null;
|
|
448
448
|
was_missing?: boolean;
|
|
449
449
|
};
|
|
450
450
|
declare type InspectionMeterValueModel = {
|
|
@@ -475,7 +475,7 @@ declare type InspectionRoomPhotoModel = {
|
|
|
475
475
|
uploaded: boolean;
|
|
476
476
|
purpose: InspectionRoomPhotoTypes;
|
|
477
477
|
comment?: string;
|
|
478
|
-
photos: ImageModel
|
|
478
|
+
photos: ImageModel[];
|
|
479
479
|
videos: VideoModel[];
|
|
480
480
|
room_order_number?: number | null;
|
|
481
481
|
};
|
|
@@ -514,11 +514,11 @@ declare type FullInspectionCommonFields = {
|
|
|
514
514
|
filling: InspectionFillingModel[];
|
|
515
515
|
} & ApartmentModel;
|
|
516
516
|
declare type InspectionMeterCommonInfo = {
|
|
517
|
-
resource_type: ResourceTypes
|
|
518
|
-
passport: FileModel
|
|
519
|
-
meter_type: MeterTypes
|
|
517
|
+
resource_type: ResourceTypes;
|
|
518
|
+
passport: FileModel | null;
|
|
519
|
+
meter_type: MeterTypes;
|
|
520
520
|
operating_account: string;
|
|
521
|
-
photos: ImageModel
|
|
521
|
+
photos: ImageModel[];
|
|
522
522
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
523
523
|
declare type TransferInspectionMeterModel = {
|
|
524
524
|
values: InspectionMeterValueModel;
|
|
@@ -526,6 +526,9 @@ declare type TransferInspectionMeterModel = {
|
|
|
526
526
|
declare type TransferInspectionFields = {
|
|
527
527
|
transfer_type: TransferInspectionTypes;
|
|
528
528
|
meters: TransferInspectionMeterModel[];
|
|
529
|
+
inspection_document: DocumentModel | null;
|
|
530
|
+
rental_contract_termination_document: DocumentModel | null;
|
|
531
|
+
service_contract_termination_document: DocumentModel | null;
|
|
529
532
|
} & FullInspectionCommonFields;
|
|
530
533
|
declare type RegularInspectionFields = {
|
|
531
534
|
meters: TransferInspectionMeterModel[];
|
|
@@ -534,7 +537,7 @@ declare type RegularInspectionFields = {
|
|
|
534
537
|
declare type ComparableObjectModel = {
|
|
535
538
|
id: number;
|
|
536
539
|
advertisement_link: string;
|
|
537
|
-
advertisement_screenshot: ImageModel
|
|
540
|
+
advertisement_screenshot: ImageModel | null;
|
|
538
541
|
object_price: string;
|
|
539
542
|
key_object_differences: string;
|
|
540
543
|
};
|
|
@@ -542,7 +545,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
542
545
|
id: number;
|
|
543
546
|
source_name: string;
|
|
544
547
|
link: string;
|
|
545
|
-
screenshot: ImageModel
|
|
548
|
+
screenshot: ImageModel | null;
|
|
546
549
|
min_price: string;
|
|
547
550
|
max_price: string;
|
|
548
551
|
};
|
|
@@ -585,12 +588,13 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
585
588
|
declare type ImpairmentModel = {
|
|
586
589
|
id: number;
|
|
587
590
|
impairment_type: ImpairmentType;
|
|
588
|
-
proof_file: DocumentModel
|
|
591
|
+
proof_file: DocumentModel | null;
|
|
589
592
|
price: number;
|
|
590
593
|
solution: string;
|
|
591
594
|
description: string;
|
|
592
|
-
photos: ImageModel
|
|
595
|
+
photos: ImageModel[];
|
|
593
596
|
item_link: string;
|
|
597
|
+
bill_line_name: string;
|
|
594
598
|
};
|
|
595
599
|
declare type MetroStationsFields = {
|
|
596
600
|
metro: ApartmentMetroParams[];
|
|
@@ -599,7 +603,7 @@ declare type InitialInspectionModelFields = {
|
|
|
599
603
|
used_resources: UsedResourcesModel;
|
|
600
604
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
601
605
|
declare type AppraisalRequestModelFields = {
|
|
602
|
-
floor_plan: DocumentModel
|
|
606
|
+
floor_plan: DocumentModel | null;
|
|
603
607
|
};
|
|
604
608
|
declare type InspectionModel = {
|
|
605
609
|
initial?: InitialInspectionModelFields;
|
|
@@ -631,7 +635,9 @@ declare type InventoryInspectionFields = {
|
|
|
631
635
|
allowed_children: boolean;
|
|
632
636
|
allowed_pets: boolean;
|
|
633
637
|
allowed_smoking: boolean;
|
|
638
|
+
additional_terms: string;
|
|
634
639
|
resources: InspectionResourcesModel[];
|
|
640
|
+
inspection_document: DocumentModel | null;
|
|
635
641
|
} & FullInspectionCommonFields;
|
|
636
642
|
declare type InventoryInspectionModel = {
|
|
637
643
|
inventory: InventoryInspectionFields;
|
|
@@ -677,10 +683,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
677
683
|
};
|
|
678
684
|
declare type PatchInspectionImageParams = {
|
|
679
685
|
id?: number;
|
|
680
|
-
} & Partial<ImageBodyRequest
|
|
686
|
+
} & Partial<ImageBodyRequest>;
|
|
681
687
|
declare type PatchInspectionVideoParams = {
|
|
682
688
|
id?: number;
|
|
683
|
-
} & Partial<VideoBodyRequest
|
|
689
|
+
} & Partial<VideoBodyRequest>;
|
|
684
690
|
declare type PatchRoomImagesParams = {
|
|
685
691
|
type: InspectionRoomPhotoTypes;
|
|
686
692
|
comment?: string;
|
|
@@ -720,8 +726,8 @@ declare type InspectionFillingModel = {
|
|
|
720
726
|
description: string;
|
|
721
727
|
serial_code: string;
|
|
722
728
|
amount: number;
|
|
723
|
-
photos: ImageModel
|
|
724
|
-
instruction: DocumentModel
|
|
729
|
+
photos: ImageModel[];
|
|
730
|
+
instruction: DocumentModel;
|
|
725
731
|
is_absent: boolean;
|
|
726
732
|
previously_absent: boolean;
|
|
727
733
|
model: string;
|
|
@@ -803,7 +809,7 @@ declare type CommonMeterParams = {
|
|
|
803
809
|
company: CompanyLiteParams;
|
|
804
810
|
operating_account_number?: string | null;
|
|
805
811
|
company_is_administrative: boolean;
|
|
806
|
-
photos?: ImageModel
|
|
812
|
+
photos?: ImageModel[];
|
|
807
813
|
auto_sending: boolean;
|
|
808
814
|
no_tariff: boolean;
|
|
809
815
|
is_avg: boolean;
|
|
@@ -815,15 +821,15 @@ declare type ElectricityMeterValues = {
|
|
|
815
821
|
T3?: MeterTariffModel;
|
|
816
822
|
};
|
|
817
823
|
declare type WaterMeterParams = {
|
|
818
|
-
type: WaterMeterTypes
|
|
824
|
+
type: WaterMeterTypes;
|
|
819
825
|
tariff: SingleCounterTariffModel;
|
|
820
826
|
} & CommonMeterParams & MeterTariffModel;
|
|
821
827
|
declare type SingleMeterParams = {
|
|
822
|
-
type?: WaterMeterTypes
|
|
828
|
+
type?: WaterMeterTypes;
|
|
823
829
|
tariff: SingleCounterTariffModel;
|
|
824
830
|
} & CommonMeterParams & MeterTariffModel;
|
|
825
831
|
declare type ElectricityMeterParams = {
|
|
826
|
-
type: ElectricityMeterTypes
|
|
832
|
+
type: ElectricityMeterTypes;
|
|
827
833
|
values: ElectricityMeterValues;
|
|
828
834
|
tariff: ElectricityMeterTariffModel;
|
|
829
835
|
overall_value?: number;
|
|
@@ -1065,7 +1071,7 @@ declare type CountryParams = {
|
|
|
1065
1071
|
code: string;
|
|
1066
1072
|
} & CatalogItemParams;
|
|
1067
1073
|
|
|
1068
|
-
type FileWithVisibility
|
|
1074
|
+
type FileWithVisibility = {
|
|
1069
1075
|
file: File | null
|
|
1070
1076
|
tenant: boolean
|
|
1071
1077
|
landlord: boolean
|
|
@@ -1073,8 +1079,8 @@ type FileWithVisibility$1 = {
|
|
|
1073
1079
|
url: string
|
|
1074
1080
|
}
|
|
1075
1081
|
|
|
1076
|
-
type InputFileWithVisibilityFields
|
|
1077
|
-
| FileWithVisibility
|
|
1082
|
+
type InputFileWithVisibilityFields =
|
|
1083
|
+
| FileWithVisibility
|
|
1078
1084
|
| DocumentWithVisibility
|
|
1079
1085
|
| null
|
|
1080
1086
|
| undefined
|
|
@@ -1104,7 +1110,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1104
1110
|
}
|
|
1105
1111
|
|
|
1106
1112
|
type ChangeReasonFormFields = {
|
|
1107
|
-
reason: InputFileWithVisibilityFields
|
|
1113
|
+
reason: InputFileWithVisibilityFields
|
|
1108
1114
|
comment?: string
|
|
1109
1115
|
}
|
|
1110
1116
|
|
|
@@ -1119,13 +1125,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1119
1125
|
settings?: any
|
|
1120
1126
|
} & InputWithControllerProps<TFormValues>
|
|
1121
1127
|
|
|
1122
|
-
type CompanyAutocompleteFields
|
|
1128
|
+
type CompanyAutocompleteFields = {
|
|
1123
1129
|
id: number
|
|
1124
1130
|
name: string
|
|
1125
1131
|
logo?: string | null
|
|
1126
1132
|
}
|
|
1127
1133
|
|
|
1128
|
-
declare class FileStore
|
|
1134
|
+
declare class FileStore implements FileStoreInterface {
|
|
1129
1135
|
id: number | null;
|
|
1130
1136
|
index?: number | null;
|
|
1131
1137
|
name: string;
|
|
@@ -1156,12 +1162,12 @@ declare class FileStore$1 implements FileStoreInterface {
|
|
|
1156
1162
|
setIndex: (index: number) => void;
|
|
1157
1163
|
get title(): string;
|
|
1158
1164
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1159
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1160
|
-
static initFromFileModel: (file: FileModel
|
|
1161
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1162
|
-
static initFromImageModel: (file: ImageModel
|
|
1163
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1164
|
-
static initFromFileStore: (file: FileStore
|
|
1165
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1166
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1167
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1168
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1169
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1170
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1165
1171
|
}
|
|
1166
1172
|
|
|
1167
1173
|
declare type ImageParams = {
|
|
@@ -1196,7 +1202,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1196
1202
|
delete: () => Promise<void>;
|
|
1197
1203
|
get extension(): string;
|
|
1198
1204
|
get title(): string;
|
|
1199
|
-
static initFromImageModel: (image: ImageModel
|
|
1205
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1200
1206
|
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1201
1207
|
}
|
|
1202
1208
|
|
|
@@ -1322,7 +1328,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1322
1328
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1323
1329
|
payerCode?: string;
|
|
1324
1330
|
communalServicesAccount?: string;
|
|
1325
|
-
company?: CompanyAutocompleteFields
|
|
1331
|
+
company?: CompanyAutocompleteFields | null;
|
|
1326
1332
|
} & ChangeReasonFormFields;
|
|
1327
1333
|
declare type ApartmentOverviewInfoFields = {
|
|
1328
1334
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1345,14 +1351,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1345
1351
|
} & ApartmentPaymentInfoParams;
|
|
1346
1352
|
declare type InspectionMeterInfoParams = {
|
|
1347
1353
|
id: number;
|
|
1348
|
-
resource: ResourceTypes
|
|
1349
|
-
type?: MeterTypes
|
|
1354
|
+
resource: ResourceTypes;
|
|
1355
|
+
type?: MeterTypes;
|
|
1350
1356
|
number: string;
|
|
1351
1357
|
startDate: DateTime | null;
|
|
1352
1358
|
company: CompanyLiteParams;
|
|
1353
1359
|
operationalAccountNumber?: string | null;
|
|
1354
1360
|
tariff: EntityLinkParams | null;
|
|
1355
|
-
passportFile: FileStore
|
|
1361
|
+
passportFile: FileStore | null;
|
|
1356
1362
|
initialValue?: number;
|
|
1357
1363
|
lastValue?: number;
|
|
1358
1364
|
initialValueT1?: number;
|
|
@@ -1374,8 +1380,8 @@ declare type ValuesParams = {
|
|
|
1374
1380
|
};
|
|
1375
1381
|
declare type PartialMeterInfoParams = {
|
|
1376
1382
|
id: number;
|
|
1377
|
-
type: MeterTypes
|
|
1378
|
-
resource: ResourceTypes
|
|
1383
|
+
type: MeterTypes;
|
|
1384
|
+
resource: ResourceTypes;
|
|
1379
1385
|
number: string;
|
|
1380
1386
|
values: ValuesParams;
|
|
1381
1387
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1387,7 +1393,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1387
1393
|
declare type ComparableObjectParams = {
|
|
1388
1394
|
id: number;
|
|
1389
1395
|
link: string;
|
|
1390
|
-
screenshot: FileStore
|
|
1396
|
+
screenshot: FileStore | null;
|
|
1391
1397
|
price: number;
|
|
1392
1398
|
differences: string;
|
|
1393
1399
|
};
|
|
@@ -1395,7 +1401,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1395
1401
|
id: number;
|
|
1396
1402
|
dataSourceName: string;
|
|
1397
1403
|
link: string;
|
|
1398
|
-
screenshot: FileStore
|
|
1404
|
+
screenshot: FileStore | null;
|
|
1399
1405
|
minPrice: number;
|
|
1400
1406
|
maxPrice: number;
|
|
1401
1407
|
};
|
|
@@ -1420,8 +1426,8 @@ declare type FillingInfoFormFields = {
|
|
|
1420
1426
|
name?: string;
|
|
1421
1427
|
description?: string;
|
|
1422
1428
|
type?: ApartmentFillingVariants | null;
|
|
1423
|
-
instruction?: InputFileWithVisibilityFields
|
|
1424
|
-
tempImages?: ImageBodyRequest
|
|
1429
|
+
instruction?: InputFileWithVisibilityFields;
|
|
1430
|
+
tempImages?: ImageBodyRequest[];
|
|
1425
1431
|
};
|
|
1426
1432
|
|
|
1427
1433
|
declare type FillingTagParams = {
|
|
@@ -1436,7 +1442,7 @@ declare type FillingParams = {
|
|
|
1436
1442
|
images?: (ImageStore | UploadFileParams)[];
|
|
1437
1443
|
serialNumber?: string;
|
|
1438
1444
|
numberOfSubjects?: number | string | null;
|
|
1439
|
-
instruction?: InputFileWithVisibilityFields
|
|
1445
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1440
1446
|
type?: ApartmentFillingVariants;
|
|
1441
1447
|
loader?: Loader;
|
|
1442
1448
|
};
|
|
@@ -1448,7 +1454,7 @@ declare type FillingFullParams = {
|
|
|
1448
1454
|
images?: (ImageStore | UploadFileParams)[];
|
|
1449
1455
|
serialNumber?: string;
|
|
1450
1456
|
numberOfSubjects?: number | string | null;
|
|
1451
|
-
instruction?: InputFileWithVisibilityFields
|
|
1457
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1452
1458
|
type?: ApartmentFillingVariants;
|
|
1453
1459
|
loader?: Loader;
|
|
1454
1460
|
check?: boolean | null;
|
|
@@ -1467,31 +1473,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1467
1473
|
name: string;
|
|
1468
1474
|
};
|
|
1469
1475
|
|
|
1470
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1471
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1472
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
1473
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1474
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1475
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1476
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1477
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1478
|
-
declare type FileBodyRequest = {
|
|
1476
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1477
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
1478
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
1479
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
1480
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
1481
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
1482
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
1483
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1484
|
+
declare type FileBodyRequest$1 = {
|
|
1479
1485
|
temp_file_id?: number;
|
|
1480
1486
|
name: string;
|
|
1481
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1487
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1482
1488
|
url?: string;
|
|
1483
1489
|
};
|
|
1484
|
-
declare type ImageBodyRequest = {
|
|
1490
|
+
declare type ImageBodyRequest$1 = {
|
|
1485
1491
|
temp_file_id: number;
|
|
1486
1492
|
image_name: string;
|
|
1487
1493
|
url: string;
|
|
1488
1494
|
};
|
|
1489
|
-
declare type VideoBodyRequest = {
|
|
1495
|
+
declare type VideoBodyRequest$1 = {
|
|
1490
1496
|
temp_file_id: number;
|
|
1491
1497
|
file_name: string;
|
|
1492
1498
|
url: string;
|
|
1493
1499
|
};
|
|
1494
|
-
declare type ImageModel = {
|
|
1500
|
+
declare type ImageModel$1 = {
|
|
1495
1501
|
id: number;
|
|
1496
1502
|
image_name?: string;
|
|
1497
1503
|
image_url?: string;
|
|
@@ -1500,23 +1506,23 @@ declare type ImageModel = {
|
|
|
1500
1506
|
image_large_url: string;
|
|
1501
1507
|
size: number;
|
|
1502
1508
|
};
|
|
1503
|
-
declare type FileModel = {
|
|
1509
|
+
declare type FileModel$1 = {
|
|
1504
1510
|
id: number;
|
|
1505
1511
|
name: string;
|
|
1506
1512
|
size: number;
|
|
1507
1513
|
url: string;
|
|
1508
1514
|
};
|
|
1509
|
-
declare type DocumentModel = {
|
|
1515
|
+
declare type DocumentModel$1 = {
|
|
1510
1516
|
pk: number;
|
|
1511
1517
|
name: string;
|
|
1512
1518
|
created?: string;
|
|
1513
1519
|
attachment: string;
|
|
1514
1520
|
size: number;
|
|
1515
1521
|
uploaded_by?: string | null;
|
|
1516
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1522
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1517
1523
|
};
|
|
1518
1524
|
|
|
1519
|
-
type FileWithVisibility = {
|
|
1525
|
+
type FileWithVisibility$1 = {
|
|
1520
1526
|
file: File | null
|
|
1521
1527
|
tenant: boolean
|
|
1522
1528
|
landlord: boolean
|
|
@@ -1524,19 +1530,19 @@ type FileWithVisibility = {
|
|
|
1524
1530
|
url: string
|
|
1525
1531
|
}
|
|
1526
1532
|
|
|
1527
|
-
type InputFileWithVisibilityFields =
|
|
1528
|
-
| FileWithVisibility
|
|
1533
|
+
type InputFileWithVisibilityFields$1 =
|
|
1534
|
+
| FileWithVisibility$1
|
|
1529
1535
|
| DocumentWithVisibility$1
|
|
1530
1536
|
| null
|
|
1531
1537
|
| undefined
|
|
1532
1538
|
|
|
1533
|
-
type CompanyAutocompleteFields = {
|
|
1539
|
+
type CompanyAutocompleteFields$1 = {
|
|
1534
1540
|
id: number
|
|
1535
1541
|
name: string
|
|
1536
1542
|
logo?: string | null
|
|
1537
1543
|
}
|
|
1538
1544
|
|
|
1539
|
-
declare class FileStore implements FileStoreInterface$1 {
|
|
1545
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1540
1546
|
id: number | null;
|
|
1541
1547
|
index?: number | null;
|
|
1542
1548
|
name: string;
|
|
@@ -1567,21 +1573,21 @@ declare class FileStore implements FileStoreInterface$1 {
|
|
|
1567
1573
|
setIndex: (index: number) => void;
|
|
1568
1574
|
get title(): string;
|
|
1569
1575
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1570
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1571
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1572
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1573
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1574
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1575
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1576
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1577
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1578
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1579
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1580
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1581
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1576
1582
|
}
|
|
1577
1583
|
|
|
1578
1584
|
type PartialPayerFields$1 = {
|
|
1579
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1580
|
-
mainPayer?: ResourcePaymentRoles
|
|
1581
|
-
refundFrom?: ResourcePaymentRoles
|
|
1582
|
-
partType?: UnitOfPaymentTypes | null
|
|
1585
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1586
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1587
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1588
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1583
1589
|
refundValue?: number | string | null
|
|
1584
|
-
utilityType: UtilityTypes
|
|
1590
|
+
utilityType: UtilityTypes$1
|
|
1585
1591
|
}
|
|
1586
1592
|
|
|
1587
1593
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1613,13 +1619,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1613
1619
|
visibility?: DocumentVisibilityVariants$1;
|
|
1614
1620
|
extension: string;
|
|
1615
1621
|
};
|
|
1616
|
-
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1622
|
+
declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1617
1623
|
declare type FileStoreParams$1 = {
|
|
1618
1624
|
id?: number | null;
|
|
1619
1625
|
url?: string;
|
|
1620
1626
|
index?: number | string | null;
|
|
1621
1627
|
createdBy?: string | null;
|
|
1622
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1628
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1623
1629
|
name?: string;
|
|
1624
1630
|
date?: string | null;
|
|
1625
1631
|
size?: number | null;
|
|
@@ -1647,14 +1653,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1647
1653
|
initialValueT1?: number
|
|
1648
1654
|
initialValueT2?: number
|
|
1649
1655
|
initialValueT3?: number
|
|
1650
|
-
type?: MeterTypes
|
|
1651
|
-
resource?: ResourceTypes
|
|
1656
|
+
type?: MeterTypes$1
|
|
1657
|
+
resource?: ResourceTypes$1
|
|
1652
1658
|
withAutoSending?: boolean
|
|
1653
1659
|
}
|
|
1654
1660
|
|
|
1655
1661
|
type MeterFeaturesFormFields$1 = {
|
|
1656
1662
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1657
|
-
company: CompanyAutocompleteFields | null
|
|
1663
|
+
company: CompanyAutocompleteFields$1 | null
|
|
1658
1664
|
nextCheck: DateTime | null
|
|
1659
1665
|
lastValue?: number
|
|
1660
1666
|
lastValueT1?: number
|
|
@@ -1678,9 +1684,9 @@ declare type ApartmentMeterValues = {
|
|
|
1678
1684
|
} & MeterValues;
|
|
1679
1685
|
declare type InspectionMeterFields = {
|
|
1680
1686
|
id?: number;
|
|
1681
|
-
resource: ResourceTypes;
|
|
1682
|
-
passportFile?: InputFileWithVisibilityFields;
|
|
1683
|
-
images: FileStore[];
|
|
1687
|
+
resource: ResourceTypes$1;
|
|
1688
|
+
passportFile?: InputFileWithVisibilityFields$1;
|
|
1689
|
+
images: FileStore$1[];
|
|
1684
1690
|
} & MeterFeaturesFormFields$1;
|
|
1685
1691
|
|
|
1686
1692
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1695,7 +1701,7 @@ type PartialPayerProps<T> = {
|
|
|
1695
1701
|
title: string
|
|
1696
1702
|
name: string
|
|
1697
1703
|
form: UseFormReturn<T>
|
|
1698
|
-
utilityType: UtilityTypes
|
|
1704
|
+
utilityType: UtilityTypes
|
|
1699
1705
|
fieldsVariant?: PartialPayerVariants
|
|
1700
1706
|
settings?: ObjectType
|
|
1701
1707
|
disabled?: boolean
|
|
@@ -1703,12 +1709,12 @@ type PartialPayerProps<T> = {
|
|
|
1703
1709
|
}
|
|
1704
1710
|
|
|
1705
1711
|
type PartialPayerFields = {
|
|
1706
|
-
payer?: ResourcePaymentRoles
|
|
1707
|
-
mainPayer?: ResourcePaymentRoles
|
|
1708
|
-
refundFrom?: ResourcePaymentRoles
|
|
1709
|
-
partType?: UnitOfPaymentTypes
|
|
1712
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1713
|
+
mainPayer?: ResourcePaymentRoles
|
|
1714
|
+
refundFrom?: ResourcePaymentRoles
|
|
1715
|
+
partType?: UnitOfPaymentTypes | null
|
|
1710
1716
|
refundValue?: number | string | null
|
|
1711
|
-
utilityType: UtilityTypes
|
|
1717
|
+
utilityType: UtilityTypes
|
|
1712
1718
|
}
|
|
1713
1719
|
|
|
1714
1720
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1792,15 +1798,15 @@ declare type ResourceAccessParams = {
|
|
|
1792
1798
|
password?: string;
|
|
1793
1799
|
description?: string;
|
|
1794
1800
|
};
|
|
1795
|
-
declare type ApartmentResourceTypes = ResourceTypes
|
|
1801
|
+
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1796
1802
|
declare type ApartmentResourceCompanyDetails = {
|
|
1797
|
-
company: CompanyAutocompleteFields
|
|
1803
|
+
company: CompanyAutocompleteFields | null;
|
|
1798
1804
|
operationalAccountNumber: string;
|
|
1799
1805
|
payerCode: string;
|
|
1800
1806
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1801
1807
|
access: ResourceAccessParams;
|
|
1802
1808
|
sampleReceiptLink: string;
|
|
1803
|
-
sampleReceipt?: InputFileWithVisibilityFields
|
|
1809
|
+
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1804
1810
|
};
|
|
1805
1811
|
declare type ApartmentResourceInterface = {
|
|
1806
1812
|
type: ApartmentResourceTypes;
|
|
@@ -1837,15 +1843,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1837
1843
|
loader: Loader;
|
|
1838
1844
|
};
|
|
1839
1845
|
declare type PostDocumentsResponse = {
|
|
1840
|
-
documents: DocumentModel
|
|
1846
|
+
documents: DocumentModel[];
|
|
1841
1847
|
};
|
|
1842
1848
|
declare type DocumentAgentInterface = {
|
|
1843
1849
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1844
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1845
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1850
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1851
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1846
1852
|
};
|
|
1847
1853
|
declare type DocumentsAgentInterface = {
|
|
1848
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1854
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1849
1855
|
} & DocumentAgentInterface;
|
|
1850
1856
|
|
|
1851
1857
|
declare type MetroLineParams = {
|
|
@@ -1916,7 +1922,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1916
1922
|
};
|
|
1917
1923
|
declare type ApartmentDocumentModel = {
|
|
1918
1924
|
id: number;
|
|
1919
|
-
document: DocumentModel
|
|
1925
|
+
document: DocumentModel;
|
|
1920
1926
|
expiration_date: string;
|
|
1921
1927
|
start_date: string;
|
|
1922
1928
|
number: string;
|
|
@@ -1928,7 +1934,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1928
1934
|
tariff?: TariffLinkModel;
|
|
1929
1935
|
activation_date?: string;
|
|
1930
1936
|
check_date?: string;
|
|
1931
|
-
type?: ElectricityMeterTypes
|
|
1937
|
+
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1932
1938
|
apartment: ApartmentLinkModel;
|
|
1933
1939
|
company: CompanyLiteParams;
|
|
1934
1940
|
operating_account_number?: string | null;
|
|
@@ -2049,7 +2055,7 @@ declare type ApartmentModel = {
|
|
|
2049
2055
|
owner_id: number;
|
|
2050
2056
|
metro_stations: ApartmentMetroParams[];
|
|
2051
2057
|
rental_status: RentalStatuses;
|
|
2052
|
-
main_image: ImageModel
|
|
2058
|
+
main_image: ImageModel;
|
|
2053
2059
|
tv_type: TVTypes | null;
|
|
2054
2060
|
inspection: ApartmentInspectionModel;
|
|
2055
2061
|
distance_to_center_kilometers: number | null;
|
|
@@ -2076,7 +2082,7 @@ declare type ApartmentLiteModel = {
|
|
|
2076
2082
|
renter: LiteUserModel | null;
|
|
2077
2083
|
rental_status: RentalStatuses;
|
|
2078
2084
|
renter_payment_status: RentalPaymentStatuses;
|
|
2079
|
-
main_image: ImageModel
|
|
2085
|
+
main_image: ImageModel;
|
|
2080
2086
|
service_contract?: ServiceContractLiteModel;
|
|
2081
2087
|
is_imported_from_old_crm?: boolean;
|
|
2082
2088
|
max_electricity_counters?: number | null;
|
|
@@ -2122,7 +2128,7 @@ declare type ObjectForMapModel = {
|
|
|
2122
2128
|
apartment_number: string;
|
|
2123
2129
|
address: string;
|
|
2124
2130
|
geolocation: LatLonParams;
|
|
2125
|
-
main_image: ImageModel
|
|
2131
|
+
main_image: ImageModel;
|
|
2126
2132
|
renter: ClientLiteModel | null;
|
|
2127
2133
|
owner: ClientLiteModel;
|
|
2128
2134
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2154,13 +2160,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2154
2160
|
agent: DocumentAgentInterface;
|
|
2155
2161
|
loader: Loader;
|
|
2156
2162
|
settings?: any;
|
|
2157
|
-
constructor(document: DocumentModel
|
|
2163
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2158
2164
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2159
|
-
updateDocument: (res: DocumentModel
|
|
2165
|
+
updateDocument: (res: DocumentModel) => void;
|
|
2160
2166
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2161
2167
|
get extension(): string;
|
|
2162
2168
|
get title(): string;
|
|
2163
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
2169
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2164
2170
|
}
|
|
2165
2171
|
|
|
2166
2172
|
type InputTypes =
|
|
@@ -2220,13 +2226,13 @@ declare type FileParams = {
|
|
|
2220
2226
|
size?: number | null;
|
|
2221
2227
|
file: File;
|
|
2222
2228
|
};
|
|
2223
|
-
declare type UploadedFileParams = FileBodyRequest
|
|
2229
|
+
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2224
2230
|
declare type FileStoreParams = {
|
|
2225
2231
|
id?: number | null;
|
|
2226
2232
|
url?: string;
|
|
2227
2233
|
index?: number | string | null;
|
|
2228
2234
|
createdBy?: string | null;
|
|
2229
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
2235
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
2230
2236
|
name?: string;
|
|
2231
2237
|
date?: string | null;
|
|
2232
2238
|
size?: number | null;
|
|
@@ -2377,8 +2383,8 @@ declare const FillingTagsAgent: {
|
|
|
2377
2383
|
};
|
|
2378
2384
|
|
|
2379
2385
|
declare const TariffsAgent: {
|
|
2380
|
-
all: (tariff: ResourceTypes
|
|
2381
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes
|
|
2386
|
+
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2387
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2382
2388
|
};
|
|
2383
2389
|
|
|
2384
2390
|
type SignInFormFields = {
|
|
@@ -2397,8 +2403,8 @@ declare const ApartmentsAgent: {
|
|
|
2397
2403
|
};
|
|
2398
2404
|
|
|
2399
2405
|
declare const ApartmentMetersAgent: {
|
|
2400
|
-
getMeters: (apartmentId: number, resource: ResourceTypes
|
|
2401
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes
|
|
2406
|
+
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2407
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2402
2408
|
};
|
|
2403
2409
|
|
|
2404
2410
|
declare const requests: {
|
|
@@ -2422,7 +2428,7 @@ declare const meterUnitLabel: {
|
|
|
2422
2428
|
electricity: string;
|
|
2423
2429
|
};
|
|
2424
2430
|
|
|
2425
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields
|
|
2431
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2426
2432
|
|
|
2427
2433
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2428
2434
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2438,34 +2444,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2438
2444
|
}, "">;
|
|
2439
2445
|
|
|
2440
2446
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2441
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields
|
|
2447
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2442
2448
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2443
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility
|
|
2449
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2444
2450
|
temp_file_id: number;
|
|
2445
2451
|
name: string;
|
|
2446
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2452
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2447
2453
|
url: string;
|
|
2448
2454
|
} | null;
|
|
2449
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest
|
|
2450
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest
|
|
2451
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields
|
|
2455
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2456
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2457
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2452
2458
|
name: string;
|
|
2453
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2459
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2454
2460
|
} | null;
|
|
2455
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields
|
|
2461
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2456
2462
|
name: string;
|
|
2457
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2463
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2458
2464
|
} | null>;
|
|
2459
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore
|
|
2460
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore
|
|
2461
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
2462
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest
|
|
2463
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility
|
|
2464
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields
|
|
2465
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2466
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2467
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest
|
|
2468
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest
|
|
2465
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2466
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2467
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2468
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2469
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2470
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2471
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2472
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2473
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2474
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2469
2475
|
|
|
2470
2476
|
declare const matchesAPISubjectRoles: {
|
|
2471
2477
|
maroom: string;
|
|
@@ -2558,16 +2564,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2558
2564
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2559
2565
|
|
|
2560
2566
|
declare class FilesStore {
|
|
2561
|
-
files: FileStore
|
|
2567
|
+
files: FileStore[];
|
|
2562
2568
|
variant: FileVariant;
|
|
2563
2569
|
constructor(variant: FileVariant);
|
|
2564
|
-
addFile: (newFile: FileStore
|
|
2570
|
+
addFile: (newFile: FileStore) => void;
|
|
2565
2571
|
removeFile: (index: number) => void;
|
|
2566
|
-
setFiles: (files: FileStore
|
|
2572
|
+
setFiles: (files: FileStore[]) => void;
|
|
2567
2573
|
uploadFiles: () => Promise<void>;
|
|
2568
|
-
get uploadedData(): (FileBodyRequest
|
|
2574
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2569
2575
|
get uploadedAllFiles(): boolean;
|
|
2570
|
-
get notUploadedFiles(): FileStore
|
|
2576
|
+
get notUploadedFiles(): FileStore[];
|
|
2571
2577
|
get isUploading(): boolean;
|
|
2572
2578
|
get videoLength(): number;
|
|
2573
2579
|
get nonVideoLength(): number;
|
|
@@ -2589,7 +2595,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2589
2595
|
messages?: UploadMediaMessages;
|
|
2590
2596
|
withoutFilesStore?: boolean;
|
|
2591
2597
|
};
|
|
2592
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore
|
|
2598
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2593
2599
|
|
|
2594
2600
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2595
2601
|
onSearchItem: (value: string) => void;
|
|
@@ -2761,11 +2767,11 @@ type DistrictAutocompleteFields = {
|
|
|
2761
2767
|
type ReplaceableTariffFields = {
|
|
2762
2768
|
name: string
|
|
2763
2769
|
id?: number
|
|
2764
|
-
type?: ResourceTypes
|
|
2770
|
+
type?: ResourceTypes
|
|
2765
2771
|
}
|
|
2766
2772
|
|
|
2767
2773
|
type TariffCommonFields = {
|
|
2768
|
-
resourceType: ResourceTypes
|
|
2774
|
+
resourceType: ResourceTypes
|
|
2769
2775
|
name: string
|
|
2770
2776
|
startDate: DateTime
|
|
2771
2777
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2777,7 +2783,7 @@ type TariffCommonFields = {
|
|
|
2777
2783
|
}
|
|
2778
2784
|
|
|
2779
2785
|
type ElectricityTariffCreationFormFields = {
|
|
2780
|
-
type: ElectricityMeterTypes
|
|
2786
|
+
type: ElectricityMeterTypes
|
|
2781
2787
|
isOverallConsumption: boolean
|
|
2782
2788
|
T1?: number
|
|
2783
2789
|
T2?: number
|
|
@@ -2798,7 +2804,7 @@ type TariffCreationFormProps = {
|
|
|
2798
2804
|
handleClose: () => void
|
|
2799
2805
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2800
2806
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2801
|
-
defaultResource: ResourceTypes
|
|
2807
|
+
defaultResource: ResourceTypes
|
|
2802
2808
|
settings?: any
|
|
2803
2809
|
}
|
|
2804
2810
|
|
|
@@ -2843,7 +2849,7 @@ declare class TariffsLiteStore {
|
|
|
2843
2849
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2844
2850
|
settings?: any;
|
|
2845
2851
|
constructor(settings?: any);
|
|
2846
|
-
fetchAll: (resource: ResourceTypes
|
|
2852
|
+
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2847
2853
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2848
2854
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2849
2855
|
id: number;
|
|
@@ -2851,7 +2857,7 @@ declare class TariffsLiteStore {
|
|
|
2851
2857
|
};
|
|
2852
2858
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2853
2859
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2854
|
-
type: ElectricityMeterTypes
|
|
2860
|
+
type: ElectricityMeterTypes;
|
|
2855
2861
|
T1: string | undefined;
|
|
2856
2862
|
T2: string | undefined;
|
|
2857
2863
|
T3: string | undefined;
|
|
@@ -3144,7 +3150,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3144
3150
|
name?: string
|
|
3145
3151
|
label?: string
|
|
3146
3152
|
hideName?: string
|
|
3147
|
-
resource: ResourceTypes
|
|
3153
|
+
resource: ResourceTypes
|
|
3148
3154
|
filter?: string
|
|
3149
3155
|
filterRequired?: boolean
|
|
3150
3156
|
settings?: any
|
|
@@ -3157,7 +3163,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3157
3163
|
}
|
|
3158
3164
|
|
|
3159
3165
|
type MeterFeaturesFieldsProps = {
|
|
3160
|
-
resource?: ResourceTypes
|
|
3166
|
+
resource?: ResourceTypes
|
|
3161
3167
|
replacements?: LiteMeterInterface[]
|
|
3162
3168
|
isNewResource?: boolean
|
|
3163
3169
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3171,7 +3177,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3171
3177
|
withNextCheck?: boolean
|
|
3172
3178
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3173
3179
|
handleMeterTypeChange?: (
|
|
3174
|
-
meterType: ElectricityMeterTypes
|
|
3180
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3175
3181
|
) => void
|
|
3176
3182
|
settings?: any
|
|
3177
3183
|
disabledInitial?: boolean
|
|
@@ -3184,14 +3190,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3184
3190
|
initialValueT1?: number
|
|
3185
3191
|
initialValueT2?: number
|
|
3186
3192
|
initialValueT3?: number
|
|
3187
|
-
type?: MeterTypes
|
|
3188
|
-
resource?: ResourceTypes
|
|
3193
|
+
type?: MeterTypes
|
|
3194
|
+
resource?: ResourceTypes
|
|
3189
3195
|
withAutoSending?: boolean
|
|
3190
3196
|
}
|
|
3191
3197
|
|
|
3192
3198
|
type MeterFeaturesFormFields = {
|
|
3193
3199
|
tariff: TariffGroupAutocompleteFields | null
|
|
3194
|
-
company: CompanyAutocompleteFields
|
|
3200
|
+
company: CompanyAutocompleteFields | null
|
|
3195
3201
|
nextCheck: DateTime | null
|
|
3196
3202
|
lastValue?: number
|
|
3197
3203
|
lastValueT1?: number
|
|
@@ -3205,8 +3211,8 @@ type MeterFeaturesFormFields = {
|
|
|
3205
3211
|
} & BasicMeterFeaturesFormFields
|
|
3206
3212
|
|
|
3207
3213
|
type BasicMeterFieldsSettings = {
|
|
3208
|
-
resource?: ResourceTypes
|
|
3209
|
-
meterType?: MeterTypes
|
|
3214
|
+
resource?: ResourceTypes
|
|
3215
|
+
meterType?: MeterTypes
|
|
3210
3216
|
disabledInitial?: boolean
|
|
3211
3217
|
}
|
|
3212
3218
|
|
|
@@ -3238,10 +3244,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3238
3244
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3239
3245
|
|
|
3240
3246
|
type MeterTypeRadioGroupProps = {
|
|
3241
|
-
resource?: ResourceTypes
|
|
3247
|
+
resource?: ResourceTypes
|
|
3242
3248
|
form: UseFormReturn<any>
|
|
3243
3249
|
handleChange: (
|
|
3244
|
-
meterType: ElectricityMeterTypes
|
|
3250
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3245
3251
|
) => void
|
|
3246
3252
|
disabled?: boolean
|
|
3247
3253
|
waterOptions?: OptionParams[]
|
|
@@ -3253,7 +3259,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3253
3259
|
type MeterFeaturesFormProps = {
|
|
3254
3260
|
formStore?: MultistepForm$1<any>
|
|
3255
3261
|
handleMeterTypeChange?: (
|
|
3256
|
-
meterType: ElectricityMeterTypes
|
|
3262
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3257
3263
|
) => void
|
|
3258
3264
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3259
3265
|
|
|
@@ -3321,7 +3327,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3321
3327
|
startDate: undefined;
|
|
3322
3328
|
}, "">;
|
|
3323
3329
|
|
|
3324
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes
|
|
3330
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3325
3331
|
|
|
3326
3332
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3327
3333
|
|
|
@@ -3337,7 +3343,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3337
3343
|
|
|
3338
3344
|
type TariffReplacementFieldsProps = {
|
|
3339
3345
|
form: UseFormReturn<TariffCommonFields>
|
|
3340
|
-
resource: ResourceTypes
|
|
3346
|
+
resource: ResourceTypes
|
|
3341
3347
|
setReplaceable: (value: boolean) => void
|
|
3342
3348
|
settings?: any
|
|
3343
3349
|
}
|
|
@@ -3753,7 +3759,7 @@ type UploadPhotosButtonProps = {
|
|
|
3753
3759
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3754
3760
|
|
|
3755
3761
|
type UploadedImageProps = {
|
|
3756
|
-
image: FileStore
|
|
3762
|
+
image: FileStore
|
|
3757
3763
|
index: number
|
|
3758
3764
|
onClick: (index: number) => void
|
|
3759
3765
|
onDelete: (index: number) => void
|
|
@@ -3786,14 +3792,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3786
3792
|
};
|
|
3787
3793
|
declare type PartialMeterInfoFields = {
|
|
3788
3794
|
id: number;
|
|
3789
|
-
resource: ResourceTypes
|
|
3790
|
-
type?: MeterTypes
|
|
3795
|
+
resource: ResourceTypes;
|
|
3796
|
+
type?: MeterTypes;
|
|
3791
3797
|
number: string;
|
|
3792
|
-
images: FileStore
|
|
3798
|
+
images: FileStore[];
|
|
3793
3799
|
maxValue?: PartialMeterValuesFields;
|
|
3794
3800
|
values: PartialMeterValuesFields;
|
|
3795
3801
|
} & PartialMeterValuesFields;
|
|
3796
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes
|
|
3802
|
+
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>[];
|
|
3797
3803
|
|
|
3798
3804
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3799
3805
|
type: string | undefined;
|
|
@@ -3820,4 +3826,4 @@ type SignInPageProps = {
|
|
|
3820
3826
|
|
|
3821
3827
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3822
3828
|
|
|
3823
|
-
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, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, 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 };
|
|
3829
|
+
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, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, 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, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, 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 };
|