kui-crm 0.0.573 → 0.0.574
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 +209 -196
- package/package.json +1 -1
- package/types/index.d.ts +145 -143
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;
|
|
@@ -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 | "other";
|
|
412
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "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$1;
|
|
422
422
|
provider_auth_login?: string;
|
|
423
423
|
provider_auth_password?: string;
|
|
424
424
|
provider_url?: string;
|
|
@@ -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 | null;
|
|
446
|
+
photos: ImageBodyRequest$1[];
|
|
447
|
+
instruction?: FileBodyRequest$1 | null;
|
|
448
448
|
was_missing?: boolean;
|
|
449
449
|
};
|
|
450
450
|
declare type InspectionMeterValueModel = {
|
|
@@ -460,7 +460,7 @@ declare type InspectionBasedOnModel = {
|
|
|
460
460
|
id: number;
|
|
461
461
|
inspection_type: InspectionTypes;
|
|
462
462
|
};
|
|
463
|
-
declare type VideoModel = {
|
|
463
|
+
declare type VideoModel$1 = {
|
|
464
464
|
id: number;
|
|
465
465
|
video_url: string;
|
|
466
466
|
file_name?: string;
|
|
@@ -475,8 +475,8 @@ declare type InspectionRoomPhotoModel = {
|
|
|
475
475
|
uploaded: boolean;
|
|
476
476
|
purpose: InspectionRoomPhotoTypes;
|
|
477
477
|
comment?: string;
|
|
478
|
-
photos: ImageModel[];
|
|
479
|
-
videos: VideoModel[];
|
|
478
|
+
photos: ImageModel$1[];
|
|
479
|
+
videos: VideoModel$1[];
|
|
480
480
|
room_order_number?: number | null;
|
|
481
481
|
};
|
|
482
482
|
declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
|
|
@@ -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 | null;
|
|
519
|
-
meter_type: MeterTypes;
|
|
517
|
+
resource_type: ResourceTypes$1;
|
|
518
|
+
passport: FileModel$1 | null;
|
|
519
|
+
meter_type: MeterTypes$1;
|
|
520
520
|
operating_account: string;
|
|
521
|
-
photos: ImageModel[];
|
|
521
|
+
photos: ImageModel$1[];
|
|
522
522
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
523
523
|
declare type TransferInspectionMeterModel = {
|
|
524
524
|
values: InspectionMeterValueModel;
|
|
@@ -526,9 +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
|
+
inspection_document: DocumentModel$1 | null;
|
|
530
|
+
rental_contract_termination_document: DocumentModel$1 | null;
|
|
531
|
+
service_contract_termination_document: DocumentModel$1 | null;
|
|
532
532
|
} & FullInspectionCommonFields;
|
|
533
533
|
declare type RegularInspectionFields = {
|
|
534
534
|
meters: TransferInspectionMeterModel[];
|
|
@@ -537,7 +537,7 @@ declare type RegularInspectionFields = {
|
|
|
537
537
|
declare type ComparableObjectModel = {
|
|
538
538
|
id: number;
|
|
539
539
|
advertisement_link: string;
|
|
540
|
-
advertisement_screenshot: ImageModel | null;
|
|
540
|
+
advertisement_screenshot: ImageModel$1 | null;
|
|
541
541
|
object_price: string;
|
|
542
542
|
key_object_differences: string;
|
|
543
543
|
};
|
|
@@ -545,7 +545,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
545
545
|
id: number;
|
|
546
546
|
source_name: string;
|
|
547
547
|
link: string;
|
|
548
|
-
screenshot: ImageModel | null;
|
|
548
|
+
screenshot: ImageModel$1 | null;
|
|
549
549
|
min_price: string;
|
|
550
550
|
max_price: string;
|
|
551
551
|
};
|
|
@@ -588,11 +588,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
588
588
|
declare type ImpairmentModel = {
|
|
589
589
|
id: number;
|
|
590
590
|
impairment_type: ImpairmentType;
|
|
591
|
-
proof_file: DocumentModel | null;
|
|
591
|
+
proof_file: DocumentModel$1 | null;
|
|
592
592
|
price: number;
|
|
593
593
|
solution: string;
|
|
594
594
|
description: string;
|
|
595
|
-
photos: ImageModel[];
|
|
595
|
+
photos: ImageModel$1[];
|
|
596
596
|
item_link: string;
|
|
597
597
|
bill_line_name: string;
|
|
598
598
|
};
|
|
@@ -603,7 +603,7 @@ declare type InitialInspectionModelFields = {
|
|
|
603
603
|
used_resources: UsedResourcesModel;
|
|
604
604
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
605
605
|
declare type AppraisalRequestModelFields = {
|
|
606
|
-
floor_plan: DocumentModel | null;
|
|
606
|
+
floor_plan: DocumentModel$1 | null;
|
|
607
607
|
};
|
|
608
608
|
declare type InspectionModel = {
|
|
609
609
|
initial?: InitialInspectionModelFields;
|
|
@@ -637,7 +637,7 @@ declare type InventoryInspectionFields = {
|
|
|
637
637
|
allowed_smoking: boolean;
|
|
638
638
|
additional_terms: string;
|
|
639
639
|
resources: InspectionResourcesModel[];
|
|
640
|
-
inspection_document: DocumentModel | null;
|
|
640
|
+
inspection_document: DocumentModel$1 | null;
|
|
641
641
|
} & FullInspectionCommonFields;
|
|
642
642
|
declare type InventoryInspectionModel = {
|
|
643
643
|
inventory: InventoryInspectionFields;
|
|
@@ -658,12 +658,14 @@ declare type ImpairmentsInspectionModel = {
|
|
|
658
658
|
declare type AppraisalRequestModel = {
|
|
659
659
|
appraisal_request?: AppraisalRequestModelFields;
|
|
660
660
|
} & InspectionCommonFields;
|
|
661
|
+
declare type InspectionFeedbackStatuses = "draft" | "sent" | "signed" | "rejected";
|
|
661
662
|
declare type InspectionFeedbackModel = {
|
|
662
663
|
id: number;
|
|
663
664
|
user: ClientLiteModel;
|
|
664
665
|
agree: boolean;
|
|
665
666
|
comment: string;
|
|
666
667
|
signed: boolean;
|
|
668
|
+
status: InspectionFeedbackStatuses;
|
|
667
669
|
};
|
|
668
670
|
declare type ApartmentInspectionListModel = {
|
|
669
671
|
id: number;
|
|
@@ -683,10 +685,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
683
685
|
};
|
|
684
686
|
declare type PatchInspectionImageParams = {
|
|
685
687
|
id?: number;
|
|
686
|
-
} & Partial<ImageBodyRequest>;
|
|
688
|
+
} & Partial<ImageBodyRequest$1>;
|
|
687
689
|
declare type PatchInspectionVideoParams = {
|
|
688
690
|
id?: number;
|
|
689
|
-
} & Partial<VideoBodyRequest>;
|
|
691
|
+
} & Partial<VideoBodyRequest$1>;
|
|
690
692
|
declare type PatchRoomImagesParams = {
|
|
691
693
|
purpose: InspectionRoomPhotoTypes;
|
|
692
694
|
comment?: string;
|
|
@@ -726,8 +728,8 @@ declare type InspectionFillingModel = {
|
|
|
726
728
|
description: string;
|
|
727
729
|
serial_code: string;
|
|
728
730
|
amount: number;
|
|
729
|
-
photos: ImageModel[];
|
|
730
|
-
instruction: DocumentModel;
|
|
731
|
+
photos: ImageModel$1[];
|
|
732
|
+
instruction: DocumentModel$1;
|
|
731
733
|
is_absent: boolean;
|
|
732
734
|
previously_absent: boolean;
|
|
733
735
|
model: string;
|
|
@@ -809,7 +811,7 @@ declare type CommonMeterParams = {
|
|
|
809
811
|
company: CompanyLiteParams;
|
|
810
812
|
operating_account_number?: string | null;
|
|
811
813
|
company_is_administrative: boolean;
|
|
812
|
-
photos?: ImageModel[];
|
|
814
|
+
photos?: ImageModel$1[];
|
|
813
815
|
auto_sending: boolean;
|
|
814
816
|
no_tariff: boolean;
|
|
815
817
|
is_avg: boolean;
|
|
@@ -821,15 +823,15 @@ declare type ElectricityMeterValues = {
|
|
|
821
823
|
T3?: MeterTariffModel;
|
|
822
824
|
};
|
|
823
825
|
declare type WaterMeterParams = {
|
|
824
|
-
type: WaterMeterTypes;
|
|
826
|
+
type: WaterMeterTypes$1;
|
|
825
827
|
tariff: SingleCounterTariffModel;
|
|
826
828
|
} & CommonMeterParams & MeterTariffModel;
|
|
827
829
|
declare type SingleMeterParams = {
|
|
828
|
-
type?: WaterMeterTypes;
|
|
830
|
+
type?: WaterMeterTypes$1;
|
|
829
831
|
tariff: SingleCounterTariffModel;
|
|
830
832
|
} & CommonMeterParams & MeterTariffModel;
|
|
831
833
|
declare type ElectricityMeterParams = {
|
|
832
|
-
type: ElectricityMeterTypes;
|
|
834
|
+
type: ElectricityMeterTypes$1;
|
|
833
835
|
values: ElectricityMeterValues;
|
|
834
836
|
tariff: ElectricityMeterTariffModel;
|
|
835
837
|
overall_value?: number;
|
|
@@ -1071,7 +1073,7 @@ declare type CountryParams = {
|
|
|
1071
1073
|
code: string;
|
|
1072
1074
|
} & CatalogItemParams;
|
|
1073
1075
|
|
|
1074
|
-
type FileWithVisibility = {
|
|
1076
|
+
type FileWithVisibility$1 = {
|
|
1075
1077
|
file: File | null
|
|
1076
1078
|
tenant: boolean
|
|
1077
1079
|
landlord: boolean
|
|
@@ -1079,8 +1081,8 @@ type FileWithVisibility = {
|
|
|
1079
1081
|
url: string
|
|
1080
1082
|
}
|
|
1081
1083
|
|
|
1082
|
-
type InputFileWithVisibilityFields =
|
|
1083
|
-
| FileWithVisibility
|
|
1084
|
+
type InputFileWithVisibilityFields$1 =
|
|
1085
|
+
| FileWithVisibility$1
|
|
1084
1086
|
| DocumentWithVisibility
|
|
1085
1087
|
| null
|
|
1086
1088
|
| undefined
|
|
@@ -1110,7 +1112,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1110
1112
|
}
|
|
1111
1113
|
|
|
1112
1114
|
type ChangeReasonFormFields = {
|
|
1113
|
-
reason: InputFileWithVisibilityFields
|
|
1115
|
+
reason: InputFileWithVisibilityFields$1
|
|
1114
1116
|
comment?: string
|
|
1115
1117
|
}
|
|
1116
1118
|
|
|
@@ -1125,13 +1127,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1125
1127
|
settings?: any
|
|
1126
1128
|
} & InputWithControllerProps<TFormValues>
|
|
1127
1129
|
|
|
1128
|
-
type CompanyAutocompleteFields = {
|
|
1130
|
+
type CompanyAutocompleteFields$1 = {
|
|
1129
1131
|
id: number
|
|
1130
1132
|
name: string
|
|
1131
1133
|
logo?: string | null
|
|
1132
1134
|
}
|
|
1133
1135
|
|
|
1134
|
-
declare class FileStore implements FileStoreInterface {
|
|
1136
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1135
1137
|
id: number | null;
|
|
1136
1138
|
index?: number | null;
|
|
1137
1139
|
name: string;
|
|
@@ -1162,13 +1164,13 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1162
1164
|
setIndex: (index: number) => void;
|
|
1163
1165
|
get title(): string;
|
|
1164
1166
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
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 initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1170
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1171
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1167
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1168
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1169
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1170
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1171
|
+
static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
|
|
1172
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1173
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1172
1174
|
}
|
|
1173
1175
|
|
|
1174
1176
|
declare type ImageParams = {
|
|
@@ -1203,8 +1205,8 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1203
1205
|
delete: () => Promise<void>;
|
|
1204
1206
|
get extension(): string;
|
|
1205
1207
|
get title(): string;
|
|
1206
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1207
|
-
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1208
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1209
|
+
static initFromVideoModel: (image: VideoModel$1) => ImageStore;
|
|
1208
1210
|
}
|
|
1209
1211
|
|
|
1210
1212
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1329,7 +1331,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1329
1331
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1330
1332
|
payerCode?: string;
|
|
1331
1333
|
communalServicesAccount?: string;
|
|
1332
|
-
company?: CompanyAutocompleteFields | null;
|
|
1334
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1333
1335
|
} & ChangeReasonFormFields;
|
|
1334
1336
|
declare type ApartmentOverviewInfoFields = {
|
|
1335
1337
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1352,14 +1354,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1352
1354
|
} & ApartmentPaymentInfoParams;
|
|
1353
1355
|
declare type InspectionMeterInfoParams = {
|
|
1354
1356
|
id: number;
|
|
1355
|
-
resource: ResourceTypes;
|
|
1356
|
-
type?: MeterTypes;
|
|
1357
|
+
resource: ResourceTypes$1;
|
|
1358
|
+
type?: MeterTypes$1;
|
|
1357
1359
|
number: string;
|
|
1358
1360
|
startDate: DateTime | null;
|
|
1359
1361
|
company: CompanyLiteParams;
|
|
1360
1362
|
operationalAccountNumber?: string | null;
|
|
1361
1363
|
tariff: EntityLinkParams | null;
|
|
1362
|
-
passportFile: FileStore | null;
|
|
1364
|
+
passportFile: FileStore$1 | null;
|
|
1363
1365
|
initialValue?: number;
|
|
1364
1366
|
lastValue?: number;
|
|
1365
1367
|
initialValueT1?: number;
|
|
@@ -1381,8 +1383,8 @@ declare type ValuesParams = {
|
|
|
1381
1383
|
};
|
|
1382
1384
|
declare type PartialMeterInfoParams = {
|
|
1383
1385
|
id: number;
|
|
1384
|
-
type: MeterTypes;
|
|
1385
|
-
resource: ResourceTypes;
|
|
1386
|
+
type: MeterTypes$1;
|
|
1387
|
+
resource: ResourceTypes$1;
|
|
1386
1388
|
number: string;
|
|
1387
1389
|
values: ValuesParams;
|
|
1388
1390
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1394,7 +1396,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1394
1396
|
declare type ComparableObjectParams = {
|
|
1395
1397
|
id: number;
|
|
1396
1398
|
link: string;
|
|
1397
|
-
screenshot: FileStore | null;
|
|
1399
|
+
screenshot: FileStore$1 | null;
|
|
1398
1400
|
price: number;
|
|
1399
1401
|
differences: string;
|
|
1400
1402
|
};
|
|
@@ -1402,7 +1404,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1402
1404
|
id: number;
|
|
1403
1405
|
dataSourceName: string;
|
|
1404
1406
|
link: string;
|
|
1405
|
-
screenshot: FileStore | null;
|
|
1407
|
+
screenshot: FileStore$1 | null;
|
|
1406
1408
|
minPrice: number;
|
|
1407
1409
|
maxPrice: number;
|
|
1408
1410
|
};
|
|
@@ -1427,8 +1429,8 @@ declare type FillingInfoFormFields = {
|
|
|
1427
1429
|
name?: string;
|
|
1428
1430
|
description?: string;
|
|
1429
1431
|
type?: ApartmentFillingVariants | null;
|
|
1430
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1431
|
-
tempImages?: ImageBodyRequest[];
|
|
1432
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1433
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1432
1434
|
};
|
|
1433
1435
|
|
|
1434
1436
|
declare type FillingTagParams = {
|
|
@@ -1443,7 +1445,7 @@ declare type FillingParams = {
|
|
|
1443
1445
|
images?: (ImageStore | UploadFileParams)[];
|
|
1444
1446
|
serialNumber?: string;
|
|
1445
1447
|
numberOfSubjects?: number | string | null;
|
|
1446
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1448
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1447
1449
|
type?: ApartmentFillingVariants;
|
|
1448
1450
|
loader?: Loader;
|
|
1449
1451
|
};
|
|
@@ -1455,7 +1457,7 @@ declare type FillingFullParams = {
|
|
|
1455
1457
|
images?: (ImageStore | UploadFileParams)[];
|
|
1456
1458
|
serialNumber?: string;
|
|
1457
1459
|
numberOfSubjects?: number | string | null;
|
|
1458
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1460
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1459
1461
|
type?: ApartmentFillingVariants;
|
|
1460
1462
|
loader?: Loader;
|
|
1461
1463
|
check?: boolean | null;
|
|
@@ -1474,31 +1476,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1474
1476
|
name: string;
|
|
1475
1477
|
};
|
|
1476
1478
|
|
|
1477
|
-
declare type ResourcePaymentRoles
|
|
1478
|
-
declare type UnitOfPaymentTypes
|
|
1479
|
-
declare type WaterMeterTypes
|
|
1480
|
-
declare type ElectricityMeterTypes
|
|
1481
|
-
declare type ResourceTypes
|
|
1482
|
-
declare type MeterTypes
|
|
1483
|
-
declare type UtilityTypes
|
|
1484
|
-
declare type DocumentVisibilityAPIVariants
|
|
1485
|
-
declare type FileBodyRequest
|
|
1479
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1480
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1481
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
1482
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1483
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1484
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1485
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1486
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1487
|
+
declare type FileBodyRequest = {
|
|
1486
1488
|
temp_file_id?: number;
|
|
1487
1489
|
name: string;
|
|
1488
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1490
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1489
1491
|
url?: string;
|
|
1490
1492
|
};
|
|
1491
|
-
declare type ImageBodyRequest
|
|
1493
|
+
declare type ImageBodyRequest = {
|
|
1492
1494
|
temp_file_id: number;
|
|
1493
1495
|
image_name: string;
|
|
1494
1496
|
url: string;
|
|
1495
1497
|
};
|
|
1496
|
-
declare type VideoBodyRequest
|
|
1498
|
+
declare type VideoBodyRequest = {
|
|
1497
1499
|
temp_file_id: number;
|
|
1498
1500
|
file_name: string;
|
|
1499
1501
|
url: string;
|
|
1500
1502
|
};
|
|
1501
|
-
declare type ImageModel
|
|
1503
|
+
declare type ImageModel = {
|
|
1502
1504
|
id: number;
|
|
1503
1505
|
image_name?: string;
|
|
1504
1506
|
image_url?: string;
|
|
@@ -1507,23 +1509,33 @@ declare type ImageModel$1 = {
|
|
|
1507
1509
|
image_large_url: string;
|
|
1508
1510
|
size: number;
|
|
1509
1511
|
};
|
|
1510
|
-
declare type FileModel
|
|
1512
|
+
declare type FileModel = {
|
|
1511
1513
|
id: number;
|
|
1512
1514
|
name: string;
|
|
1513
1515
|
size: number;
|
|
1514
1516
|
url: string;
|
|
1515
1517
|
};
|
|
1516
|
-
declare type DocumentModel
|
|
1518
|
+
declare type DocumentModel = {
|
|
1517
1519
|
pk: number;
|
|
1518
1520
|
name: string;
|
|
1519
1521
|
created?: string;
|
|
1520
1522
|
attachment: string;
|
|
1521
1523
|
size: number;
|
|
1522
1524
|
uploaded_by?: string | null;
|
|
1523
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1525
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1526
|
+
};
|
|
1527
|
+
declare type VideoModel = {
|
|
1528
|
+
id: number;
|
|
1529
|
+
video_url: string;
|
|
1530
|
+
file_name?: string;
|
|
1531
|
+
file_size?: number;
|
|
1532
|
+
duration?: number;
|
|
1533
|
+
mime_type?: string;
|
|
1534
|
+
format?: string;
|
|
1535
|
+
resolution?: string;
|
|
1524
1536
|
};
|
|
1525
1537
|
|
|
1526
|
-
type FileWithVisibility
|
|
1538
|
+
type FileWithVisibility = {
|
|
1527
1539
|
file: File | null
|
|
1528
1540
|
tenant: boolean
|
|
1529
1541
|
landlord: boolean
|
|
@@ -1531,19 +1543,19 @@ type FileWithVisibility$1 = {
|
|
|
1531
1543
|
url: string
|
|
1532
1544
|
}
|
|
1533
1545
|
|
|
1534
|
-
type InputFileWithVisibilityFields
|
|
1535
|
-
| FileWithVisibility
|
|
1546
|
+
type InputFileWithVisibilityFields =
|
|
1547
|
+
| FileWithVisibility
|
|
1536
1548
|
| DocumentWithVisibility$1
|
|
1537
1549
|
| null
|
|
1538
1550
|
| undefined
|
|
1539
1551
|
|
|
1540
|
-
type CompanyAutocompleteFields
|
|
1552
|
+
type CompanyAutocompleteFields = {
|
|
1541
1553
|
id: number
|
|
1542
1554
|
name: string
|
|
1543
1555
|
logo?: string | null
|
|
1544
1556
|
}
|
|
1545
1557
|
|
|
1546
|
-
declare class FileStore
|
|
1558
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1547
1559
|
id: number | null;
|
|
1548
1560
|
index?: number | null;
|
|
1549
1561
|
name: string;
|
|
@@ -1574,21 +1586,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
1574
1586
|
setIndex: (index: number) => void;
|
|
1575
1587
|
get title(): string;
|
|
1576
1588
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1577
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1578
|
-
static initFromFileModel: (file: FileModel
|
|
1579
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1580
|
-
static initFromImageModel: (file: ImageModel
|
|
1581
|
-
static
|
|
1582
|
-
static
|
|
1589
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1590
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1591
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1592
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1593
|
+
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1594
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1595
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1583
1596
|
}
|
|
1584
1597
|
|
|
1585
1598
|
type PartialPayerFields$1 = {
|
|
1586
|
-
payer?: ResourcePaymentRoles
|
|
1587
|
-
mainPayer?: ResourcePaymentRoles
|
|
1588
|
-
refundFrom?: ResourcePaymentRoles
|
|
1589
|
-
partType?: UnitOfPaymentTypes
|
|
1599
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1600
|
+
mainPayer?: ResourcePaymentRoles
|
|
1601
|
+
refundFrom?: ResourcePaymentRoles
|
|
1602
|
+
partType?: UnitOfPaymentTypes | null
|
|
1590
1603
|
refundValue?: number | string | null
|
|
1591
|
-
utilityType: UtilityTypes
|
|
1604
|
+
utilityType: UtilityTypes
|
|
1592
1605
|
}
|
|
1593
1606
|
|
|
1594
1607
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1620,13 +1633,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1620
1633
|
visibility?: DocumentVisibilityVariants$1;
|
|
1621
1634
|
extension: string;
|
|
1622
1635
|
};
|
|
1623
|
-
declare type UploadedFileParams$1 = FileBodyRequest
|
|
1636
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1624
1637
|
declare type FileStoreParams$1 = {
|
|
1625
1638
|
id?: number | null;
|
|
1626
1639
|
url?: string;
|
|
1627
1640
|
index?: number | string | null;
|
|
1628
1641
|
createdBy?: string | null;
|
|
1629
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1642
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1630
1643
|
name?: string;
|
|
1631
1644
|
date?: string | null;
|
|
1632
1645
|
size?: number | null;
|
|
@@ -1654,14 +1667,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1654
1667
|
initialValueT1?: number
|
|
1655
1668
|
initialValueT2?: number
|
|
1656
1669
|
initialValueT3?: number
|
|
1657
|
-
type?: MeterTypes
|
|
1658
|
-
resource?: ResourceTypes
|
|
1670
|
+
type?: MeterTypes
|
|
1671
|
+
resource?: ResourceTypes
|
|
1659
1672
|
withAutoSending?: boolean
|
|
1660
1673
|
}
|
|
1661
1674
|
|
|
1662
1675
|
type MeterFeaturesFormFields$1 = {
|
|
1663
1676
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1664
|
-
company: CompanyAutocompleteFields
|
|
1677
|
+
company: CompanyAutocompleteFields | null
|
|
1665
1678
|
nextCheck: DateTime | null
|
|
1666
1679
|
lastValue?: number
|
|
1667
1680
|
lastValueT1?: number
|
|
@@ -1685,9 +1698,9 @@ declare type ApartmentMeterValues = {
|
|
|
1685
1698
|
} & MeterValues;
|
|
1686
1699
|
declare type InspectionMeterFields = {
|
|
1687
1700
|
id?: number;
|
|
1688
|
-
resource: ResourceTypes
|
|
1689
|
-
passportFile?: InputFileWithVisibilityFields
|
|
1690
|
-
images: FileStore
|
|
1701
|
+
resource: ResourceTypes;
|
|
1702
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1703
|
+
images: FileStore[];
|
|
1691
1704
|
} & MeterFeaturesFormFields$1;
|
|
1692
1705
|
|
|
1693
1706
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1702,7 +1715,7 @@ type PartialPayerProps<T> = {
|
|
|
1702
1715
|
title: string
|
|
1703
1716
|
name: string
|
|
1704
1717
|
form: UseFormReturn<T>
|
|
1705
|
-
utilityType: UtilityTypes
|
|
1718
|
+
utilityType: UtilityTypes$1
|
|
1706
1719
|
fieldsVariant?: PartialPayerVariants
|
|
1707
1720
|
settings?: ObjectType
|
|
1708
1721
|
disabled?: boolean
|
|
@@ -1710,12 +1723,12 @@ type PartialPayerProps<T> = {
|
|
|
1710
1723
|
}
|
|
1711
1724
|
|
|
1712
1725
|
type PartialPayerFields = {
|
|
1713
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1714
|
-
mainPayer?: ResourcePaymentRoles
|
|
1715
|
-
refundFrom?: ResourcePaymentRoles
|
|
1716
|
-
partType?: UnitOfPaymentTypes | null
|
|
1726
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1727
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1728
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1729
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1717
1730
|
refundValue?: number | string | null
|
|
1718
|
-
utilityType: UtilityTypes
|
|
1731
|
+
utilityType: UtilityTypes$1
|
|
1719
1732
|
}
|
|
1720
1733
|
|
|
1721
1734
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1799,15 +1812,15 @@ declare type ResourceAccessParams = {
|
|
|
1799
1812
|
password?: string;
|
|
1800
1813
|
description?: string;
|
|
1801
1814
|
};
|
|
1802
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1815
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1803
1816
|
declare type ApartmentResourceCompanyDetails = {
|
|
1804
|
-
company: CompanyAutocompleteFields | null;
|
|
1817
|
+
company: CompanyAutocompleteFields$1 | null;
|
|
1805
1818
|
operationalAccountNumber: string;
|
|
1806
1819
|
payerCode: string;
|
|
1807
1820
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1808
1821
|
access: ResourceAccessParams;
|
|
1809
1822
|
sampleReceiptLink: string;
|
|
1810
|
-
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1823
|
+
sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
|
|
1811
1824
|
};
|
|
1812
1825
|
declare type ApartmentResourceInterface = {
|
|
1813
1826
|
type: ApartmentResourceTypes;
|
|
@@ -1844,15 +1857,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1844
1857
|
loader: Loader;
|
|
1845
1858
|
};
|
|
1846
1859
|
declare type PostDocumentsResponse = {
|
|
1847
|
-
documents: DocumentModel[];
|
|
1860
|
+
documents: DocumentModel$1[];
|
|
1848
1861
|
};
|
|
1849
1862
|
declare type DocumentAgentInterface = {
|
|
1850
1863
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1851
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1852
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1864
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1865
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1853
1866
|
};
|
|
1854
1867
|
declare type DocumentsAgentInterface = {
|
|
1855
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1868
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1856
1869
|
} & DocumentAgentInterface;
|
|
1857
1870
|
|
|
1858
1871
|
declare type MetroLineParams = {
|
|
@@ -1923,7 +1936,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1923
1936
|
};
|
|
1924
1937
|
declare type ApartmentDocumentModel = {
|
|
1925
1938
|
id: number;
|
|
1926
|
-
document: DocumentModel;
|
|
1939
|
+
document: DocumentModel$1;
|
|
1927
1940
|
expiration_date: string;
|
|
1928
1941
|
start_date: string;
|
|
1929
1942
|
number: string;
|
|
@@ -1935,7 +1948,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1935
1948
|
tariff?: TariffLinkModel;
|
|
1936
1949
|
activation_date?: string;
|
|
1937
1950
|
check_date?: string;
|
|
1938
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1951
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1939
1952
|
apartment: ApartmentLinkModel;
|
|
1940
1953
|
company: CompanyLiteParams;
|
|
1941
1954
|
operating_account_number?: string | null;
|
|
@@ -2056,7 +2069,7 @@ declare type ApartmentModel = {
|
|
|
2056
2069
|
owner_id: number;
|
|
2057
2070
|
metro_stations: ApartmentMetroParams[];
|
|
2058
2071
|
rental_status: RentalStatuses;
|
|
2059
|
-
main_image: ImageModel;
|
|
2072
|
+
main_image: ImageModel$1;
|
|
2060
2073
|
tv_type: TVTypes | null;
|
|
2061
2074
|
inspection: ApartmentInspectionModel;
|
|
2062
2075
|
distance_to_center_kilometers: number | null;
|
|
@@ -2083,7 +2096,7 @@ declare type ApartmentLiteModel = {
|
|
|
2083
2096
|
renter: LiteUserModel | null;
|
|
2084
2097
|
rental_status: RentalStatuses;
|
|
2085
2098
|
renter_payment_status: RentalPaymentStatuses;
|
|
2086
|
-
main_image: ImageModel;
|
|
2099
|
+
main_image: ImageModel$1;
|
|
2087
2100
|
service_contract?: ServiceContractLiteModel;
|
|
2088
2101
|
is_imported_from_old_crm?: boolean;
|
|
2089
2102
|
max_electricity_counters?: number | null;
|
|
@@ -2129,7 +2142,7 @@ declare type ObjectForMapModel = {
|
|
|
2129
2142
|
apartment_number: string;
|
|
2130
2143
|
address: string;
|
|
2131
2144
|
geolocation: LatLonParams;
|
|
2132
|
-
main_image: ImageModel;
|
|
2145
|
+
main_image: ImageModel$1;
|
|
2133
2146
|
renter: ClientLiteModel | null;
|
|
2134
2147
|
owner: ClientLiteModel;
|
|
2135
2148
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2161,13 +2174,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2161
2174
|
agent: DocumentAgentInterface;
|
|
2162
2175
|
loader: Loader;
|
|
2163
2176
|
settings?: any;
|
|
2164
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2177
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2165
2178
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2166
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2179
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
2167
2180
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2168
2181
|
get extension(): string;
|
|
2169
2182
|
get title(): string;
|
|
2170
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2183
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
2171
2184
|
}
|
|
2172
2185
|
|
|
2173
2186
|
type InputTypes =
|
|
@@ -2227,13 +2240,13 @@ declare type FileParams = {
|
|
|
2227
2240
|
size?: number | null;
|
|
2228
2241
|
file: File;
|
|
2229
2242
|
};
|
|
2230
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2243
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
2231
2244
|
declare type FileStoreParams = {
|
|
2232
2245
|
id?: number | null;
|
|
2233
2246
|
url?: string;
|
|
2234
2247
|
index?: number | string | null;
|
|
2235
2248
|
createdBy?: string | null;
|
|
2236
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2249
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
2237
2250
|
name?: string;
|
|
2238
2251
|
date?: string | null;
|
|
2239
2252
|
size?: number | null;
|
|
@@ -2384,8 +2397,8 @@ declare const FillingTagsAgent: {
|
|
|
2384
2397
|
};
|
|
2385
2398
|
|
|
2386
2399
|
declare const TariffsAgent: {
|
|
2387
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2388
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2400
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2401
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2389
2402
|
};
|
|
2390
2403
|
|
|
2391
2404
|
type SignInFormFields = {
|
|
@@ -2404,8 +2417,8 @@ declare const ApartmentsAgent: {
|
|
|
2404
2417
|
};
|
|
2405
2418
|
|
|
2406
2419
|
declare const ApartmentMetersAgent: {
|
|
2407
|
-
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2408
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2420
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2421
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2409
2422
|
};
|
|
2410
2423
|
|
|
2411
2424
|
declare const requests: {
|
|
@@ -2429,7 +2442,7 @@ declare const meterUnitLabel: {
|
|
|
2429
2442
|
electricity: string;
|
|
2430
2443
|
};
|
|
2431
2444
|
|
|
2432
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2445
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2433
2446
|
|
|
2434
2447
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2435
2448
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2445,34 +2458,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2445
2458
|
}, "">;
|
|
2446
2459
|
|
|
2447
2460
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2448
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2461
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2449
2462
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2450
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2463
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2451
2464
|
temp_file_id: number;
|
|
2452
2465
|
name: string;
|
|
2453
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2466
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2454
2467
|
url: string;
|
|
2455
2468
|
} | null;
|
|
2456
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2457
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2458
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2469
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2470
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2471
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2459
2472
|
name: string;
|
|
2460
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2473
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2461
2474
|
} | null;
|
|
2462
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2475
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2463
2476
|
name: string;
|
|
2464
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2477
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2465
2478
|
} | null>;
|
|
2466
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2467
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2468
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2469
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2470
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2471
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2472
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2473
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2474
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2475
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2479
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2480
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2481
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2482
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2483
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2484
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2485
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2486
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2487
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2488
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2476
2489
|
|
|
2477
2490
|
declare const matchesAPISubjectRoles: {
|
|
2478
2491
|
maroom: string;
|
|
@@ -2565,16 +2578,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2565
2578
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2566
2579
|
|
|
2567
2580
|
declare class FilesStore {
|
|
2568
|
-
files: FileStore[];
|
|
2581
|
+
files: FileStore$1[];
|
|
2569
2582
|
variant: FileVariant;
|
|
2570
2583
|
constructor(variant: FileVariant);
|
|
2571
|
-
addFile: (newFile: FileStore) => void;
|
|
2584
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2572
2585
|
removeFile: (index: number) => void;
|
|
2573
|
-
setFiles: (files: FileStore[]) => void;
|
|
2586
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2574
2587
|
uploadFiles: () => Promise<void>;
|
|
2575
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2588
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2576
2589
|
get uploadedAllFiles(): boolean;
|
|
2577
|
-
get notUploadedFiles(): FileStore[];
|
|
2590
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2578
2591
|
get isUploading(): boolean;
|
|
2579
2592
|
get videoLength(): number;
|
|
2580
2593
|
get nonVideoLength(): number;
|
|
@@ -2596,7 +2609,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2596
2609
|
messages?: UploadMediaMessages;
|
|
2597
2610
|
withoutFilesStore?: boolean;
|
|
2598
2611
|
};
|
|
2599
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2612
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2600
2613
|
|
|
2601
2614
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2602
2615
|
onSearchItem: (value: string) => void;
|
|
@@ -2768,11 +2781,11 @@ type DistrictAutocompleteFields = {
|
|
|
2768
2781
|
type ReplaceableTariffFields = {
|
|
2769
2782
|
name: string
|
|
2770
2783
|
id?: number
|
|
2771
|
-
type?: ResourceTypes
|
|
2784
|
+
type?: ResourceTypes$1
|
|
2772
2785
|
}
|
|
2773
2786
|
|
|
2774
2787
|
type TariffCommonFields = {
|
|
2775
|
-
resourceType: ResourceTypes
|
|
2788
|
+
resourceType: ResourceTypes$1
|
|
2776
2789
|
name: string
|
|
2777
2790
|
startDate: DateTime
|
|
2778
2791
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2784,7 +2797,7 @@ type TariffCommonFields = {
|
|
|
2784
2797
|
}
|
|
2785
2798
|
|
|
2786
2799
|
type ElectricityTariffCreationFormFields = {
|
|
2787
|
-
type: ElectricityMeterTypes
|
|
2800
|
+
type: ElectricityMeterTypes$1
|
|
2788
2801
|
isOverallConsumption: boolean
|
|
2789
2802
|
T1?: number
|
|
2790
2803
|
T2?: number
|
|
@@ -2805,7 +2818,7 @@ type TariffCreationFormProps = {
|
|
|
2805
2818
|
handleClose: () => void
|
|
2806
2819
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2807
2820
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2808
|
-
defaultResource: ResourceTypes
|
|
2821
|
+
defaultResource: ResourceTypes$1
|
|
2809
2822
|
settings?: any
|
|
2810
2823
|
}
|
|
2811
2824
|
|
|
@@ -2850,7 +2863,7 @@ declare class TariffsLiteStore {
|
|
|
2850
2863
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2851
2864
|
settings?: any;
|
|
2852
2865
|
constructor(settings?: any);
|
|
2853
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2866
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2854
2867
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2855
2868
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2856
2869
|
id: number;
|
|
@@ -2858,7 +2871,7 @@ declare class TariffsLiteStore {
|
|
|
2858
2871
|
};
|
|
2859
2872
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2860
2873
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2861
|
-
type: ElectricityMeterTypes;
|
|
2874
|
+
type: ElectricityMeterTypes$1;
|
|
2862
2875
|
T1: string | undefined;
|
|
2863
2876
|
T2: string | undefined;
|
|
2864
2877
|
T3: string | undefined;
|
|
@@ -3151,7 +3164,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3151
3164
|
name?: string
|
|
3152
3165
|
label?: string
|
|
3153
3166
|
hideName?: string
|
|
3154
|
-
resource: ResourceTypes
|
|
3167
|
+
resource: ResourceTypes$1
|
|
3155
3168
|
filter?: string
|
|
3156
3169
|
filterRequired?: boolean
|
|
3157
3170
|
settings?: any
|
|
@@ -3164,7 +3177,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3164
3177
|
}
|
|
3165
3178
|
|
|
3166
3179
|
type MeterFeaturesFieldsProps = {
|
|
3167
|
-
resource?: ResourceTypes
|
|
3180
|
+
resource?: ResourceTypes$1
|
|
3168
3181
|
replacements?: LiteMeterInterface[]
|
|
3169
3182
|
isNewResource?: boolean
|
|
3170
3183
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3178,7 +3191,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3178
3191
|
withNextCheck?: boolean
|
|
3179
3192
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3180
3193
|
handleMeterTypeChange?: (
|
|
3181
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3194
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3182
3195
|
) => void
|
|
3183
3196
|
settings?: any
|
|
3184
3197
|
disabledInitial?: boolean
|
|
@@ -3191,14 +3204,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3191
3204
|
initialValueT1?: number
|
|
3192
3205
|
initialValueT2?: number
|
|
3193
3206
|
initialValueT3?: number
|
|
3194
|
-
type?: MeterTypes
|
|
3195
|
-
resource?: ResourceTypes
|
|
3207
|
+
type?: MeterTypes$1
|
|
3208
|
+
resource?: ResourceTypes$1
|
|
3196
3209
|
withAutoSending?: boolean
|
|
3197
3210
|
}
|
|
3198
3211
|
|
|
3199
3212
|
type MeterFeaturesFormFields = {
|
|
3200
3213
|
tariff: TariffGroupAutocompleteFields | null
|
|
3201
|
-
company: CompanyAutocompleteFields | null
|
|
3214
|
+
company: CompanyAutocompleteFields$1 | null
|
|
3202
3215
|
nextCheck: DateTime | null
|
|
3203
3216
|
lastValue?: number
|
|
3204
3217
|
lastValueT1?: number
|
|
@@ -3212,8 +3225,8 @@ type MeterFeaturesFormFields = {
|
|
|
3212
3225
|
} & BasicMeterFeaturesFormFields
|
|
3213
3226
|
|
|
3214
3227
|
type BasicMeterFieldsSettings = {
|
|
3215
|
-
resource?: ResourceTypes
|
|
3216
|
-
meterType?: MeterTypes
|
|
3228
|
+
resource?: ResourceTypes$1
|
|
3229
|
+
meterType?: MeterTypes$1
|
|
3217
3230
|
disabledInitial?: boolean
|
|
3218
3231
|
}
|
|
3219
3232
|
|
|
@@ -3245,10 +3258,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3245
3258
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3246
3259
|
|
|
3247
3260
|
type MeterTypeRadioGroupProps = {
|
|
3248
|
-
resource?: ResourceTypes
|
|
3261
|
+
resource?: ResourceTypes$1
|
|
3249
3262
|
form: UseFormReturn<any>
|
|
3250
3263
|
handleChange: (
|
|
3251
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3264
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3252
3265
|
) => void
|
|
3253
3266
|
disabled?: boolean
|
|
3254
3267
|
waterOptions?: OptionParams[]
|
|
@@ -3260,7 +3273,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3260
3273
|
type MeterFeaturesFormProps = {
|
|
3261
3274
|
formStore?: MultistepForm$1<any>
|
|
3262
3275
|
handleMeterTypeChange?: (
|
|
3263
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3276
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3264
3277
|
) => void
|
|
3265
3278
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3266
3279
|
|
|
@@ -3328,7 +3341,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3328
3341
|
startDate: undefined;
|
|
3329
3342
|
}, "">;
|
|
3330
3343
|
|
|
3331
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3344
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3332
3345
|
|
|
3333
3346
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3334
3347
|
|
|
@@ -3344,7 +3357,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3344
3357
|
|
|
3345
3358
|
type TariffReplacementFieldsProps = {
|
|
3346
3359
|
form: UseFormReturn<TariffCommonFields>
|
|
3347
|
-
resource: ResourceTypes
|
|
3360
|
+
resource: ResourceTypes$1
|
|
3348
3361
|
setReplaceable: (value: boolean) => void
|
|
3349
3362
|
settings?: any
|
|
3350
3363
|
}
|
|
@@ -3760,7 +3773,7 @@ type UploadPhotosButtonProps = {
|
|
|
3760
3773
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3761
3774
|
|
|
3762
3775
|
type UploadedImageProps = {
|
|
3763
|
-
image: FileStore
|
|
3776
|
+
image: FileStore$1
|
|
3764
3777
|
index: number
|
|
3765
3778
|
onClick: (index: number) => void
|
|
3766
3779
|
onDelete: (index: number) => void
|
|
@@ -3793,14 +3806,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3793
3806
|
};
|
|
3794
3807
|
declare type PartialMeterInfoFields = {
|
|
3795
3808
|
id: number;
|
|
3796
|
-
resource: ResourceTypes;
|
|
3797
|
-
type?: MeterTypes;
|
|
3809
|
+
resource: ResourceTypes$1;
|
|
3810
|
+
type?: MeterTypes$1;
|
|
3798
3811
|
number: string;
|
|
3799
|
-
images: FileStore[];
|
|
3812
|
+
images: FileStore$1[];
|
|
3800
3813
|
maxValue?: PartialMeterValuesFields;
|
|
3801
3814
|
values: PartialMeterValuesFields;
|
|
3802
3815
|
} & PartialMeterValuesFields;
|
|
3803
|
-
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>[];
|
|
3816
|
+
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>[];
|
|
3804
3817
|
|
|
3805
3818
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3806
3819
|
type: string | undefined;
|
|
@@ -3827,4 +3840,4 @@ type SignInPageProps = {
|
|
|
3827
3840
|
|
|
3828
3841
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3829
3842
|
|
|
3830
|
-
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 };
|
|
3843
|
+
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, InspectionFeedbackStatuses, 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$1 as 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 };
|